/* ===================================================
   OPERATIONAL FREEDOM — Timber Soul Aesthetic
   Primary: Slate Teal #6D8C93 | Sage Green #A0C0B2
   Neutral: Soft Charcoal #4E5457 | Muted Mauve #B8A6A8
   Fonts: Roboto Condensed + Playfair Display
   =================================================== */

:root {
  --teal: #6D8C93;
  --teal-dark: #4a6b72;
  --teal-light: #8baab0;
  --sage: #A0C0B2;
  --sage-dark: #7da898;
  --charcoal: #4E5457;
  --charcoal-dark: #2e3234;
  --charcoal-light: #6a7275;
  --mauve: #B8A6A8;
  --mauve-light: #d4c8ca;
  --cream: #F5F0EA;
  --cream-dark: #E8E0D5;
  --white: #FDFCFB;
  --black: #1a1c1d;

  --font-header: 'Roboto Condensed', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --font-body: 'Roboto Condensed', sans-serif;

  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(78, 84, 87, 0.12);
  --shadow-lg: 0 12px 48px rgba(78, 84, 87, 0.18);
  --radius: 4px;
  --radius-lg: 8px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-header);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--charcoal-dark);
}

.accent-heading {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--teal);
}

.section-label {
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 140, 147, 0.35);
}

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

.btn-sage {
  background: var(--sage);
  color: var(--charcoal-dark);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 192, 178, 0.35);
}

.btn-dark {
  background: var(--charcoal-dark);
  color: var(--cream);
  border-color: var(--charcoal-dark);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.nav-scrolled {
  background: rgba(30, 33, 34, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav-logo-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,251,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--sage);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 20px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(30, 33, 34, 0.92) 0%,
      rgba(78, 84, 87, 0.85) 50%,
      rgba(109, 140, 147, 0.75) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: cover, 200px 200px;
}

/* Wood-grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    92deg,
    transparent,
    transparent 80px,
    rgba(160,192,178,0.03) 80px,
    rgba(160,192,178,0.03) 82px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {}

.hero-eyebrow {
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--sage);
}

.hero-h1 {
  font-family: var(--font-header);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-h1 span {
  color: var(--sage);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--mauve-light);
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-description {
  font-size: 17px;
  color: rgba(253,252,251,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-card {
  background: rgba(253,252,251,0.07);
  border: 1px solid rgba(253,252,251,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.hero-stat-card:hover {
  background: rgba(160,192,178,0.12);
  border-color: rgba(160,192,178,0.3);
  transform: translateX(-4px);
}

.hero-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(109, 140, 147, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sage);
  flex-shrink: 0;
}

.hero-stat-text {}
.hero-stat-number {
  font-family: var(--font-header);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(253,252,251,0.65);
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,252,251,0.5);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* === INTRO BAND === */
.band {
  background: var(--teal);
  padding: 28px 0;
}
.band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.band-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  text-align: center;
}
.band-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

/* === ABOUT TEASER === */
.about-teaser {
  background: var(--cream);
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-portrait {
  position: relative;
}

.about-portrait-frame {
  position: relative;
  padding: 16px;
}

.about-portrait-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border-top: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
}

.about-portrait-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  border-bottom: 3px solid var(--sage);
  border-right: 3px solid var(--sage);
}

.about-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--sage) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.9);
}

.about-portrait-placeholder i {
  font-size: 64px;
  opacity: 0.6;
}

.about-portrait-placeholder span {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  opacity: 0.7;
  text-align: center;
  padding: 0 20px;
}

.about-portrait-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--teal-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-portrait-badge .badge-num {
  font-family: var(--font-header);
  font-size: 36px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}
.about-portrait-badge .badge-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.about-text .accent-heading {
  font-size: clamp(18px, 2vw, 24px);
  display: block;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.8;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-text {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-dark);
  line-height: 1.4;
}

/* === SERVICES OVERVIEW === */
.services-overview {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}

.section-header .accent-heading {
  font-size: clamp(16px, 2vw, 22px);
  display: block;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(109, 140, 147, 0.2);
}
.service-card:hover::before {
  width: 6px;
  background: var(--sage);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
}

.service-card-tag {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--charcoal-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-card-link {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-card-link:hover {
  color: var(--teal-dark);
  gap: 12px;
}

/* === ROADMAP SECTION === */
.roadmap-section {
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(109,140,147,0.03) 40px,
    rgba(109,140,147,0.03) 41px
  );
}

.roadmap-section .section-header h2,
.roadmap-section .section-header .accent-heading,
.roadmap-section .section-header p {
  color: var(--white);
}
.roadmap-section .section-header p {
  color: rgba(253,252,251,0.65);
}

.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}

.phase-card {
  background: rgba(253,252,251,0.04);
  border: 1px solid rgba(253,252,251,0.08);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
}

.phase-card:hover {
  background: rgba(109,140,147,0.1);
  border-color: rgba(109,140,147,0.25);
}

