/* =========================================================
   Sarah Michelle — Executive Career Documents
   Premium Design System
   ========================================================= */

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

/* --- Design Tokens ------------------------------------------- */
:root {
  /* Colors */
  --navy-900: #061229;
  --navy-800: #0A1628;
  --navy-700: #11233F;
  --navy-600: #1B3056;
  --gold-700: #8E7132;
  --gold-600: #A8884A;
  --gold-500: #B8964A;
  --gold-400: #C9A961;
  --gold-300: #D9C28A;
  --gold-100: #F0E5C8;
  --ivory-50: #FDFBF6;
  --ivory-100: #FAF8F3;
  --ivory-200: #F4F0E5;
  --ivory-300: #EBE5D2;
  --sand-200: #E8E2D0;
  --sand-300: #D6CFB8;
  --white: #FFFFFF;
  --ink-900: #0A1628;
  --ink-700: #2C3E50;
  --ink-500: #4A5568;
  --ink-400: #6B7280;
  --ink-300: #9AA3AF;
  --ink-200: #C5CAD2;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --max-width: 1240px;
  --gutter: 24px;
  --section-py: 112px;
  --nav-h: 84px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-sm: 0 2px 6px rgba(10, 22, 40, 0.04), 0 1px 2px rgba(10, 22, 40, 0.03);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.05), 0 2px 4px rgba(10, 22, 40, 0.03);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.07), 0 4px 12px rgba(10, 22, 40, 0.04);
  --shadow-xl: 0 24px 60px rgba(10, 22, 40, 0.10), 0 8px 24px rgba(10, 22, 40, 0.05);
  --shadow-gold: 0 12px 32px rgba(184, 150, 74, 0.18);

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--ivory-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--gold-500); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea, button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; line-height: 1.2; color: var(--ink-900); }
p { margin: 0; }

/* --- Layout -------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-py); position: relative; }
.section--tight { padding-block: 80px; }
.section--dark { background: var(--navy-800); color: var(--ivory-200); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--ivory { background: var(--ivory-200); }

/* --- Section Headers ---------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold-400); }
.section--dark .eyebrow::before { background: var(--gold-400); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  max-width: 800px;
  margin: 0 0 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 500;
}
.section--dark .section-title { color: var(--white); }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 720px;
  margin: 0;
}
.section--dark .section-sub { color: var(--ink-300); }

.section-head { margin-bottom: 64px; }
.section-head--center { text-align: center; margin-inline: auto; max-width: 760px; }
.section-head--center .section-title { margin-inline: auto; }
.section-head--center .section-sub { margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before, .section-head--center .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}
.section--dark .section-head--center .eyebrow::before,
.section--dark .section-head--center .eyebrow::after { background: var(--gold-400); }
.section-head--center .eyebrow::after { display: inline-block; }

/* --- Navigation --------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--sand-200);
  box-shadow: var(--shadow-xs);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__monogram {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--navy-800);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.01em;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--t-base);
}
.nav__link:hover { color: var(--ink-900); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--ink-900); }
.nav__cta {
  flex-shrink: 0;
}

/* Mobile nav */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-900);
  transition: all var(--t-base);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__inner .nav__links,
  .nav__inner .nav__cta { display: none; }
  .nav__inner .nav__toggle { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ivory-100);
  padding: calc(var(--nav-h) + 32px) var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 450ms cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--sand-200);
}
.mobile-menu__cta { margin-top: 32px; }

