
/* Melis Landing - responsive, mobile-first */
:root{
  --bg: #f2e6cf;
  --bg2:#f7f0df;
  --ink:#101010;
  --white:#ffffff;
  --gold:#caa24a;
  --gold2:#b8923d;
  --overlay: rgba(0,0,0,.55);
  --shadow: 0 14px 40px rgba(0,0,0,.22);
  --radius: 18px;
  --radius-pill: 999px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
}

/* Top strip like reference */
.top-strip{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg2);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 16px;
  text-align:center;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hero */
.hero{
  position: relative;
  min-height: 82vh;
  display:flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: url("../images/hero.webp") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65) 55%, rgba(0,0,0,.55));
}
.hero__wrap{
  position: relative;
  z-index: 2;
  width: min(92vw, 560px);
  text-align: center;
  padding: 22px 14px 92px;
}
.hero__logo{
  width: 240px;
  max-width: 70vw;
  height: auto;
  margin: 10px auto 14px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.hero__headline{
  margin: 0 0 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 300;
  font-size: 34px;
  line-height: 1.15;
}
.hero__headline .em{
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  letter-spacing: .06em;
  font-weight: 500;
  color: var(--gold);
}
.hero__cta{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items:center;
  margin-top: 12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  max-width: 340px;
  padding: 13px 16px;
  border-radius: var(--radius-pill);
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px) scale(.995); }
.btn--gold{
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.btn--ghost{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(202,162,74,.95);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

/* Bottom sticky actions */
.sticky-actions{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 12px 14px;
  background: linear-gradient(180deg, rgba(242,230,207,0), rgba(242,230,207,.82) 36%, rgba(242,230,207,.96));
  pointer-events: none; /* buttons re-enable */
}
.sticky-actions__bar{
  margin: 0 auto;
  width: min(96vw, 520px);
  display:flex;
  gap: 12px;
  justify-content: space-between;
  pointer-events: auto;
}
..action{
  width:72px;
  height:72px;
  border-radius:50%;
  background:var(--gold);
  color:#111;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
  box-shadow:var(--shadow);
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;

  padding:0;      /* IMPORTANT */
  flex:none;      /* IMPORTANT */
}

}
.action--nav{
  justify-content:center;
}
.action svg{ width: 20px; height: 20px; }

/* Sections */
.section{
  padding: 44px 16px;
}
.container{
  width: min(92vw, var(--max));
  margin: 0 auto;
}
.h2{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.muted{
  margin: 0 0 22px;
  color: rgba(0,0,0,.72);
  line-height: 1.55;
}
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card{
  background: #fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}
.card__img{
  height: 220px;
  background: #ddd center/cover no-repeat;
}
.card__body{
  padding: 16px 16px 18px;
}
.card__title{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card__btns{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.small-btn--gold{
  background: var(--gold);
  color:#111;
}

/* Slide-over NAV */
.sheet{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.sheet[aria-hidden="false"]{ display:block; }
.sheet__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.sheet__panel{
  position:absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: #121212;
  color:#fff;
  padding: 18px 16px;
  transform: translateX(0);
}
.sheet__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sheet__brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.sheet__brand img{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background:#000;
}
.sheet__close{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 800;
  letter-spacing:.12em;
}
.sheet__links a{
  display:block;
  padding: 14px 12px;
  margin: 8px 0;
  border-radius: 14px;
  text-decoration:none;
  color:#fff;
  border: 1px solid rgba(255,255,255,.12);
}
.sheet__links a span{
  color: var(--gold);
  font-weight: 900;
}
.sheet__note{
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
}

/* Desktop layout */
@media (min-width: 900px){
  .top-strip{ font-size: 12px; }
  .hero__wrap{ width: min(90vw, 760px); padding-bottom: 56px; }
  .hero__headline{ font-size: 48px; }
  .hero__logo{ width: 280px; }
  .hero__cta{ flex-direction: row; justify-content:center; }
  .btn{ max-width: 320px; }
  .sticky-actions{ display:none; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .card__btns{ flex-direction: row; }
}.sticky-actions{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 9999;
}

.sticky-actions__bar{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
}

.sticky-actions .action{
  flex: 1;
  height: 64px;
  border-radius: 18px;
  background: #d2b15b;
  color: #111;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

