/* ===========================================================================
   Talentverse — landing page styles · V2 "Bold Contemporary Studio"
   ---------------------------------------------------------------------------
   Consumes assets/tokens.css EXCLUSIVELY via var() (no raw hex except rgba
   scrims/overlays derived from navy/gold for which no token exists). V2 is an
   architectural, monochrome-navy + gold-accent direction: oversized Montserrat
   headlines, confident asymmetric layouts, a pull-quote, hairline rules. Navy
   grounds use the .tv-on-dark token flip.

   Behavior wiring (do not rename without updating assets/app.js):
     - .tv-nav / #tv-nav-toggle  → mobile hamburger
     - [data-reveal] + .is-visible → IntersectionObserver scroll reveal
     - #tv-header.is-scrolled     → header elevation on scroll
     - [data-i18n*] / [data-scroll-to] → i18n + smooth-scroll engine

   Contrast note (AC4/AC7 · WCAG AA):
     Warm gold (#e3b04a) FAILS AA as small text on the off-white ground. On light
     sections, body/secondary text uses navy/slate; gold-as-text uses the
     deepened --tv-accent-text (#8c6a20, 4.79:1). Raw gold is used only for
     large display accents, hairline rules, eyebrows (12px decorative meta,
     paired with a rule, not a reading surface) and icons. On NAVY grounds gold
     is fully legible and used freely.
   =========================================================================== */

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

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* iOS safe-area: root background fills the status-bar strip above the fixed
     header. With viewport-fit=cover the html element sits behind the safe-area
     inset; setting it to navy-deep ensures the strip is navy, not page-white. */
  background-color: var(--tv-navy-deep);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--tv-bg);
  color: var(--tv-text);
  font-family: var(--tv-font-body);
  font-size: var(--tv-text-base);
  line-height: var(--tv-leading-normal);
  font-weight: var(--tv-weight-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* belt-and-braces against 360px horizontal scroll */
}

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

h1, h2, h3, h4 {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-bold);
  line-height: var(--tv-leading-tight);
  letter-spacing: var(--tv-tracking-tight);
  color: var(--tv-text);
}

p { margin: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--tv-gold); color: var(--tv-navy); }

:focus-visible {
  outline: var(--tv-border-width-strong) solid var(--tv-focus-ring);
  outline-offset: 3px;
  border-radius: var(--tv-radius-sm);
}

/* Skip link for keyboard / AT users */
.tv-skip-link {
  position: absolute;
  left: var(--tv-space-4);
  top: -100px;
  z-index: var(--tv-z-overlay);
  background: var(--tv-gold);
  color: var(--tv-navy);
  padding: var(--tv-space-3) var(--tv-space-5);
  font-weight: var(--tv-weight-semibold);
  border-radius: var(--tv-radius-sm);
  transition: top var(--tv-duration-fast) var(--tv-ease-out);
}
.tv-skip-link:focus { top: var(--tv-space-4); }

/* ---- layout shell ------------------------------------------------------- */
.tv-shell {
  width: 100%;
  max-width: var(--tv-content-max);
  margin-inline: auto;
  padding-inline: var(--tv-gutter);
}

.tv-section { padding-block: var(--tv-section-y); }
.tv-section--dark { background: var(--tv-navy); }
.tv-section--sunken { background: var(--tv-bg-sunken); }

/* Anchor offset: the header is position:fixed at 84px, so hash/CTA scrolls must
   leave room for it — otherwise the section heading lands hidden behind the bar.
   84px header + ~12px breathing gap. Applies to every in-page scroll target. */
#tv-hero,
#tv-about,
#tv-services,
#tv-who,
#tv-process,
#tv-why,
#tv-faq,
#tv-contact,
#tv-footer {
  scroll-margin-top: 96px;
}

/* ---- shared editorial primitives --------------------------------------- */
.tv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--tv-font-body);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-xs);
  letter-spacing: var(--tv-tracking-caps-wide);
  text-transform: uppercase;
  color: var(--tv-accent-text);
}
.tv-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--tv-gold);
  opacity: 0.75;
}
.tv-on-dark .tv-eyebrow { color: var(--tv-gold); }

.tv-eyebrow--center { justify-content: center; }
.tv-eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--tv-gold);
  opacity: 0.75;
}

