/* ============================================================
   ATLAS ELEVEN HOSPITALITY CONSULTING
   Style Sheet v1.0
   Palette: Navy #051C2C | Gold #E8C97A | White #FFFFFF | Warm Off-White #F8F6F1
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

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

/* ======================== RESET & BASE ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ======================== VARIABLES ======================== */
:root {
  --navy:      #051C2C;
  --gold:      #E8C97A;
  --white:     #FFFFFF;
  --off-white: #F8F6F1;
  --text:      #2C3E50;
  --muted:     #7B8DA0;
  --border:    rgba(5, 28, 44, 0.09);
  --border-gold: rgba(232, 201, 122, 0.28);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1200px;
  --nav-h:      76px;
  --ease:       0.25s ease;
}

/* ======================== LAYOUT ======================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
section { position: relative; }

/* ======================== TYPOGRAPHY ======================== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-center {
  justify-content: center;
}

.display-1 { font-family: var(--font-serif); font-size: clamp(48px, 6.5vw, 88px); font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
.display-2 { font-family: var(--font-serif); font-size: clamp(36px, 4.5vw, 60px); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
.display-3 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; line-height: 1.18; }

.accent-italic { font-style: italic; color: var(--gold); }
.white-text    { color: var(--white); }
.navy-text     { color: var(--navy); }
.muted-text    { color: var(--muted); }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ======================== NAVIGATION ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background var(--ease), border-bottom var(--ease);
}
.nav.scrolled {
  background: var(--navy);
  border-bottom: 1px solid rgba(232,201,122,0.14);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.nav-logo-tagline {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta { padding: 10px 22px; font-size: 10.5px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--ease);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(232,201,122,0.18);
  padding: 20px 0;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0 24px; }
.nav-mobile ul li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile ul a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
}
.nav-mobile ul a:hover { color: var(--gold); }

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  /* Replace 'images/hero.jpg' with your property photo */
  background-image: linear-gradient(rgba(5,28,44,0.70) 0%, rgba(5,28,44,0.88) 100%), var(--hero-img, none);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.3;
}
.hero-inner { padding: 88px 0; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(50px, 6.5vw, 90px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 28px;
}
.hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.8; }
}

/* ======================== INTRO BAND ======================== */
.intro-band { padding: 104px 0; background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}
.intro-stats { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.intro-stat-block { padding: 36px 0; border-bottom: 1px solid var(--border); }
.intro-stat-block:first-child { padding-top: 0; }
.intro-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.intro-stat-num sup { font-size: 0.42em; color: var(--gold); vertical-align: super; }
.intro-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 240px;
}

/* ======================== PROBLEM SECTION ======================== */
.problem-section { padding: 104px 0; background: var(--navy); }
.problem-header { margin-bottom: 60px; }
.problem-list { border-top: 1px solid rgba(255,255,255,0.08); }
.problem-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.problem-num {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.12em;
  padding-top: 5px;
  opacity: 0.8;
}
.problem-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 33px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.problem-content p {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(255,255,255,0.52);
  max-width: 560px;
}
.problem-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,201,122,0.08);
  border: 1px solid rgba(232,201,122,0.2);
  padding: 7px 16px;
  white-space: nowrap;
  align-self: start;
  margin-top: 6px;
}

/* ======================== SERVICES SECTION ======================== */
.services-section { padding: 104px 0; background: var(--off-white); }
.services-section .section-header { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(5,28,44,0.08);
}
.service-card {
  background: var(--white);
  padding: 48px 40px 44px;
  transition: background var(--ease);
}
.service-card:hover { background: var(--navy); }
.service-card-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(5,28,44,0.07);
  line-height: 1;
  margin-bottom: 28px;
  transition: color var(--ease);
}
.service-card:hover .service-card-num { color: rgba(232,201,122,0.15); }
.service-card-title {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.22;
  transition: color var(--ease);
}
.service-card:hover .service-card-title { color: var(--gold); }
.service-card-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color var(--ease);
}
.service-card:hover .service-card-body { color: rgba(255,255,255,0.52); }
.service-card-link {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ======================== WHO WE WORK WITH ======================== */
.clients-section { padding: 104px 0; background: var(--white); }
.clients-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.clients-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.client-tag {
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 10px 18px;
  letter-spacing: 0.02em;
  transition: border-color var(--ease), color var(--ease);
  cursor: default;
}
.client-tag:hover { border-color: var(--gold); color: var(--gold); }
.clients-quote {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}
.clients-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 22px;
  padding-left: 0;
}