/* --- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--navy-800);
  color: var(--ivory-100);
}
.btn--primary:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--gold-500);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--ghost:hover {
  background: var(--ink-900);
  color: var(--ivory-100);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--white);
}
.btn--lg { padding: 20px 38px; font-size: 13px; }
.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--block { width: 100%; }
.btn__arrow {
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--t-base);
}
.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .btn__arrow { width: 22px; }

/* --- Hero ---------------------------------------------------- */
.hero {
  padding: calc(var(--nav-h) + 80px) 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 150, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  display: inline-block;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 500;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__experience {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--sand-200);
  max-width: 460px;
}
.hero__experience-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.hero__experience-num sup {
  font-size: 32px;
  color: var(--gold-500);
  top: -22px;
  position: relative;
}
.hero__experience-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__experience-text strong {
  color: var(--ink-900);
  font-weight: 600;
  display: block;
  font-size: 14px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-200);
  box-shadow: var(--shadow-xl);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero__visual-card--tl {
  top: 36px; left: -28px;
  animation: float 6s ease-in-out infinite;
}
.hero__visual-card--br {
  bottom: 36px; right: -28px;
  animation: float 6s ease-in-out infinite 3s;
}
.hero__card-icon {
  width: 42px; height: 42px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__card-icon svg { width: 20px; height: 20px; }
.hero__card-text { line-height: 1.3; }
.hero__card-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 500;
  margin-bottom: 2px;
}
.hero__card-text strong {
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Page Hero (smaller) */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 64px;
  background: var(--ivory-100);
  border-bottom: 1px solid var(--sand-200);
  text-align: center;
  position: relative;
}
.page-hero__inner { max-width: 780px; margin: 0 auto; }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 24px;
}
.page-hero__title em { font-style: italic; color: var(--gold-600); }
.page-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto;
}

/* --- Marquee ------------------------------------------------- */
.marquee {
  background: var(--navy-800);
  color: var(--ivory-200);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
}
.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ivory-200);
  flex-shrink: 0;
}
.marquee__item::after {
  content: '✦';
  color: var(--gold-400);
  font-style: normal;
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Stats / Expertise Strip -------------------------------- */
.expertise {
  background: var(--white);
  border-block: 1px solid var(--sand-200);
  padding: 64px 0;
}
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.expertise__item {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.expertise__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--sand-200);
}
.expertise__num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-800);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.expertise__num--gold { color: var(--gold-500); }
.expertise__num sup {
  font-size: 28px;
  color: var(--gold-500);
  top: -18px;
  position: relative;
}
.expertise__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.5;
}

/* --- Why Choose (feature list) ------------------------------ */
.why {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why__media {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why__item {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--t-base);
}
.why__item:hover {
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why__icon {
  width: 44px; height: 44px;
  background: var(--ivory-200);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.why__icon svg { width: 22px; height: 22px; }
.why__item h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.why__item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-500);
}

/* --- Service Cards ------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 36px 32px;
  position: relative;
  transition: all var(--t-base);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--t-slow);
}
.service-card:hover {
  border-color: var(--gold-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { width: 100%; }
.service-card__num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all var(--t-base);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon {
  background: var(--gold-500);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.service-card__link::after {
  content: '→';
  transition: transform var(--t-base);
}
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* Service detail rows (Services page) */
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--sand-200);
  align-items: start;
}
.service-row__num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-500);
  font-style: italic;
  letter-spacing: -0.02em;
}
.service-row__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-row__title small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
  font-style: normal;
}
.service-row__intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 24px;
  max-width: 540px;
}
.service-row__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.service-row__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-700);
  padding: 6px 0;
}
.service-row__highlights li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* --- Process / Timeline ------------------------------------- */
.process {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.process__line {
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 1px;
  background: var(--sand-200);
  z-index: 0;
}
.process__line-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--gold-500);
  width: 0;
  transition: width 1.5s ease-out;
  z-index: 1;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.process__step {
  text-align: center;
  background: var(--ivory-100);
}
.process__dot {
  width: 72px; height: 72px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  position: relative;
  transition: all var(--t-base);
}
.process__dot::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--ivory-100);
  z-index: -1;
}
.process__step.is-active .process__dot {
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-800);
  transform: scale(1.05);
}
.process__step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.process__step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 220px;
  margin: 0 auto;
}

