/* =============================================================
   NEXAFYRE — styles.css
   Variables → Reset → Base → Layout → Components → Responsive
   ============================================================= */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Colours */
  --clr-primary:    #111111;
  --clr-gold:       #CEAB42;
  --clr-gold-light: #E8CC76;
  --clr-gold-dark:  #A08830;
  --clr-white:      #FFFFFF;
  --clr-surface:    #F0F0F0;
  --clr-text:       #111111;
  --clr-muted:      #666666;
  --clr-border:     #E0E0E0;

  /* Spacing (8px base unit) */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Layout */
  --max-w:  1200px;
  --nav-h:  72px;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-btn:  6px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card:       0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font:         'Urbanist', sans-serif;
  --lh-heading:   1.1;
  --lh-body:      1.65;
  --ls-heading:   -0.025em;
  --ls-label:     0.1em;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: var(--lh-body);
  color: var(--clr-text);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
ul, ol   { list-style: none; }
a        { color: inherit; text-decoration: none; }
button   { background: none; border: none; cursor: pointer; font: inherit; }
h1, h2, h3, h4 { line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }

/* ── Base Layout ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section {
  padding: var(--sp-2xl) 0;
}
@media (min-width: 768px) {
  .section { padding: var(--sp-3xl) 0; }
}

.section--surface { background: var(--clr-surface); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--sp-2xl);
}
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.section-sub {
  font-size: 17px;
  color: var(--clr-muted);
  line-height: 1.6;
}

.text-center { text-align: center; }
.text-gold   { color: var(--clr-gold); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background   0.18s ease,
    border-color 0.18s ease,
    color        0.18s ease,
    box-shadow   0.18s ease,
    transform    0.12s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background:   var(--clr-gold);
  color:        var(--clr-primary);
  border-color: var(--clr-gold);
}
.btn--primary:hover {
  background:   var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  box-shadow:   0 4px 20px rgba(206, 171, 66, 0.35);
}

.btn--ghost {
  background:   transparent;
  color:        var(--clr-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background:   rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-dark {
  background:   transparent;
  color:        var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--outline-dark:hover {
  background: var(--clr-primary);
  color:      var(--clr-white);
}

.btn--lg {
  font-size: 16px;
  padding:   16px 36px;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background:    var(--clr-white);
  border:        1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding:       var(--sp-lg);
  box-shadow:    var(--shadow-card);
  transition:    box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform:  translateY(-4px);
}

.cards-grid {
  display: grid;
  gap: var(--sp-lg);
}
.cards-grid--3 { grid-template-columns: 1fr; }
.cards-grid--2 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position:   fixed;
  top: 0; left: 0; right: 0;
  z-index:    1000;
  background: var(--clr-primary);
  height:     var(--nav-h);
  transition: box-shadow 0.2s ease;
}
.nav--scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav__inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          var(--nav-h);
  gap:             var(--sp-xl);
}

.nav__logo {
  flex-shrink: 0;
  display:     flex;
  align-items: center;
}
.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-xl);
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size:   15px;
  font-weight: 500;
  color:       rgba(255, 255, 255, 0.7);
  transition:  color 0.15s ease;
  position:    relative;
  padding-bottom: 2px;
}
.nav__link:hover,
.nav__link--active { color: var(--clr-white); }

.nav__link--active::after {
  content:       '';
  position:      absolute;
  bottom:        -4px;
  left: 0; right: 0;
  height:        2px;
  background:    var(--clr-gold);
  border-radius: 1px;
}

.nav__actions {
  display:     flex;
  align-items: center;
  gap:         var(--sp-md);
}
.nav__cta { display: none; }
@media (min-width: 900px) {
  .nav__cta { display: inline-flex; }
}

/* Hamburger */
.nav__hamburger {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  gap:             5px;
  padding:         var(--sp-sm);
  width:           40px;
  height:          40px;
  border-radius:   var(--r-sm);
  transition:      background 0.15s ease;
}
.nav__hamburger:hover { background: rgba(255, 255, 255, 0.08); }
@media (min-width: 900px) { .nav__hamburger { display: none; } }