.tv-section__head { margin-bottom: clamp(2.25rem, 4.2vw, 3.5rem); }
.tv-section__head--center {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}
.tv-section__title {
  font-size: var(--tv-display-section);
  margin-top: var(--tv-space-5);
  letter-spacing: var(--tv-tracking-tighter);
}
.tv-on-dark .tv-section__title { color: var(--tv-white); }
.tv-section__sub {
  font-size: var(--tv-text-md);
  color: var(--tv-text-muted);
  line-height: var(--tv-leading-snug);
  margin-top: var(--tv-space-4);
}

/* Material Symbols icon font helper */
.tv-icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}

/* ---- buttons ------------------------------------------------------------ */
.tv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tv-font-body);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--tv-radius-sm);
  cursor: pointer;
  border: var(--tv-border-width) solid transparent;
  transition: background var(--tv-duration-base) var(--tv-ease-out),
              color var(--tv-duration-base) var(--tv-ease-out),
              border-color var(--tv-duration-base) var(--tv-ease-out),
              transform var(--tv-duration-base) var(--tv-ease-out),
              box-shadow var(--tv-duration-base) var(--tv-ease-out);
}
.tv-btn--accent {
  background: var(--tv-gold);
  color: var(--tv-navy);
  box-shadow: var(--tv-shadow-gold);
}
.tv-btn--accent:hover {
  background: var(--tv-white);
  color: var(--tv-navy);
  transform: translateY(-2px);
}
.tv-btn--ghost {
  border-color: var(--tv-border-strong);
  color: var(--tv-text-on-dark);
}
.tv-btn--ghost:hover {
  border-color: var(--tv-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
/* Ghost button on a light ground (about link variant) */
.tv-btn--ghost-dark {
  border-color: var(--tv-border-strong);
  color: var(--tv-text);
}
.tv-btn--ghost-dark:hover {
  border-color: var(--tv-navy);
  background: rgba(35, 52, 80, 0.04);
  transform: translateY(-2px);
}
.tv-btn .tv-icon { font-size: 18px; transition: transform var(--tv-duration-base) var(--tv-ease-out); }
.tv-btn:hover .tv-icon { transform: translateX(4px); }

/* ===========================================================================
   HEADER / NAV
   =========================================================================== */
.tv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--tv-z-sticky);
  background: rgba(24, 37, 64, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--tv-border-width) solid var(--tv-line-gold);
  transition: background var(--tv-duration-base) var(--tv-ease-out),
              box-shadow var(--tv-duration-base) var(--tv-ease-out);
  /* iOS safe-area: shift header content below the status-bar notch.
     The header's navy background (backed by html { background: navy-deep })
     fills the safe-area strip, giving a solid-navy status bar on iOS Safari.
     padding-left/right guard landscape notch cutouts. */
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.tv-header.is-scrolled {
  background: rgba(24, 37, 64, 0.95);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.5);
}
.tv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.tv-brand { display: inline-flex; align-items: center; }
.tv-brand__logo {
  height: 32px; /* inline traced transparent wordmark — height drives width (1062:274) */
  width: auto;
  display: block;
}

.tv-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 3vw, 2.625rem);
}
.tv-nav__link {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--tv-text-xs);
  font-weight: var(--tv-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--tv-duration-base) var(--tv-ease-out);
}
.tv-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--tv-gold);
  transition: width var(--tv-duration-base) var(--tv-ease-out);
}
.tv-nav__link:hover { color: var(--tv-white); }
.tv-nav__link:hover::after { width: 100%; }

/* The contact link in the nav is rendered as the gold CTA pill */
.tv-nav__link--cta {
  background: var(--tv-gold);
  color: var(--tv-navy);
  padding: 12px 24px;
  border-radius: var(--tv-radius-sm);
  letter-spacing: 0.08em;
}
.tv-nav__link--cta::after { content: none; }
.tv-nav__link--cta:hover { background: var(--tv-white); color: var(--tv-navy); }

.tv-lang-toggle {
  font-family: var(--tv-font-body);
  background: transparent;
  border: var(--tv-border-width) solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--tv-text-xs);
  font-weight: var(--tv-weight-semibold);
  letter-spacing: 0.14em;
  padding: 9px 16px;
  border-radius: var(--tv-radius-sm);
  cursor: pointer;
  transition: color var(--tv-duration-base) var(--tv-ease-out),
              border-color var(--tv-duration-base) var(--tv-ease-out);
}
.tv-lang-toggle:hover { color: var(--tv-gold); border-color: var(--tv-gold); }

