/* ============================================================
   DIMEVA — "En Pointe" edition
   Luxe minimal editorial. Warm ivory · ink · powder blush.
   HTML + CSS only, no JS.
   ============================================================ */

:root {
  --ink: #14110f;            /* warm near-black */
  --ink-soft: #221d19;
  --paper: #faf7f0;          /* thin cream white */
  --paper-2: #f1ebe0;        /* slightly deeper cream */
  --white: #fbf8f3;
  --line: rgba(20, 17, 15, 0.14);
  --line-strong: rgba(20, 17, 15, 0.32);
  --line-light: rgba(244, 239, 232, 0.16);
  --grey: #7a736c;
  --grey-light: #b7ada2;
  --blush: #d9a521;           /* mustard yellow */
  --blush-soft: #e6c158;      /* light mustard */
  --blush-deep: #b8860b;      /* deep mustard / goldenrod */
  --header-h: 78px;
  --pad: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-curtain: cubic-bezier(0.76, 0, 0.24, 1); /* @kind other */
  --font-display: "Bodoni Moda", "Didot", "Playfair Display", serif;
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blush-deep); }
ul, ol { list-style: none; }
section { scroll-margin-top: calc(var(--header-h) + 8px); }

/* photography — warm monochrome; colour breathes back on hover */
img, video {
  filter: grayscale(1) sepia(0.16) brightness(1.03) contrast(1.02);
  background: #ded6cb;
}

::selection { background: var(--blush); color: var(--white); }
:focus-visible { outline: 1.5px solid var(--blush-deep); outline-offset: 4px; }

/* ---------- primitives ---------- */
.container { max-width: 1320px; margin-inline: auto; padding-inline: var(--pad); }
.container--narrow { max-width: 900px; }
.center { text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 24px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--blush); display: inline-block; }
.kicker--light { color: var(--grey-light); }

.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.05; letter-spacing: 0.004em; max-width: 17em;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--blush-deep); }
.section-note { margin-top: 20px; max-width: 44ch; color: var(--grey); font-size: 15px; }

.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .section-note { color: var(--grey-light); }
.section--ink .section-title em { color: var(--blush); }

/* buttons */
.btn {
  position: relative; display: inline-block; padding: 19px 38px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  border: 1px solid var(--ink); overflow: hidden; z-index: 0;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  font-family: var(--font-sans); will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
  transform: translateY(0); transition: transform 0.45s var(--ease-curtain);
}
.btn--ink { color: var(--paper); }
.btn--ink:hover { color: var(--ink); border-color: var(--ink); }
.btn--ink:hover::before { transform: translateY(101%); }
.btn--paper { color: var(--ink); border-color: var(--paper); }
.btn--paper::before { background: var(--paper); }
.btn--paper:hover { color: var(--paper); }
.btn--paper:hover::before { transform: translateY(101%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  padding-bottom: 6px; position: relative;
}
.btn-ghost::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transform: scaleX(1); transition: transform 0.5s var(--ease-curtain); }
.btn-ghost:hover { color: var(--blush-deep); }
.btn-ghost:hover::after { transform-origin: left; transform: scaleX(0.35); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100; background: var(--ink); color: var(--paper);
  border-bottom: 1px solid var(--line-light);
  transition: height 0.4s var(--ease), background 0.4s var(--ease);
}
.header__inner {
  position: relative; height: var(--header-h); display: flex; align-items: center;
  gap: clamp(16px, 3vw, 48px); padding-inline: var(--pad);
  transition: height 0.4s var(--ease);
}
.header__logo { font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: 0.36em; }
.header__logo-dot { color: var(--blush); margin-left: 1px; }

