/* ==========================================================================
   Global Markets Group — Site Styles
   Institutional minimalism: white space, near-black ink, restrained orange,
   enormous figures, full-color photography. Motion: line reveals, count-ups,
   parallax hero, drawing rules, scroll-triggered fades.
   ========================================================================== */

:root {
  --white: #fbfaf7;
  --white-deep: #f3f1ec;
  --ink: #0d0f14;
  --ink-soft: #4c5059;
  --ink-faint: #9094a0;
  --orange: #e57200;
  --rule: rgba(13, 15, 20, 0.92);
  --rule-soft: rgba(13, 15, 20, 0.18);
  --rule-faint: rgba(13, 15, 20, 0.09);
  --sans: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --max-w: 1320px;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

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

::selection { background: var(--ink); color: var(--white); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.kicker,
.section-no {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.kicker { color: var(--ink-soft); }

.kicker::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  background: var(--orange);
  vertical-align: 1px;
}

.section-head {
  position: relative;
  padding-top: 26px;
  margin-bottom: clamp(44px, 6vw, 80px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 40px;
}

/* top rule draws across as the heading reveals (only when JS motion is active) */
.section-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--rule);
  transform-origin: left;
  transition: transform 1.1s var(--ease) 0.1s;
}

body.js-motion .section-head:not(.visible)::before { transform: scaleX(0); }

.section-head h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

/* --------------------------------------------------------------------------
   Topline & header
   -------------------------------------------------------------------------- */

.topline {
  background: var(--ink);
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topline .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topline span:last-child { color: var(--white); }

@media (max-width: 700px) {
  .topline span:first-child { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
  transition: transform 0.4s var(--ease);
}

.site-header.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }

.brand img { height: 40px; width: 40px; object-fit: contain; }

.brand-name {
  font-size: clamp(1.08rem, 2.6vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 5px;
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }

.nav-links > li { position: relative; }

.nav-links a {
  position: relative;
  display: block;
  padding: 9px 13px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

/* underline grows on hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--ink); }

.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active { color: var(--ink); }

.nav-links a.active::after { transform: scaleX(1); background: var(--orange); }

.has-dropdown > a::after { display: none; }

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--rule-soft);
  box-shadow: 0 24px 48px rgba(13, 15, 20, 0.1);
  list-style: none;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a { padding: 10px 12px; }

.dropdown a::after { display: none; }

.dropdown a:hover { background: var(--white-deep); }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 12px 24px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  transition: background 0.2s ease !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover { background: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-soft);
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.1rem;
}

@media (max-width: 940px) {
  .nav-toggle { display: grid; place-items: center; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule-soft);
    padding: 8px 24px 22px;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: 14px 10px; font-size: 0.95rem; border-bottom: 1px solid var(--rule-faint); }

  .nav-links a::after { display: none; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 18px;
  }

  .nav-cta { text-align: center; margin-top: 12px; }
}

/* --------------------------------------------------------------------------
   Hero — full-bleed image, line-revealed headline
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  animation: hero-zoom 16s var(--ease) both;
}

/* image is taller than the frame and starts shifted up; JS slides it for parallax */
.hero-bg img {
  position: relative;
  top: -18%;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 72%;
  filter: brightness(0.66) contrast(1.06) saturate(0.88);
  will-change: transform;
}

@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

/* dark base gradient plus a faint navy tint for a cooler, more official cast */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 15, 20, 0.8) 0%, rgba(13, 15, 20, 0.22) 45%, rgba(13, 15, 20, 0.28) 100%),
    linear-gradient(rgba(18, 30, 62, 0.24), rgba(18, 30, 62, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(48px, 7vh, 96px);
}

.hero .kicker { color: rgba(251, 250, 247, 0.85); }

.hero h1 {
  font-size: clamp(3rem, 8.6vw, 7.2rem);
  font-weight: 500;
  margin: 26px 0 30px;
  max-width: 14ch;
}

/* line-by-line clip reveal */
.line { display: block; overflow: hidden; }

.line > span {
  display: block;
  transform: translateY(110%);
  animation: line-up 1s var(--ease) forwards;
}

.line:nth-child(2) > span { animation-delay: 0.12s; }
.line:nth-child(3) > span { animation-delay: 0.24s; }

@keyframes line-up {
  to { transform: translateY(0); }
}

.hero-tagline {
  font-size: 1.12rem;
  font-weight: 400;
  color: rgba(251, 250, 247, 0.78);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fade-rise 1s var(--ease) 0.4s both;
}

.hero .btn-row { animation: fade-rise 1s var(--ease) 0.55s both; }

@keyframes fade-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: 40px;
  z-index: 2;
  width: 1px;
  height: 64px;
  background: rgba(251, 250, 247, 0.35);
  overflow: hidden;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: cue 2.2s var(--ease) infinite;
}

@keyframes cue {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* --------------------------------------------------------------------------
   Stats band — enormous count-up figures
   -------------------------------------------------------------------------- */

.stats-band { border-bottom: 1px solid var(--rule-soft); }

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 880px) { .stats-band .container { grid-template-columns: 1fr; } }

.stat {
  padding: clamp(40px, 5vw, 72px) 36px;
}

/* orange tick grows in above each figure */
.stat::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 26px;
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.3s;
}

body.js-motion .stat:not(.visible)::before { transform: scaleX(0); }

.stat + .stat { border-left: 1px solid var(--rule-soft); }

@media (max-width: 880px) {
  .stat + .stat { border-left: none; border-top: 1px solid var(--rule-soft); }
  .stat { padding-left: 0; padding-right: 0; }
}

.stat-value {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-value sup {
  font-size: 0.4em;
  color: var(--orange);
  font-weight: 600;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: clamp(80px, 10vw, 140px) 0; }

.section.tinted { background: var(--white-deep); }

.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

@media (max-width: 880px) { .editorial { grid-template-columns: 1fr; } }

.editorial-copy p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 1.14rem;
  line-height: 1.75;
  font-weight: 400;
}

.editorial-copy p strong { color: var(--ink); font-weight: 600; }

.editorial-copy > p:first-of-type {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.015em;
}

/* Photography — full color, settles into place on reveal */
.photo-strip figure + figure { margin-top: 28px; }

.photo-strip figure { overflow: hidden; }

.photo-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}