/* Hamburger (hidden on desktop) */
.tv-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: var(--tv-border-width) solid rgba(255, 255, 255, 0.28);
  border-radius: var(--tv-radius-sm);
  cursor: pointer;
  position: relative;
}
.tv-nav-toggle__bars,
.tv-nav-toggle__bars::before,
.tv-nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--tv-white);
  transform: translateX(-50%);
  transition: transform var(--tv-duration-base) var(--tv-ease-out),
              opacity var(--tv-duration-base) var(--tv-ease-out);
}
.tv-nav-toggle__bars { top: 50%; margin-top: -1px; }
.tv-nav-toggle__bars::before { top: -7px; }
.tv-nav-toggle__bars::after { top: 7px; }
.tv-nav-toggle[aria-expanded="true"] .tv-nav-toggle__bars { background: transparent; }
.tv-nav-toggle[aria-expanded="true"] .tv-nav-toggle__bars::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.tv-nav-toggle[aria-expanded="true"] .tv-nav-toggle__bars::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* Header right cluster keeps lang + hamburger together */
.tv-header__actions { display: flex; align-items: center; gap: var(--tv-space-4); }

/* ===========================================================================
   HERO
   =========================================================================== */
.tv-hero {
  position: relative;
  overflow: hidden;
  background: var(--tv-navy-deep);
  /* V2.3 #4: taller hero with more vertical presence. min-height gives it
     stature on desktop; the clamp caps it sensibly so small screens never get
     a forced over-tall viewport (content + header still fit). Content is
     vertically centered in the extra room via the flex column below. */
  display: flex;
  min-height: clamp(640px, 90vh, 920px);
  padding-top: clamp(132px, 18vh, 184px);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}
.tv-hero__media { position: absolute; inset: 0; z-index: var(--tv-z-base); }
.tv-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.05);
}
/* V2.2 #4: LEFT-weighted scrim. The new hero art is calm midnight-navy on the
   left and flowing gold light-trails / a connected-node constellation building
   toward the right. The scrim stays heavy on the left (keeps the white H1 +
   subhead WCAG-AA legible) and clears toward the right so the gold movement
   stays visible. A soft bottom fade seats the hero into the navy page. */
.tv-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(24, 37, 64, 0.55) 100%),
    linear-gradient(to right,
      rgba(24, 37, 64, 0.92) 0%,
      rgba(24, 37, 64, 0.78) 35%,
      rgba(35, 52, 80, 0.25) 75%,
      rgba(35, 52, 80, 0.05) 100%);
}
/* V2.3 #4: clean LEFT-aligned column. Every element (H1 → subhead → CTA row)
   is flush to the same left edge — the shell's content gutter — instead of the
   prior 55rem cap that read as an awkward neither-centered-nor-left block.
   align-items: flex-start keeps the CTA row and any inline children left-bound;
   text-align: left makes the intent explicit. Per-element max-width below stays
   purely as a readability measure (it does not shift the left edge). */
.tv-hero__inner {
  position: relative;
  z-index: var(--tv-z-raised);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-block: auto; /* vertically centers the column in the taller hero */
}
.tv-hero__title {
  font-size: var(--tv-display-hero);
  font-weight: var(--tv-weight-black);
  letter-spacing: var(--tv-tracking-tighter);
  line-height: 1.02;
  color: var(--tv-white);
  max-width: 16ch;
  margin: 0 0 var(--tv-space-5);
}
.tv-hero__title .tv-gold { color: var(--tv-gold); }
.tv-hero__sub {
  font-size: var(--tv-text-md);
  color: rgba(255, 255, 255, 0.76);
  max-width: 56ch;
  line-height: var(--tv-leading-snug);
  margin: 0;
}
.tv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--tv-space-4);
  margin-top: var(--tv-space-7);
}
/* (V2.1 #4: hero marker strip removed — the "Neden Talentverse" section keeps
   its own markers; the hero now ends on the CTAs.) */

/* ===========================================================================
   ABOUT  — asymmetric two-column: figure + body
   =========================================================================== */