.header__nav { display: flex; gap: clamp(14px, 2vw, 32px); margin-inline: auto; }
.header__nav a {
  position: relative; font-size: 11.5px; letter-spacing: 0.15em; text-transform: uppercase; white-space: nowrap;
  padding: 6px 1px; color: var(--grey-light); transition: color 0.3s var(--ease);
}
.header__nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--blush); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-curtain); }
.header__nav a:hover { color: var(--paper); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__meta { display: flex; align-items: center; gap: 18px; font-size: 13px; }
.header__phone { font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
.header__phone:hover { color: var(--blush-soft); }
.header__cta { padding: 12px 22px; font-size: 10.5px; white-space: nowrap; }

.burger, .burger-close {
  display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center;
  gap: 7px; cursor: pointer; margin-left: auto;
}
.burger span, .burger-close span { display: block; height: 1.5px; width: 26px; background: var(--paper); }
.burger-close { position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%); gap: 0; z-index: 2; }
.burger-close span:first-child { transform: translateY(0.75px) rotate(45deg); }
.burger-close span:last-child { transform: translateY(-0.75px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; background: var(--ink);
  padding: 8vh var(--pad); flex-direction: column; gap: 6vh;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 3.4vh; }
.mobile-menu nav a { font-family: var(--font-display); font-style: italic; font-size: clamp(1.8rem, 8vw, 3rem); line-height: 1; }
.mobile-menu nav a:hover { color: var(--blush-soft); }
.mobile-menu__meta { margin-top: auto; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--grey-light); }
.mobile-menu__meta a { color: var(--paper); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__inner {
  max-width: 1320px; margin-inline: auto;
  padding: clamp(56px, 8vw, 128px) var(--pad) clamp(130px, 13vw, 190px);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 88px); align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.7rem, 6.6vw, 6.4rem); line-height: 1.0; margin-bottom: 30px; letter-spacing: -0.005em;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--blush-deep); }
.hero__sub { max-width: 40ch; color: var(--grey); font-size: clamp(15px, 1.3vw, 17px); margin-bottom: 44px; }
.hero__actions { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hero__media {
  position: relative; aspect-ratio: 3 / 4; max-height: 660px;
  justify-self: end; width: min(100%, 480px);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; transform: translate(18px, 18px);
  border: 1px solid var(--blush); pointer-events: none; transition: transform 0.6s var(--ease);
}
.hero__media:hover::after { transform: translate(10px, 10px); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__rail {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%); writing-mode: vertical-rl;
  font-size: 10px; letter-spacing: 0.44em; text-transform: uppercase; color: var(--grey); opacity: 0.75;
}

/* load animation (hero only) */
.rise { opacity: 0; animation: rise 1s var(--ease) forwards; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.36s; } .d4 { animation-delay: 0.5s; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   DIRECTII
   ============================================================ */
.directions { padding: clamp(80px, 10vw, 140px) 0; }
.dir-grid {
  margin: clamp(44px, 6vw, 84px) auto; max-width: 1320px; padding-inline: var(--pad);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-light); border: 1px solid var(--line-light);
}
.dir-card { position: relative; background: var(--ink); overflow: hidden; }
.dir-card img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; opacity: 0.85;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.dir-card:hover img { transform: scale(1.06); opacity: 1; filter: grayscale(0) sepia(0.12) contrast(1.02); }
.dir-card__n { position: absolute; top: 16px; left: 18px; font-size: 11px; letter-spacing: 0.28em; color: var(--paper); opacity: 0.8; z-index: 1; }
.dir-card h3 {
  position: absolute; left: 18px; right: 18px; bottom: 16px; font-family: var(--font-display);
  font-weight: 500; font-size: clamp(1.05rem, 1.6vw, 1.5rem); line-height: 1.12; color: var(--white);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6); z-index: 1;
}
.dir-card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
  opacity: 0.9; transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none;
}
.dir-card:hover::after { opacity: 0.55; }
.dir-card:last-child { grid-column: 1 / -1; }
.dir-card:last-child img { aspect-ratio: 21 / 8; object-position: center 25%; }

/* ============================================================
   PENTRU CINE
   ============================================================ */
