/* ==========================================================================
   Subachi Shri — Glass Atelier (Variant C)
   Awwwards-grade design system
   ========================================================================== */

:root {
  --color-offwhite: #f7f4ef;
  --color-forest: #1f3a2e;
  --color-forest-soft: #2d4a3c;
  --color-gold: #c9a96a;
  --color-gold-light: #d9bd87;
  --color-champagne: #e8d5a8;
  --color-cream: #faf7f2;
  --color-ink: #1f3a2e;
  --color-muted: #6a7a72;

  --font-display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'DM Mono', 'JetBrains Mono', 'Courier New', monospace;

  --radius-soft: 24px;
  --radius-card: 20px;
  --radius-pill: 999px;

  --shadow-glass: 0 4px 30px rgba(31, 58, 46, 0.08);
  --shadow-glass-hover: 0 8px 40px rgba(31, 58, 46, 0.12);
  --shadow-deep: 0 24px 60px rgba(31, 58, 46, 0.18);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --container-max: 1400px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--color-offwhite);
  color: var(--color-ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font-family: inherit; font-size: 1rem; }

a, button { -webkit-tap-highlight-color: rgba(201, 169, 106, 0.18); }

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

/* Gold-foil texture overlay (subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201, 169, 106, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(232, 213, 168, 0.05), transparent 50%);
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

/* ==========================================================================
   Typography
   ========================================================================== */

.display, h1.display, h2.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-forest);
  line-height: 0.95;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest);
  font-weight: 500;
}

.muted { color: var(--color-muted); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--color-forest-soft);
  max-width: 56ch;
}

p { max-width: 64ch; }

h1, h2, h3, h4 { color: var(--color-forest); }

h1 { font-family: var(--font-display); font-style: italic; font-weight: 400; line-height: 1; letter-spacing: -0.01em; font-size: clamp(3rem, 9vw, 7rem); }
h2 { font-family: var(--font-display); font-style: italic; font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; font-size: clamp(2.2rem, 5vw, 3.5rem); }
h3 { font-family: var(--font-body); font-weight: 500; line-height: 1.25; font-size: clamp(1.15rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(60px, 9vw, 130px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }

.grid { display: grid; gap: clamp(16px, 2vw, 28px); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }

.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.spacer-lg { height: 96px; }

/* ==========================================================================
   Sticky Nav
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: background 0.3s var(--ease-out-expo), border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(247, 244, 239, 0.92);
  border-bottom-color: rgba(31, 58, 46, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.nav__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-forest);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav__brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  display: inline-block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-forest);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--color-gold); }

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-forest);
  color: var(--color-offwhite);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.nav__cta:hover { background: var(--color-forest-soft); transform: translateY(-1px); }
.nav__cta svg { width: 14px; height: 14px; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(31, 58, 46, 0.15);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-forest);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--color-forest);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* ==========================================================================
   Glass Card
   ========================================================================== */

.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(201, 169, 106, 0.25);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-glass);
  padding: clamp(24px, 3vw, 40px);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass-hover);
  border-color: rgba(201, 169, 106, 0.4);
}

.glass-card--cream { background: rgba(250, 247, 242, 0.7); }
.glass-card--champagne { background: rgba(232, 213, 168, 0.45); }
.glass-card--ink { background: rgba(31, 58, 46, 0.85); color: var(--color-offwhite); border-color: rgba(201, 169, 106, 0.3); }
.glass-card--ink h1, .glass-card--ink h2, .glass-card--ink h3, .glass-card--ink p { color: var(--color-offwhite); }
.glass-card--ink .mono { color: var(--color-champagne); }
.glass-card--ink .lead { color: rgba(247, 244, 239, 0.8); }

@supports not (backdrop-filter: blur(1px)) {
  .glass-card { background: rgba(247, 244, 239, 0.95); }
  .glass-card--ink { background: rgba(31, 58, 46, 0.97); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s var(--ease-out-expo);
  min-height: 44px;
  text-decoration: none;
  background: transparent;
  font-weight: 500;
}

.btn--primary {
  background: var(--color-forest);
  color: var(--color-offwhite);
  border-color: var(--color-forest);
}
.btn--primary:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-forest); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--color-forest);
  border-color: rgba(31, 58, 46, 0.25);
}
.btn--ghost:hover { border-color: var(--color-forest); background: rgba(31, 58, 46, 0.04); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
}
.btn--gold:hover { background: var(--color-forest); color: var(--color-gold); border-color: var(--color-forest); }

.btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Hero (index)
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: clamp(40px, 8vw, 100px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.85) brightness(1.05);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 244, 239, 0.4) 0%, rgba(247, 244, 239, 0.95) 100%),
    linear-gradient(90deg, rgba(247, 244, 239, 0.6) 0%, transparent 50%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 106, 0.08) 0%, transparent 40%, rgba(232, 213, 168, 0.06) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 16vw, 13rem);
  line-height: 0.85;
  color: var(--color-forest);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: var(--color-forest-soft);
  max-width: 28ch;
  margin-bottom: 32px;
  line-height: 1.4;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 106, 0.25);
  border-radius: var(--radius-pill);
}

