:root{
  --ink-plum:  #2E0B22;
  --wine:      #7A1F3D;
  --wine-deep: #5A1730;
  --gold:      #C9A46A;
  --gold-light:#E8D5B5;
  --ivory:     #FBF5EE;
  --blush:     #F4E7E2;
  --charcoal:  #2B2320;
  --muted:     #8A7A72;
  --white:     #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-card: 0 10px 30px rgba(46, 11, 34, 0.10);
  --shadow-card-hover: 0 18px 40px rgba(46, 11, 34, 0.18);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3{
  font-family: var(--font-display);
  color: var(--ink-plum);
  margin: 0 0 0.4em;
  font-weight: 600;
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
button{ font-family: var(--font-body); cursor: pointer; border:none; }
ul{ list-style:none; margin:0; padding:0; }

.section-head{
  max-width: 640px;
  margin: 0 auto 2.6rem;
  text-align: center;
}
.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--wine);
  font-weight: 600;
  margin: 0 0 0.6em;
}
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-sub{ color: var(--muted); margin-top: 0.4em; }

/* ============ SIGNATURE: zari border divider ============ */
.zari-divider{
  position: relative;
  height: 22px;
  margin: 0 auto;
  max-width: var(--container);
  background-image:
    linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold));
  background-size: 100% 1.5px, 100% 1.5px;
  background-position: top center, bottom center;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.zari-divider::before{
  content:"";
  position:absolute;
  left:50%; top:50%;
  width:10px; height:10px;
  background: var(--gold);
  transform: translate(-50%,-50%) rotate(45deg);
}
.zari-divider::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  width: 120px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  transform: translate(-50%,-50%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.5em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(122,31,61,0.25);
}
.btn-primary:hover{ background: var(--wine-deep); transform: translateY(-2px); }

.btn-outline{
  background: transparent;
  border: 1.5px solid var(--wine);
  color: var(--wine);
}
.btn-outline:hover{ background: var(--wine); color:var(--white); transform: translateY(-2px); }