.tv-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.tv-about__figure { position: relative; }
.tv-about__figure-frame {
  position: absolute;
  inset: 0;
  transform: translate(20px, 20px);
  border: var(--tv-border-width) solid var(--tv-gold);
  border-radius: var(--tv-radius-sm);
  z-index: var(--tv-z-base);
}
.tv-about__figure-photo {
  position: relative;
  z-index: var(--tv-z-raised);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--tv-radius-sm);
  filter: saturate(0.92) contrast(1.03);
  box-shadow: var(--tv-shadow-lg);
}
.tv-about__figure-tag {
  position: absolute;
  z-index: 2;
  left: -18px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tv-navy);
  color: var(--tv-white);
  padding: 18px 26px;
  border-radius: var(--tv-radius-sm);
  box-shadow: 0 24px 50px -20px rgba(35, 52, 80, 0.6);
}
.tv-about__figure-tag .tv-icon { color: var(--tv-gold); font-size: 22px; }
.tv-about__figure-tag span {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-sm);
}
.tv-about__head .tv-section__title { margin-bottom: var(--tv-space-6); }
.tv-about__lead {
  font-size: var(--tv-text-md);
  color: var(--tv-slate-strong);
  line-height: var(--tv-leading-normal);
  margin-bottom: var(--tv-space-5);
}
.tv-about__body-text { color: var(--tv-slate); }

/* About pillars — three honest markers under the body copy */
.tv-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--tv-space-5);
  margin-top: var(--tv-space-7);
  padding-top: var(--tv-space-6);
  border-top: var(--tv-border-width) solid var(--tv-line);
}
.tv-pillar__title {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-base);
  color: var(--tv-navy);
  margin-bottom: var(--tv-space-2);
}
.tv-pillar__body { font-size: var(--tv-text-sm); color: var(--tv-slate); line-height: var(--tv-leading-normal); }

/* ===========================================================================
   SERVICES  — six-card bento grid with hairline seams + gold accent rule
   =========================================================================== */
/* V2.1 #2: Services flipped to a navy ground. The bento seams + cards use the
   on-dark token surfaces so the grid reads correctly on navy. */
.tv-cards--services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--tv-line-on-dark);
  border: var(--tv-border-width) solid var(--tv-line-on-dark);
  border-radius: var(--tv-radius-sm);
  overflow: hidden;
}
.tv-card {
  position: relative;
  background: var(--tv-navy-soft);
  padding: clamp(2.125rem, 3.4vw, 3rem) clamp(1.75rem, 2.8vw, 2.625rem);
  transition: background var(--tv-duration-base) var(--tv-ease-out);
}
.tv-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--tv-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--tv-duration-base) var(--tv-ease-out);
}
.tv-card:hover { background: rgba(255, 255, 255, 0.05); }
.tv-card:hover::before { transform: scaleY(1); }
.tv-card__index {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-sm);
  letter-spacing: 0.1em;
  color: var(--tv-slate-light);
}
.tv-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--tv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: var(--tv-space-5);
  transition: background var(--tv-duration-base) var(--tv-ease-out);
}
.tv-card__icon .tv-icon { font-size: 26px; color: var(--tv-gold); transition: color var(--tv-duration-base) var(--tv-ease-out); }
.tv-card:hover .tv-card__icon { background: rgba(227, 176, 74, 0.16); }
.tv-card:hover .tv-card__icon .tv-icon { color: var(--tv-gold-soft); }
.tv-card__title {
  font-size: var(--tv-text-lg);
  font-weight: var(--tv-weight-semibold);
  color: var(--tv-white);
  margin-bottom: var(--tv-space-3);
}
.tv-card__body { font-size: var(--tv-text-sm); color: var(--tv-slate-light); line-height: var(--tv-leading-normal); }

/* ===========================================================================
   WHO WE SERVE  — four segment cards, light ground
   =========================================================================== */
.tv-cards--segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tv-space-5);
}
.tv-segment {
  background: var(--tv-white);
  border: var(--tv-border-width) solid var(--tv-line);
  border-radius: var(--tv-radius-sm);
  padding: clamp(1.75rem, 2.4vw, 2.25rem);
  transition: border-color var(--tv-duration-base) var(--tv-ease-out),
              transform var(--tv-duration-base) var(--tv-ease-out),
              box-shadow var(--tv-duration-base) var(--tv-ease-out);
}
.tv-segment:hover {
  border-color: rgba(227, 176, 74, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--tv-shadow-md);
}
.tv-segment__index {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-bold);
  font-size: var(--tv-text-xl);
  color: var(--tv-gold-deep);
  display: block;
  margin-bottom: var(--tv-space-3);
}
.tv-segment__title {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-lg);
  color: var(--tv-navy);
  margin-bottom: var(--tv-space-2);
}
.tv-segment__body { font-size: var(--tv-text-sm); color: var(--tv-slate); line-height: var(--tv-leading-normal); }