.nav__hamburger span {
  display:       block;
  height:        2px;
  background:    var(--clr-white);
  border-radius: 2px;
  transition:    transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  position:        fixed;
  inset:           0;
  top:             var(--nav-h);
  background:      var(--clr-primary);
  z-index:         999;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             var(--sp-xl);
  transform:       translateX(100%);
  transition:      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.active { transform: translateX(0); }

.nav-mobile ul {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            var(--sp-lg);
}
.nav-mobile a {
  font-size:   24px;
  font-weight: 600;
  color:       var(--clr-white);
  transition:  color 0.15s ease;
}
.nav-mobile a:hover { color: var(--clr-gold); }

body.menu-open { overflow: hidden; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height:     100vh;
  background:     var(--clr-primary);
  display:        flex;
  align-items:    center;
  position:       relative;
  overflow:       hidden;
  padding-top:    var(--nav-h);
}

/* Radial glow accents */
.hero__glow {
  position:       absolute;
  pointer-events: none;
  border-radius:  50%;
}
.hero__glow--tr {
  top:        -180px;
  right:      -180px;
  width:      700px;
  height:     700px;
  background: radial-gradient(circle, rgba(206, 171, 66, 0.09) 0%, transparent 65%);
}
.hero__glow--bl {
  bottom:     -100px;
  left:       8%;
  width:      500px;
  height:     400px;
  background: radial-gradient(ellipse, rgba(206, 171, 66, 0.04) 0%, transparent 70%);
}

.hero__inner {
  position:        relative;
  z-index:         1;
  display:         grid;
  grid-template-columns: 1fr;
  gap:             var(--sp-2xl);
  align-items:     center;
  padding-top:     var(--sp-xl);
  padding-bottom:  var(--sp-2xl);
  width:           100%;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 55fr 45fr;
    gap:         80px;
    padding-top: var(--sp-lg);
  }
}

.hero__text { max-width: 620px; }


.hero__headline {
  font-size:      clamp(44px, 6.5vw, 76px);
  font-weight:    800;
  color:          var(--clr-white);
  line-height:    1.02;
  letter-spacing: -0.035em;
  margin-bottom:  var(--sp-xl);
}

.hero__sub {
  font-size:     clamp(16px, 2vw, 20px);
  color:         rgba(255, 255, 255, 0.68);
  line-height:   1.65;
  max-width:     520px;
  margin-bottom: var(--sp-xl);
}

.hero__ctas {
  display:     flex;
  flex-wrap:   wrap;
  gap:         var(--sp-md);
  align-items: center;
}

/* Right visual: floating cards */
.hero__visual {
  display:  none;
  position: relative;
  height:   420px;
}
@media (min-width: 900px) {
  .hero__visual { display: block; }
}

/* ── Feature Cards (Hero Visual) ────────────────────────────── */
.feat-card {
  position:       absolute;
  background:     rgba(255, 255, 255, 0.04);
  border:         1px solid rgba(255, 255, 255, 0.1);
  border-left:    3px solid var(--clr-gold);
  border-radius:  12px;
  padding:        20px 22px;
  display:        flex;
  align-items:    center;
  gap:            16px;
  min-width:      240px;
  max-width:      290px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:     0 8px 32px rgba(0, 0, 0, 0.35);
}

