/*
===========================================================
  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
  --------------------
  Playfair Display 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
  perfectly paired with Inter for warmth and precision.

  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=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;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: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 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: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.t-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 42px);
  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.8;
}
.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: 400;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  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: 400;
  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: 400;
  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: 400;
  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: 400;
  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: 400;
  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: 400;
  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: 400;
  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: 400;
  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: 1200px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.07em; }
}
@media (max-width: 1080px) {
  /* Tighten nav on medium screens but keep all links visible */
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 0.06em; }
  .nav-cta .btn { padding: 12px 20px; font-size: 12px; }
}
@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; }

  /* Fix 1: Mobile hero full-width on small screens */
  .hero { min-height: 100svh; align-items: flex-start; padding-top: 72px; }
  .hero-content { padding: 60px 20px 60px; }
  .t-hero { font-size: clamp(44px, 12vw, 80px); }

  /* Fix 2: Service number mobile — prevent bleed */
  .service-detail-number {
    font-size: 56px;
    margin-bottom: -10px;
    line-height: 1;
  }
  .service-detail-title { font-size: 32px; }

  /* Page hero mobile */
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 52px); }
}

/* ========================================
   CAREER DOCUMENT ANIMATIONS
   Every animation references the act of
   writing, reviewing, or handling a document
   ======================================== */

/* ─── TYPEWRITER CURSOR ─── */
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink-cursor 0.8s step-end infinite;
}

/* ─── DOCUMENT LINE TYPING ─── */
@keyframes doc-line-appear {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}
.doc-line-animated {
  overflow: hidden;
  white-space: nowrap;
  animation: doc-line-appear 0.35s ease-out forwards;
  opacity: 0;
}
.doc-line-animated:nth-child(1)  { animation-delay: 0.4s; }
.doc-line-animated:nth-child(2)  { animation-delay: 0.7s; }
.doc-line-animated:nth-child(3)  { animation-delay: 0.95s; }
.doc-line-animated:nth-child(4)  { animation-delay: 1.15s; }
.doc-line-animated:nth-child(5)  { animation-delay: 1.3s; }
.doc-line-animated:nth-child(6)  { animation-delay: 1.45s; }
.doc-line-animated:nth-child(7)  { animation-delay: 1.6s; }
.doc-line-animated:nth-child(8)  { animation-delay: 1.75s; }
.doc-line-animated:nth-child(9)  { animation-delay: 1.9s; }
.doc-line-animated:nth-child(10) { animation-delay: 2.05s; }
.doc-line-animated:nth-child(11) { animation-delay: 2.2s; }
.doc-line-animated:nth-child(12) { animation-delay: 2.35s; }

/* ─── HERO WORD ENTRANCE ─── */
@keyframes hero-word-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hw { display: inline-block; opacity: 0; animation: hero-word-in 0.55s var(--ease) forwards; }
.hw-1 { animation-delay: 0.15s; }
.hw-2 { animation-delay: 0.35s; }
.hw-3 { animation-delay: 0.55s; }
.hw-4 { animation-delay: 0.75s; }
.hw-5 { animation-delay: 0.95s; }

/* ─── TIMELINE LINE DRAW ─── */
.timeline-track {
  position: absolute;
  left: 119px;
  top: 56px;
  width: 1px;
  height: calc(100% - 56px);
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), rgba(201,168,76,0.1));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.6s cubic-bezier(0.22,1,0.36,1);
}
.timeline-track.drawn { transform: scaleY(1); }

/* ─── DOCUMENT TILT ON HOVER ─── */
.portfolio-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  transform-origin: center bottom;
}
.portfolio-card:hover {
  transform: translateY(-6px) rotate(-0.8deg);
  box-shadow: 0 28px 72px rgba(12,27,46,0.22);
}

/* ─── PEN CURSOR DOT (desktop only) ─── */
.pen-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: transform 0.06s linear;
}
.pen-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  transform: translate(-50%, -50%);
  transition: transform 0.22s var(--ease);
}
@media (hover: none) { .pen-dot, .pen-ring { display: none; } }

/* ─── GOLD STAT BAR ─── */
.stat-bar-wrap {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 12px;
  overflow: hidden;
  border-radius: 1px;
}
.stat-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 2.2s var(--ease);
}
.stat-bar-fill.filled { width: 100%; }

/* ─── PAGE LOAD FADE ─── */
@keyframes page-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-wrap { animation: page-in 0.45s ease-out forwards; }

/* ─── FLOATING DOC PARTICLES (hero) ─── */
@keyframes float-doc {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.035; }
  40%       { transform: translateY(-22px) rotate(2deg) scale(1.02); opacity: 0.06; }
  70%       { transform: translateY(10px) rotate(-1deg) scale(0.98); opacity: 0.04; }
}
.hero-particle {
  position: absolute;
  pointer-events: none;
  color: rgba(255,255,255,1);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  animation: float-doc linear infinite;
}

/* ─── GOLD RULE DRAW ─── */
@keyframes rule-draw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.gold-rule.revealed, .gold-rule-lg.revealed {
  animation: rule-draw 0.7s var(--ease) forwards;
  transform-origin: left;
}

/* ─── STAMP EFFECT (for shop products) ─── */
@keyframes stamp-in {
  0%   { transform: scale(3) rotate(-10deg); opacity: 0; }
  60%  { transform: scale(0.93) rotate(1deg); opacity: 1; }
  80%  { transform: scale(1.05) rotate(-0.5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.stamp-reveal { opacity: 0; }
.stamp-reveal.stamped { animation: stamp-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }

/* ─── WORD BLUR REVEAL (section headlines) ─── */
@keyframes word-up {
  from { opacity: 0; transform: translateY(12px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.word-reveal-span {
  display: inline-block;
  opacity: 0;
  animation: word-up 0.45s var(--ease) forwards;
  margin-right: 0.22em;
}

@media (max-width: 600px) {
  /* ─── Portfolio cards ─── */
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-column: 1; }

  /* ─── Stats strip ─── */
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 20px 16px; gap: 12px; }
  .stat-number { font-size: 32px; }
  .stat-divider { display: none; }

  /* ─── Services grid ─── */
  .services-grid { grid-template-columns: 1fr; gap: 1px; }

  /* ─── Testimonials ─── */
  .testi-grid { grid-template-columns: 1fr; }

  /* ─── Portfolio filters ─── */
  .portfolio-filters { gap: 8px; }
  .filter-btn { font-size: 10px; padding: 8px 16px; }

  /* ─── Portfolio card image height ─── */
  .portfolio-card-visual { height: 180px; }

  /* ─── Page hero ─── */
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 44px); }

  /* ─── Process timeline ─── */
  .timeline-track { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding: 36px 0; }
  .timeline-left { text-align: left; }
  .timeline-step-num { font-size: 48px; }

  /* ─── Footer ─── */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-col ul { gap: 10px; }

  /* ─── Buttons ─── */
  .btn { padding: 14px 24px; font-size: 12px; }

  /* ─── Hero ─── */
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }

  /* Reduce hero text further */
  .hero-headline { font-size: clamp(38px, 11vw, 56px); }

  /* Stats: stack 1 column */
  .stats-strip { grid-template-columns: 1fr; text-align: center; }
  .stat-item { padding: 8px 0; }

  /* Service cards */
  .service-card { padding: 28px 24px; }
  .service-number { font-size: 36px; }

  /* Testimonial cards */
  .testimonial-text { font-size: 15px; }

  /* Portfolio */
  .portfolio-card-visual { height: 160px; }
  .doc-readable { width: 140px; padding: 10px 8px 16px; }
}
