/* ===========================================================
   Dhaaga — Redesign Template  ·  Heritage-Luxe
   Original brand palette · light, editorial typography
   =========================================================== */

:root {
  /* --- original site palette --- */
  --cream:     #faf5ea;   /* page background, a touch lighter for air */
  --cream-2:   #f5ecda;   /* section bands */
  --cream-3:   #ede0c8;   /* borders / soft fills */
  --ink:       #2a1a1a;   /* near-black text */
  --ink-soft:  #7a6a5a;   /* muted body text */
  --burgundy:  #3d0e18;   /* deep maroon — primary */
  --burgundy-2:#5f1423;   /* hover / secondary maroon */
  --gold:      #b88a42;   /* muted bronze-gold */
  --gold-soft: #c9a24a;
  --green:     #4a6b4d;   /* subtle in-stock, desaturated */
  --line:      #e2d6c2;   /* hairline */
  --white:     #fffdf9;
  --radius: 2px;
  --shadow:    0 18px 50px rgba(61, 14, 24, 0.08);
  --shadow-sm: 0 6px 26px rgba(61, 14, 24, 0.05);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
/* comfortable spacing between stacked paragraphs (base reset removes margins) */
.story p.muted { margin-bottom: 15px; font-size: 15px; line-height: 1.95; }
.section p.muted, .svc p, .step p { line-height: 1.85; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Headings — light, elegant Cormorant */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); letter-spacing: 0.005em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

/* single-word gold accent for headings — premium two-tone */
.accent { color: var(--gold); font-style: italic; }
.accent-light { color: var(--gold-soft); font-style: italic; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 34px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 18px;
}
.devanagari { font-family: var(--serif); color: var(--burgundy); font-style: italic; font-weight: 500; }
.muted { color: var(--ink-soft); font-weight: 300; }
.center { text-align: center; }
.section { padding: 120px 0; }
.section-sm { padding: 68px 0; }

/* ---------- Buttons — thin, refined ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; padding: 16px 38px; border-radius: var(--radius); cursor: pointer;
  border: 1px solid var(--burgundy); background: var(--burgundy); color: var(--cream);
  transition: all .35s ease;
}
.btn:hover { background: var(--burgundy-2); border-color: var(--burgundy-2); }
.btn-outline { background: transparent; color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }
.btn-gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: transparent; }
.btn-sm { padding: 11px 24px; font-size: 0.64rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 234, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: 3px; color: var(--burgundy); line-height: 1; }
.brand small { font-size: .6rem; color: var(--gold); letter-spacing: .3em; display: block; margin-top: 2px; font-family: var(--sans); font-weight: 400; }
.brand-hindi { font-family: var(--serif); font-size: .62em; color: var(--gold); letter-spacing: .08em; font-weight: 400; }
.brand-hindi::before { content: "·"; margin: 0 7px 0 9px; color: var(--gold); }
.site-footer .brand-hindi { color: var(--gold-soft); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  color: var(--ink); transition: color .25s; position: relative;
}
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--gold); transition:width .3s; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-links a:hover, .nav-links a.active { color: var(--burgundy); }
.nav-right { display: flex; align-items: center; gap: 22px; }

/* Cart icon — clean SVG, stable (no jitter) */
.cart-btn {
  position: relative; background: none; border: none; cursor: pointer; color: var(--ink);
  width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  transition: color .25s; padding: 0; line-height: 0;
}
.cart-btn:hover { color: var(--burgundy); }
.cart-btn svg { width: 21px; height: 21px; display: block; }
.cart-count {
  position: absolute; top: -6px; right: -8px; background: var(--burgundy); color: var(--cream);
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500; width: 16px; height: 16px;
  border-radius: 50%; display: none; align-items: center; justify-content: center;
  line-height: 1; pointer-events: none;
}
.hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink); line-height: 1; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 84px 0 auto 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 6px 0; border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 17px; }
  .hamburger { display: block; }
}

