/* Allison Kuch, Press Kit — redesign by Cincee
   Palette: ivory, navy, blush, sand, warm-white */

:root {
  --ivory:   #f8f4ed;
  --ivory-2: #f0e9dc;
  --sand:    #e4d5be;
  --sand-2:  #cfc0a6;
  --blush:   #d4a5a0;
  --blush-2: #b8766e;
  --navy:    #1c2b4a;
  --navy-2:  #2d4170;
  --navy-3:  #0f1d35;
  --warm-white: #fdfaf5;
  --ink:     #1a1612;
  --ink-soft:#4a4540;
  --line:    #e0d5c5;
  --shadow-sm: 0 4px 16px -8px rgba(28, 43, 74, 0.20);
  --shadow:    0 20px 50px -24px rgba(28, 43, 74, 0.30);
  --shadow-lg: 0 40px 80px -32px rgba(28, 43, 74, 0.38);

  --display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --accent:  'Playfair Display', 'Cochin', 'Georgia', 'Times New Roman', serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 60px);
  --radius: 12px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* ============================================================
   NAV — slim side-anchored, no topbar box
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 360ms ease, box-shadow 360ms ease;
}
.topbar.scrolled {
  background: rgba(248, 244, 237, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  display: inline-grid;
  place-items: center;
  transition: background 240ms ease, transform 300ms ease;
}
@media (hover: hover) {
  .brand:hover .brand__mark {
    background: var(--blush-2);
    transform: rotate(-8deg);
  }
}
.brand__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav a {
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 200ms ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blush-2);
  border-radius: 99px;
  transition: width 280ms cubic-bezier(.3,.8,.2,1);
}
@media (hover: hover) {
  .nav a:hover { color: var(--ink); }
  .nav a:hover::after { width: 100%; }
}
.nav__cta {
  background: var(--navy) !important;
  color: var(--ivory) !important;
  padding: 10px 22px !important;
  border-radius: 99px;
  transition: background 240ms ease, transform 200ms ease !important;
}
.nav__cta::after { display: none !important; }
@media (hover: hover) {
  .nav__cta:hover {
    background: var(--blush-2) !important;
    transform: translateY(-2px);
  }
}
@media (max-width: 760px) {
  .nav { gap: 8px; font-size: 12.5px; }
  .brand__name { display: none; }
  .topbar { padding: 14px var(--gutter); }
}
/* On small phones, hide secondary nav links to prevent overflow */
@media (max-width: 520px) {
  .nav a:not(.nav__cta) { display: none; }
  .nav__cta { display: inline-flex; }
}

/* ============================================================
   HERO — full-bleed, portrait left, copy right
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.hero__left {
  position: relative;
  overflow: hidden;
  background: var(--navy-3);
}
.hero__left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.88;
  transition: transform 1.6s cubic-bezier(.2,.6,.2,1);
}
@media (hover: hover) {
  .hero__left:hover .hero__left-img { transform: scale(1.04); }
}
.hero__left-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 29, 53, 0) 60%, rgba(15, 29, 53, 0.55) 100%),
    linear-gradient(180deg, rgba(15, 29, 53, 0) 50%, rgba(15, 29, 53, 0.5) 100%);
  pointer-events: none;
}
.hero__left-badge {
  position: absolute;
  top: clamp(88px, 12vh, 130px);
  left: clamp(20px, 4vw, 40px);
  background: rgba(248, 244, 237, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(248, 244, 237, 0.22);
  border-radius: 99px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__left-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blush);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}
.hero__left-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.9);
}
.hero__left-num {
  position: absolute;
  bottom: 28px;
  left: clamp(20px, 4vw, 40px);
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.55);
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 4vw, 64px) clamp(40px, 6vh, 80px);
  background: var(--ivory);
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-2);
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--blush-2);
  border-radius: 99px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero__title-italic {
  display: block;
  font-family: var(--accent);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 52px);
  color: var(--navy-2);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 8px;
}
.hero__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 28px 0 36px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.btn--solid {
  background: var(--navy);
  color: var(--ivory);
}
@media (hover: hover) {
  .btn--solid:hover {
    background: var(--navy-3);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(28, 43, 74, 0.45);
  }
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--sand-2);
}
@media (hover: hover) {
  .btn--ghost:hover {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
    transform: translateY(-2px);
  }
}

/* Hero stat rail */
.hero__rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 28px;
}
.hero__rail-item {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
.hero__rail-item:last-child { border-right: none; padding-left: 20px; padding-right: 0; }
.hero__rail-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 38px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__rail-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Local placeholder */
.is-local .hero__left-img,
.is-local .tile img {
  visibility: hidden;
}
.is-local .hero__left,
.is-local .tile {
  background:
    repeating-linear-gradient(45deg, var(--ivory-2) 0 12px, var(--ivory) 12px 24px);
  position: relative;
}
.is-local .hero__left::before,
.is-local .tile::before {
  content: 'placeholder';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--accent);
  font-style: italic;
  font-size: 14px;
  color: var(--sand-2);
  z-index: 2;
}