.photo-strip figure.visible img { transform: scale(1); }

.photo-strip figure:hover img { transform: scale(1.04); }

figcaption,
.figure-caption {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 12px 0 0;
}

/* Principles — numbered, ruled */
.principles {
  margin-top: clamp(64px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

@media (max-width: 880px) { .principles { grid-template-columns: 1fr; } }

.principle {
  padding: 36px 32px 44px 0;
  transition: padding-left 0.3s var(--ease);
}

.principle + .principle { border-left: 1px solid var(--rule-soft); padding-left: 32px; }

@media (max-width: 880px) {
  .principle + .principle { border-left: none; border-top: 1px solid var(--rule-soft); padding-left: 0; }
}

.principle .numeral {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.principle h3 { font-size: 1.5rem; margin: 16px 0 12px; letter-spacing: -0.02em; }

.principle p { color: var(--ink-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: clamp(80px, 10vw, 130px) 0;
}

.cta-band .cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px 56px;
}

.cta-band .kicker { color: rgba(251, 250, 247, 0.7); }

.cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 18px 0 14px;
}

.cta-band h2 em { color: var(--orange); }

.cta-band p { color: rgba(251, 250, 247, 0.6); max-width: 480px; }

.cta-band .btn-primary { background: var(--white); color: var(--ink); }

.cta-band .btn-primary:hover { background: var(--orange); color: var(--white); }

.cta-band .btn-ghost { color: var(--white); border-color: rgba(251, 250, 247, 0.35); }

.cta-band .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-primary,
.btn-ghost {
  position: relative;
  display: inline-block;
  padding: 16px 34px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary { background: var(--ink); color: var(--white); }

.btn-primary::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover { background: var(--orange); }

.btn-primary:hover::after { transform: translateX(5px); }

.btn-ghost { color: inherit; border: 1px solid var(--rule-soft); }

.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.hero .btn-primary { background: var(--white); color: var(--ink); }

.hero .btn-primary:hover { background: var(--orange); color: var(--white); }

.hero .btn-ghost { border-color: rgba(251, 250, 247, 0.4); }

.hero .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* --------------------------------------------------------------------------
   Page hero (interior)
   -------------------------------------------------------------------------- */

.page-hero { padding: clamp(64px, 9vw, 110px) 0 0; }

.page-hero .dateline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.page-hero .dateline b { color: var(--orange); font-weight: 600; }

.page-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  margin: 38px 0 22px;
  animation: fade-rise 0.9s var(--ease) both;
}

.page-hero .lede {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  max-width: 760px;
  padding-bottom: clamp(48px, 6vw, 80px);
  animation: fade-rise 0.9s var(--ease) 0.12s both;
}

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 0 clamp(32px, 4vw, 56px);
}

.person {
  border-top: 1px solid var(--rule-soft);
  padding: 30px 0 52px;
  transition: transform 0.5s var(--ease);
}

.person:hover { transform: translateY(-5px); }

.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 24px;
}

.person-name { font-size: 1.55rem; font-weight: 600; letter-spacing: -0.02em; }

.person-role {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 8px 0 16px;
}

.person-bio { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.7; }

.person-bio p + p { margin-top: 10px; }

/* --------------------------------------------------------------------------
   Members roster
   -------------------------------------------------------------------------- */

.roster {
  columns: 3 280px;
  column-gap: clamp(40px, 5vw, 72px);
  list-style: none;
  counter-reset: member;
}

.roster li {
  counter-increment: member;
  break-inside: avoid;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-faint);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: padding-left 0.3s var(--ease);
}

.roster li::before {
  content: counter(member, decimal-leading-zero);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  transition: color 0.2s ease;
}

.roster li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.roster li:hover { padding-left: 8px; }

.roster li:hover::before { color: var(--orange); }

.roster li:hover::after { transform: scaleX(1); }