/* ---------- Hero — restrained, editorial ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(42,26,26,.82) 0%, rgba(61,14,24,.5) 42%, rgba(61,14,24,.12) 78%, rgba(61,14,24,0) 100%); }
.hero .wrap { max-width: none; margin: 0; padding-left: clamp(28px, 5vw, 90px); padding-right: 34px; }
.hero-inner { position: relative; z-index: 2; max-width: 470px; margin: 0; }
.hero h1 { color: var(--cream); margin: 6px 0 18px; font-weight: 500; font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
.hero .devanagari { color: var(--gold-soft); font-size: 1.3rem; display: block; margin-bottom: 20px; letter-spacing: .12em; }
.hero p.lead { font-size: 0.82rem; font-weight: 300; color: rgba(250,245,234,.9); max-width: 440px; margin-bottom: 28px; line-height: 1.85; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--cream); border-color: rgba(250,245,234,.45); }
.hero .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------- Product grid ---------- */
.grid { display: grid; gap: 40px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: transparent; overflow: hidden; transition: transform .4s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); }
.card-media { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream-2); }
.card-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.card-slider { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.card-slider::-webkit-scrollbar { display: none; }
.card-slider img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: center; }
.cs-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(253,248,242,.85); color: var(--ink); font-family: var(--sans); font-size: 1.2rem; line-height: 1; cursor: pointer; opacity: 0; transition: opacity .25s, background .2s; display: flex; align-items: center; justify-content: center; padding: 0; }
.card:hover .cs-arrow { opacity: 1; }
.cs-arrow:hover { background: var(--cream); }
.cs-prev { left: 8px; } .cs-next { right: 8px; }
.cs-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; gap: 5px; justify-content: center; z-index: 3; pointer-events: none; }
.cs-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 0 2px rgba(0,0,0,.35); transition: background .2s; }
.cs-dots span.on { background: #fff; }
@media (hover: none) { .cs-arrow { display: none; } }
.card-body { padding: 15px 2px 4px; display: flex; flex-direction: column; flex: 1; text-align: center; }
.card-cat { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.card-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin: 6px 0 2px; }
.card-sub { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 10px; font-weight: 300; letter-spacing: .02em; }
.card-dispatch { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.72rem; letter-spacing: .04em; color: var(--ink-soft); font-weight: 400; margin-bottom: 14px; }
.card-dispatch.in { color: var(--green); } .card-dispatch.mto { color: var(--gold); }
.card-foot { margin-top: 2px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-direction: column; }
.price { font-family: var(--serif); font-size: 1.4rem; color: var(--burgundy); font-weight: 500; }
.price small { font-size: .68rem; color: var(--ink-soft); font-family: var(--sans); font-weight: 300; letter-spacing: .03em; }

/* ---------- Stock badges — quiet ---------- */
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  padding: 7px 13px; border-radius: 100px; color: var(--cream); background: rgba(61,14,24,.82); backdrop-filter: blur(3px);
}
.badge.in { background: rgba(74,107,77,.9); }
.badge.mto { background: rgba(184,138,66,.92); color: var(--white); }
.badge.out { background: rgba(122,106,90,.9); }
.badge.rent { background: rgba(61,14,24,.85); }
.stock-line { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 400; letter-spacing: .04em; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot.in { background: var(--green); } .dot.mto { background: var(--gold); } .dot.out { background: var(--ink-soft); }
.stock-line.in { color: var(--green); } .stock-line.mto { color: var(--gold); } .stock-line.out { color: var(--ink-soft); }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; justify-content: center; }
.chip {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400;
  padding: 10px 22px; border-radius: 100px; border: 1px solid var(--line); background: transparent;
  cursor: pointer; color: var(--ink-soft); transition: all .25s;
}
.chip:hover { border-color: var(--burgundy); color: var(--burgundy); }
.chip.active { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

/* ---------- Page banner ---------- */
.page-banner { background: var(--burgundy); color: var(--cream); padding: 92px 0 82px; text-align: center; }
.page-banner h1 { color: var(--cream); }
.page-banner .devanagari { color: var(--gold-soft); }
.page-banner p { max-width: 540px; margin: 18px auto 0; color: rgba(250,245,234,.82); font-weight: 300; }
.breadcrumb { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 30px; }
.breadcrumb a:hover { color: var(--burgundy); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 36px; } }
.pdp-gallery { position: sticky; top: 100px; }
@media (max-width: 900px) { .pdp-gallery { position: static; } }
.pdp-media { position: relative; overflow: hidden; box-shadow: var(--shadow); }
.pdp-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumbs img { width: 72px; height: 96px; object-fit: cover; cursor: pointer; border: 1px solid var(--line); opacity: .65; transition: opacity .2s, border-color .2s; }
.pdp-thumbs img:hover { opacity: 1; }
.pdp-thumbs img.active { opacity: 1; border-color: var(--burgundy); }
.pdp h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin: 8px 0 4px; }
.pdp .price { font-size: 1.8rem; margin: 20px 0; display: block; }
.size-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 6px; }
.size-opt {
  min-width: 56px; padding: 13px 9px; border: 1px solid var(--line); border-radius: var(--radius);
  text-align: center; cursor: pointer; background: var(--white); transition: all .25s; position: relative;
}
.size-opt .sz { font-weight: 500; font-size: .82rem; }
.size-opt .st { font-size: .54rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; color: var(--ink-soft); }
.size-opt:hover { border-color: var(--burgundy); }
.size-opt.active { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
.size-opt.active .st { color: rgba(250,245,234,.7); }
.meta-list { list-style: none; margin: 26px 0; border-top: 1px solid var(--line); }
.meta-list li { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 300; }
.meta-list li span:first-child { color: var(--ink-soft); letter-spacing: .04em; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(42,26,26,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .35s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 410px; max-width: 90vw; background: var(--cream);
  z-index: 201; transform: translateX(100%); transition: transform .4s ease; display: flex; flex-direction: column;
  box-shadow: -14px 0 50px rgba(61,14,24,.16);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; }
.drawer-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink); line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 14px 28px; }
.drawer-foot { padding: 22px 28px; border-top: 1px solid var(--line); }
.cart-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 68px; height: 88px; object-fit: cover; }
.cart-item .ci-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.cart-item .ci-meta { font-size: .7rem; color: var(--ink-soft); margin: 2px 0 6px; letter-spacing: .03em; }
.cart-item .ci-price { font-weight: 400; color: var(--burgundy); font-size: .9rem; font-family: var(--serif); }
.ci-remove { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: .68rem; text-decoration: underline; margin-left: auto; align-self: flex-start; letter-spacing: .04em; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 70px 20px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; margin-bottom: 18px; }
.cart-total .price { font-size: 1.5rem; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 54px; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: .9rem; font-weight: 300; background: var(--white); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--burgundy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; align-self: start; }
.summary-line { display: flex; justify-content: space-between; padding: 9px 0; font-size: .88rem; font-weight: 300; }
.summary-line.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 1.05rem; font-weight: 500; font-family: var(--serif); }
.pay-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; color: var(--ink-soft); margin-top: 16px; letter-spacing: .03em; }
.pay-methods { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pay-methods span { font-size: .58rem; border: 1px solid var(--line); border-radius: 3px; padding: 5px 9px; color: var(--ink-soft); font-weight: 400; letter-spacing: .06em; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step-num { font-family: var(--serif); font-size: 2.8rem; color: var(--gold); line-height: 1; font-weight: 500; }
.step h4 { margin: 12px 0 8px; font-weight: 500; }
.step p { font-size: .94rem; color: var(--ink-soft); font-weight: 300; }

/* ---------- Services — three equal cards ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.svc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 36px; transition: all .35s; display: flex; flex-direction: column; }
.svc:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc h3 { color: var(--burgundy); margin: 6px 0 2px; font-weight: 500; }
.svc .svc-tag { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.svc .svc-lead { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; }
.svc p { font-size: .95rem; color: var(--ink-soft); margin: 4px 0 24px; font-weight: 300; flex: 1; }

/* ---------- Reassurance strip ---------- */
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reassure span { flex: 1; min-width: 180px; text-align: center; padding: 20px 16px; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; border-left: 1px solid var(--line); }
.reassure span:first-child { border-left: none; }
@media (max-width: 640px) { .reassure span { flex: 1 1 50%; border-bottom: 1px solid var(--line); } }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 820px) { .story { grid-template-columns: 1fr; gap: 36px; } }
.story-img { overflow: hidden; box-shadow: var(--shadow); }
.story-img img { aspect-ratio: 4/5; object-fit: cover; }
.quote { font-family: var(--serif); font-style: italic; font-size: 1.6rem; font-weight: 500; color: var(--burgundy); border-left: 2px solid var(--gold); padding-left: 24px; margin: 28px 0; line-height: 1.5; }

/* ---------- Rental date box ---------- */
.rent-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.avail-msg { margin-top: 16px; padding: 13px 16px; border-radius: var(--radius); font-size: .82rem; font-weight: 400; display: none; }
.avail-msg.ok { display: block; background: rgba(74,107,77,.1); color: var(--green); border: 1px solid rgba(74,107,77,.3); }
.avail-msg.no { display: block; background: rgba(61,14,24,.06); color: var(--burgundy); border: 1px solid rgba(61,14,24,.2); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: var(--cream); padding: 15px 30px; border-radius: 100px;
  font-size: .82rem; font-weight: 300; letter-spacing: .03em; z-index: 300; transition: transform .4s ease; box-shadow: var(--shadow);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Footer ---------- */
.site-footer { background: var(--burgundy); color: var(--cream-2); padding: 74px 0 34px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.1fr 1fr; gap: 44px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer .brand { color: var(--cream); }
.site-footer .brand small { color: var(--gold-soft); }
.site-footer h5 { font-family: var(--sans); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; font-weight: 500; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: .86rem; font-weight: 300; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(250,245,234,.16); padding-top: 24px; font-size: .74rem; font-weight: 300; color: rgba(250,245,234,.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; letter-spacing: .04em; }

/* ---------- Info strip ---------- */
.info-strip { background: var(--burgundy); color: var(--cream-2); text-align: center; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 400; padding: 14px 16px; line-height: 1.5; }
.mb0 { margin-bottom: 0; }
.mt40 { margin-top: 40px; }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 30px; }
.legal h3 { color: var(--burgundy); font-size: 1.45rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); font-weight: 300; line-height: 1.9; }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--burgundy); text-decoration: underline; }
.legal strong { color: var(--ink); font-weight: 500; }
.legal .note { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; font-size: .88rem; margin: 8px 0 18px; }
