/* ============================================================
   PURE ALLURE — Kochi Contemporary Non-Gold Jewellery
   Site crafted by Shijil Kumar · digitalshijil.com
   ============================================================ */

:root {
  /* Palette: modern-feminine blush/champagne + matte gold + ivory
     Brand: Mrudula Murali · Kundan · Polki · Zirconia · Panampilly Nagar, Kochi */
  --ink: #1C1614;
  --ink-soft: #3A2E2A;
  --paper: #FBF5EE;
  --paper-warm: #F5EAD5;
  --paper-deep: #EDE0CC;
  --teal: #7A3250;          /* deep plum-rose — CTAs, dark bands */
  --teal-deep: #511F35;     /* deeper plum */
  --teal-soft: #A04E72;     /* soft rose */
  --gold: #C2A462;          /* matte gold */
  --gold-deep: #8A6E3A;     /* WCAG AA on cream */
  --gold-light: #DDD0A8;    /* champagne highlight */
  --emerald: #7A3250;
  --emerald-light: #A04E72;
  --sage: #E8CBBE;          /* warm blush accent */
  --wine: #7A3250;

  --rule: rgba(28, 22, 20, 0.12);
  --rule-gold: rgba(194, 164, 98, 0.36);
  --rule-ivory: rgba(251, 245, 238, 0.18);

  --display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--teal); color: var(--paper); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.04;
}
.display em, .display i { font-style: italic; font-weight: 400; color: var(--gold-deep); }

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
}
.lede em { font-style: italic; color: var(--teal); }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tag { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.section-tag::before { content: ""; width: 32px; height: 1px; background: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(245, 240, 230, 0.0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(12px) saturate(140%);
  padding: 12px 0;
  border-bottom-color: var(--rule);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand .since {
  font-family: var(--mono); font-size: 9px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  margin-left: 6px;
  padding: 4px 8px;
  border: 1px solid var(--rule-gold);
}
.nav.scrolled .brand .since { color: var(--gold-deep); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta {
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 10px 18px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--teal); color: var(--paper); }
.hamburger { display: none; width: 28px; height: 18px; position: relative; }
.hamburger span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  flex: 1;
}
.hero-copy { padding-right: 20px; }
.hero-mono-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 30px;
  color: var(--gold-deep);
}
.hero-mono-row::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin-left: 6px; max-width: 180px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--teal); font-weight: 400; }
.hero h1 .since {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.5em;
  color: var(--gold-deep);
  margin-top: 16px;
  font-weight: 300;
}
.hero-sub {
  font-size: 16px; line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  color: var(--ink-soft);
}
.hero-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--teal);
  color: var(--paper);
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s ease, transform .25s ease;
}
.btn-primary:hover { background: var(--teal-deep); }
.btn-primary .arr { transition: transform .25s ease; }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 4px;
  border-bottom: 1px solid var(--ink);
}
.btn-ghost:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(0.92) brightness(0.96);
  transform: scale(1.02);
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(81, 31, 53, 0.15);
  pointer-events: none;
}
.hero-image-cap {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(81, 31, 53, 0.92);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 36px;
  margin-top: 60px;
  border-top: 1px solid var(--rule);
}
.hero-meta-row .cell { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-row .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 30px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.hero-meta-row .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   HERITAGE STRIP
   ============================================================ */
.heritage {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 24px 0;
  overflow: hidden;
}
.heritage-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.heritage-row .item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
}
.heritage-row .item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story-aside { position: sticky; top: 100px; }
.story-aside .eyebrow { margin-bottom: 20px; display: block; }
.story-aside h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.story-aside h2 em { font-style: italic; color: var(--teal); }
.story-aside .ornament { margin: 28px 0; opacity: 0.5; }