/* --------------------------------------------------------------------------
   Placement
   -------------------------------------------------------------------------- */

/* Sector groups */
.logo-group + .logo-group { margin-top: 52px; }

.logo-group-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-group-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Hairlines come from per-cell borders, not a grey gap, so any partial
   row in a group stays white instead of showing grey. */
.logo-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--rule-faint);
  border-left: 1px solid var(--rule-faint);
}

@media (max-width: 1040px) { .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.logo-cell {
  background: #fff;
  aspect-ratio: 8 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 30px;
  border-right: 1px solid var(--rule-faint);
  border-bottom: 1px solid var(--rule-faint);
  transition: background 0.3s var(--ease);
  /* keep every mark fully inside its own box so nothing — a wide
     wordmark, letter-spaced caption, or scaled logo — can bleed into
     the neighbouring cell or the section below on narrow screens */
  min-width: 0;
  overflow: hidden;
}

.logo-cell:hover { background: var(--white-deep); }

/* every logo sits inside the same bounding box and is centered, so the
   grid reads as one even wall — wide wordmarks cap on width, compact and
   square marks cap on height, none stretched or undersized */
.logo-cell img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.logo-cell:hover img { transform: scale(1.06); }

/* compact square marks that read small in the box can be scaled up
   visually; transform does not affect the cell's layout, so every tile
   stays the same size on desktop and mobile */
.logo-cell img.logo-lg { transform: scale(1.4); }
.logo-cell:hover img.logo-lg { transform: scale(1.48); }

.logo-cell.wordmark span {
  font-weight: 600;
  /* scales down on narrow cells so the name never outgrows its box */
  font-size: clamp(0.82rem, 3.2vw, 1.18rem);
  letter-spacing: -0.015em;
  color: #1b2d5e;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.4s var(--ease);
}

.logo-cell.wordmark:hover span { transform: scale(1.07); }

.logo-cell.wordmark small {
  display: block;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 5px;
}

/* --------------------------------------------------------------------------
   Schedule
   -------------------------------------------------------------------------- */

.schedule { border-top: 1px solid var(--rule); }

.schedule-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px 56px;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: padding-left 0.3s var(--ease);
}

.schedule-row:hover { padding-left: 10px; }

@media (max-width: 720px) { .schedule-row { grid-template-columns: 1fr; gap: 6px; } .schedule-row:hover { padding-left: 0; } }

.schedule-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 12px;
}

.schedule-row h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.025em; }

.schedule-row p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; }

/* --------------------------------------------------------------------------
   FAQ — same two-column rhythm as the schedule: the question sits in the
   left rail like a dateline, the answer reads as body copy on the right
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--rule); }

.faq-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px 56px;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.faq-item h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.faq-item p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 62ch;
}

@media (max-width: 860px) {
  .faq-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 6vw, 90px);
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; letter-spacing: -0.025em; }

.contact-info p { color: var(--ink-soft); margin-bottom: 28px; }

.contact-email {
  position: relative;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-bottom: 4px;
}

.contact-email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.contact-email:hover::after { transform: scaleX(0.4); }

.contact-direct { border-top: 1px solid var(--rule); padding-top: 40px; }

.contact-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

/* second label sits below a hairline so email and socials read as two blocks */
.contact-label-spaced {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--rule-faint);
}

.contact-address {
  display: block;
  font-size: clamp(1.25rem, 2.7vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  word-break: break-word;
  margin-bottom: 30px;
  transition: color 0.2s ease;
}

.contact-address:hover { color: var(--orange); }

.contact-direct .btn-primary { display: inline-block; }

.contact-social { list-style: none; }

.contact-social li + li { border-top: 1px solid var(--rule-faint); }

.contact-social a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  transition: color 0.2s ease, padding-left 0.3s var(--ease);
}

.contact-social a:hover { color: var(--orange); padding-left: 8px; }

.social-name { font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; }

.social-handle { font-size: 0.85rem; color: var(--ink-faint); transition: color 0.2s ease; }

.contact-social a:hover .social-handle { color: var(--orange); }

.inline-link {
  border-bottom: 1px solid var(--rule-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 7vw, 88px) 0 40px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251, 250, 247, 0.14);
}

.footer-brand { display: flex; align-items: center; gap: 14px; }

.footer-brand img { height: 46px; width: 46px; object-fit: contain; }

.footer-brand .brand-name { color: var(--white); }

.footer-brand .brand-sub { color: rgba(251, 250, 247, 0.45); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  list-style: none;
  align-items: center;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(251, 250, 247, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(251, 250, 247, 0.6);
  transition: color 0.2s ease;
}

.footer-social a:hover { color: var(--white); }

.footer-social svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.footer-legal { padding-top: 30px; }

.footer-legal .copyright {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(251, 250, 247, 0.7);
  margin-bottom: 14px;
}

.footer-legal .disclaimer {
  font-size: 0.72rem;
  color: rgba(251, 250, 247, 0.36);
  max-width: 900px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Scroll reveal (elements get .reveal via JS)
   -------------------------------------------------------------------------- */

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

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

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