.familiar { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--line); }
.familiar__quotes { margin-top: clamp(40px, 5vw, 68px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.familiar__quotes blockquote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.35; padding-top: 24px; border-top: 1px solid var(--ink);
}
.familiar__quotes blockquote::first-letter { color: var(--blush-deep); }
.fits { margin-top: clamp(68px, 8vw, 116px); }
.fits__title { font-family: var(--font-sans); font-weight: 600; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; max-width: 34em; margin-bottom: 10px; }
.fits__list li { display: grid; grid-template-columns: 130px 1fr; align-items: baseline; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding-left 0.4s var(--ease); }
.fits__list li:hover { padding-left: 12px; }
.fits__n { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--blush-deep); }
@supports not (-webkit-text-stroke: 1px black) { .fits__n { color: var(--blush); } }
.fits__list p { font-size: clamp(1rem, 1.4vw, 1.28rem); }

/* ============================================================
   REEL
   ============================================================ */
.reel { position: relative; min-height: 78vh; display: grid; place-items: center; overflow: hidden; background: var(--ink); }
.reel__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.reel__overlay { position: relative; z-index: 1; text-align: center; color: var(--white); padding: 128px var(--pad); max-width: 940px; }
.reel__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.3rem, 5.2vw, 4.6rem); line-height: 1.04; margin-bottom: 24px; }
.reel__title em { font-style: italic; font-weight: 400; color: var(--blush); }
.reel__sub { color: rgba(251, 248, 243, 0.78); font-size: 15px; }

/* ============================================================
   COMUNITATE
   ============================================================ */
.community { padding: clamp(80px, 10vw, 140px) 0; }
.community__list { margin-top: clamp(40px, 5vw, 64px); }
.community__list li {
  display: flex; justify-content: space-between; align-items: center; padding: 24px 0;
  border-bottom: 1px solid var(--line-light); font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem); transition: padding-left 0.4s var(--ease), color 0.3s var(--ease);
}
.community__list li:first-child { border-top: 1px solid var(--line-light); }
.community__list li:hover { padding-left: 16px; color: var(--blush-soft); }
.community__list em { font-style: normal; color: var(--grey-light); transition: transform 0.4s var(--ease), color 0.3s var(--ease); }
.community__list li:hover em { transform: translateX(8px); color: var(--blush); }
.community__phrase { margin-top: 36px; max-width: 52ch; color: var(--grey-light); font-size: 15px; }
.community__collage { margin: clamp(52px, 6vw, 84px) auto 0; max-width: 1320px; padding-inline: var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 34px); align-items: start; }
.community__collage img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.community__collage .offset { transform: translateY(clamp(24px, 4vw, 60px)); }

/* ============================================================
   SIGNUP
   ============================================================ */
.signup { padding: clamp(80px, 10vw, 140px) var(--pad); }
.signup__frame { max-width: 900px; margin-inline: auto; border: 1px solid var(--ink); padding: clamp(40px, 6vw, 88px); position: relative; background: var(--white); }
.signup__frame::before { content: ""; position: absolute; inset: -1px; border: 1px solid var(--blush); transform: translate(12px, 12px); z-index: -1; }
.signup__gift { margin-top: 20px; color: var(--grey); max-width: 48ch; }
.signup__gift strong { color: var(--ink); }
.lead-form { margin-top: 40px; display: flex; gap: 26px; align-items: flex-end; flex-wrap: wrap; }
.lead-form__field { flex: 1 1 260px; display: flex; flex-direction: column; gap: 8px; }
.lead-form__field span { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); }
.lead-form input { border: none; border-bottom: 1px solid var(--ink); background: transparent; font-family: var(--font-sans); font-size: 18px; padding: 10px 2px; border-radius: 0; transition: border-color 0.3s var(--ease); }
.lead-form input:focus { outline: none; border-bottom-width: 2px; border-color: var(--blush-deep); }
.lead-form input::placeholder { color: var(--grey-light); }
.microtext { margin-top: 24px; font-size: 11px; color: var(--grey-light); max-width: 40ch; }
.lead-form__status { margin-top: 16px; font-size: 14px; min-height: 1em; }
.lead-form__status[data-state="error"] { color: #b3261e; }
.lead-form__status[data-state="ok"] { color: var(--blush-deep); }

/* ============================================================
   RAILS
   ============================================================ */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(72vw, 580px); gap: clamp(16px, 2vw, 30px); overflow-x: auto; scroll-snap-type: x mandatory; padding: clamp(40px, 5vw, 68px) var(--pad) 12px; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.rail-hint { padding-bottom: clamp(48px, 6vw, 80px); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey-light); }