.feat-card--1 {
  top:       20px;
  left:      0;
  animation: floatA 5s ease-in-out infinite;
}
.feat-card--2 {
  top:             155px;
  right:           0;
  animation:       floatB 5.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
.feat-card--3 {
  bottom:          30px;
  left:            30px;
  animation:       floatA 4.8s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.feat-card__icon {
  width:           48px;
  height:          48px;
  background:      rgba(206, 171, 66, 0.12);
  border-radius:   10px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  color:           var(--clr-gold);
}
.feat-card__icon svg { width: 22px; height: 22px; }

.feat-card__body {
  display:        flex;
  flex-direction: column;
  gap:            3px;
}
.feat-card__title {
  font-size:   15px;
  font-weight: 700;
  color:       var(--clr-white);
  line-height: 1.2;
}
.feat-card__sub {
  font-size:   12px;
  color:       rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background:    var(--clr-surface);
  padding:       var(--sp-xl) 0;
  border-top:    1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.trust-bar__list {
  display:         flex;
  flex-wrap:       wrap;
  align-items:     center;
  justify-content: center;
  gap:             var(--sp-md) var(--sp-xl);
}

.trust-bar__item {
  display:     flex;
  align-items: center;
  gap:         var(--sp-sm);
  font-size:   14px;
  font-weight: 600;
  color:       var(--clr-text);
  white-space: nowrap;
}

.trust-bar__icon {
  width:      18px;
  height:     18px;
  color:      var(--clr-gold);
  flex-shrink: 0;
}

.trust-bar__divider {
  width:      1px;
  height:     20px;
  background: var(--clr-border);
  display:    none;
}
@media (min-width: 900px) { .trust-bar__divider { display: block; } }

/* ── Service Cards ──────────────────────────────────────────── */
.services { background: var(--clr-white); }

.service-card {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-lg);
  padding:        var(--sp-xl);
  position:       relative;
}

/* Featured (dark) variant */
.service-card--featured {
  background:   var(--clr-primary);
  color:        var(--clr-white);
  border-color: var(--clr-gold);
  border-width: 2px;
}
.service-card--featured:hover { transform: translateY(-6px); }

.service-card__badge {
  position:      absolute;
  top:           -14px;
  left:          50%;
  transform:     translateX(-50%);
  background:    var(--clr-gold);
  color:         var(--clr-primary);
  font-size:     11px;
  font-weight:   700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding:       5px 16px;
  border-radius: var(--r-pill);
  white-space:   nowrap;
}

.service-card__name {
  font-size:     12px;
  font-weight:   700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color:         var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

.service-card__meta {
  display:     flex;
  flex-wrap:   wrap;
  gap:         var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.service-card__timeline,
.service-card__scope {
  display:       inline-flex;
  align-items:   center;
  gap:           5px;
  font-size:     13px;
  font-weight:   600;
  color:         var(--clr-muted);
  background:    var(--clr-surface);
  padding:       4px 10px;
  border-radius: var(--r-pill);
  white-space:   nowrap;
}
.service-card__timeline svg {
  width:  13px;
  height: 13px;
  flex-shrink: 0;
}
.service-card--featured .service-card__timeline,
.service-card--featured .service-card__scope {
  background: rgba(255, 255, 255, 0.1);
  color:      rgba(255, 255, 255, 0.75);
}

.service-card__for {
  font-size:   14px;
  color:       var(--clr-muted);
  line-height: 1.5;
}
.service-card--featured .service-card__for { color: rgba(255,255,255,0.6); }

.service-card__features {
  display:        flex;
  flex-direction: column;
  gap:            10px;
  flex:           1;
  margin:         var(--sp-sm) 0;
}
.service-card__features li {
  display:     flex;
  align-items: flex-start;
  gap:         10px;
  font-size:   15px;
  line-height: 1.4;
}
.service-card__features li::before {
  content:   '✓';
  color:     var(--clr-gold);
  font-weight: 700;
  flex-shrink: 0;
  width:     16px;
  font-size: 14px;
  line-height: 1.4;
}

.services__retainer-note {
  text-align:  center;
  margin-top:  var(--sp-xl);
  font-size:   15px;
  color:       var(--clr-muted);
}
.services__retainer-note a {
  color:                var(--clr-primary);
  font-weight:          600;
  text-decoration:      underline;
  text-underline-offset: 2px;
}
.services__retainer-note a:hover { color: var(--clr-gold-dark); }

/* ── Process / How It Works ─────────────────────────────────── */
.process__steps {
  display:               grid;
  gap:                   var(--sp-xl);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process__steps { grid-template-columns: repeat(4, 1fr); } }

.process__num {
  font-size:     52px;
  font-weight:   800;
  letter-spacing: -0.04em;
  color:         var(--clr-gold);
  line-height:   1;
  margin-bottom: var(--sp-md);
}

.process__title {
  font-size:     20px;
  font-weight:   700;
  margin-bottom: var(--sp-sm);
}

.process__desc {
  font-size:   15px;
  color:       var(--clr-muted);
  line-height: 1.65;
}

/* ── About Teaser ───────────────────────────────────────────── */
.about-teaser__inner {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-2xl);
  align-items:           center;
}
@media (min-width: 768px) {
  .about-teaser__inner { grid-template-columns: 1fr 1fr; }
}

.about-teaser__text .section-label { margin-bottom: var(--sp-md); }
.about-teaser__text h2 {
  font-size:     clamp(28px, 4vw, 44px);
  font-weight:   800;
  margin-bottom: var(--sp-xl);
}
.about-teaser__text p {
  font-size:     16px;
  color:         var(--clr-muted);
  margin-bottom: var(--sp-md);
  line-height:   1.7;
}
.about-teaser__text p:last-of-type { margin-bottom: var(--sp-xl); }

.about-teaser__visual {
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      var(--clr-surface);
  border-radius:   var(--r-md);
  min-height:      320px;
  overflow:        hidden;
  border:          1px solid var(--clr-border);
}

.about-teaser__placeholder {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             var(--sp-lg);
  padding:         var(--sp-2xl);
  text-align:      center;
}

.about-teaser__icon-mark {
  width:   160px;
  height:  160px;
  opacity: 0.22;
}

.about-teaser__placeholder p {
  font-size:   13px;
  color:       var(--clr-muted);
  line-height: 1.5;
}

/* ── Portfolio Cards ────────────────────────────────────────── */
.portfolio-card {
  background:    var(--clr-primary);
  border-radius: var(--r-md);
  overflow:      hidden;
  transition:    transform 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.portfolio-card__inner {
  padding:        var(--sp-2xl);
  min-height:     280px;
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-md);
  border:         1px solid rgba(255, 255, 255, 0.07);
  border-radius:  var(--r-md);
}

.portfolio-card__type {
  font-size:     12px;
  font-weight:   700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color:         var(--clr-gold);
}
.portfolio-card__title {
  font-size:   22px;
  font-weight: 700;
  color:       var(--clr-white);
  line-height: 1.25;
}
.portfolio-card__desc {
  font-size:   15px;
  color:       rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  flex:        1;
}
.portfolio-card__badge {
  display:       inline-block;
  font-size:     12px;
  font-weight:   600;
  color:         var(--clr-gold);
  border:        1px solid rgba(206, 171, 66, 0.35);
  padding:       4px 12px;
  border-radius: var(--r-pill);
  align-self:    flex-start;
}

.portfolio-preview__cta { margin-top: var(--sp-2xl); }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background:  var(--clr-primary);
  padding:     var(--sp-3xl) 0;
  border-top:  1px solid rgba(255, 255, 255, 0.06);
}

/* Stats row within CTA */
.cta-section__stats {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   var(--sp-xl);
  text-align:            center;
  margin-bottom:         var(--sp-2xl);
}
@media (min-width: 640px) {
  .cta-section__stats { grid-template-columns: repeat(4, 1fr); }
}

.cta-stat {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-sm);
}
.cta-stat__number {
  font-size:     clamp(36px, 5vw, 56px);
  font-weight:   800;
  color:         var(--clr-gold);
  letter-spacing: -0.03em;
  line-height:   1;
}
.cta-stat__label {
  font-size:   13px;
  font-weight: 500;
  color:       rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.cta-section__divider {
  width:        100%;
  height:       1px;
  background:   rgba(255, 255, 255, 0.08);
  margin-bottom: var(--sp-2xl);
}

.cta-section__inner { text-align: center; }

.cta-section__headline {
  font-size:     clamp(28px, 4.5vw, 52px);
  font-weight:   800;
  color:         var(--clr-white);
  margin-bottom: var(--sp-lg);
  line-height:   1.12;
}

.cta-section__sub {
  font-size:   18px;
  color:       rgba(255, 255, 255, 0.62);
  max-width:   500px;
  margin:      0 auto var(--sp-xl);
  line-height: 1.6;
}

.cta-section__note {
  margin-top:     var(--sp-md);
  font-size:      13px;
  color:          rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background:  var(--clr-primary);
  border-top:  1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-2xl);
}

.footer__inner {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-xl);
  padding-bottom:        var(--sp-2xl);
  border-bottom:         1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 560px)  { .footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand img {
  height:        30px;
  width:         auto;
  margin-bottom: var(--sp-md);
}
.footer__tagline {
  font-size:  14px;
  color:      rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-bottom: var(--sp-sm);
}
.footer__contact-line a {
  font-size:  14px;
  color:      rgba(255, 255, 255, 0.68);
  transition: color 0.15s ease;
}
.footer__contact-line a:hover { color: var(--clr-gold); }
.footer__location {
  font-size:  13px;
  color:      rgba(255, 255, 255, 0.38);
  margin-top: var(--sp-xs);
}

.footer__nav-heading {
  font-size:      12px;
  font-weight:    700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.45);
  margin-bottom:  var(--sp-md);
}
.footer__nav ul,
.footer__legal ul {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-sm);
}
.footer__nav a,
.footer__legal a {
  font-size:  14px;
  color:      rgba(255, 255, 255, 0.68);
  transition: color 0.15s ease;
}
.footer__nav a:hover,
.footer__legal a:hover { color: var(--clr-gold); }