.btn-whatsapp{
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover{ background:#1ebd5a; transform: translateY(-2px); }
.wa-icon{ width:18px; height:18px; fill: currentColor; flex-shrink:0; }

.btn-rent{
  width:100%;
  background: var(--wine);
  color: var(--white);
  padding: 0.8em 1em;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-rent:hover{ background: var(--wine-deep); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(251, 245, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(122,31,61,0.10);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display:flex;
  align-items:center;
  gap: 1.5rem;
}
.logo{
  display:flex;
  align-items:center;
  gap:0.6rem;
  margin-right: auto;
}
.logo-mark{
  width:38px; height:38px;
  border-radius:50%;
  background: var(--wine);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.logo-text{
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink-plum);
  font-weight:600;
}
.logo-text em{ font-style: normal; color: var(--wine); font-weight:500; }

.main-nav{
  display:flex;
  gap: 1.8rem;
}
.main-nav a{
  font-size: 0.92rem;
  font-weight:500;
  color: var(--charcoal);
  position:relative;
  padding: 0.3em 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after{ width:100%; }

.header-cta{ padding: 0.65em 1.3em; font-size:0.85rem; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  padding: 6px;
}
.nav-toggle span{
  width:24px; height:2px;
  background: var(--ink-plum);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{ background: linear-gradient(180deg, var(--blush) 0%, var(--ivory) 65%); }
.hero-inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 4.5rem 1.5rem 4rem;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items:center;
}
.hero h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height:1.08;
}
.hero h1 em{ font-style: italic; color: var(--wine); }
.hero-sub{
  color: var(--muted);
  max-width: 46ch;
  margin: 1.1em 0 1.6em;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}
.hero-trust{
  display:flex;
  gap: 2.2rem;
}
.hero-trust strong{
  display:block;
  font-family: var(--font-display);
  font-size:1.5rem;
  color: var(--ink-plum);
}
.hero-trust span{
  font-size:0.78rem;
  color: var(--muted);
  text-transform:uppercase;
  letter-spacing:0.06em;
}

.hero-visual{ display:flex; flex-direction:column; align-items:center; }
.hero-frame{
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 0;
    background: #fff;
}

.hero-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:20px;
}


/* .hero-frame::before{
    content:"";
    position:absolute;
    inset:8px;
    border: 1.5px solid var(--gold);
    border-radius:4px;
    pointer-events:none;
} */
.hero-illustration{ width:100%; height:100%; }
.hero-visual-tag{
  margin-top:1rem;
  font-family: var(--font-display);
  font-style:italic;
  color: var(--wine);
  font-size:1.05rem;
}

/* ============================================================
   STEPS ("How it works")
   ============================================================ */
.steps{ padding: 4.5rem 1.5rem; max-width: var(--container); margin:0 auto; }
.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step{
  background: var(--white);
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
}
.step-no{
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight:600;
  display:block;
  margin-bottom: 0.3rem;
}
.step h3{ font-size:1.3rem; margin-bottom:0.35em; }
.step p{ color: var(--muted); font-size:0.94rem; margin:0; }

/* ============================================================
   COLLECTION
   ============================================================ */
.collection{
  padding: 4.5rem 1.5rem 5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.filter-bar{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.filter-btn{
  background: var(--white);
  border: 1.5px solid var(--blush);
  color: var(--charcoal);
  padding: 0.55em 1.3em;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight:500;
  transition: all 0.2s ease;
}
.filter-btn:hover{ border-color: var(--gold); }
.filter-btn.active{
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

.collection-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-box{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display:flex;
  flex-direction:column;
}
.collection-box:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.collection-box.is-hidden{ display:none; }

.dress-media{
    height:500px;
    overflow:hidden;
}

.dress-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}

.collection-box:hover .dress-media img{
    transform:scale(1.05);
}


.dress-media svg{ width:100%; height:100%; }
.dress-tag{
  position:absolute;
  top:14px; left:14px;
  background: rgba(46,11,34,0.85);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding: 0.35em 0.7em;
  border-radius: 999px;
}

.collection-content{
  padding: 1.4rem 1.5rem 1.6rem;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}
.collection-content h3{
  font-size: 1.35rem;
  margin-bottom:0.3em;
}
.collection-content p{
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
  flex-grow:1;
}
.dress-price{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight:600;
  color: var(--wine);
  margin-bottom: 1rem;
}
.dress-price span{
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

.no-results{
  text-align:center;
  color: var(--muted);
  margin-top: 2rem;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us{
  background: var(--ink-plum);
  padding: 4.5rem 1.5rem;
}
.why-us .eyebrow{ color: var(--gold); }
.why-us .section-head h2{ color: var(--ivory); }
.why-grid{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.why-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,164,106,0.25);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-md);
  text-align:center;
}
.why-icon{
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.why-card h3{
  color: var(--ivory);
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}
.why-card p{
  color: rgba(251,245,238,0.65);
  font-size: 0.88rem;
  margin:0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--blush); padding-top: 4rem; }
.footer-inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 1.5rem 3rem;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand p{ color: var(--muted); font-size:0.92rem; margin: 1rem 0 1.4rem; max-width: 38ch; }
.footer-col h4{
  font-family: var(--font-display);
  color: var(--ink-plum);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.footer-col a, .footer-col p{
  display:block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}
.footer-col a:hover{ color: var(--wine); }
.footer-bottom{
  text-align:center;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 1.4rem 1.5rem;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-whatsapp{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 25px rgba(37,211,102,0.45);
  z-index: 200;
  animation: pulse 2.4s infinite;
}
.float-whatsapp svg{ width:28px; height:28px; fill: var(--white); }
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .collection-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps-grid{ grid-template-columns: 1fr; }
  .hero-inner{ grid-template-columns: 1fr; text-align:center; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-actions, .hero-trust{ justify-content:center; }
  .hero-visual{ order:-1; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 720px){
  .main-nav{
    position: fixed;
    top: 68px;
    left:0; right:0;
    background: var(--ivory);
    flex-direction:column;
    padding: 1.2rem 1.5rem;
    gap: 0.9rem;
    border-bottom: 1px solid rgba(122,31,61,0.1);
    transform: translateY(-130%);
    opacity:0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open{ transform: translateY(0); opacity:1; }
  .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .collection-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align:center; }
  .footer-brand .logo{ justify-content:center; }
  .float-whatsapp{ width:50px; height:50px; right:16px; bottom:16px; }
}

@media (max-width: 420px){
  .hero-inner{ padding: 3.2rem 1.2rem 3rem; }
  .hero-trust{ gap:1.4rem; }
  .header-inner{ padding: 0.7rem 1rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html{ scroll-behavior:auto; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}
