/* clarabrge press kit, Parisian couture redesign */

:root {
  /* Palette: soft cream base, petal pink, lipstick red, deep espresso ink */
  --cream:      #FAF6F1;
  --parchment:  #F2EBE0;
  --petal:      #E8C8C0;
  --petal-light:#F4DDD8;
  --rouge:      #C03040;
  --rouge-deep: #8C1F2B;
  --blush:      #D97080;
  --espresso:   #1A1010;
  --mist:       #7A6A66;
  --rule-light: rgba(26, 16, 16, 0.10);
  --rule-mid:   rgba(26, 16, 16, 0.18);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script:  'Dancing Script', cursive, Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --maxw:   1140px;
  --pad-x:  clamp(20px, 5vw, 72px);
  --pad-xl: clamp(28px, 6vw, 96px);
}

.is-local {
  --font-display: Georgia, 'Times New Roman', serif;
  --font-script:  Georgia, cursive, serif;
  --font-body:    system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle petal radials as background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 62% 44% at 86% 12%, rgba(232,200,192,0.28) 0%, transparent 100%),
    radial-gradient(ellipse 48% 56% at 10% 90%, rgba(192,48,64,0.06) 0%, transparent 100%);
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
img { display: block; }

/* ============================================================
   NAVIGATION BAR (replaces the old rail + corner marks)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-xl);
  /* frosted glass */
  background: rgba(250,246,241,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-light);
  transition: border-color 0.4s ease;
}
.nav-wordmark {
  font-family: var(--font-script);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--espresso);
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--rouge); }
.nav-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--rouge);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.nav-cta-pill:hover { background: var(--rouge-deep); transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 18px var(--pad-x); }
}

/* ============================================================
   CURSOR BLOB (kept, recolored)
   ============================================================ */
.blob {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,48,64,0.18), rgba(232,200,192,0.10) 55%, transparent 72%);
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.blob.is-visible { opacity: 1; }
@media (hover: none) { .blob { display: none; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.18,0.7,0.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   UTILITY: thin rule motif
   ============================================================ */
.thin-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rouge);
  margin: 0 auto 32px;
}
.thin-rule--left { margin-left: 0; margin-right: auto; }

.micro {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rouge);
  opacity: 0.80;
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   LAYOUT MAX-WIDTH WRAPPER
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============================================================
   HERO: full-height editorial split
   Distinct from the old "giant serif name top-left" template.
   Layout: portrait fills right half, text panel left.
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left panel */
.hero-panel {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(100px, 14vh, 160px) var(--pad-xl) clamp(56px, 9vh, 100px);
  background: var(--cream);
}
.hero-panel::after {
  content: "";
  position: absolute;
  top: 20%; bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule-mid) 30%, var(--rule-mid) 70%, transparent);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 28px;
}

/* The name: script + display italic overlay (distinct typographic treatment) */
.hero-name-block {
  position: relative;
  margin: 0 0 20px;
}
.hero-name-script {
  font-family: var(--font-script);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 700;
  color: var(--espresso);
  line-height: 0.92;
  display: block;
  letter-spacing: -0.01em;
}
/* Accent rule under name */
.hero-name-block::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--rouge);
  margin-top: 20px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--mist);
  line-height: 1.45;
  margin: 0 0 40px;
  max-width: 360px;
}

.hero-stats-row {
  display: flex;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  color: var(--espresso);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mist);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.cta-primary:hover { background: var(--rouge); transform: translateY(-2px); }
.cta-arrow { transition: transform 0.3s ease; }
.cta-primary:hover .cta-arrow { transform: translateX(5px); }

.cta-secondary {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist);
  border-bottom: 1px solid var(--rule-mid);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.cta-secondary:hover { color: var(--rouge); border-color: var(--rouge); }

/* Right panel: portrait */
.hero-portrait-wrap {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}
.hero-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 8s ease;
}
.hero-portrait-wrap:hover img { transform: scale(1.03); }

/* Petal overlay on portrait */
.hero-portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,16,16,0.18) 100%);
  pointer-events: none;
}
.hero-portrait-caption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.72);
  z-index: 2;
}

/* Mobile hero: stack portrait behind text */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hero-panel {
    order: 2;
    padding-top: clamp(40px, 6vh, 64px);
    padding-bottom: clamp(48px, 8vh, 80px);
  }
  .hero-panel::after { display: none; }
  .hero-portrait-wrap {
    order: 1;
    height: clamp(260px, 54vw, 440px);
  }
  .hero-stats-row { gap: 28px; }
  .hero-cta-group { gap: 18px; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section {
  padding-top: clamp(72px, 11vh, 140px);
  padding-bottom: clamp(48px, 7vh, 100px);
  position: relative;
}

.section-head {
  margin-bottom: clamp(40px, 6vh, 72px);
}
.section-head .micro { margin-bottom: 12px; }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin: 0 0 0;
}
.h2-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--rouge);
}
.h2--xl {
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

/* ============================================================
   REACH SECTION: horizontal band with single large number
   New layout vs the old 2-col with huge floating num.
   ============================================================ */
.section--reach {
  background: var(--parchment);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.reach-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.reach-number-block {
  text-align: center;
  padding: clamp(32px, 5vh, 56px) 0;
  border-right: 1px solid var(--rule-light);
}
.reach-num-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(88px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--rouge);
  display: block;
}
.reach-num-suffix {
  font-size: 0.52em;
  font-style: normal;
  font-weight: 400;
  vertical-align: super;
}
.reach-num-label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mist);
}