.phase-number {
  font-family: var(--font-header);
  font-size: 80px;
  font-weight: 700;
  color: rgba(109,140,147,0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.phase-tag {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.phase-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.phase-card p {
  font-size: 14px;
  color: rgba(253,252,251,0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.phase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phase-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(253,252,251,0.7);
  line-height: 1.5;
}

.phase-items li::before {
  content: '→';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Timeline boxes have light cream backgrounds — override bullet text to charcoal */
.timeline-content .phase-items li {
  color: var(--charcoal);
}

.timeline-content .phase-items li::before {
  color: var(--teal);
}

/* Any phase-items on a light/cream background */
.phase-items-dark li {
  color: var(--charcoal) !important;
}

.phase-items-dark li::before {
  color: var(--teal) !important;
}

/* === ONLINESS / DIFFERENTIATOR === */
.onliness-section {
  background: var(--teal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.onliness-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.onliness-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.onliness-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.onliness-inner .section-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.onliness-statement {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 36px;
}

.onliness-statement strong {
  font-weight: 700;
  color: var(--cream);
  font-style: normal;
}

/* === TESTIMONIAL / TRUST === */
.trust-section {
  background: var(--cream);
  padding: 64px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.trust-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.trust-stars {
  color: var(--teal);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.trust-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 20px;
}

.trust-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.trust-name {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-dark);
}

.trust-title {
  font-size: 12px;
  color: var(--charcoal-light);
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'OF';
  position: absolute;
  font-family: var(--font-header);
  font-size: 300px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}

.cta-banner .section-label {
  color: var(--sage);
}

.cta-banner h2 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-banner .accent-heading {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--mauve-light);
  display: block;
  margin-bottom: 32px;
}

.cta-banner p {
  color: rgba(253,252,251,0.7);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--charcoal-dark);
  color: rgba(253,252,251,0.7);
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo-main {
  font-family: var(--font-header);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-logo-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--mauve);
  line-height: 1.5;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(253,252,251,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--sage);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(253,252,251,0.6);
  transition: var(--transition);
  margin: 0;
}
.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
  transform: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(253,252,251,0.4);
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(253,252,251,0.4);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--sage);
  transform: none;
}

.footer-legal-divider {
  color: rgba(253,252,251,0.2);
  font-size: 14px;
}

/* === ABOUT PAGE === */
.page-hero {
  background: var(--charcoal-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,33,34,0.9) 0%, rgba(109,140,147,0.3) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero .accent-heading {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--sage);
}

/* === STORY SECTION === */
.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.story-sidebar {}

.story-sticky {
  position: sticky;
  top: 100px;
}

.story-img-block {
  position: relative;
  margin-bottom: 24px;
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, var(--teal-dark), var(--teal), var(--sage-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.8);
}

.story-img-placeholder i {
  font-size: 48px;
  opacity: 0.5;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 12px 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}

.credential-item i {
  font-size: 18px;
  color: var(--teal);
  width: 24px;
  flex-shrink: 0;
}

.credential-item span {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  line-height: 1.3;
}

.story-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 8px;
  margin-top: 48px;
}

.story-content h2:first-child {
  margin-top: 0;
}

.story-content .accent-heading {
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.85;
}

.pullquote {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
}

.pullquote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 20px;
  color: var(--teal-dark);
  line-height: 1.55;
  margin: 0;
}

/* === SERVICES PAGE === */
.services-intro {
  background: var(--white);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.full-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.full-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.full-service:nth-child(even) .service-content {
  order: 2;
}
.full-service:nth-child(even) .service-visual {
  order: 1;
}

.service-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
}

.full-service:nth-child(1) .service-visual { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.full-service:nth-child(2) .service-visual { background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light)); }
.full-service:nth-child(3) .service-visual { background: linear-gradient(135deg, var(--teal), var(--sage)); }
.full-service:nth-child(4) .service-visual { background: linear-gradient(135deg, var(--charcoal-dark), var(--teal-dark)); }

.service-visual-icon {
  font-size: 100px;
  color: rgba(255,255,255,0.15);
  position: absolute;
}

.service-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.service-visual-content h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}

.service-phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.service-content .section-label { margin-bottom: 8px; }

.service-content h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 16px;
  color: var(--charcoal-dark);
}

.service-content p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.service-features li i {
  color: var(--teal);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* === ROADMAP PAGE === */
.roadmap-full {
  background: var(--white);
}

.roadmap-intro {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.roadmap-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--sage));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 64px;
  align-items: start;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
  padding-right: 48px;
}
.timeline-item:nth-child(odd) .timeline-empty {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  padding-left: 48px;
}
.timeline-item:nth-child(even) .timeline-empty {
  grid-column: 1;
}

.timeline-dot {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.timeline-dot-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-dark);
}

.timeline-content:hover {
  box-shadow: var(--shadow);
}

.timeline-phase-tag {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-block {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form-block h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 8px;
}

.contact-form-block .accent-heading {
  display: block;
  margin-bottom: 32px;
  font-size: 17px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal-dark);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(109, 140, 147, 0.12);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 8px;
}

.contact-info .accent-heading {
  display: block;
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-dark);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 15px;
  color: var(--charcoal-light);
}

.companies-list {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 28px;
}

.companies-list h4 {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-tag {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

/* === PORTRAIT PHOTO (real image) === */
.about-portrait-frame img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* Keep page-hero btns centered */
.page-hero-content .btn {
  position: relative;
  z-index: 2;
}

/* Contact page anchor offset for form */
#contact-form {
  scroll-margin-top: 100px;
}
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-sage { color: var(--sage); }
.text-white { color: var(--white); }
.text-mauve { color: var(--mauve); }
.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal-dark); }
.mt-0 { margin-top: 0 !important; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 140px 32px 64px; }
  .hero-visual { display: grid; grid-template-columns: repeat(2, 1fr); }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait-badge { right: 0; }
  .roadmap-phases { grid-template-columns: 1fr; gap: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-sticky { position: static; }
  .full-service { grid-template-columns: 1fr; min-height: auto; }
  .full-service:nth-child(even) .service-content,
  .full-service:nth-child(even) .service-visual { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .roadmap-timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: left; padding-right: 0; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; padding-left: 0; }
  .timeline-dot { display: none; }
  .timeline-empty { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(30,33,34,0.98); justify-content: center; align-items: center; gap: 16px; z-index: 999; }
  .nav-links.nav-open { display: flex; }
  .nav-hamburger { display: flex; position: relative; z-index: 1000; }
  .nav-cta { margin-left: 0; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .service-content { padding: 40px 28px; }
  .service-visual { min-height: 240px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