.story-body p {
  font-family: var(--display);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.story-body p strong { color: var(--ink); font-weight: 500; }
.story-body p:first-child::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 5.5em;
  line-height: 0.86;
  padding-right: 14px;
  padding-top: 8px;
  font-weight: 400;
  color: var(--teal);
  font-style: italic;
}
.story-timeline {
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.story-timeline .yr {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.story-timeline .yr-cap {
  font-size: 12px; line-height: 1.45;
  color: var(--ink-soft);
}

/* ============================================================
   BRIDAL (Engagement & Bridal centerpiece)
   ============================================================ */
.bridal { background: var(--teal); color: var(--paper); position: relative; }
.bridal .eyebrow { color: var(--gold-light); }
.bridal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.bridal-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 18px 0 28px;
  color: var(--paper);
}
.bridal-copy h2 em { font-style: italic; color: var(--gold-light); }
.bridal-copy p {
  font-size: 16px; line-height: 1.75;
  color: rgba(245, 240, 230, 0.82);
  margin-bottom: 22px;
  max-width: 540px;
}
.bridal-pillars {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  border-top: 1px solid var(--rule-ivory);
  padding-top: 32px;
}
.bridal-pillars .p { }
.bridal-pillars .p .ph {
  font-family: var(--display);
  font-size: 22px; font-style: italic;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.bridal-pillars .p .pb {
  font-size: 13.5px; line-height: 1.6;
  color: rgba(245, 240, 230, 0.74);
}
.bridal-img {
  aspect-ratio: 3 / 4;
  background: var(--teal-deep);
  overflow: hidden;
  position: relative;
}
.bridal-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95) saturate(0.9); }
.bridal-img-cap {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(245, 240, 230, 0.95);
  color: var(--teal-deep);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   CUSTOM PROCESS
   ============================================================ */
.process { background: var(--paper-warm); }
.process-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.process-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.process-head h2 em { font-style: italic; color: var(--teal); }
.process-head .sub { color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 460px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.process-step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.process-step p {
  font-size: 14px; line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.process-step .dur {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.process-foot {
  margin-top: 40px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { background: var(--paper); }
.collections-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 70px; flex-wrap: wrap;
}
.collections-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.collections-head h2 em { font-style: italic; color: var(--teal); }
.collections-head .right {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 36px;
}
.coll-card {
  display: flex; flex-direction: column;
  position: relative;
}
.coll-img {
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.coll-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  filter: contrast(1.03) saturate(0.95);
}
.coll-card:hover .coll-img img { transform: scale(1.04); }
.coll-img .num {
  position: absolute; top: 16px; left: 16px;
  background: var(--paper);
  color: var(--teal);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.coll-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.coll-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
  flex: 1;
}
.coll-card .from {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   RECENT CUSTOM (Gallery)
   ============================================================ */
.recent { background: var(--paper-warm); }
.recent-head {
  text-align: center;
  margin-bottom: 70px;
}
.recent-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px auto 18px;
  max-width: 700px;
}
.recent-head h2 em { font-style: italic; color: var(--teal); }
.recent-head .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}
.recent-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
}
.r-cell { position: relative; overflow: hidden; background: var(--paper-deep); }
.r-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.r-cell:hover img { transform: scale(1.06); }
.r-cell .cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(81, 31, 53, 0.88), rgba(81, 31, 53, 0));
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
}
.r-cell .cap .tag {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.r-cell.r-1 { grid-column: span 5; grid-row: span 4; }
.r-cell.r-2 { grid-column: span 4; grid-row: span 2; }
.r-cell.r-3 { grid-column: span 3; grid-row: span 3; }
.r-cell.r-4 { grid-column: span 4; grid-row: span 2; }
.r-cell.r-5 { grid-column: span 4; grid-row: span 3; }
.r-cell.r-6 { grid-column: span 4; grid-row: span 3; }
.r-cell.r-7 { grid-column: span 4; grid-row: span 3; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.voices { background: var(--ink); color: var(--paper); }
.voices .eyebrow { color: var(--gold-light); }
.voices-head { text-align: center; margin-bottom: 70px; }
.voices-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0;
  color: var(--paper);
}
.voices-head h2 em { font-style: italic; color: var(--gold-light); }
.voices-stats {
  display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px);
  margin-top: 30px;
  flex-wrap: wrap;
}
.voices-stats .vs {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.voices-stats .vs .vn {
  font-family: var(--display);
  font-weight: 300;
  font-size: 38px;
  color: var(--gold-light);
}
.voices-stats .vs .vl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.65);
}

.voices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.voice {
  padding: 40px 36px;
  border: 1px solid rgba(245, 240, 230, 0.12);
  background: rgba(245, 240, 230, 0.02);
  position: relative;
}
.voice::before {
  content: "“";
  position: absolute; top: 8px; left: 24px;
  font-family: var(--display);
  font-size: 90px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  font-style: italic;
}
.voice .q {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 28px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.voice .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
}
.voice .who .name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.voice .who .ctx {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
}
.voice .who .sep { color: rgba(245, 240, 230, 0.3); }
.voices-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.45);
}

/* ============================================================
   BOOK A VISIT (Form)
   ============================================================ */
.book { background: var(--paper); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.book-aside h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
}
.book-aside h2 em { font-style: italic; color: var(--teal); }
.book-aside p {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 420px;
}
.book-aside .phone {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}
.book-aside .phone .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.book-aside .phone .num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: -0.01em;
}

.book-form {
  background: var(--paper-warm);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--rule);
}
.book-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 90px; }
.book-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   VISIT US (Map + info)
   ============================================================ */