.footer__bottom { padding: var(--sp-md) 0; }
.footer__bottom p {
  font-size:  13px;
  color:      rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background:    var(--clr-primary);
  padding-top:   calc(var(--nav-h) + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  position:      relative;
  overflow:      hidden;
  text-align:    center;
}
.page-hero::before {
  content:    '';
  position:   absolute;
  top:        -120px;
  left:       50%;
  transform:  translateX(-50%);
  width:      700px;
  height:     450px;
  background: radial-gradient(ellipse, rgba(206, 171, 66, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  position:   relative;
  z-index:    1;
  max-width:  760px;
  margin:     0 auto;
}
.page-hero__label {
  display:        block;
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--clr-gold);
  margin-bottom:  var(--sp-md);
}
.page-hero h1 {
  font-size:      clamp(36px, 5.5vw, 62px);
  font-weight:    800;
  color:          var(--clr-white);
  letter-spacing: -0.03em;
  line-height:    1.05;
  margin-bottom:  var(--sp-lg);
}
.page-hero__sub {
  font-size:   clamp(16px, 2vw, 19px);
  color:       rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width:   580px;
  margin:      0 auto;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin:    0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--clr-border);
}
.faq__item:first-child { border-top: 1px solid var(--clr-border); }
.faq__question {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  width:           100%;
  padding:         var(--sp-lg) 0;
  text-align:      left;
  font-size:       17px;
  font-weight:     600;
  color:           var(--clr-text);
  gap:             var(--sp-md);
  transition:      color 0.15s ease;
}
.faq__question:hover   { color: var(--clr-gold-dark); }
.faq__icon {
  width:      24px;
  height:     24px;
  flex-shrink: 0;
  color:      var(--clr-gold);
  transition: transform 0.25s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  overflow:   hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__answer-inner {
  padding-bottom: var(--sp-lg);
  font-size:      16px;
  color:          var(--clr-muted);
  line-height:    1.7;
}
.faq__item.open .faq__answer { max-height: 500px; }

/* ── Retainer Cards ─────────────────────────────────────────── */
.retainer-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-lg);
}
@media (min-width: 640px) {
  .retainer-grid { grid-template-columns: repeat(3, 1fr); }
}
.retainer-card {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-sm);
  padding:        var(--sp-xl);
  border:         1px solid var(--clr-border);
  border-radius:  var(--r-md);
  background:     var(--clr-white);
  box-shadow:     var(--shadow-card);
  transition:     box-shadow 0.2s ease, transform 0.2s ease;
}
.retainer-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform:  translateY(-4px);
}
.retainer-card--featured {
  border-color: var(--clr-gold);
  border-width: 2px;
}
.retainer-card__tier {
  font-size:      12px;
  font-weight:    700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color:          var(--clr-gold);
}
.retainer-card__name {
  font-size:     22px;
  font-weight:   800;
  color:         var(--clr-text);
  margin-bottom: var(--sp-xs);
}
.retainer-card__who {
  font-size:     14px;
  color:         var(--clr-muted);
  margin-bottom: var(--sp-md);
  line-height:   1.5;
}
.retainer-card__features {
  display:        flex;
  flex-direction: column;
  gap:            8px;
  flex:           1;
  margin-bottom:  var(--sp-xl);
}
.retainer-card__features li {
  display:     flex;
  align-items: flex-start;
  gap:         8px;
  font-size:   14px;
  line-height: 1.4;
}
.retainer-card__features li::before {
  content:     '✓';
  color:       var(--clr-gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size:   13px;
  line-height: 1.4;
}

/* ── About Page ─────────────────────────────────────────────── */
.about-story__inner {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-2xl);
  align-items:           center;
}
@media (min-width: 768px) {
  .about-story__inner { grid-template-columns: 1fr 1fr; }
}
.about-story__text h2 {
  font-size:     clamp(26px, 4vw, 40px);
  font-weight:   800;
  margin-bottom: var(--sp-lg);
}
.about-story__text p {
  font-size:     16px;
  color:         var(--clr-muted);
  line-height:   1.7;
  margin-bottom: var(--sp-md);
}
.about-story__visual {
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.about-stat-stack {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-md);
  width:          100%;
}
.about-stat {
  padding:       var(--sp-xl);
  border:        1px solid var(--clr-border);
  border-radius: var(--r-md);
  background:    var(--clr-white);
  box-shadow:    var(--shadow-card);
}
.about-stat--accent {
  background:    var(--clr-primary);
  border-color:  var(--clr-gold);
}
.about-stat--accent .about-stat__number,
.about-stat--accent .about-stat__label { color: var(--clr-white); }
.about-stat__number {
  display:        block;
  font-size:      clamp(32px, 5vw, 48px);
  font-weight:    800;
  color:          var(--clr-gold);
  letter-spacing: -0.03em;
  line-height:    1;
  margin-bottom:  var(--sp-xs);
}
.about-stat__label {
  font-size:   14px;
  font-weight: 500;
  color:       var(--clr-muted);
}

