/*
  Creative Click — Premium Creative Studio
  style.css — Complete Design System
  ---
  Palette:    Dark charcoal base · warm off-white type · muted gold accent
  Display:    Cormorant Garamond (300/400/400i)
  Body:       Inter (300/400/500)
  Grid:       1280px max · 40px gutters
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────── */
:root {
  --bg:         #0A0A0A;
  --bg-card:    #121212;
  --bg-raised:  #181818;
  --border:     #1A1A1A;
  --border-mid: #262626;
  --border-hi:  #363636;
  --text:       #ECEAE7;
  --text-2:     #7C7A78;
  --text-muted: #3C3C3C;
  --gold:       #BF9B6F;
  --gold-hi:    #D4AF82;
  --gold-pale:  rgba(191,155,111,.09);
  --white:      #FFFFFF;

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, -apple-system, sans-serif;

  --max:   1280px;
  --pad-x: 40px;
  --nav-h: 76px;

  --t:      0.3s cubic-bezier(.25,.1,.25,1);
  --t-fast: 0.16s cubic-bezier(.25,.1,.25,1);
  --t-slow: 0.55s cubic-bezier(.25,.1,.25,1);
}

/* ─────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font-b); }
::selection { background: var(--gold-pale); color: var(--text); }

/* ─────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: 100px 0;
}
.section--sm {
  padding: 60px 0;
}
.section--lg {
  padding: 140px 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─────────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-b);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow--gold {
  color: var(--gold);
}
.display-hero {
  font-family: var(--font-d);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--text);
}
.display-hero em {
  font-style: italic;
  font-weight: 300;
}
.display-lg {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.display-md {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.display-sm {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.3;
}
.body-lg {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
}
.body-md {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}
.body-sm {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-2);
}
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: var(--t-fast);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--t-fast);
}
.link-arrow:hover {
  color: var(--gold);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}
.link-gold {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-gold::after { content: '→'; transition: transform var(--t-fast); }
.link-gold:hover::after { transform: translateX(4px); }

/* ─────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .05em;
  transition: var(--t-fast);
}
.nav__logo-mark:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav__logo-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--t-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--t);
}
.nav__link:hover,
.nav__link.active {
  color: var(--text);
}
.nav__link:hover::after,
.nav__link.active::after {
  right: 0;
}
.nav__cta {
  margin-left: 20px;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--t-fast);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 400;
  color: var(--text);
  transition: color var(--t-fast);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 28px;
  color: var(--text-2);
  cursor: pointer;
  transition: color var(--t-fast);
}
.nav__mobile-close:hover { color: var(--text); }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}
.footer__nav-group h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__nav-group a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer__nav-group a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer__social a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────
   HERO (HOMEPAGE)
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero__content .eyebrow {
  margin-bottom: 28px;
}
.hero__headline {
  margin-bottom: 28px;
}
.hero__sub {
  max-width: 460px;
  margin-bottom: 44px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__reel {
  position: relative;
}
.reel-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t);
}
.reel-placeholder:hover {
  border-color: var(--border-hi);
}
.reel-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #181818 0%, #111111 50%, #0E0E0E 100%);
}
.reel-placeholder__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reel-placeholder__year {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--t);
  background: rgba(255,255,255,.03);
}
.play-btn:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.play-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 3px;
}
.reel-title {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text-2);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────
   CLIENT STRIP
───────────────────────────────────────────────── */
.clients {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.clients__label {
  flex-shrink: 0;
  padding-right: 28px;
  border-right: 1px solid var(--border-mid);
  margin-right: 16px;
}
.clients__logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.clients__logo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.clients__logo:hover { color: var(--text-2); }

/* ─────────────────────────────────────────────────
   WORK PREVIEW (HOMEPAGE)
───────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-header__left .eyebrow {
  margin-bottom: 14px;
}
.work-preview-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.work-preview-grid .work-card:first-child {
  grid-row: span 2;
}
.work-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--bg-card);
}
.work-card:hover .work-card__img-inner {
  transform: scale(1.03);
}
.work-card:hover .work-card__overlay {
  opacity: 1;
}
.work-card:hover .work-card__info {
  border-color: var(--border-hi);
}
.work-card__img {
  overflow: hidden;
  position: relative;
}
.work-card__img-inner {
  transition: transform var(--t-slow);
}
.img-placeholder {
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.img-placeholder--hero {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #1A1814 0%, #111010 60%, #0E0D0D 100%);
}
.img-placeholder--card {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #181818 0%, #111111 100%);
}
.img-placeholder--tall {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1A1A18 0%, #111111 100%);
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.work-card__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.3);
  padding: 10px 20px;
}
.work-card__info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  transition: border-color var(--t);
}
.work-card__client {
  margin-bottom: 6px;
}
.work-card__title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}
.work-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.work-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  padding: 3px 8px;
}

/* ─────────────────────────────────────────────────
   SERVICES LIST (HOMEPAGE — tabular layout)
───────────────────────────────────────────────── */
.services-list {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-list__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.services-table {
  border-top: 1px solid var(--border-mid);
}
.services-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--t-fast);
  cursor: default;
  position: relative;
}
.services-row:hover {
  padding-left: 12px;
}
.services-row:hover .services-row__num {
  color: var(--gold);
}
.services-row__num {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.services-row__body {}
.services-row__name {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.services-row__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
}
.services-row__price {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  text-align: right;
  white-space: nowrap;
}
.services-row__action { text-align: right; }

/* ─────────────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────────────── */
.testimonial {
  padding: 120px 0;
}
.testimonial__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 36px;
  position: relative;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 80px;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: -48px;
  color: var(--text-muted);
  font-family: var(--font-d);
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial__role {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────
   FINAL CTA (HOMEPAGE)
───────────────────────────────────────────────── */
.cta-block {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 0;
}
.cta-block__eyebrow {
  margin-bottom: 24px;
}
.cta-block__heading {
  margin-bottom: 20px;
}
.cta-block__sub {
  max-width: 500px;
  margin: 0 auto 40px;
}
.cta-block__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────
   PAGE HERO (INNER PAGES)
───────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  margin-bottom: 20px;
}
.page-hero__heading {
  margin-bottom: 20px;
  max-width: 820px;
}
.page-hero__sub {
  max-width: 580px;
}

/* ─────────────────────────────────────────────────
   WORK PAGE GRID
───────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.work-filter {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.work-filter__btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 7px 14px;
  border: 1px solid var(--border-mid);
  transition: var(--t-fast);
  cursor: pointer;
  background: none;
}
.work-filter__btn:hover,
.work-filter__btn.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────────
   SERVICES PAGE — TIER CARDS
───────────────────────────────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.tier-card {
  background: var(--bg-card);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--t-fast);
  position: relative;
}
.tier-card:hover {
  background: var(--bg-raised);
}
.tier-card--featured {
  background: var(--bg-raised);
}
.tier-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 5px 12px;
}
.tier-card__num {
  font-family: var(--font-d);
  font-size: 44px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
}
.tier-card__name {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}
.tier-card__price {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tier-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
  flex: 1;
}
.tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tier-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.5;
}
.tier-card__feature::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}
.tier-card__action {
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.about-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.portrait-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder::after {
  content: 'PORTRAIT PLACEHOLDER';
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 24px;
}
.about-content p strong {
  color: var(--text);
  font-weight: 400;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 80px;
}
.about-stat {
  background: var(--bg-card);
  padding: 32px 28px;
}
.about-stat__num {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.values-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-item {
  background: var(--bg-card);
  padding: 36px 32px;
}
.value-item__num {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.value-item__title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.value-item__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}

/* ─────────────────────────────────────────────────
   CONSULTING PAGE
───────────────────────────────────────────────── */
.consulting-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
  margin-bottom: 80px;
}
.consulting-what {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}
.consulting-what h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}
.consulting-what ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consulting-what li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.consulting-what li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
.consulting-exclusive {
  background: rgba(191,155,111,.05);
  border: 1px solid rgba(191,155,111,.2);
  padding: 32px;
  margin-bottom: 48px;
}
.consulting-exclusive p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}
.consulting-exclusive strong {
  color: var(--gold);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────── */
.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 48px 0 60px;
}
.contact-path {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background var(--t-fast);
  cursor: pointer;
}
.contact-path:hover {
  background: var(--bg-raised);
}
.contact-path__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
  transition: border-color var(--t-fast);
}
.contact-path:hover .contact-path__icon {
  border-color: var(--gold);
}
.contact-path__title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-path__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────
   FORMS
