:root{
  --bg:#f2eee7;
  --paper:#fbf7f1;
  --ink:#0f0e0d;
  --muted:#6c625a;
  --line:rgba(15,14,13,.10);

  --card: rgba(255,255,255,.70);
  --glass: rgba(255,255,255,.55);

  --shadow: 0 26px 80px rgba(15,14,13,.14);
  --shadow2: 0 12px 34px rgba(15,14,13,.10);

  --r: 26px;
  --r2: 20px;

  --gold:#b79a64;
  --gold2:#d2b67a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 620px at 20% -10%, #ffffff 0%, var(--paper) 38%, var(--bg) 100%),
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,0));
}
a{color:inherit; text-decoration:none}
img{display:block; max-width:100%}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}

/* Typography */
.kicker{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
}
.h1{
  margin:0;
  font-family: Fraunces, serif;
  font-weight:600;
  font-size: clamp(30px, 8.5vw, 44px);
  letter-spacing:-.03em;
  line-height:1.03;
}
.p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.78;
  font-size:14px;
}
.row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.row-between{display:flex; justify-content:space-between; align-items:center; gap:12px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:80;
  background: rgba(251,247,241,.78);
  backdrop-filter: blur(18px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:36px; height:36px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.85);
  border:1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15,14,13,.05);
  font-family: Fraunces, serif;
  font-weight:600;
}
.brand__text{font-weight:800; letter-spacing:.02em; font-size:18px}
.icon-btn{
  width:46px; height:46px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  display:grid; place-items:center;
  cursor:pointer;
}
.icon-btn:active{transform: translateY(1px)}
.icon-btn svg{width:20px; height:20px}

/* Drawer */
.drawer{
  display:none;
  position:fixed; inset:0;
  background: rgba(0,0,0,.35);
  z-index:120;
}
.drawer__panel{
  position:absolute; right:0; top:0; bottom:0;
  width:min(380px, 92vw);
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(18px);
  border-left:1px solid var(--line);
  padding:14px;
}
.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.drawer__links{padding:12px 0; display:grid; gap:10px}
.drawer__links a{
  padding:13px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.82);
  border:1px solid var(--line);
  color:var(--muted);
  box-shadow: 0 1px 0 rgba(15,14,13,.05);
}
.drawer__links a:hover{color:var(--ink)}

/* Page spacing */
.page{padding:18px 0 28px}

/* HERO */
.hero-lux{
  margin-top:14px;
  border-radius: 30px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-lux__media{position:relative; height: 340px}
.hero-lux__media img{width:100%; height:100%; object-fit:cover; transform: scale(1.02)}
.hero-lux__veil{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(15,14,13,.70), rgba(15,14,13,.10) 55%, rgba(15,14,13,0)),
    radial-gradient(700px 260px at 25% 30%, rgba(183,154,100,.22), rgba(0,0,0,0));
}
.hero-lux__content{
  position:absolute; left:16px; right:16px; bottom:16px;
  color:#fff;
}
.hero-lux__content .tag{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.95;
}
.hero-lux__content h2{
  margin:12px 0 0;
  font-family: Fraunces, serif;
  font-weight:600;
  font-size: clamp(26px, 7vw, 40px);
  letter-spacing:-.03em;
  line-height:1.05;
}
.hero-lux__content p{
  margin:10px 0 0;
  opacity:.92;
  line-height:1.7;
  font-size:14px;
  max-width: 52ch;
}
.gold-line{
  display:inline-block;
  height:2px;
  width:92px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  opacity:.9;
  margin-top:10px;
}

/* Grid + tiles */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  padding:18px 0 26px;
}
.card{grid-column: span 6; position:relative}
@media (max-width: 560px){
  .card{grid-column: span 6;} /* 2 columns on phone */
}

.tile{
  width:100%;
  border:1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  overflow:hidden;
  box-shadow: 0 1px 0 rgba(15,14,13,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
.tile:active{transform: translateY(1px)}
.tile__img{position:relative}
.tile__img img{height: 175px; width:100%; object-fit:cover}
.tile__img:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(15,14,13,.16), rgba(15,14,13,0) 58%);
}
.tile__cap{padding:12px 12px 14px}
.tile__cap .name{
  font-family: Fraunces, serif;
  font-weight:600;
  font-size:18px;
  line-height:1.15;
}
.tile__cap .meta{
  margin-top:7px;
  color:var(--muted);
  font-size:12.7px;
  line-height:1.5;
}