.about-ai-visual {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-md);
  width:          100%;
}
.about-ai-card {
  display:       flex;
  align-items:   center;
  gap:           var(--sp-md);
  padding:       var(--sp-lg) var(--sp-xl);
  border:        1px solid var(--clr-border);
  border-radius: var(--r-md);
  background:    var(--clr-white);
  font-size:     16px;
  font-weight:   600;
  color:         var(--clr-text);
  box-shadow:    var(--shadow-card);
}
.about-ai-card--gold {
  background:   var(--clr-gold);
  border-color: var(--clr-gold);
  color:        var(--clr-primary);
}

.values-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-lg);
}
@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  padding:       var(--sp-xl);
  border:        1px solid var(--clr-border);
  border-radius: var(--r-md);
  background:    var(--clr-white);
  box-shadow:    var(--shadow-card);
  transition:    box-shadow 0.2s ease, transform 0.2s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform:  translateY(-4px);
}
.value-card__icon {
  width:           44px;
  height:          44px;
  background:      rgba(206, 171, 66, 0.1);
  border-radius:   var(--r-md);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--clr-gold);
  margin-bottom:   var(--sp-md);
}
.value-card__icon svg { width: 22px; height: 22px; }
.value-card__title {
  font-size:     18px;
  font-weight:   700;
  margin-bottom: var(--sp-sm);
}
.value-card__desc {
  font-size:   15px;
  color:       var(--clr-muted);
  line-height: 1.65;
}