.hero__trust-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__panel {
  position: relative;
}

/* ==========================================================================
   Bento Grid
   ========================================================================== */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: clamp(14px, 1.5vw, 22px);
}

.bento__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: var(--color-cream);
  border: 1px solid rgba(201, 169, 106, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  cursor: pointer;
}

.bento__tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-glass-hover); }

.bento__tile--1x1 { grid-column: span 1; grid-row: span 1; }
.bento__tile--2x1 { grid-column: span 2; grid-row: span 1; }
.bento__tile--1x2 { grid-column: span 1; grid-row: span 2; }
.bento__tile--2x2 { grid-column: span 2; grid-row: span 2; }
.bento__tile--3x2 { grid-column: span 3; grid-row: span 2; }
.bento__tile--4x1 { grid-column: span 4; grid-row: span 1; }

.bento__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease-out-expo);
}

.bento__tile:hover img { transform: scale(1.05); }

.bento__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 58, 46, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.bento__tile--no-photo::after { display: none; }

.bento__tile-content {
  position: relative;
  z-index: 2;
  color: var(--color-offwhite);
}

.bento__tile--no-photo .bento__tile-content { color: var(--color-forest); }
.bento__tile--ink-bg { background: var(--color-forest); }
.bento__tile--ink-bg .bento__tile-content { color: var(--color-offwhite); }
.bento__tile--ink-bg::after { display: none; }

.bento__tile--cream { background: var(--color-cream); }
.bento__tile--cream::after { display: none; }
.bento__tile--cream .bento__tile-content { color: var(--color-forest); }

.bento__tile--champagne { background: var(--color-champagne); }
.bento__tile--champagne::after { display: none; }
.bento__tile--champagne .bento__tile-content { color: var(--color-forest); }

.bento__tile-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento__tile--2x2 .bento__tile-title { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.bento__tile--1x2 .bento__tile-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.bento__tile-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.9;
}

.bento__tile-stat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.bento__tile--2x2 .bento__tile-stat { font-size: clamp(4rem, 10vw, 8rem); }

/* ==========================================================================
   Sections: Bridal Editorial
   ========================================================================== */

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.editorial--reverse > :first-child { order: 2; }

.editorial__photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.editorial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.editorial__panel {
  padding: clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.drop-cap::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5.5em;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--color-gold);
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--color-forest);
  text-align: center;
  letter-spacing: -0.02em;
  padding: clamp(40px, 8vw, 100px) 0;
  position: relative;
}

.pull-quote::before, .pull-quote::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 32px;
}

.pull-quote::after { margin: 32px auto 0; }

/* ==========================================================================
   About: Story cards & stats
   ========================================================================== */

.story-stack { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.story-card { padding: clamp(32px, 4vw, 56px); }
.story-card__chapter {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.story-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-forest);
  margin-bottom: 18px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}

.stat-card { text-align: center; padding: clamp(24px, 3vw, 36px); }
.stat-card__value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--color-forest);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stat-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ==========================================================================
   Journal: Article cards
   ========================================================================== */

.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}

.journal-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-content: start;
}

.article-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card--tall { grid-row: span 2; }

.article-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.article-card--tall .article-card__photo { aspect-ratio: 4/5; }

.article-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.article-card:hover .article-card__photo img { transform: scale(1.04); }

.article-card__body { padding: clamp(20px, 2.5vw, 32px); flex: 1; display: flex; flex-direction: column; gap: 12px; }

.article-card__kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.article-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.05;
  color: var(--color-forest);
  letter-spacing: -0.01em;
}

.article-card--tall .article-card__title { font-size: clamp(2rem, 3.5vw, 2.8rem); }

.article-card__dek {
  color: var(--color-forest-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.article-card__cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 106, 0.25);
}

.article-card__cta::after {
  content: "→";
  transition: transform 0.3s;
}

.article-card:hover .article-card__cta::after { transform: translateX(4px); }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.contact-card {
  max-width: 820px;
  width: 100%;
  padding: clamp(40px, 5vw, 64px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 32px;
}

.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.contact-field__value {
  font-size: 1.05rem;
  color: var(--color-forest);
  line-height: 1.5;
}
.contact-field__value a:hover { color: var(--color-gold); }

.form-grid { display: grid; gap: 18px; margin-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.form-field input, .form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body);
  color: var(--color-forest);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  min-height: 44px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.85);
}