/* --- Difference Cards --------------------------------------- */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--ivory-100);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 40px 32px;
  position: relative;
  transition: all var(--t-base);
}
.section--dark .diff-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.diff-card:hover {
  background: var(--white);
  border-color: var(--gold-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.section--dark .diff-card:hover { background: rgba(255,255,255,0.08); }
.diff-card__icon {
  width: 56px; height: 56px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all var(--t-base);
}
.section--dark .diff-card__icon { background: var(--gold-500); color: var(--white); }
.diff-card__icon svg { width: 28px; height: 28px; }
.diff-card:hover .diff-card__icon { background: var(--gold-500); color: var(--white); }
.diff-card h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.diff-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section--dark .diff-card h4 { color: var(--white); }
.diff-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
}
.section--dark .diff-card p { color: var(--ink-300); }

/* --- Portfolio Grid ----------------------------------------- */
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
}
.portfolio-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-pill);
  transition: all var(--t-base);
}
.portfolio-tab:hover { color: var(--ink-900); border-color: var(--ink-300); }
.portfolio-tab.is-active {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.portfolio-item {
  position: relative;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--sand-200);
  transition: all var(--t-base);
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-300);
}
.portfolio-item__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-200);
  position: relative;
}
.portfolio-item__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-item__media img { transform: scale(1.04); }
.portfolio-item__sample {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.portfolio-item__body {
  padding: 24px 24px 28px;
}
.portfolio-item__cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.portfolio-item__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.portfolio-item__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 41, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background var(--t-base);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* --- Testimonials ------------------------------------------- */
.featured-testimonial {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.featured-testimonial::before {
  content: '“';
  position: absolute;
  top: -40px; left: 40px;
  font-family: var(--font-serif);
  font-size: 280px;
  line-height: 1;
  color: var(--ivory-200);
  font-style: italic;
  pointer-events: none;
}
.featured-testimonial__media {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ivory-200);
  position: relative;
}
.featured-testimonial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 36px;
  position: relative;
  transition: all var(--t-base);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--gold-500);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-700);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-200);
}
.testimonial-card__photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory-200);
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink-500);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--sand-200);
  position: relative;
}
.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.testimonial-card__photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.8);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 3px 0;
}
.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
}
.testimonial-card__title {
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 3px 8px;
  background: var(--ivory-200);
  color: var(--gold-700);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonial-card__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --- Recommendations ---------------------------------------- */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.rec-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 36px;
  position: relative;
  transition: all var(--t-base);
}
.rec-card:hover { box-shadow: var(--shadow-md); }
.rec-card__head {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand-200);
}
.rec-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.rec-card__name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
}
.rec-card__title {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 2px;
}
.rec-card__org {
  font-size: 12px;
  color: var(--gold-500);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.rec-card__date {
  font-size: 11px;
  color: var(--ink-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
.rec-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}
.rec-card__body::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold-300);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 2px;
}

.rec-empty {
  text-align: center;
  padding: 64px 32px;
  background: var(--ivory-200);
  border: 1px dashed var(--sand-300);
  border-radius: var(--r-md);
}
.rec-empty p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink-500);
  max-width: 480px;
  margin: 0 auto 16px;
}