.credentials-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-lg);
}
@media (min-width: 640px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
}
.credential-item {
  padding:       var(--sp-xl);
  border:        1px solid var(--clr-border);
  border-radius: var(--r-md);
  background:    var(--clr-white);
}
.credential-item__label {
  display:        block;
  font-size:      12px;
  font-weight:    700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color:          var(--clr-gold);
  margin-bottom:  var(--sp-sm);
}
.credential-item p {
  font-size:   15px;
  color:       var(--clr-muted);
  line-height: 1.65;
}

/* ── Portfolio Page ─────────────────────────────────────────── */
.early-client-banner {
  background:    var(--clr-primary);
  border:        1px solid rgba(206, 171, 66, 0.25);
  border-radius: var(--r-md);
  padding:       var(--sp-2xl) var(--sp-xl);
}
.early-client-banner__text .section-label { margin-bottom: var(--sp-sm); }
.early-client-banner__text h2 {
  font-size:     clamp(26px, 4vw, 40px);
  font-weight:   800;
  color:         var(--clr-white);
  margin-bottom: var(--sp-lg);
}
.early-client-banner__text p {
  font-size:   16px;
  color:       rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width:   640px;
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-layout {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--sp-2xl);
  align-items:           start;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 3fr 2fr; }
}

.form-row {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   0 var(--sp-lg);
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group {
  display:        flex;
  flex-direction: column;
  gap:            var(--sp-xs);
  margin-bottom:  var(--sp-lg);
}
.form-label {
  font-size:   14px;
  font-weight: 600;
  color:       var(--clr-text);
}
.form-input,
.form-select,
.form-textarea {
  width:        100%;
  font-family:  var(--font);
  font-size:    15px;
  color:        var(--clr-text);
  background:   var(--clr-white);
  border:       1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding:      12px 14px;
  transition:   border-color 0.15s ease, box-shadow 0.15s ease;
  outline:      none;
  appearance:   none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-gold);
  box-shadow:   0 0 0 3px rgba(206, 171, 66, 0.12);
}
.form-select {
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 12px center;
  padding-right:       40px;
}
.form-textarea {
  resize:     vertical;
  min-height: 140px;
}
/* Honeypot — invisible to humans, present in DOM for bots */
.form-pot {
  opacity:        0;
  position:       absolute;
  top:            0;
  left:           0;
  height:         0;
  width:          0;
  z-index:        -1;
  pointer-events: none;
  overflow:       hidden;
}