───────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-mid);
  padding: 12px 0;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237C7A78'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}
.form-select option {
  background: var(--bg-card);
  color: var(--text);
}
.form-submit {
  margin-top: 8px;
  align-self: flex-start;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -20px;
}
.form-success {
  padding: 20px 24px;
  background: rgba(191,155,111,.08);
  border: 1px solid rgba(191,155,111,.25);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  display: none;
}
.form-success.visible { display: block; }

/* ─────────────────────────────────────────────────
   CALENDLY PLACEHOLDER
───────────────────────────────────────────────── */
.calendly-placeholder {
  aspect-ratio: 16/9;
  max-height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.calendly-placeholder p {
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
  max-width: 280px;
  line-height: 1.65;
}
.calendly-placeholder .eyebrow {
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--t), transform .65s var(--t);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────── */
.faq {
  margin-top: 80px;
}
.faq__title {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  transition: color var(--t-fast);
  gap: 20px;
}
.faq-q:hover { color: var(--gold); }
.faq-q__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: var(--t-fast);
  color: var(--text-2);
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a__inner {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
}

/* ─────────────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.process-step {
  background: var(--bg-card);
  padding: 36px 28px;
}
.process-step__num {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step__title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-step__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}

/* ─────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .consulting-intro { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__reel { order: -1; }
  .work-preview-grid { grid-template-columns: 1fr; }
  .work-preview-grid .work-card:first-child { grid-row: auto; }
  .services-list__header { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 36px 1fr auto; gap: 16px; }
  .services-row__action { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
  .values-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-paths { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --pad-x: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial__quote::before { display: none; }
  .about-stats { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; gap: 8px; }
  .services-row__num { display: none; }
  .services-row__price { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .work-card:hover .work-card__img-inner { transform: none; }
}

/* ─────────────────────────────────────────────────
   LANGUAGE SWITCHER
───────────────────────────────────────────────── */

/* Fix: .nav is display:flex, so its .container child needs an
   explicit width to fill the full bar — otherwise it collapses
   to content-width and the space-between layout breaks. */
.nav > .container {
  width: 100%;
}

/* Lang-switch sits directly inside .nav__inner as a flex sibling
   alongside .nav__logo, .nav__links, and .nav__cta. No wrapper needed. */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-muted);
  transition: color var(--t-fast);
  text-decoration: none;
  line-height: 1;
}
.lang-btn:hover { color: var(--text-2); }
.lang-btn.active {
  color: var(--gold);
  pointer-events: none;
}
.lang-sep {
  font-size: 10px;
  color: var(--border-hi);
  line-height: 1;
  user-select: none;
}

/* Mobile menu lang-switch */
.lang-switch--mobile {
  gap: 14px;
}
.lang-switch--mobile .lang-btn  { font-size: 16px; }
.lang-switch--mobile .lang-sep  { font-size: 13px; }

/* Hide desktop lang-switch (and CTA) on mobile — hamburger takes over */
@media (max-width: 900px) {
  .lang-switch:not(.lang-switch--mobile) { display: none; }
}