/* ======================== PROCESS SECTION ======================== */
.process-section { padding: 104px 0; background: var(--off-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 1px;
  background: var(--border-gold);
}
.process-step { padding: 0 36px; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }
.process-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--off-white);
  position: relative;
  z-index: 1;
}
.process-icon span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.process-step p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--muted);
}

/* ======================== CTA STRIP ======================== */
.cta-strip {
  padding: 108px 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,201,122,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-strip-body {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  padding: 156px 0 84px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}

/* ======================== AUDIT BREAKDOWN ======================== */
.audit-breakdown { padding: 104px 0; background: var(--white); }
.audit-list { margin-top: 64px; border-top: 1px solid var(--border); }
.audit-item {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.audit-item-meta { position: sticky; top: 100px; align-self: start; }
.audit-item-meta .eyebrow { margin-bottom: 12px; }
.audit-item-meta h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.audit-item-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}
.audit-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.audit-checklist li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.audit-checklist li::before {
  content: '—';
  color: var(--gold);
  font-family: var(--font-serif);
  flex-shrink: 0;
}

/* ======================== DELIVERABLES ======================== */
.deliverables-section { padding: 104px 0; background: var(--off-white); }
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}
.deliverable-card {
  background: var(--white);
  padding: 44px 36px;
}
.deliverable-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.deliverable-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}
.deliverable-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(5,28,44,0.07);
  line-height: 1;
  margin-bottom: 24px;
}

/* ======================== PRICING ======================== */
.pricing-section { padding: 104px 0; background: var(--navy); }
.pricing-card {
  border: 1px solid var(--border-gold);
  padding: 64px;
  max-width: 820px;
  margin: 60px auto 0;
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 64px;
  width: 56px; height: 2px;
  background: var(--gold);
}
.pricing-amount {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.pricing-amount .currency { font-size: 0.44em; color: var(--gold); vertical-align: super; }
.pricing-amount .range    { font-size: 0.35em; color: rgba(255,255,255,0.4); font-family: var(--font-sans); }
.pricing-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin: 20px 0 40px;
  max-width: 480px;
}
.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-bottom: 48px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-size: 11px; margin-top: 2px; flex-shrink: 0; }

/* ======================== ABOUT PAGE ======================== */
.about-main { padding: 104px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%; height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(232,201,122,0.3);
}
.photo-placeholder span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.approach-list { border-top: 1px solid var(--border); }
.approach-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.approach-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
}
.approach-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ======================== CONTACT / FORM ======================== */
.form-section { padding: 104px 0; background: var(--white); }
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.form-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}
.form-info > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 44px;
}
.form-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.form-detail:last-child { border-bottom: 1px solid var(--border); }
.form-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 13px;
  font-family: var(--font-serif);
}
.form-detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.form-detail-value { font-size: 15px; color: var(--navy); font-weight: 400; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(5,28,44,0.14);
  border-radius: 0;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(5,28,44,0.28); font-size: 14px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 118px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit .btn { width: 100%; margin-top: 4px; }
.form-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ======================== FOOTER ======================== */
footer {
  background: #020e17;
  padding: 68px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
}
.footer-brand-tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
}
.footer-col-title {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
}

/* ======================== ANIMATIONS ======================== */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim.in-view { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: 0.12s; }
.anim-d2 { transition-delay: 0.24s; }
.anim-d3 { transition-delay: 0.36s; }

/* ======================== FORM SUCCESS STATE ======================== */
.form-success {
  text-align: center;
  padding: 64px 32px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 14px;
}
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.form-success .gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .intro-grid { gap: 52px; }
  .clients-layout { gap: 52px; }
  .about-grid { gap: 52px; }
  .form-layout { gap: 52px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .audit-item { grid-template-columns: 1fr; gap: 24px; }
  .audit-item-meta { position: static; }
  .pricing-features { grid-template-columns: 1fr; }
  .approach-item { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .clients-layout { grid-template-columns: 1fr; gap: 44px; }
  .process-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-grid::before { display: none; }
  .process-step { padding: 0; }
  .problem-item { grid-template-columns: 1fr; gap: 14px; }
  .problem-tag { align-self: flex-start; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .pricing-card { padding: 40px 24px; }
  .pricing-card::before { left: 24px; }
  .hero-inner { padding: 64px 0 80px; }
  .hero-scroll { display: none; }
}