/* ===========================================================================
   PROCESS  — five connected steps on navy ground
   =========================================================================== */
.tv-process .tv-section__head { text-align: center; max-width: 44rem; margin-inline: auto; }
.tv-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--tv-space-5);
}
.tv-step {
  position: relative;
  padding-top: var(--tv-space-7);
  border-top: var(--tv-border-width) solid rgba(255, 255, 255, 0.14);
}
.tv-step__num {
  position: absolute;
  top: -22px;
  left: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-bold);
  font-size: var(--tv-text-base);
  color: var(--tv-navy);
  background: var(--tv-gold);
  border-radius: var(--tv-radius-sm);
}
.tv-step__title {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-base);
  color: var(--tv-white);
  margin-bottom: var(--tv-space-3);
}
.tv-step__body { font-size: var(--tv-text-sm); color: var(--tv-slate-light); line-height: var(--tv-leading-normal); }

/* ===========================================================================
   WHY  — navy ground: left intro + markers + pull-quote, right value grid
   =========================================================================== */
.tv-why { position: relative; overflow: hidden; }
.tv-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 85% 12%, rgba(227, 176, 74, 0.08), transparent 60%);
  pointer-events: none;
}
.tv-why__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.tv-why__left .tv-section__title { margin-bottom: var(--tv-space-5); }
.tv-why__lead { color: var(--tv-slate-strong); font-size: var(--tv-text-md); line-height: var(--tv-leading-snug); }

/* Pull-quote (V2 signature) */
.tv-quote {
  margin-top: var(--tv-space-7);
  padding-left: var(--tv-space-6);
  border-left: 2px solid var(--tv-gold);
}
.tv-quote__text {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-medium);
  font-style: italic;
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  line-height: 1.25;
  color: var(--tv-navy);
  letter-spacing: var(--tv-tracking-tight);
}
.tv-quote__attribution {
  margin-top: var(--tv-space-4);
  font-size: var(--tv-text-xs);
  letter-spacing: var(--tv-tracking-caps-wide);
  text-transform: uppercase;
  color: var(--tv-gold-deep);
}

/* Honest markers (year / team / location) */
.tv-markers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tv-space-3);
  margin-top: var(--tv-space-7);
}
.tv-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: var(--tv-border-width) solid rgba(168, 132, 42, 0.4);
  border-radius: var(--tv-radius-pill);
  color: var(--tv-slate-strong);
  font-size: var(--tv-text-sm);
  font-weight: var(--tv-weight-medium);
}
.tv-marker .tv-icon { font-size: 17px; color: var(--tv-gold-deep); }

/* Value grid — eight reason cards, 4×2 even grid (no stagger: balanced at all widths) */
.tv-cards--why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--tv-space-5);
}
.tv-reason {
  background: var(--tv-white);
  border: var(--tv-border-width) solid var(--tv-line);
  border-radius: var(--tv-radius-sm);
  padding: clamp(1.75rem, 2.4vw, 2rem) clamp(1.625rem, 2.2vw, 1.875rem);
  transition: border-color var(--tv-duration-base) var(--tv-ease-out),
              transform var(--tv-duration-base) var(--tv-ease-out),
              box-shadow var(--tv-duration-base) var(--tv-ease-out);
}
.tv-reason:hover { border-color: rgba(227, 176, 74, 0.5); transform: translateY(-4px); box-shadow: var(--tv-shadow-md); }
.tv-reason__icon { font-size: 26px; color: var(--tv-gold-deep); display: block; margin-bottom: var(--tv-space-4); }
.tv-reason__title {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-base);
  color: var(--tv-navy);
  margin-bottom: var(--tv-space-2);
}
.tv-reason__body { font-size: var(--tv-text-sm); color: var(--tv-slate); line-height: var(--tv-leading-normal); }

/* ===========================================================================
   CONTACT  — info column + form card
   =========================================================================== */
/* V2.1 #2: Contact flipped to the navy ground (--tv-navy, distinct from the
   deeper --tv-navy-deep footer below it). The form stays a raised white card. */