/* ============================================================
   ECHIPA / TEAM
   ============================================================ */
.team { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--line); }
.team__grid { margin-top: clamp(44px, 6vw, 76px); display: flex; flex-direction: column; gap: clamp(56px, 7vw, 96px); }
.team-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 76px); align-items: start; }
.team-card__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: none; }
.team-card__body h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; margin-bottom: 18px; }
.team-card__body p { color: var(--grey); max-width: 60ch; }
.team-card__body p + p { margin-top: 16px; }

/* ============================================================
   STUDIO / RESULTS
   ============================================================ */
.studio { border-bottom: 1px solid var(--line); }
.studio .container { padding-top: clamp(80px, 10vw, 140px); }
.results { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--line); }
.story { margin-top: clamp(44px, 6vw, 76px); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.story__media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 26px); }
.story__media figure { position: relative; }
.story__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.story__media figcaption { margin-top: 12px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); }
.story__media figure:last-child figcaption { color: var(--blush-deep); }
.story__text h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; }
.story__tag { margin: 12px 0 22px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }
.story__text > p:not(.story__tag) { color: var(--grey); margin-bottom: 32px; max-width: 48ch; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: clamp(80px, 10vw, 140px) 0; }
.reviews__grid { margin-top: clamp(44px, 6vw, 76px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.review { background: var(--ink); padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; gap: 28px; transition: background 0.4s var(--ease); }
.review:hover { background: var(--ink-soft); }
.review p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 1.9vw, 1.6rem); line-height: 1.4; }
.review p::before { content: "“"; color: var(--blush); font-size: 1.4em; line-height: 0; vertical-align: -0.28em; margin-right: 4px; }
.review footer { margin-top: auto; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--line); }
.faq .section-title { margin-bottom: clamp(30px, 4vw, 52px); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 26px 0; font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 500; transition: color 0.3s var(--ease), padding-left 0.4s var(--ease); }
.faq__item summary:hover { color: var(--blush-deep); padding-left: 10px; }
.faq__item[open] summary { color: var(--blush-deep); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-sans); font-weight: 300; font-size: 26px; line-height: 1; flex-shrink: 0; transition: transform 0.4s var(--ease-curtain); color: var(--blush-deep); }
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__item p { padding: 0 0 28px; max-width: 60ch; color: var(--grey); font-size: 15px; }

/* ============================================================
   OFFERS
   ============================================================ */
.offers { padding: clamp(80px, 10vw, 140px) 0; }
.offers__grid { max-width: 1320px; margin-inline: auto; padding-inline: var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); }
.offer { border: 1px solid var(--line-light); display: flex; flex-direction: column; transition: border-color 0.4s var(--ease); }
.offer:hover { border-color: var(--blush); }
.offer figure { overflow: hidden; }
.offer figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; opacity: 0.88; transition: transform 0.7s var(--ease); }
.offer:hover figure img { transform: scale(1.04); }
.offer__body { padding: clamp(26px, 3.5vw, 46px); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.offer__body .kicker { margin-bottom: 0; }
.offer__body h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.offer__body p { color: var(--grey-light); font-size: 15px; max-width: 44ch; }
.offer__body p strong { color: var(--paper); }
.offer__body .btn { align-self: flex-start; margin-top: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--line); }
.contact__meta { margin: clamp(30px, 4vw, 46px) 0; max-width: 560px; }
.contact__meta div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__meta dt { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); padding-top: 4px; }
.contact__meta dd { font-size: 16px; }
.contact__meta dd a { border-bottom: 1px solid var(--line); }
.contact__meta dd a:hover { border-color: var(--blush-deep); }