/* --- FAQ Accordion ------------------------------------------ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--sand-200);
}
.faq-item:first-child { border-top: 1px solid var(--sand-200); }
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: color var(--t-base);
}
.faq-item__btn:hover { color: var(--gold-600); }
.faq-item__btn[aria-expanded="true"] { color: var(--gold-600); }
.faq-item__icon {
  width: 36px; height: 36px;
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-500);
  position: relative;
  transition: all var(--t-base);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--t-base);
}
.faq-item__icon::before {
  width: 12px; height: 1.5px;
}
.faq-item__icon::after {
  width: 1.5px; height: 12px;
}
.faq-item__btn[aria-expanded="true"] .faq-item__icon {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.faq-item__btn[aria-expanded="true"] .faq-item__icon::after {
  transform: rotate(90deg);
}
.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__body-inner {
  padding: 0 0 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 720px;
}
.faq-item__body-inner p { margin: 0 0 12px; }
.faq-item__body-inner ol, .faq-item__body-inner ul { padding-left: 24px; margin: 12px 0; }
.faq-item__body-inner ol li, .faq-item__body-inner ul li { margin: 6px 0; list-style: revert; }

/* --- Form ---------------------------------------------------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field--full { grid-column: 1 / -1; }
.form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.form__label .opt {
  color: var(--ink-300);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
  font-size: 11px;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--ink-900);
  transition: all var(--t-base);
  font-family: var(--font-sans);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184, 150, 74, 0.15);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--ink-300); }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.form__textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
/* The resume travels by email — the form itself cannot carry a file. */
.form__attach {
  padding: 18px 20px;
  background: var(--ivory-200);
  border: 1px dashed var(--sand-300);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-500);
}
.form__attach p { margin-bottom: 14px; }
.form__attach strong { color: var(--ink-900); font-weight: 600; }
.form__attach a:not(.btn) {
  color: var(--gold-600);
  border-bottom: 1px solid var(--gold-300);
  transition: border-color var(--t-base);
}
.form__attach a:not(.btn):hover { border-bottom-color: var(--gold-600); }

.form__submit { margin-top: 16px; }
.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.form__note {
  font-size: 12px;
  color: var(--ink-400);
  margin-left: auto;
}