.tv-contact { background: var(--tv-navy); }
.tv-contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.tv-contact__intro .tv-section__title { margin-bottom: var(--tv-space-5); }
.tv-contact__intro .tv-section__sub { margin-bottom: var(--tv-space-7); }

.tv-channels { display: block; }
.tv-channel {
  display: flex;
  align-items: flex-start;
  gap: var(--tv-space-4);
  padding: var(--tv-space-5) 0;
  border-top: var(--tv-border-width) solid var(--tv-line-on-dark);
}
.tv-channel:last-child { border-bottom: var(--tv-border-width) solid var(--tv-line-on-dark); }
.tv-channel__icon { color: var(--tv-gold); font-size: 22px; margin-top: 2px; }
.tv-channel__label {
  font-size: var(--tv-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tv-slate-light);
  margin-bottom: var(--tv-space-1);
}
.tv-channel__value { font-size: var(--tv-text-base); color: var(--tv-white); font-weight: var(--tv-weight-medium); }
.tv-channel__value--addr { font-weight: var(--tv-weight-regular); color: var(--tv-text-muted-on-dark); line-height: var(--tv-leading-snug); }
.tv-link { color: var(--tv-white); transition: color var(--tv-duration-base) var(--tv-ease-out); }
.tv-link:hover { color: var(--tv-gold); }

