/* ============================================================
   NISHKA JEWELLERY — design system
   Palette keyed to brand logo: navy ink + soft rose + champagne gold
   Mobile-first. Base = phone; min-width queries scale up.
   ============================================================ */

:root {
  /* surfaces / paper */
  --bg: #FBF8F6;          /* warm off-white page */
  --bg-2: #F4EEEA;        /* slightly deeper paper for alt bands */
  --surface: #FFFFFF;     /* cards / tiles */

  /* ink */
  --ink: #1E2436;         /* primary text (logo navy family) */
  --navy: #28324A;        /* deep navy ink — headers/footer/dark sections */
  --navy-2: #1A2236;      /* darker navy for footers */
  --muted: #6B6675;       /* secondary text / captions */
  --muted-2: #938E9A;

  /* brand accents */
  --rose: #D85B7E;        /* Nishka soft rose — CTAs, links, active */
  --rose-deep: #C0466A;   /* hover */
  --rose-soft: #F6E4EA;   /* tints */
  --gold: #C4A05A;        /* muted champagne gold — hairlines/flourish */
  --gold-soft: #EADCC0;
  --maroon: #6E2237;      /* deep editorial maroon (from banner) */
  --maroon-2: #4E1626;

  /* lines */
  --border: #ECE6E2;
  --border-strong: #E0D8D2;
  --focus: #D85B7E;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* rhythm */
  --maxw: 1240px;
  --gutter: 20px;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(30,36,54,.05), 0 2px 8px rgba(30,36,54,.04);
  --shadow-md: 0 6px 24px rgba(30,36,54,.08), 0 2px 6px rgba(30,36,54,.05);
  --shadow-lg: 0 18px 50px rgba(30,36,54,.13);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.08; color: var(--ink); letter-spacing: .2px; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: .3px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow.both::after {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { justify-content: center; }

.lede { font-size: 17px; color: var(--muted); line-height: 1.7; }

.serif-quote { font-family: var(--serif); font-style: italic; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }

.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(30px, 7vw, 46px); }
.section-head p { margin: 14px 0 0; color: var(--muted); font-size: 16px; }

/* gold hairline divider with diamond */
.hairline { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--gold); }
.hairline::before, .hairline::after { content: ""; height: 1px; width: 46px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hairline::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hairline .dia { width: 7px; height: 7px; background: var(--rose); transform: rotate(45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 14.5px;
  letter-spacing: .02em;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  min-height: 48px; transition: all .25s var(--ease); white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 6px 18px rgba(216,91,126,.28); }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(216,91,126,.34); }
.btn-ink { background: var(--navy); color: #fff; }
.btn-ink:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 6px 18px rgba(31,168,85,.26); }
.btn-wa:hover { background: #17924a; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; min-height: 40px; font-size: 13.5px; }
.btn-gold { background: var(--gold); color: #2a2110; }
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  letter-spacing: .02em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); color: var(--rose); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow.on-dark { color: #fff; }

/* restyled section 'view all' pill */
.btn.view-all { background: #fff; border-color: var(--gold-soft); color: var(--ink); padding-left: 20px; padding-right: 18px; }
.btn.view-all svg { color: var(--rose); }
.btn.view-all:hover { border-color: var(--gold); color: var(--maroon); background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,246,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta-desktop { display: none; }

.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); color: var(--ink);
}
.nav-burger svg { width: 22px; height: 22px; }

.nav-wa-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 999px;
  background: #1FA855; color: #fff; box-shadow: 0 4px 12px rgba(31,168,85,.25);
}
.nav-wa-icon svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(26,34,54,.45); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(86vw, 360px); background: var(--bg);
  transform: translateX(100%); transition: transform .38s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.drawer-top img { height: 52px; }
.drawer-close { width: 44px; height: 44px; border-radius: 999px; background: #fff; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
.drawer-close svg { width: 20px; height: 20px; }
.drawer-nav { padding: 12px 12px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 14px; border-radius: 10px; font-family: var(--serif);
  font-size: 24px; font-weight: 600; color: var(--ink);
}
.drawer-link:hover, .drawer-link.active { background: #fff; color: var(--rose); }
.drawer-link .idx { font-family: var(--sans); font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: .1em; }
.drawer-foot { margin-top: auto; padding: 18px 20px 26px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.drawer-contact { font-size: 13.5px; color: var(--muted); text-align: center; }
.drawer-contact a { color: var(--ink); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--bg); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; }
.hero-copy { padding: 40px var(--gutter) 30px; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero h1 { font-size: clamp(44px, 13.5vw, 70px); font-weight: 500; letter-spacing: .5px; }
.hero h1 em { font-style: italic; color: var(--rose); font-weight: 500; }
.hero-sub { margin: 20px 0 26px; font-size: 16.5px; color: var(--muted); max-width: 46ch; line-height: 1.7; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; }
.hero-cta .btn { width: 100%; }
.hero-media { position: relative; min-height: 380px; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame-line { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.5); pointer-events: none; z-index: 2; }
.hero-badge {
  position: absolute; left: var(--gutter); bottom: 18px; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 9px 16px 9px 12px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; color: var(--ink);
}
.hero-badge .dot { width: 26px; height: 26px; border-radius: 999px; background: var(--rose-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--rose); }
.hero-badge .dot svg { width: 15px; height: 15px; }

/* ---------- trust strip ---------- */
.trust { background: var(--navy); color: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.1); }
.trust-cell { background: var(--navy); padding: 22px 16px; text-align: center; }
.trust-cell .t-ic { color: var(--gold); display: flex; justify-content: center; margin-bottom: 10px; }
.trust-cell .t-ic svg { width: 24px; height: 24px; }
.trust-cell .t-k { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.trust-cell .t-d { font-size: 12px; color: rgba(255,255,255,.66); letter-spacing: .04em; margin-top: 3px; }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.cat-card {
  position: relative; display: block; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/4; background: var(--bg-2);
  box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,30,46,.72) 0%, rgba(26,30,46,.12) 45%, transparent 70%); }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card:hover img { transform: scale(1.06); }
.cat-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px; color: #fff; }
.cat-meta .c-name { font-family: var(--serif); font-size: 23px; font-weight: 600; line-height: 1.1; }
.cat-meta .c-go { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.cat-meta .c-go svg { width: 13px; height: 13px; }
.cat-card.tall { grid-column: span 2; aspect-ratio: 3/4; }
.cat-card.tall .c-name { font-size: 23px; }

/* ============================================================
   PRODUCT CARD / GRID
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.prod-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-strong); }
.prod-media { position: relative; aspect-ratio: 1/1; background: linear-gradient(150deg,#fff, #faf6f3); overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--rose);
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.prod-fav { position: absolute; top: 8px; right: 8px; z-index: 2; width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,.9); border: none; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); box-shadow: var(--shadow-sm); transition: color .2s, transform .2s; }
.prod-fav svg { width: 17px; height: 17px; }
.prod-fav:hover { transform: scale(1.1); color: var(--rose); }
.prod-fav.on { color: var(--rose); }
.prod-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod-coll { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.prod-name { font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.15; color: var(--ink); }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 2px; }
.prod-foot { margin-top: auto; padding-top: 12px; display: flex; gap: 8px; }
.prod-foot .btn { flex: 1; }
.prod-enquire { font-size: 12.5px; color: var(--muted); font-style: italic; font-family: var(--serif); }

/* ============================================================
   FEATURED CAROUSEL
   ============================================================ */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 0 16px; margin: 0 calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter);
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item { scroll-snap-align: start; flex: 0 0 78%; max-width: 320px; display: flex; }
.carousel-item .prod-card { width: 100%; height: 100%; }
.carousel-nav { display: none; gap: 8px; }
.car-btn { width: 44px; height: 44px; border-radius: 999px; background: #fff; border: 1px solid var(--border-strong); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.car-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.car-btn svg { width: 18px; height: 18px; }

/* ============================================================
   OCCASIONS
   ============================================================ */
.occ-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.occ-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; display: block; box-shadow: var(--shadow-sm); }
.occ-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.occ-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(78,22,38,.78) 0%, rgba(78,22,38,.35) 45%, rgba(78,22,38,.05) 75%); }
.occ-card:hover img { transform: scale(1.05); }
.occ-meta { position: absolute; inset: 0; z-index: 2; padding: 22px; display: flex; flex-direction: column; justify-content: center; color: #fff; max-width: 80%; }
.occ-meta .o-k { font-family: var(--serif); font-size: 27px; font-weight: 600; }
.occ-meta .o-d { font-size: 13.5px; opacity: .9; margin-top: 4px; line-height: 1.5; }
.occ-meta .o-go { margin-top: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; color: var(--gold-soft); }
.occ-meta .o-go svg { width: 14px; height: 14px; }

/* ============================================================
   EDITORIAL / ABOUT BANDS
   ============================================================ */
.editorial { background: var(--maroon); color: #fff; position: relative; overflow: hidden; }
.editorial .wrap { position: relative; z-index: 2; }
.edi-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.edi-media { position: relative; min-height: 320px; }
.edi-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 75% center; }
.edi-copy { padding: 40px var(--gutter) 48px; }
.edi-copy .eyebrow { color: var(--gold); margin-bottom: 16px; }
.edi-copy h2 { color: #fff; font-size: clamp(30px,8vw,46px); font-weight: 500; }
.edi-copy p { color: rgba(255,255,255,.82); margin: 16px 0; font-size: 16px; line-height: 1.7; }
.edi-quote { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-soft); line-height: 1.4; border-left: 2px solid var(--gold); padding-left: 18px; margin: 22px 0; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.gal-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); background: var(--bg-2); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }

/* ============================================================
   ENQUIRY / CTA BAND
   ============================================================ */
.cta-band { background: var(--navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(30px,8vw,48px); font-weight: 500; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 52ch; margin: 16px auto 0; font-size: 16px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; max-width: 380px; margin-left: auto; margin-right: auto; }
.cta-phone { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.7); }
.cta-phone a { color: #fff; font-weight: 600; }

/* ============================================================
   VISIT / BRANCHES
   ============================================================ */
.branch-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.branch-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; transition: box-shadow .3s var(--ease), border-color .3s; position: relative;
}
.branch-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.branch-card.flag { border-color: var(--gold); }
.branch-flag-tag { position: absolute; top: -10px; left: 20px; background: var(--gold); color: #2a2110; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.branch-city { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); font-weight: 600; }
.branch-name { font-family: var(--serif); font-size: 25px; font-weight: 600; margin-top: 6px; }
.branch-addr { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.6; display: flex; gap: 9px; }
.branch-addr svg { width: 17px; height: 17px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.branch-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.branch-actions .btn { flex: 1; min-width: 130px; }

.map-ph {
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(196,160,90,.05) 0 12px, transparent 12px 24px),
    var(--bg-2);
  min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); padding: 24px; gap: 8px;
}
.map-ph .m-ic { color: var(--gold); }
.map-ph .m-ic svg { width: 30px; height: 30px; }
.map-ph .m-t { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.map-ph .m-d { font-size: 13px; font-family: var(--sans); max-width: 30ch; }
.map-ph .m-mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11.5px; letter-spacing: .02em; color: var(--muted-2); background: #fff; border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; }

/* ---------- note / disclosure pill ---------- */
.note {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose-soft); color: var(--rose-deep);
  font-size: 12.5px; padding: 7px 14px; border-radius: 999px; font-weight: 500;
}
.note svg { width: 15px; height: 15px; }
.note.amber { background: #FBF1DF; color: #9A7430; }

/* ============================================================
   FORMS / APPOINTMENT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 120; background: rgba(26,34,54,.55);
  backdrop-filter: blur(4px); display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); padding: 0;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg); width: 100%; max-width: 520px; border-radius: 20px 20px 0 0;
  max-height: 92vh; overflow-y: auto; transform: translateY(20px); transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head { position: sticky; top: 0; background: var(--bg); padding: 22px 22px 14px; border-bottom: 1px solid var(--border); z-index: 2; }
.modal-head .m-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.modal-head .eyebrow { margin-bottom: 10px; }
.modal-head h3 { font-size: 27px; font-weight: 600; }
.modal-head p { margin: 6px 0 0; font-size: 13.5px; color: var(--muted); }
.modal-body { padding: 20px 22px 26px; }
.modal-close { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 999px; background: #fff; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
.modal-close svg { width: 20px; height: 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--rose); }
.input, .select, .textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: #fff; border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 13px 14px; transition: border-color .2s, box-shadow .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(216,91,126,.14); }
.textarea { resize: vertical; min-height: 90px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6675' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-or { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin: 18px 0; }
.form-or::before, .form-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .s-ic { width: 64px; height: 64px; border-radius: 999px; background: var(--rose-soft); color: var(--rose); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.form-success .s-ic svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--muted); margin: 10px 0 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: #fff; color: var(--ink); font-weight: 500; transition: all .2s; min-height: 38px; display:inline-flex; align-items:center;
}
.chip:hover { border-color: var(--rose); color: var(--rose); }
.chip.on { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ============================================================
   FILTER BAR (collections)
   ============================================================ */
.filter-bar {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px;
  margin: 0 calc(-1*var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter);
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-pill {
  flex: 0 0 auto; font-size: 14px; font-weight: 600; letter-spacing: .01em;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: #fff; color: var(--ink); transition: all .2s; min-height: 42px; white-space: nowrap;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.on { background: var(--navy); border-color: var(--navy); color: #fff; }

/* themed collection ribbon cards */
.coll-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.coll-row {
  display: grid; grid-template-columns: 120px 1fr; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s; min-height: 140px;
}
.coll-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.coll-row .c-img { position: relative; overflow: hidden; background: var(--bg-2); }
.coll-row .c-img img { width: 100%; height: 100%; object-fit: cover; }
.coll-row .c-txt { padding: 18px 18px; display: flex; flex-direction: column; justify-content: center; }
.coll-row .c-code { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.coll-row .c-ttl { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.1; margin-top: 4px; }
.coll-row .c-sub { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.coll-row .c-go { margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--rose); display: inline-flex; align-items: center; gap: 6px; }
.coll-row .c-go svg { width: 14px; height: 14px; }

/* page hero (interior pages) */
.page-hero { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 36px 0 30px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(36px, 10vw, 58px); font-weight: 500; }
.page-hero p { margin: 14px 0 0; color: var(--muted); font-size: 16px; max-width: 56ch; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--rose); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }
.crumbs .cur { color: var(--ink); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-2); color: #fff; padding: 52px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand img { height: 92px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.7; max-width: 38ch; }
.footer-soc { display: flex; gap: 10px; margin-top: 18px; }
.footer-soc a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; }
.footer-soc a:hover { background: var(--rose); border-color: var(--rose); }
.footer-soc svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.74); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding: 22px 0 34px; }
.footer-bottom .wrap { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 12.5px; margin: 0; line-height: 1.6; }
.footer-disc { font-size: 11.5px !important; color: rgba(255,255,255,.36) !important; max-width: 64ch; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr 1.4fr;
  gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(30,36,54,.08);
}
.mbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 11px; font-weight: 600; border-radius: 12px; padding: 8px 6px; min-height: 50px; transition: all .2s; line-height: 1; }
.mbar a svg { width: 20px; height: 20px; }
.mbar .m-call { background: #fff; border: 1px solid var(--border-strong); color: var(--ink); }
.mbar .m-wa { background: #eaf7ef; color: #1FA855; }
.mbar .m-appt { background: var(--rose); color: #fff; flex-direction: row; gap: 7px; font-size: 13px; }
.mbar .m-appt svg { width: 17px; height: 17px; }

/* WhatsApp FAB (desktop) */
.wa-fab { display: none; }

/* page padding so content clears mobile bar */
.has-mbar { padding-bottom: 78px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (min-width: 640px) {
  :root { --gutter: 28px; }
  .section { padding: 72px 0; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
  .hero-cta .btn { width: auto; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .cat-card.tall { grid-column: span 3; }
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .occ-grid { grid-template-columns: repeat(2,1fr); }
  .gal-grid { grid-template-columns: repeat(4,1fr); }
  .carousel-item { flex: 0 0 46%; }
  .cta-actions { flex-direction: row; justify-content: center; max-width: none; }
  .cta-actions .btn { width: auto; }
  .trust-inner { grid-template-columns: repeat(4,1fr); }
  .branch-grid { grid-template-columns: repeat(2,1fr); }
  .footer-cols { grid-template-columns: repeat(3,1fr); }
  .coll-row { grid-template-columns: 200px 1fr; }
  .field-row.two { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* ============================================================
   RESPONSIVE — desktop
   ============================================================ */
@media (min-width: 980px) {
  :root { --gutter: 40px; }
  .nav { }
  .nav-inner { height: 84px; }
  .nav-logo img { height: 70px; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-link { padding: 10px 16px; font-size: 14.5px; font-weight: 500; color: var(--ink); border-radius: 999px; letter-spacing: .01em; position: relative; transition: color .2s; }
  .nav-link:hover { color: var(--rose); }
  .nav-link.active { color: var(--rose); }
  .nav-link.active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; background: var(--rose); border-radius: 2px; }
  .nav-burger { display: none; }
  .nav-cta-desktop { display: inline-flex; }
  .nav-wa-icon { display: none; }

  .hero-grid { grid-template-columns: 1.04fr 1fr; align-items: stretch; min-height: 600px; }
  .hero-copy { padding: 76px 0 76px 0; display: flex; flex-direction: column; justify-content: center; padding-left: max(40px, calc((100vw - var(--maxw))/2 + 40px)); padding-right: 56px; }
  .hero-media { min-height: 100%; }
  .hero-badge { left: 36px; bottom: 36px; }

  .section { padding: 92px 0; }
  .prod-grid { grid-template-columns: repeat(4,1fr); }
  .cat-grid { grid-template-columns: repeat(5,1fr); }
  .cat-card.tall { grid-column: span 1; aspect-ratio: 3/4; }
  .occ-grid { grid-template-columns: repeat(3,1fr); }
  .carousel-item { flex: 0 0 30%; }
  .carousel-nav { display: flex; }
  .branch-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1.4fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3,1fr); }

  .editorial .edi-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .edi-media { min-height: 520px; }
  .edi-copy { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }

  .mbar { display: none; }
  .has-mbar { padding-bottom: 0; }
  .wa-fab {
    display: inline-flex; position: fixed; right: 28px; bottom: 28px; z-index: 70;
    width: 60px; height: 60px; border-radius: 999px; background: #1FA855; color: #fff;
    align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(31,168,85,.4);
    transition: transform .25s var(--ease);
  }
  .wa-fab:hover { transform: scale(1.07); }
  .wa-fab svg { width: 30px; height: 30px; }

  .modal-overlay { align-items: center; padding: 24px; }
  .modal { border-radius: 18px; }

  .map-ph { min-height: 420px; }
  .section-head h2 { font-size: clamp(34px, 4vw, 50px); }

  .about-split { grid-template-columns: 1fr 1fr; align-items: center; gap: 56px !important; }
  .visit-split { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
}

@media (min-width: 1240px) {
  .gal-grid { grid-template-columns: repeat(6,1fr); }
}