.locations { margin-top: clamp(56px, 7vw, 96px); display: flex; flex-direction: column; gap: clamp(40px, 5vw, 68px); }
.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; padding-top: clamp(32px, 4vw, 52px); border-top: 1px solid var(--line); }
.location-card:first-child { border-top: none; padding-top: 0; }
.location-card__info h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 500; margin-bottom: 12px; }
.location-card__info p { color: var(--grey); font-size: 15px; max-width: 40ch; }
.location-card__link { display: inline-block; margin-top: 18px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.location-card__link:hover { border-color: var(--blush-deep); color: var(--blush-deep); }
.location-card__map {
  position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--ink);
  overflow: hidden;
}
.location-card__map iframe { display: block; }

/* ============================================================
   HISTORY
   ============================================================ */
.history { border-bottom: 1px solid var(--line); }
.history .container { padding-top: clamp(80px, 10vw, 140px); }
.rail--history { grid-auto-columns: min(78vw, 440px); padding-bottom: clamp(68px, 8vw, 116px); }
.year { border: 1px solid var(--line); padding: clamp(26px, 3vw, 42px); display: flex; flex-direction: column; gap: 16px; background: var(--white); transition: border-color 0.4s var(--ease), transform 0.5s var(--ease); }
.year:hover { border-color: var(--blush); transform: translateY(-6px); }
.year__n { font-family: var(--font-display); font-size: clamp(3.4rem, 6vw, 5.4rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--ink); }
@supports not (-webkit-text-stroke: 1px black) { .year__n { color: var(--grey-light); } }
.year h3 { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; }
.year p { color: var(--grey); font-size: 14.5px; }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers { padding: clamp(80px, 10vw, 140px) 0; }
.numbers__row { margin-top: clamp(44px, 6vw, 76px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.numbers__row div { padding: clamp(30px, 4vw, 50px) clamp(16px, 2vw, 32px); border-bottom: 1px solid var(--line-light); }
.numbers__row div + div { border-left: 1px solid var(--line-light); }
.numbers__row dt { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1; }
.numbers__row dd { margin-top: 14px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey-light); }
.numbers__cta-line { margin-top: 38px; color: var(--grey-light); font-size: 15px; }
.numbers__cta-line a { color: var(--paper); border-bottom: 1px solid var(--blush); padding-bottom: 2px; }
.numbers__cta-line a:hover { color: var(--blush-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); border-top: 1px solid var(--line-light); padding: clamp(52px, 6vw, 84px) 0; }
.footer__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.footer__logo { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.36em; font-weight: 600; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 13px; color: var(--grey-light); transition: color 0.3s var(--ease); }
.footer__links a:hover { color: var(--blush-soft); }
.footer__meta { text-align: right; font-size: 13px; color: var(--grey-light); }
.footer__meta a { color: var(--paper); font-weight: 600; }
.footer__meta a:hover { color: var(--blush-soft); }
.footer__meta p { margin-top: 14px; font-size: 11.5px; max-width: 34ch; margin-left: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { justify-self: start; width: min(100%, 440px); }
  .hero__rail { display: none; }
  .story { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; }
  .location-card__map { max-width: 540px; }
}
@media (max-width: 1080px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .header__meta { margin-left: auto; }
  .header__phone { font-size: 12px; }
  .mobile-menu:target { display: flex; }
  body:has(.mobile-menu:target) .burger { visibility: hidden; }
  body:has(.mobile-menu:target) .burger-close { display: flex; }
  body:has(.mobile-menu:target) { overflow: hidden; }
}
@media (max-width: 900px) {
  .offers__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .familiar__quotes { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .dir-card h3 { font-size: 0.95rem; }
  .dir-card:last-child img { aspect-ratio: 4 / 5; }
  .fits__list li { grid-template-columns: 64px 1fr; }
  .community__collage { grid-template-columns: 1fr; }
  .community__collage .offset { transform: none; }
  .story__media { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__meta { text-align: left; }
  .footer__meta p { margin-left: 0; }
  .lead-form .btn { width: 100%; text-align: center; }
  .header__cta { display: none; }
}

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