/* Form card */
.tv-form {
  background: var(--tv-white);
  border: var(--tv-border-width) solid var(--tv-line);
  border-radius: var(--tv-radius-md);
  padding: clamp(2.25rem, 4vw, 3.5rem);
  box-shadow: var(--tv-shadow-lg);
}
.tv-form__title {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-bold);
  font-size: var(--tv-text-xl);
  color: var(--tv-navy); /* pinned: form is a white card on the navy contact ground */
  margin-bottom: var(--tv-space-6);
}
.tv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--tv-space-5); }
.tv-field { margin-bottom: var(--tv-space-5); }
.tv-field__label {
  display: block;
  font-size: var(--tv-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tv-slate-strong);
  font-weight: var(--tv-weight-semibold);
  margin-bottom: var(--tv-space-3);
}
.tv-field__input {
  width: 100%;
  background: var(--tv-off-white);
  border: var(--tv-border-width) solid var(--tv-line);
  border-radius: var(--tv-radius-sm);
  padding: 14px 16px;
  font-family: var(--tv-font-body);
  font-size: var(--tv-text-base);
  color: var(--tv-navy);
  transition: border-color var(--tv-duration-base) var(--tv-ease-out),
              box-shadow var(--tv-duration-base) var(--tv-ease-out),
              background var(--tv-duration-base) var(--tv-ease-out);
}
.tv-field__input--area { resize: vertical; min-height: 120px; }
.tv-field__input::placeholder { color: var(--tv-placeholder); }
.tv-field__input:focus {
  outline: none;
  border-color: var(--tv-gold);
  background: var(--tv-white);
  box-shadow: 0 0 0 3px rgba(227, 176, 74, 0.16);
}
.tv-field__input[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.tv-field__error {
  margin-top: var(--tv-space-2);
  font-size: var(--tv-text-sm);
  color: #c0392b;
  min-height: 1.2em;
}
.tv-form__submit { width: 100%; justify-content: center; margin-top: var(--tv-space-2); }
.tv-form__success {
  margin-top: var(--tv-space-5);
  padding: var(--tv-space-5);
  background: rgba(227, 176, 74, 0.1);
  border: var(--tv-border-width) solid rgba(227, 176, 74, 0.4);
  border-radius: var(--tv-radius-sm);
}
.tv-form__success-title {
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  color: var(--tv-navy);
  margin-bottom: var(--tv-space-2);
}
.tv-form__success-body { font-size: var(--tv-text-sm); color: var(--tv-slate-strong); }

/* ===========================================================================
   FOOTER  — navy ground so the gold logo sits seamlessly
   =========================================================================== */
.tv-footer {
  background: var(--tv-navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding-top: clamp(4.5rem, 8vw, 6rem);
  /* iOS safe-area: bottom inset prevents home-indicator overlap; fallback 0 on desktop. */
  padding-bottom: calc(var(--tv-space-7) + env(safe-area-inset-bottom, 0px));
}
.tv-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.tv-footer__logo {
  height: 42px; /* inline traced transparent wordmark on the navy-deep footer ground */
  width: auto;
  display: block;
  margin-bottom: var(--tv-space-5);
}
.tv-footer__tagline { max-width: 34ch; font-size: var(--tv-text-base); line-height: var(--tv-leading-normal); color: var(--tv-slate-light); }
.tv-footer__heading {
  color: var(--tv-white);
  font-family: var(--tv-font-body);
  font-size: var(--tv-text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: var(--tv-weight-semibold);
  margin-bottom: var(--tv-space-5);
}
.tv-footer__link,
.tv-footer__muted {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--tv-text-sm);
  margin-bottom: var(--tv-space-3);
  transition: color var(--tv-duration-base) var(--tv-ease-out);
}
.tv-footer__link:hover { color: var(--tv-gold); }
.tv-footer__base {
  margin-top: clamp(3.5rem, 7vw, 5rem);
  padding-top: var(--tv-space-6);
  border-top: var(--tv-border-width) solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--tv-space-4);
  font-size: var(--tv-text-sm);
  color: var(--tv-slate);
}
.tv-footer__rights { color: var(--tv-slate-light); }
.tv-footer__privacy { display: flex; flex-direction: column; gap: var(--tv-space-1); text-align: right; }
.tv-footer__privacy-label { color: rgba(255, 255, 255, 0.62); }
.tv-footer__privacy-note { color: var(--tv-slate); font-size: var(--tv-text-xs); }

/* ===========================================================================
   LEGAL PAGE  (.tv-legal — kvkk.html and any future legal/policy subpage)
   Long-form text on light ground, token-based typography, ~70ch measure.
   =========================================================================== */
.tv-legal {
  max-width: 70ch;
  margin-inline: auto;
  padding-block: var(--tv-section-y);
  color: var(--tv-text);
}

.tv-legal h1 {
  font-family: var(--tv-font-display);
  font-size: var(--tv-display-section);
  font-weight: var(--tv-weight-bold);
  letter-spacing: var(--tv-tracking-tight);
  line-height: var(--tv-leading-snug);
  margin-block-end: var(--tv-space-3);
}

.tv-legal__meta {
  font-size: var(--tv-text-sm);
  color: var(--tv-text-muted);
  margin-block-end: var(--tv-space-6);
  border-block-end: var(--tv-border-width) solid var(--tv-border);
  padding-block-end: var(--tv-space-4);
}

.tv-legal__intro {
  font-size: var(--tv-text-md);
  line-height: var(--tv-leading-relaxed);
  color: var(--tv-text);
  margin-block-end: var(--tv-space-7);
}

.tv-legal section {
  margin-block-end: var(--tv-space-6);
}

.tv-legal h2 {
  font-family: var(--tv-font-display);
  font-size: var(--tv-text-lg);
  font-weight: var(--tv-weight-semibold);
  letter-spacing: var(--tv-tracking-tight);
  margin-block-end: var(--tv-space-2);
}

.tv-legal p {
  font-size: var(--tv-text-base);
  line-height: var(--tv-leading-relaxed);
  color: var(--tv-text-muted);
}

.tv-legal__back {
  margin-block-start: var(--tv-space-8);
  padding-block-start: var(--tv-space-5);
  border-block-start: var(--tv-border-width) solid var(--tv-border);
}

.tv-legal__back a {
  font-size: var(--tv-text-sm);
  font-weight: var(--tv-weight-medium);
  color: var(--tv-accent-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================================================================
   FAQ  — native <details>/<summary> accordion, light ground section
   =========================================================================== */
.tv-faq { background: var(--tv-bg-sunken); }
.tv-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--tv-space-3);
  max-width: 72ch;
  margin-inline: auto;
}
.tv-faq__item {
  background: var(--tv-white);
  border: var(--tv-border-width) solid var(--tv-line);
  border-radius: var(--tv-radius-sm);
  transition: border-color var(--tv-duration-base) var(--tv-ease-out);
}
.tv-faq__item[open] { border-color: rgba(227, 176, 74, 0.45); }
.tv-faq__question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--tv-space-5);
  padding: var(--tv-space-5) var(--tv-space-6);
  font-family: var(--tv-font-display);
  font-weight: var(--tv-weight-semibold);
  font-size: var(--tv-text-base);
  color: var(--tv-navy);
  cursor: pointer;
  user-select: none;
}
.tv-faq__question::-webkit-details-marker { display: none; }
.tv-faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--tv-gold-deep);
  line-height: 1;
  transition: transform var(--tv-duration-base) var(--tv-ease-out);
}
.tv-faq__item[open] .tv-faq__question::after { transform: rotate(45deg); }
.tv-faq__answer {
  padding: 0 var(--tv-space-6) var(--tv-space-5);
  font-size: var(--tv-text-sm);
  color: var(--tv-slate);
  line-height: var(--tv-leading-relaxed);
}