/* Disabled submit state (enabled by JS after load) */
.form-submit:disabled {
  opacity: 0.45;
  cursor:  not-allowed;
}

/* Calendly gate (click-to-load placeholder) */
.calendly-gate {
  display:         flex;
  align-items:     center;
  justify-content: center;
  min-height:      280px;
  border:          1px dashed var(--clr-border);
  border-radius:   var(--r-md);
  background:      var(--clr-surface);
}
.calendly-gate__inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            var(--sp-md);
  text-align:     center;
  padding:        var(--sp-2xl);
}
.calendly-gate__inner p {
  font-size: 15px;
  color:     var(--clr-muted);
}

.form-submit { width: 100%; }
.form-note {
  font-size:  13px;
  color:      var(--clr-muted);
  margin-top: var(--sp-sm);
}
.form-success {
  display:       flex;
  align-items:   flex-start;
  gap:           var(--sp-md);
  margin-top:    var(--sp-xl);
  padding:       var(--sp-lg);
  background:    rgba(206, 171, 66, 0.07);
  border:        1px solid rgba(206, 171, 66, 0.25);
  border-radius: var(--r-md);
  color:         var(--clr-gold-dark);
}
.form-success p {
  font-size:   14px;
  color:       var(--clr-muted);
  margin-top:  var(--sp-xs);
  line-height: 1.6;
}

