/* ─────────────────────────────────────────────────────────────
   Naurel v5 — Page styles (award-winner discipline)
   Reference: Linear restraint, Figma black+white, V.Ships editorial
   ───────────────────────────────────────────────────────────── */

/* ── HERO — Linear / V.Ships pattern ── */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  min-height: 100vh;
  padding-top: 88px;
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero-content {
  padding: clamp(80px, 10vw, 140px) clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-content::before {
  content: "";
  position: absolute;
  top: clamp(100px, 12vw, 160px);
  left: 0; width: 48px; height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.hero h1.display {
  margin: 0 0 32px;
  max-width: 14ch;
}
.hero h1.display em { color: var(--signal); }
.hero .lede {
  font-family: var(--serif);
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
  margin: 0 0 40px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CUSTOMERS — trusted-by strip ── */
.customers-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
}
.customers-strip .eyebrow { color: var(--paper); opacity: 0.5; margin-bottom: 24px; }
.customers-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  opacity: 0.5;
  filter: invert(1);
}

/* ── STATS — editorial oversized numbers (Figma pattern) ── */
.stats {
  background: var(--paper);
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.stats .row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: baseline;
}
.stat .n {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 300;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.stat .n .plus {
  font-style: italic;
  color: var(--signal);
  font-weight: 300;
  margin-left: 2px;
}
.stat .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 16px;
}

/* ── AWARDS — credibility strip (subtle, not loud) ── */
.awards-section {
  background: var(--paper);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.awards-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.6;
}

/* ── BRANCHES — editorial asymmetric list ── */
.branches { background: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 { margin: 0; }
.display-md { font-size: var(--t-h1); line-height: 1.05; }
.section-head .lede {
  font-family: var(--serif);
  font-size: var(--t-lead);
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
  font-weight: 300;
}
.branch-list { border-top: 1px solid var(--ink); }
.branch-row {
  display: grid;
  grid-template-columns: 80px 2fr 3fr 60px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s var(--ease);
  position: relative;
}
.branch-row::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0; height: 100%;
  top: 0;
  background: var(--ink);
  opacity: 0.03;
  transition: width 0.3s var(--ease);
}
.branch-row:hover { padding-left: 16px; }
.branch-row:hover::before { width: 100%; }
.branch-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--warm-gray);
  font-weight: 500;
  position: relative;
}
.branch-row .name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  position: relative;
  transition: color 0.3s var(--ease);
}
.branch-row:hover .name { color: var(--signal); }
.branch-row .desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 60ch;
  font-weight: 300;
  position: relative;
}
.branch-row .arrow {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 24px;
  text-align: right;
  transition: transform 0.3s var(--ease);
  opacity: 0.3;
  position: relative;
}
.branch-row:hover .arrow {
  opacity: 1;
  transform: translateX(8px);
}

/* ── SHOWCASE — editorial photo feature ── */
.showcase {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: var(--section-y) 0;
}
.showcase .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.showcase-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.showcase-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 6s var(--ease);
}
.showcase-photo:hover img { transform: scale(1.03); }
.showcase h2 { color: var(--paper); margin-bottom: 32px; }
.showcase h2 em { color: var(--signal); }
.showcase p {
  font-family: var(--serif);
  font-size: var(--t-lead);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 52ch;
}
.showcase .eyebrow { color: var(--paper); opacity: 0.5; }

/* ── TESTIMONIAL — editorial pull quote ── */
.testimonial-section {
  background: var(--paper);
  padding: clamp(100px, 14vw, 180px) 0;
}
.pullquote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.pullquote p {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  margin: 0 0 32px;
}
.pullquote cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-style: normal;
  font-weight: 500;
}

/* ── CTA — full bleed (Linear pattern) ── */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--paper); opacity: 0.5; justify-content: center; }
.cta-band h2 { color: var(--paper); margin: 0 0 24px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-band h2 em { color: var(--signal); }
.cta-band .lede {
  font-family: var(--serif);
  font-size: var(--t-lead);
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* ── FOOTER (Sequoia + Linear pattern) ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
  font-size: 13px;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .brand-text { color: var(--paper); }
.footer-brand p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  margin: 24px 0;
  max-width: 360px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 16px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { min-height: 50vh; }
  .hero-content { padding: 60px var(--gutter); }
  .stats .row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .branch-row { grid-template-columns: 60px 1fr 30px; gap: 16px; }
  .branch-row .desc { grid-column: 1 / -1; padding-left: 76px; }
  .showcase .grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .stats .row { grid-template-columns: 1fr; }
  .branch-row { grid-template-columns: 40px 1fr 24px; gap: 12px; padding: 24px 0; }
  .branch-row .name { font-size: 22px; }
  .branch-row .desc { grid-column: 2; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