.badge{
  display:inline-flex; align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  color:var(--muted);
  font-size:12px;
}

/* Heart */
.heart{
  position:absolute; top:10px; right:10px;
  width:44px; height:44px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
  cursor:pointer;
  display:grid; place-items:center;
}
.heart svg{width:20px; height:20px}
.heart.is-on svg{fill:var(--ink)}
.heart:active{transform: translateY(1px)}

/* Brand hero */
.brand-hero{
  margin-top:14px;
  border-radius: 30px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.brand-hero__img{position:relative}
.brand-hero__img img{width:100%; height: 260px; object-fit:cover}
.brand-hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(15,14,13,.70), rgba(15,14,13,.10) 55%, rgba(15,14,13,0)),
    radial-gradient(700px 260px at 25% 30%, rgba(183,154,100,.22), rgba(0,0,0,0));
}
.brand-hero__content{
  position:absolute; left:16px; right:16px; bottom:16px;
  color:#fff;
}
.brand-hero__content .title{
  margin:0;
  font-family: Fraunces, serif;
  font-weight:600;
  font-size: clamp(30px, 8vw, 44px);
  letter-spacing:-.03em;
  line-height:1.02;
}
.brand-hero__content .desc{
  margin:10px 0 0;
  opacity:.92;
  line-height:1.7;
  font-size:14px;
  max-width: 58ch;
}

/* Dress page */
.gallery{
  border:1px solid var(--line);
  border-radius: 30px;
  overflow:hidden;
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.gallery img{width:100%; height: 490px; object-fit:cover}
.thumbs{
  display:flex; gap:10px;
  overflow:auto;
  padding:12px 2px 2px;
}
.thumb{
  flex:0 0 auto;
  width:94px; height:74px;
  border-radius: 18px;
  border:1px solid var(--line);
  overflow:hidden;
  opacity:.86;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
  cursor:pointer;
}
.thumb img{width:100%; height:100%; object-fit:cover}
.thumb.is-active{opacity:1; outline:2px solid rgba(183,154,100,.35)}

.panel{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(15,14,13,.05);
  padding:16px;
}
.muted{color:var(--muted); line-height:1.8; font-size:14px}

/* CTA */
.btn{
  width:100%;
  display:flex; align-items:center; justify-content:center;
  gap:10px;
  padding:15px 16px;
  border-radius: 18px;
  border:1px solid rgba(183,154,100,.55);
  background: linear-gradient(180deg, rgba(183,154,100,.22), rgba(183,154,100,.10));
  color: var(--ink);
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 18px 40px rgba(183,154,100,.15);
}
.btn:hover{box-shadow: 0 26px 60px rgba(183,154,100,.22)}
.btn:active{transform: translateY(1px)}
.btn svg{width:18px; height:18px; fill:var(--ink)}

/* Bottom tabs */
.has-tabs{padding-bottom: 86px;}
.tabs{
  position:fixed; left:0; right:0; bottom:0;
  z-index:90;
  background: rgba(251,247,241,.86);
  backdrop-filter: blur(18px);
  border-top:1px solid var(--line);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
}
.tabs__inner{
  width:min(580px, calc(100% - 24px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
}
.tab{
  display:flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  font-weight:900;
}
.tab svg{width:18px; height:18px}
.tab--active{border-color: rgba(183,154,100,.50)}
.count{
  min-width:22px; height:22px;
  display:inline-grid; place-items:center;
  padding:0 7px;
  border-radius:999px;
  background: rgba(183,154,100,.18);
  font-size:12px;
  font-weight:900;
}

/* Desktop layout */
@media (min-width: 860px){
  .card{grid-column: span 4;}
  .tile__img img{height: 200px}
  .brand-hero__img img{height: 340px}
  .hero-lux__media{height: 420px}
  .dress-wrap{display:grid; grid-template-columns: 1.08fr .92fr; gap:14px; align-items:start}
  .panel{margin-top:0}
}
@media (max-width: 740px){
  .hero-lux__media{height: 350px}
  .gallery img{height: 440px}
}