.contact-callout {
  background:    var(--clr-primary);
  border:        1px solid rgba(206, 171, 66, 0.25);
  border-radius: var(--r-md);
  padding:       var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.contact-details__item {
  display:       flex;
  align-items:   flex-start;
  gap:           var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.contact-details__icon {
  width:           44px;
  height:          44px;
  background:      rgba(206, 171, 66, 0.1);
  border-radius:   var(--r-md);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  color:           var(--clr-gold);
}
.contact-details__icon svg { width: 20px; height: 20px; }
.contact-details__label {
  font-size:      12px;
  font-weight:    700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color:          var(--clr-muted);
  margin-bottom:  var(--sp-xs);
}
.contact-details__value {
  font-size:   15px;
  font-weight: 600;
  color:       var(--clr-text);
  line-height: 1.4;
}
.contact-details__value a {
  color:                  var(--clr-gold-dark);
  text-decoration:        underline;
  text-underline-offset:  2px;
}
.contact-details__value a:hover { color: var(--clr-gold); }

/* ── Policy Pages (privacy / cookie policy) ─────────────────── */
.policy-body {
  max-width:   760px;
  margin:      0 auto;
}
.policy-body h2 {
  font-size:     clamp(20px, 3vw, 26px);
  font-weight:   800;
  margin-top:    var(--sp-2xl);
  margin-bottom: var(--sp-md);
  padding-top:   var(--sp-xl);
  border-top:    1px solid var(--clr-border);
}
.policy-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.policy-body h3 {
  font-size:     18px;
  font-weight:   700;
  margin-top:    var(--sp-xl);
  margin-bottom: var(--sp-sm);
  color:         var(--clr-text);
}
.policy-body p {
  font-size:     16px;
  color:         var(--clr-muted);
  line-height:   1.75;
  margin-bottom: var(--sp-md);
}
.policy-body ul {
  list-style:    disc;
  padding-left:  var(--sp-xl);
  margin-bottom: var(--sp-md);
}
.policy-body ul li {
  font-size:   16px;
  color:       var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-xs);
}
.policy-body a {
  color:                 var(--clr-gold-dark);
  text-decoration:       underline;
  text-underline-offset: 2px;
}
.policy-body a:hover { color: var(--clr-gold); }
.policy-body strong { color: var(--clr-text); }
.policy-body code {
  font-family:   monospace;
  font-size:     13px;
  background:    var(--clr-surface);
  padding:       2px 6px;
  border-radius: var(--r-sm);
  border:        1px solid var(--clr-border);
  white-space:   nowrap;
}
.policy-table-wrap {
  overflow-x:    auto;
  margin-bottom: var(--sp-lg);
}
.policy-table {
  width:           100%;
  border-collapse: collapse;
  font-size:       14px;
}
.policy-table th,
.policy-table td {
  text-align:  left;
  padding:     10px 14px;
  border:      1px solid var(--clr-border);
  line-height: 1.5;
}
.policy-table th {
  background:  var(--clr-surface);
  font-weight: 700;
  color:       var(--clr-text);
}
.policy-table td { color: var(--clr-muted); }

/* ── Cookie Consent Banner ──────────────────────────────────── */
.cookie-banner {
  position:   fixed;
  bottom:     0;
  left:       0;
  right:      0;
  z-index:    3000;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.1);
  padding:    var(--sp-lg) 0;
  transform:  translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner--visible { transform: translateY(0); }

.cookie-banner__inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--sp-xl);
  flex-wrap:       wrap;
}
.cookie-banner__copy { flex: 1; min-width: 260px; }
.cookie-banner__copy strong {
  display:       block;
  font-size:     15px;
  font-weight:   700;
  color:         var(--clr-text);
  margin-bottom: var(--sp-xs);
}
.cookie-banner__copy p {
  font-size:   14px;
  color:       var(--clr-muted);
  line-height: 1.55;
}
.cookie-banner__copy a {
  color:                 var(--clr-gold-dark);
  text-decoration:       underline;
  text-underline-offset: 2px;
  white-space:           nowrap;
}
.cookie-banner__copy a:hover { color: var(--clr-gold); }

.cookie-banner__actions {
  display:     flex;
  gap:         var(--sp-sm);
  flex-shrink: 0;
  flex-wrap:   wrap;
}
.cookie-banner__actions .btn {
  font-size: 14px;
  padding:   11px 22px;
}

/* ── Team ───────────────────────────────────────────────────── */
.team-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   var(--sp-xl);
  max-width:             760px;
  margin:                0 auto;
}
.team-card {
  background:    var(--clr-surface);
  border:        1px solid var(--clr-border);
  border-radius: var(--r-card);
  padding:       var(--sp-xl) var(--sp-lg);
  text-align:    center;
  transition:    transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform:  translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-card__photo {
  width:         160px;
  height:        160px;
  border-radius: 50%;
  overflow:      hidden;
  margin:        0 auto var(--sp-md);
  border:        3px solid var(--clr-gold);
}
.team-card__photo img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}
.team-card__name {
  font-size:     1.25rem;
  font-weight:   700;
  color:         var(--clr-text);
  margin-bottom: var(--sp-xs);
}
.team-card__role {
  font-size:     0.875rem;
  font-weight:   600;
  color:         var(--clr-gold);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-sm);
}
.team-card__bio {
  font-size:   0.9375rem;
  color:       var(--clr-muted);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ── Accessibility ──────────────────────────────────────────── */
:focus-visible {
  outline:        2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius:  var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