@media (max-width: 48rem) {
  .tv-faq__question { padding: var(--tv-space-4) var(--tv-space-5); font-size: var(--tv-text-sm); }
  .tv-faq__answer { padding: 0 var(--tv-space-5) var(--tv-space-4); }
}

.tv-legal__back a:hover { color: var(--tv-text); }

/* Form privacy notice + third-party caution (contact form in index.html) */
.tv-form__privacy-notice,
.tv-form__hint {
  font-size: var(--tv-text-xs);
  color: var(--tv-text-muted);
  line-height: var(--tv-leading-normal);
}

.tv-form__privacy-notice { margin-block-start: var(--tv-space-3); }
.tv-form__hint { margin-block-start: var(--tv-space-2); }

.tv-form__privacy-notice a {
  color: var(--tv-accent-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===========================================================================
   SCROLL REVEAL  (app.js adds .is-visible; disabled under reduced-motion)
   =========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--tv-duration-slow) var(--tv-ease-out),
              transform var(--tv-duration-slow) var(--tv-ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 61.25rem) { /* 980px — collapse desktop nav to hamburger */
  .tv-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(24, 37, 64, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--tv-border-width) solid var(--tv-line-gold);
    padding: var(--tv-space-4) var(--tv-gutter) var(--tv-space-6);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--tv-duration-base) var(--tv-ease-out),
                transform var(--tv-duration-base) var(--tv-ease-out),
                visibility var(--tv-duration-base) var(--tv-ease-out);
  }
  .tv-nav.tv-nav--open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .tv-nav__link {
    padding: var(--tv-space-4) 0;
    border-bottom: var(--tv-border-width) solid rgba(255, 255, 255, 0.08);
    font-size: var(--tv-text-sm);
  }
  .tv-nav__link::after { content: none; }
  .tv-nav__link--cta {
    margin-top: var(--tv-space-4);
    text-align: center;
    border: none;
  }
  .tv-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 55rem) { /* 880px — single/double column section layouts */
  .tv-about__grid,
  .tv-contact__grid { grid-template-columns: 1fr; }
  .tv-cards--services { grid-template-columns: 1fr 1fr; }
  .tv-cards--segments { grid-template-columns: 1fr 1fr; }
  .tv-steps { grid-template-columns: 1fr 1fr; gap: var(--tv-space-7) var(--tv-space-5); }
  .tv-cards--why { grid-template-columns: repeat(2, 1fr); }
  .tv-footer__grid { grid-template-columns: 1fr 1fr; }
  .tv-about__figure { max-width: 30rem; margin-inline: auto; }
  .tv-about__figure-photo { aspect-ratio: 16 / 11; }
}

@media (max-width: 37.5rem) { /* 600px — full single column, no horizontal scroll at 360px */
  .tv-cards--services,
  .tv-cards--segments,
  .tv-cards--why,
  .tv-steps,
  .tv-form__row,
  .tv-footer__grid { grid-template-columns: 1fr; }
  .tv-pillars { grid-template-columns: 1fr; gap: var(--tv-space-5); }
  .tv-about__figure-tag { left: 0; }
  .tv-footer__privacy { text-align: left; }
  .tv-footer__base { flex-direction: column; }
  /* On narrow viewports the H1 + subhead span most of the width, so darken the
     scrim more uniformly to hold WCAG-AA contrast; the gold movement still
     reads through the lighter right edge. */
  .tv-hero__media::after {
    background:
      linear-gradient(180deg, transparent 55%, rgba(24, 37, 64, 0.6) 100%),
      linear-gradient(to right,
        rgba(24, 37, 64, 0.94) 0%,
        rgba(24, 37, 64, 0.86) 55%,
        rgba(35, 52, 80, 0.5) 100%);
  }
}
