/*
===========================================================
  ALEX SAM — SHARED STYLESHEET
  Design Seed Code: 54 | S = 54 | C = 0
===========================================================

  DIMENSION DERIVATIONS
  ---------------------
  Visual Archetype    → Index 6: Bold Geometric
  Layout Philosophy   → Index 4: Overlapping Layers
  Hero Treatment      → Index 4: Diagonal Split
  Color Direction     → Index 12: Monochrome + One
  Typography Mode     → Index 10: Ultra-light thin sans + medium sans
  Copywriting Register→ Index 6: Storytelling / Narrative
  Signature Element   → Index 6: Progressive Reveal

  CONFLICT ADJUSTMENTS
  --------------------
  None — all dimensions clear.

  TYPOGRAPHY RATIONALE
  --------------------
  Cormorant Garamond 300 as the ultra-light display: its editorial
  refinement signals the precision and intelligence of career
  storytelling at the executive level. DM Sans Medium as body:
  clean, modern, and readable across all screen sizes — the
  complement to Cormorant's expressiveness.

  COLOR RATIONALE
  ---------------
  Deep Ink Navy is the monochrome base — authoritative, stable,
  and premium without the aggression of pure black. Prestige Gold
  is the single accent: warmth, achievement, and forward movement.
  Parchment as the neutral ground — the color of paper, of
  documents, of stories being written.

  SIGNATURE ELEMENT — SPECIFIC EXECUTION
  ---------------------------------------
  Sections and their children progressively reveal as the user
  scrolls — each page chapter emerges with staggered opacity and
  upward translation, creating the sensation of a story being
  told line by line.

  COPYWRITING VOICE NOTE
  ----------------------
  Every section is a chapter. Copy draws the reader into the
  narrative of professional transformation — never listing
  features, always telling the next part of the story.

===========================================================
*/

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  /* Color — Monochrome + One */
  --navy:          #0C1B2E;  /* Deep Ink Navy — dominant 60% */
  --navy-mid:      #162638;  /* Navy mid-tone */
  --navy-light:    #1E3450;  /* Navy for hover states */
  --gold:          #C9A84C;  /* Prestige Gold — single accent 10% */
  --gold-dim:      #A88833;  /* Gold for borders and subdued accents */
  --parchment:     #F5EFE4;  /* Parchment — neutral 25% */
  --parchment-mid: #EDE5D6;  /* Slightly darker parchment */
  --white:         #FFFFFF;  /* White 5% */
  --text-on-navy:  #E8E2D9;  /* Text on navy backgrounds */
  --text-muted:    #7A8FA2;  /* Muted captions on navy */
  --text-dark:     #0C1B2E;  /* Body text on parchment */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1240px;
  --gutter:      40px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 0.75s;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── TYPOGRAPHY SCALE ─── */
.t-hero {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.t-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
.t-body-sm {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
}

/* ─── COLOR UTILITIES ─── */
.bg-navy     { background: var(--navy); }
.bg-parchment{ background: var(--parchment); }
.c-gold      { color: var(--gold); }
.c-navy      { color: var(--navy); }
.c-white     { color: var(--white); }
.c-parchment { color: var(--parchment); }
.c-muted     { color: var(--text-muted); }
.c-on-navy   { color: var(--text-on-navy); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.btn-outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--parchment);
}
.btn-arrow::after {
  content: '→';
  font-size: 16px;
  font-family: var(--font-display);
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ─── GOLD RULE ─── */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.gold-rule-lg {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

/* ─── GEOMETRIC ACCENT SHAPES ─── */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}
.geo-rect {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
}

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 0.4s var(--ease);
}
.site-nav.scrolled {
  background: rgba(12, 27, 46, 0.97);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-monogram {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.06em;
}
.nav-wordmark span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-navy);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 32px var(--gutter);
  z-index: 999;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-navy);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--text-on-navy);
  line-height: 1.4;
  margin-bottom: 24px;
}
.footer-brand-tagline em {
  color: var(--gold);
  font-style: italic;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col ul a:hover { color: var(--text-on-navy); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-copy a { color: var(--gold); }
.footer-bottom-links {
  display: flex;
  gap: 28px;
}
.footer-bottom-links a {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--text-on-navy); }

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ─── PAGE WRAPPER ─── */
.page-wrap {
  padding-top: 72px; /* nav height */
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 520px;
  line-height: 1.7;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ─── PROGRESSIVE REVEAL — SIGNATURE ELEMENT ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--reveal-dur) var(--ease),
              transform var(--reveal-dur) var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 10;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 44px;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

/* ─── SERVICE CARD ─── */
.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.12);
  border-top: 2px solid var(--gold);
  padding: 40px 36px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.service-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.service-price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  margin-top: 24px;
  display: block;
}

/* ─── TESTIMONIAL CARD ─── */
.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.12);
  border-left: 3px solid var(--gold);
  padding: 40px 36px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-on-navy);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-flag { font-size: 18px; }
.testimonial-info {}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-detail {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── DIVIDER ANGLED ─── */
.section-angle {
  width: 100%;
  height: 60px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.section-angle-rev {
  width: 100%;
  height: 60px;
  background: var(--parchment);
  clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
}

/* ─── FORM ELEMENTS ─── */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text-on-navy);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(122, 143, 162, 0.5);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.form-select option { background: var(--navy); }

/* ─── PORTFOLIO CARD ─── */
.portfolio-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-mid);
  border-top: 2px solid var(--navy);
  padding: 0;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(12,27,46,0.12);
}
.portfolio-card-img {
  width: 100%;
  height: 220px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-card-img .watermark-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  position: absolute;
  bottom: 12px;
  right: 16px;
}
.portfolio-card-body {
  padding: 28px 28px 32px;
}
.portfolio-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.portfolio-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.portfolio-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid rgba(12,27,46,0.2);
  padding: 5px 12px;
}

/* ─── FAQ ACCORDION ─── */
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── PROCESS STEP ─── */
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.process-step:last-child { border-bottom: none; }
.process-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 60px;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  flex-shrink: 0;
}
.process-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.process-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── BLOG CARD ─── */
.blog-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-mid);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(12,27,46,0.12);
}
.blog-card-img {
  height: 200px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.blog-card-body { padding: 28px; }
.blog-category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #5A6A7A;
}
.blog-meta {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #9AABBA;
  letter-spacing: 0.05em;
}

/* ─── CONTACT INFO ─── */
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}
.contact-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-on-navy);
}
.contact-value a { color: var(--gold); }

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 14px;
}
.form-success p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
    --gutter: 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --gutter: 20px;
  }
  .nav-links,
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 28px 20px; gap: 16px; }
  .stat-number { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .process-number { font-size: 40px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
}