.form__success, .form__error {
  padding: 18px 22px;
  border-radius: var(--r-sm);
  font-size: 14px;
  margin-bottom: 24px;
  display: none;
}
.form__success {
  background: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #C8E6C9;
}
.form__error {
  background: #FFEBEE;
  color: #B71C1C;
  border: 1px solid #FFCDD2;
}
.form.is-success .form__success { display: block; }
.form.is-error .form__error { display: block; }
.form__success-link {
  display: block;
  width: fit-content;
  margin-top: 12px;
  font-weight: 600;
  color: #1B5E20;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 94, 32, 0.35);
  transition: border-color var(--t-base);
}
.form__success-link:hover { border-bottom-color: #1B5E20; }
.form__success-link[hidden] { display: none; }

/* --- Final CTA Banner --------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--ivory-100);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184, 150, 74, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-400); }
.cta-banner p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-200);
  margin-bottom: 32px;
  max-width: 540px;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-banner__meta {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
}
.cta-banner__meta-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.cta-banner__meta-row:last-child { border-bottom: 0; }
.cta-banner__meta-row span:first-child {
  color: var(--ink-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}
.cta-banner__meta-row span:last-child {
  color: var(--white);
  font-weight: 500;
}
.cta-banner__meta-row a {
  color: var(--gold-400);
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.cta-banner__meta-row a:hover { color: var(--gold-300); border-color: var(--gold-300); }

/* --- Footer -------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: var(--ink-300);
  padding: 80px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-300);
  margin-bottom: 24px;
  max-width: 320px;
}
.footer__experience {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--r-sm);
  margin-bottom: 24px;
}
.footer__experience-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-400);
  font-weight: 500;
}
.footer__experience-num sup { font-size: 16px; top: -10px; }
.footer__experience-text {
  font-size: 11px;
  color: var(--ink-200);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--ink-300);
  transition: color var(--t-base);
}
.footer__col a:hover { color: var(--gold-400); }
.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__email:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-300);
  transition: all var(--t-base);
}
.footer__social:hover { background: var(--gold-500); color: var(--white); border-color: var(--gold-500); }
.footer__social svg { width: 16px; height: 16px; }
.footer__social--placeholder {
  opacity: 0.4;
  pointer-events: none;
}
.footer__social--placeholder::after {
  content: '';
  position: absolute;
}
.footer__social-note {
  font-size: 11px;
  color: var(--ink-400);
  font-style: italic;
  margin-top: 8px;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  font-size: 13px;
  color: var(--ink-400);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a { color: var(--ink-400); }
.footer__legal a:hover { color: var(--gold-400); }

/* --- About page specific ------------------------------------ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.about-hero__title em { font-style: italic; color: var(--gold-600); }
.about-hero__sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
}
.about-hero__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 20px;
  max-width: 540px;
}
.about-hero__media {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__experience {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  margin-top: 32px;
  max-width: 540px;
  box-shadow: var(--shadow-sm);
}
.about-hero__experience-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.about-hero__experience-num sup { color: var(--gold-500); font-size: 28px; top: -18px; }
.about-hero__experience-text {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.about-hero__experience-text strong {
  color: var(--ink-900);
  font-weight: 700;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all var(--t-base);
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar__icon {
  width: 48px; height: 48px;
  background: var(--ivory-200);
  color: var(--gold-500);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar p { font-size: 14px; line-height: 1.6; color: var(--ink-500); }

/* --- Contact page ------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact__info {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.contact__info h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.contact__info h2 em { font-style: italic; color: var(--gold-600); }
.contact__info p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 32px;
}
.contact__email {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  margin-bottom: 24px;
  transition: all var(--t-base);
}
.contact__email:hover { border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.contact__email-icon {
  width: 48px; height: 48px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__email-icon svg { width: 22px; height: 22px; }
.contact__email-text { line-height: 1.4; }
.contact__email-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact__email-text strong {
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 500;
  word-break: break-word;
}
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact__form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact__form-wrap > p {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 32px;
}

/* --- Page Intro (for About) --------------------------------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink-900); font-weight: 600; }

/* --- Privacy / Terms ---------------------------------------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.legal ul { padding-left: 24px; margin-bottom: 16px; }
.legal li { list-style: disc; margin-bottom: 8px; }
.legal-meta {
  font-size: 13px;
  color: var(--ink-400);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand-200);
}

/* --- Animations --------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }
.reveal[data-delay="600"] { transition-delay: 600ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .why__media { position: static; max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-testimonial { grid-template-columns: 1fr; padding: 48px; gap: 40px; }
  .about-hero { grid-template-columns: 1fr; gap: 48px; }
  .about-hero__media { max-width: 480px; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .contact__info { position: static; }
  .cta-banner__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-row { grid-template-columns: 80px 1fr; gap: 32px; }
  .service-row__highlights { grid-column: 2; }
  .service-row__num { font-size: 42px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .expertise__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .expertise__item:nth-child(2)::after { display: none; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__line { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 64px; --gutter: 20px; --nav-h: 72px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 64px; }
  .hero__title { font-size: 2.2rem; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__experience-num { font-size: 48px; }
  .hero__visual-card--tl { left: -12px; padding: 14px 18px; }
  .hero__visual-card--br { right: -12px; padding: 14px 18px; }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: 1.9rem; }
  .expertise__grid { grid-template-columns: 1fr; gap: 28px; }
  .expertise__item::after { display: none !important; }
  .expertise__num { font-size: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
  .difference-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .featured-testimonial { padding: 32px 24px; }
  .featured-testimonial::before { font-size: 180px; top: -20px; }
  .testimonial-card { padding: 28px 22px; }
  .testimonial-card__text { font-size: 17px; }
  .about-hero__title { font-size: 2.2rem; }
  .about-hero__experience { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .contact__form-wrap { padding: 32px 24px; }
  .cta-banner { padding: 64px 0; }
  .cta-banner__meta { padding: 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .process__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .service-row__num { font-size: 36px; }
  .service-row__title { font-size: 26px; }
  .service-row__highlights { grid-column: 1; grid-template-columns: 1fr; }
  .portfolio-tabs { gap: 6px; }
  .portfolio-tab { font-size: 12px; padding: 8px 14px; }
  .marquee__item { font-size: 18px; gap: 14px; }
  .marquee__track { gap: 40px; }
  .nav__name { font-size: 19px; }
  .nav__name small { font-size: 9px; }
  .nav__monogram { width: 34px; height: 34px; font-size: 17px; }
  .legal h2 { font-size: 22px; }
}