.reach-detail h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  color: var(--espresso);
  margin: 0 0 20px;
  line-height: 1.1;
}
.reach-detail p { color: var(--mist); font-size: 15px; max-width: 480px; }

.reach-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--rule-light);
}
.reach-metric {
  padding: 20px 0 20px;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.reach-metric:nth-child(even) { border-right: none; padding-left: 24px; }
.reach-metric:nth-child(odd) { padding-right: 24px; }
.reach-metric:nth-last-child(-n+2) { border-bottom: none; }

.reach-metric-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--espresso);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.reach-metric-key {
  display: block;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--mist);
}

@media (max-width: 760px) {
  .reach-inner {
    grid-template-columns: 1fr;
  }
  .reach-number-block {
    border-right: none;
    border-bottom: 1px solid var(--rule-light);
    padding-bottom: 32px;
  }
}

/* ============================================================
   ABOUT SECTION: asymmetric text with a large pull-quote
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}
.about-pullquote {
  position: relative;
  padding-left: 32px;
}
.about-pullquote::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--rouge);
  border-radius: 2px;
}
.about-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.42;
  color: var(--espresso);
  margin: 0;
}
.about-body { padding-top: 8px; }
.about-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
  max-width: 440px;
}
.about-body p + p { margin-top: 0; }

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-body p { max-width: 100%; }
}

/* ============================================================
   PILLARS: side-by-side cards (new layout vs the old table rows)
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--rule-light);
  background: rgba(250,246,241,0.7);
  position: relative;
  cursor: default;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.18,0.7,0.2,1), background 0.35s ease;
}
/* Accent corner */
.pillar-card::before {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 32px; height: 32px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  transition: border-color 0.35s ease;
}
.pillar-card:hover {
  border-color: var(--petal);
  background: rgba(244,221,216,0.18);
  transform: translateY(-3px);
}
.pillar-card:hover::before {
  border-bottom-color: var(--rouge);
  border-right-color: var(--rouge);
}

.pillar-card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rouge);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.pillar-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--espresso);
  line-height: 1.2;
  display: block;
  margin-bottom: 12px;
}
.pillar-card-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

/* ============================================================
   FORMATS: row-per-format with left number accent
   New layout vs the old 2-col card grid.
   ============================================================ */
.formats-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--rule-light);
}
.format-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(24px, 4vh, 36px) 0;
  border-bottom: 1px solid var(--rule-light);
  position: relative;
  cursor: default;
  transition: padding-left 0.4s cubic-bezier(0.18,0.7,0.2,1);
}
.format-row::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--rouge);
  transition: width 0.5s cubic-bezier(0.18,0.7,0.2,1);
}
.format-row:hover { padding-left: 12px; }
.format-row:hover::after { width: 100%; }

.format-row-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--petal);
  font-weight: 400;
  white-space: nowrap;
}
.format-row-body {}
.format-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 8px;
  display: block;
}
.format-row-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
  max-width: 480px;
}
.format-row-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rouge);
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid var(--petal);
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
}
.format-row:hover .format-row-tag {
  background: var(--rouge);
  color: var(--cream);
  border-color: var(--rouge);
}

@media (max-width: 700px) {
  .format-row { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; gap: 8px 16px; }
  .format-row-tag { grid-column: 2; grid-row: 2; justify-self: start; }
}

/* ============================================================
   CONTENT GALLERY: photo-first masonry
   Same image files, new layout rhythm.
   ============================================================ */
.gallery-note {
  font-size: 13px;
  color: var(--mist);
  opacity: 0.8;
  margin-top: -16px;
  margin-bottom: 32px;
  max-width: 440px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 180px;
  gap: 10px;
}

/* Tile spans: editorial asymmetry */
.gt--1 { grid-column: span 2; grid-row: span 2; }  /* portrait wide */
.gt--2 { grid-column: span 2; grid-row: span 1; }  /* wide strip */
.gt--3 { grid-column: span 1; grid-row: span 1; }
.gt--4 { grid-column: span 1; grid-row: span 2; }
.gt--5 { grid-column: span 1; grid-row: span 1; }
.gt--6 { grid-column: span 2; grid-row: span 1; }
.gt--7 { grid-column: span 1; grid-row: span 1; }
.gt--8 { grid-column: span 1; grid-row: span 1; }