/* Mobile hero */
@media (max-width: 820px) {
  .hero__split { grid-template-columns: 1fr; min-height: auto; }
  .hero__left {
    height: 56vw;
    min-height: 240px;
    max-height: 400px;
  }
  .hero__left-badge { top: 70px; }
  .hero__right {
    padding: 36px var(--gutter) 40px;
  }
  .hero__rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .hero__rail-item { border-right: none; padding: 0; }
  .hero__rail-item:last-child { padding-left: 0; }
}

/* ============================================================
   SECTION SYSTEM
   ============================================================ */
section { padding: 96px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-2);
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--blush-2);
  border-radius: 99px;
  flex-shrink: 0;
}
.kicker--light { color: var(--ivory-2); }
.kicker--light::before { background: rgba(248, 244, 237, 0.5); }
.kicker--navy { color: var(--navy-2); }
.kicker--navy::before { background: var(--navy-2); }
.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 700px;
}
.h2--light { color: var(--ivory); }
.h2 em {
  font-family: var(--accent);
  font-weight: 400;
  font-style: italic;
  font-size: 0.92em;
  color: var(--navy-2);
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--warm-white); }
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 860px) {
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
}
.story__left {}
.story__head { margin-bottom: 36px; }
.story__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.story__body p:first-child {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}
.story__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.story__pull {
  background: var(--navy);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.story__pull::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--accent);
  font-size: 120px;
  color: rgba(248, 244, 237, 0.08);
  line-height: 1;
  pointer-events: none;
}
.story__pull-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
}
.story__pull-quote {
  font-family: var(--accent);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 18px;
}
.story__pull-meta {
  font-size: 12px;
  color: rgba(248, 244, 237, 0.55);
  font-style: italic;
}
.story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.story__tag {
  padding: 7px 16px;
  border-radius: 99px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
  cursor: default;
}
@media (hover: hover) {
  .story__tag:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--ivory);
  }
}

/* ============================================================
   PILLARS — horizontal scroll on mobile
   ============================================================ */
.pillars { background: var(--ivory-2); }
.pillars__head { margin-bottom: 48px; }
.pillars__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 540px;
}
.pillars__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .pillars__track {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pillars__track::-webkit-scrollbar { display: none; }
}
.pillar {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease;
  scroll-snap-align: start;
  flex: 0 0 280px;
}
.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms cubic-bezier(.3,.8,.2,1);
}
@media (hover: hover) {
  .pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
  }
  .pillar:hover::after { transform: scaleX(1); }
}
.pillar__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-2);
  margin-bottom: 24px;
}
.pillar__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.pillar__copy {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pillar__brands {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-2);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   REACH
   ============================================================ */
.reach { background: var(--warm-white); }
.reach__head { margin-bottom: 56px; }
.reach__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .reach__layout { grid-template-columns: 1fr; gap: 36px; }
}
.reach__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reach__metric {
  background: var(--ivory-2);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
@media (hover: hover) {
  .reach__metric:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
  }
}
.reach__metric:nth-child(1) { border-top: 3px solid var(--navy); }
.reach__metric:nth-child(2) { border-top: 3px solid var(--blush-2); }
.reach__metric:nth-child(3) { border-top: 3px solid var(--sand-2); }
.reach__metric:nth-child(4) { border-top: 3px solid var(--navy-2); }
.reach__num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}
.reach__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.reach__suffix {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--blush-2);
  letter-spacing: -0.02em;
}
.reach__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.reach__source {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  font-style: italic;
}
.reach__bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reach__bar-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}
.reach__bar-sub {
  font-size: 14px;
  color: var(--ink-soft);
}
.bar {
  display: flex;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
}
.bar__seg {
  flex: 0 0 calc(var(--w) * 1%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px;
  color: var(--ivory);
  font-size: 11.5px;
  position: relative;
  overflow: hidden;
  transition: filter 250ms ease;
  cursor: default;
}
@media (hover: hover) {
  .bar__seg:hover { filter: brightness(1.1); }
}
.bar__seg--a { background: var(--navy); }
.bar__seg--b { background: var(--blush-2); }
.bar__seg--c { background: var(--sand-2); color: var(--ink); }
.bar__seg--d { background: var(--navy-2); }
.bar__seg-label {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}
.bar__seg-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  margin-top: 2px;
}
.reach__bar-note {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.6;
}
.reach__geo {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reach__geo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.55);
  margin-bottom: 8px;
}
.reach__geo-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.reach__geo-pct {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: var(--ivory);
  letter-spacing: -0.03em;
  line-height: 1;
}
.reach__geo-desc {
  font-size: 14px;
  color: rgba(248, 244, 237, 0.75);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: var(--ivory-2); }