.map-section {
  width: 100%;
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 40px);
  background: rgba(31, 58, 46, 0.04);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(201, 169, 106, 0.2);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 28px;
  background: var(--color-forest);
  color: var(--color-offwhite);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
  min-height: 44px;
}
.map-link:hover { background: var(--color-gold); color: var(--color-forest); transform: translateY(-2px); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-offwhite);
  border-top: 1px solid rgba(31, 58, 46, 0.08);
  padding: clamp(48px, 6vw, 80px) 0 40px;
  margin-top: clamp(60px, 8vw, 100px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--color-forest);
  margin-bottom: 16px;
}

.footer__tagline {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 32ch;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a {
  color: var(--color-forest);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--color-gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 58, 46, 0.08);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.footer__icons { display: flex; gap: 12px; }
.footer__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 58, 46, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  color: var(--color-forest);
}
.footer__icon:hover { background: var(--color-forest); color: var(--color-gold); }
.footer__icon svg { width: 18px; height: 18px; }

/* ==========================================================================
   Page-specific: Collections
   ========================================================================== */

.collections-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: clamp(14px, 1.5vw, 22px);
}

.collection-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  border: 1px solid rgba(201, 169, 106, 0.25);
  cursor: pointer;
  min-height: 220px;
}

.collection-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-glass-hover); }

.collection-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.3s;
}

.collection-tile:hover img { transform: scale(1.05); opacity: 0.95; }

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 58, 46, 0.7) 100%);
  z-index: 1;
}

.collection-tile__content { position: relative; z-index: 2; color: var(--color-offwhite); }

.collection-tile__kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.9;
}

.collection-tile__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.collection-tile__count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.collection-tile--no-photo {
  background: var(--color-forest);
  color: var(--color-offwhite);
}
.collection-tile--no-photo::after { display: none; }
.collection-tile--no-photo .collection-tile__content { color: var(--color-offwhite); }
.collection-tile--no-phose .collection-tile__content { color: var(--color-offwhite); }

.collection-tile--no-photo .collection-tile__kicker { color: var(--color-gold); }

.collection-tile--cream { background: var(--color-cream); }
.collection-tile--cream::after { display: none; }
.collection-tile--cream .collection-tile__content { color: var(--color-forest); }
.collection-tile--cream .collection-tile__kicker { color: var(--color-gold); }

.collection-tile--champagne { background: var(--color-champagne); }
.collection-tile--champagne::after { display: none; }
.collection-tile--champagne .collection-tile__content { color: var(--color-forest); }
.collection-tile--champagne .collection-tile__kicker { color: var(--color-forest); }

/* ==========================================================================
   Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .fade-up { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .nav__links { gap: 18px; }
  .hero__content { grid-template-columns: 1fr; }
  .bento, .collections-bento { grid-template-columns: repeat(3, 1fr); }
  .bento__tile--2x2 { grid-column: span 2; grid-row: span 2; }
  .editorial { grid-template-columns: 1fr; }
  .editorial--reverse > :first-child { order: 0; }
  .editorial__photo { min-height: 400px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-side { grid-template-columns: 1fr 1fr; }
  .article-card--tall { grid-row: auto; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-offwhite);
    padding: 24px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid rgba(31, 58, 46, 0.08);
  }
  .bento, .collections-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .bento__tile--2x2, .bento__tile--2x1, .bento__tile--3x2, .bento__tile--4x1 {
    grid-column: span 2;
  }
  .bento__tile--1x2 { grid-row: span 1; }
  .collections-bento .collection-tile--2x2 { grid-column: span 2; }
  .contact-grid, .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__title { font-size: clamp(3rem, 18vw, 6rem); }
}

@media (max-width: 480px) {
  .bento, .collections-bento { grid-template-columns: 1fr; }
  .bento__tile, .collection-tile { grid-column: span 1 !important; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .journal-side { grid-template-columns: 1fr; }
}

/* ----- Scroll progress bar (premium touch) ----- */
.scroll-progress {
  background: var(--color-gold, #c9a96a);
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  pointer-events: none;
  transition: width 80ms linear;
}

/* ----- Brand logo (in nav) ----- */
.brand-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
}
.nav__brand .brand-logo,
.brand .brand-logo {
  display: block;
}

/* ----- Real product section (about page) ----- */
.real-product-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(184, 149, 42, 0.04) 50%, transparent);
  border-top: 1px solid rgba(184, 149, 42, 0.2);
  border-bottom: 1px solid rgba(184, 149, 42, 0.2);
}
.real-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.real-product__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid rgba(184, 149, 42, 0.3);
  background: #faf6ee;
}
.real-product__caption {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.real-product__caption .mono {
  color: #b8952a;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.real-product__quote {
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--ink, #1a1a1a);
}
.real-product__cta {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #b8952a);
  border-bottom: 1px solid var(--gold, #b8952a);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 200ms;
}
.real-product__cta:hover {
  color: var(--ink, #1a1a1a);
  border-color: var(--ink, #1a1a1a);
}
@media (max-width: 720px) {
  .real-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