.gt {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  cursor: pointer;
  display: block;
  border: 1px solid var(--rule-light);
  text-decoration: none;
  color: inherit;
}
.gt img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.93) contrast(1.01);
  transition: transform 0.8s cubic-bezier(0.18,0.7,0.2,1), filter 0.5s ease;
  z-index: 1;
}
.is-local .gt img { display: none; }
.gt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(26,16,16,0.52) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.gt-caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 3;
}
.gt-caption b {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  margin-right: 6px;
  color: var(--petal-light);
}
.gt:hover img { transform: scale(1.07); filter: saturate(1.06) contrast(1.03); }
.gt:hover .gt-overlay { opacity: 1; }
.gt:hover .gt-caption { opacity: 1; transform: none; }

/* Placeholder gradients for local */
.gt--1 { background: linear-gradient(135deg, var(--petal) 0%, var(--rouge-deep) 100%); }
.gt--2 { background: linear-gradient(160deg, var(--petal-light) 0%, var(--petal) 100%); }
.gt--3 { background: linear-gradient(115deg, var(--blush) 0%, var(--rouge-deep) 100%); }
.gt--4 { background: linear-gradient(180deg, var(--rouge-deep) 0%, var(--espresso) 100%); }
.gt--5 { background: linear-gradient(180deg, var(--parchment) 0%, var(--petal) 100%); }
.gt--6 { background: linear-gradient(135deg, var(--rouge) 0%, var(--blush) 100%); }
.gt--7 { background: linear-gradient(165deg, var(--espresso) 0%, var(--rouge-deep) 100%); }
.gt--8 { background: linear-gradient(135deg, var(--petal) 0%, var(--blush) 100%); }

/* Mobile gallery: 2-col */
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-auto-rows: 150px;
  }
  .gt--1 { grid-column: span 2; grid-row: span 2; }
  .gt--2, .gt--3, .gt--4, .gt--5, .gt--6, .gt--7, .gt--8 {
    grid-column: span 1; grid-row: span 1;
  }
  .gt-caption { opacity: 1; transform: none; }
  .gt-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 130px; }
}

/* ============================================================
   MARQUEE BAND (kept, re-styled)
   ============================================================ */
.marquee-section {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  background: var(--parchment);
  margin-top: clamp(56px, 8vh, 100px);
}
.marquee-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 36px);
  color: var(--espresso);
  padding: 8px 0;
}
.marquee-track span { display: inline-block; }
.marquee-track span:nth-child(even) {
  color: var(--rouge);
  opacity: 0.55;
  font-style: normal;
  font-size: 0.65em;
  align-self: center;
}

/* ============================================================
   CONTACT SECTION: full-width with a large heading + cards
   ============================================================ */
.section--contact {
  background: var(--espresso);
  color: var(--cream);
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 clamp(16px, 3vh, 32px);
}
.contact-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
}

.contact-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 24px);
  color: rgba(250,246,241,0.70);
  margin: 0 0 clamp(40px, 6vh, 64px);
  max-width: 560px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.cc {
  display: block;
  padding: 28px 30px;
  border: 1px solid rgba(250,246,241,0.12);
  position: relative;
  color: var(--cream);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.18,0.7,0.2,1);
}
a.cc:hover {
  border-color: var(--blush);
  background: rgba(232,200,192,0.06);
  transform: translateY(-3px);
}
.cc-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.45);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
a.cc:hover .cc-label { color: var(--blush); }
.cc-value {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--cream);
  font-weight: 400;
}

.contact-signoff {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.35);
  margin: 0;
}

/* micro inside contact (different color context) */
.section--contact .micro { color: var(--blush); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(36px, 5vh, 56px) var(--pad-x);
  text-align: center;
  background: var(--espresso);
  border-top: 1px solid rgba(250,246,241,0.08);
  max-width: 100%;
}
.footer-rule {
  width: 40px; height: 1px;
  background: var(--rouge);
  margin: 0 auto 20px;
}
.footer p {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.32);
  margin: 0;
}

/* ============================================================
   TOUCH + HOVER OVERRIDES
   ============================================================ */
@media (hover: none) {
  .blob { display: none; }
  .cta-primary:hover { background: var(--espresso); transform: none; }
  .nav-cta-pill:hover { transform: none; }
  .pillar-card:hover { transform: none; border-color: var(--rule-light); background: rgba(250,246,241,0.7); }
  .pillar-card:hover::before { border-color: transparent; }
  .format-row:hover { padding-left: 0; }
  .format-row:hover::after { width: 0; }
  .format-row:hover .format-row-tag { background: transparent; color: var(--rouge); border-color: var(--petal); }
  .gt:hover img { transform: none; filter: saturate(0.93) contrast(1.01); }
  .gt:hover .gt-overlay { opacity: 0; }
  .gt:hover .gt-caption { opacity: 0; }
  a.cc:hover { border-color: rgba(250,246,241,0.12); background: transparent; transform: none; }
  .hero-portrait-wrap:hover img { transform: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { display: none; }
  *, *::before, *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
}

/* ============================================================
   TOUCH TARGETS
   ============================================================ */
@media (max-width: 768px) {
  .cta-primary, .nav-cta-pill { min-height: 44px; }
  .cc { min-height: 44px; }
  .gt { min-height: 44px; }
  /* Show captions on mobile by default */
  .gt-overlay { opacity: 1; }
  .gt-caption { opacity: 1; transform: none; }
}