.partners__head { margin-bottom: 48px; }
.partners__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 12px;
}
.partners__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 960px) { .partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .partners__grid { grid-template-columns: repeat(2, 1fr); } }

.logo {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  cursor: default;
}
@media (hover: hover) {
  .logo:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
  }
}
.logo__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo__cat {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* Featured partners get navy bg */
.logo--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.logo--featured .logo__name { color: var(--ivory); }
.logo--featured .logo__cat { color: rgba(248, 244, 237, 0.6); }
@media (hover: hover) {
  .logo--featured:hover { border-color: var(--blush-2); box-shadow: 0 8px 24px -10px rgba(28,43,74,0.4); }
}

/* ============================================================
   FEED
   ============================================================ */
.feed { background: var(--warm-white); }
.feed__head { margin-bottom: 48px; }
.feed__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 540px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory-2);
  box-shadow: var(--shadow-sm);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
@media (hover: hover) {
  .tile:hover img { transform: scale(1.06); }
  .tile:hover figcaption { opacity: 1; transform: translateY(0); }
}
.tile figcaption {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(15, 29, 53, 0.82), transparent);
  padding: 36px 16px 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 280ms ease, transform 280ms ease;
  letter-spacing: 0.01em;
}
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
@media (max-width: 860px) {
  .tile--tall, .tile--wide { grid-row: auto; grid-column: auto; }
}

/* ============================================================
   BOOK
   ============================================================ */
.book {
  background: var(--navy-3);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.book::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(212, 165, 160, 0.12), transparent 70%);
  pointer-events: none;
}
.book::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(closest-side, rgba(45, 65, 112, 0.4), transparent 70%);
  pointer-events: none;
}
.book__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .book__inner { grid-template-columns: 1fr; gap: 40px; }
}
.book__copy {}
.book__lede {
  font-family: var(--accent);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.8);
  margin: 22px 0 32px;
  max-width: 500px;
}
.book__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(248, 244, 237, 0.75);
  line-height: 1.5;
}
.book__list li .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blush);
  flex: 0 0 26px;
  padding-top: 2px;
}
.book__contact {
  background: rgba(248, 244, 237, 0.06);
  border: 1px solid rgba(248, 244, 237, 0.14);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  z-index: 1;
}
.book__contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}
.book__email {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ivory);
  margin-bottom: 10px;
  word-break: break-all;
  transition: color 220ms ease;
}
@media (hover: hover) {
  .book__email:hover { color: var(--blush); }
}
.book__contact-meta {
  font-size: 13px;
  color: rgba(248, 244, 237, 0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}
.btn--book {
  background: var(--blush-2);
  color: var(--ivory);
}
@media (hover: hover) {
  .btn--book:hover {
    background: #c96660;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(184, 118, 110, 0.55);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--navy-3);
  border-top: 1px solid rgba(248, 244, 237, 0.08);
  padding: 40px 0;
  font-size: 13px;
  color: rgba(248, 244, 237, 0.6);
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.foot__brand {
  font-family: var(--accent);
  font-style: italic;
  color: rgba(248, 244, 237, 0.9);
}
.foot__links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot__links a {
  color: rgba(248, 244, 237, 0.6);
  transition: color 200ms ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
@media (hover: hover) {
  .foot__links a:hover {
    color: var(--blush);
    border-bottom-color: var(--blush);
  }
}
.foot__fine {
  width: 100%;
  font-size: 11px;
  color: rgba(248, 244, 237, 0.35);
  font-style: italic;
  margin-top: 4px;
}

/* ============================================================
   MOBILE TOUCH TARGETS
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 12px 8px;
  }
  .nav__cta { padding: 12px 16px !important; min-height: 44px; }
  .btn { min-height: 44px; padding: 14px 22px; }
  .foot__links a {
    display: inline-block;
    padding: 10px 2px;
    min-height: 44px;
    line-height: 24px;
  }
  .logo { min-height: 80px; }
  body, html { overflow-x: hidden; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