.visit { background: var(--ink); color: var(--paper); padding-top: 0; padding-bottom: 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 540px;
}
.visit-map {
  background: var(--ink);
  position: relative;
}
.visit-map iframe {
  width: 100%; height: 100%; min-height: 540px;
  border: 0;
  filter: grayscale(0.6) contrast(1.1) brightness(0.85);
}
.visit-info {
  padding: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 60px);
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.visit-info .eyebrow { color: var(--gold-light); margin-bottom: 18px; }
.visit-info h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.visit-info h2 em { font-style: italic; color: var(--gold-light); }
.visit-info .block { margin-bottom: 26px; }
.visit-info .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.visit-info .val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--paper);
  line-height: 1.4;
}
.visit-info .val a:hover { color: var(--gold-light); }
.visit-info .hours-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.visit-info .hours-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
  font-size: 14px;
}
.visit-info .hours-list li .d { color: rgba(245, 240, 230, 0.7); font-family: var(--body); }
.visit-info .hours-list li .t { color: var(--paper); font-family: var(--display); font-style: italic; font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--teal-deep);
  color: rgba(245, 240, 230, 0.7);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-brand .brand-large {
  font-family: var(--display);
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 14px;
  font-weight: 400;
}
.foot-brand .since-small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.foot-brand p {
  font-size: 13.5px; line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a { font-size: 14px; color: rgba(245, 240, 230, 0.7); }
.foot-col ul li a:hover { color: var(--gold-light); }
.foot-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.foot-bottom a { color: rgba(245, 240, 230, 0.7); }
.foot-bottom a:hover { color: var(--gold-light); }
.foot-credit { color: var(--gold-light) !important; }

/* ============================================================
   ORNAMENTS (inline SVG sizing)
   ============================================================ */
.orn-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 16px 0;
}
.orn-rule .line { height: 1px; flex: 1; max-width: 80px; background: var(--gold); opacity: 0.6; }
.orn-rule svg { width: 16px; height: 16px; }

/* ============================================================
   REVEAL ANIMATIONS — FALLBACK SAFE
   Class only applied via JS AFTER offscreen check.
   If JS fails, content remains visible.
   ============================================================ */
.reveal--hidden { opacity: 0; transform: translateY(28px); }
.reveal--shown {
  opacity: 1; transform: translateY(0);
  transition: opacity 1.0s cubic-bezier(.2,.7,.2,1), transform 1.0s cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 3/4; max-height: 70vh; }
  .hero-copy { padding-right: 0; }
  .hero-meta-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-aside { position: static; }
  .story-timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bridal-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-head { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step { padding-right: 28px; border-bottom: 1px solid var(--rule); }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
  .coll-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .recent-grid { grid-auto-rows: 110px; gap: 12px; }
  .voices-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { min-height: 360px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .nav { padding: 14px 0; }
  .brand { font-size: 18px; }
  .brand .since { font-size: 8px; }
  .hero { padding-top: 90px; min-height: auto; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero h1 .since { font-size: 0.46em; }
  .hero-mono-row::after { display: none; }
  .hero-cta-row { gap: 16px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: space-between; }
  .hero-meta-row { grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 28px; margin-top: 40px; }
  .hero-meta-row .num { font-size: 24px; }
  .heritage { padding: 18px 0; }
  .heritage-row { gap: 14px; }
  .heritage-row .item { font-size: 14px; gap: 10px; }
  .story-body p { font-size: 17px; }
  .story-body p:first-child::first-letter { font-size: 4.2em; }
  .story-timeline { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .story-timeline .yr { font-size: 22px; }
  .bridal-pillars { grid-template-columns: 1fr; gap: 18px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; padding-bottom: 28px; }
  .process-step:last-child { border-bottom: none; }
  .collections-head { gap: 20px; }
  .coll-grid { grid-template-columns: 1fr; gap: 40px; }
  .recent-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .r-cell.r-1 { grid-column: span 6; grid-row: span 3; }
  .r-cell.r-2 { grid-column: span 6; grid-row: span 2; }
  .r-cell.r-3 { grid-column: span 3; grid-row: span 2; }
  .r-cell.r-4 { grid-column: span 3; grid-row: span 2; }
  .r-cell.r-5 { grid-column: span 6; grid-row: span 2; }
  .r-cell.r-6 { grid-column: span 3; grid-row: span 2; }
  .r-cell.r-7 { grid-column: span 3; grid-row: span 2; }
  .voice { padding: 28px 22px; }
  .voice .q { font-size: 17px; }
  .book-form { padding: 24px; }
  .book-form .row { grid-template-columns: 1fr; gap: 0; }
  .visit-info { padding: 40px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
