* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f1ea;
  --surface: #ffffff;
  --navy: #2f2a24;
  --navy-2: #4a3b2f;
  --gold: #b4874b;
  --gold-soft: #d8c3a2;
  --text: #332f2a;
  --muted: #756b60;
  --border: rgba(74, 59, 47, 0.12);
  --shadow: 0 20px 50px rgba(47, 42, 36, 0.08);
  --radius: 22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 243, 239, 0.82);
  border-bottom: 1px solid rgba(16, 39, 61, 0.06);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-symbol {
  height: 64px;
  width: 64px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}
.menu {
  display: flex;
  gap: 26px;
  color: var(--navy);
  font-weight: 600;
}

.menu a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #cda35a);
  color: white;
  box-shadow: 0 16px 32px rgba(185, 139, 60, 0.22);
}

.btn-secondary {
  background: white;
  border-color: var(--border);
  color: var(--navy);
}

.btn-outline {
  border-color: var(--border);
  color: var(--navy);
  background: rgba(255,255,255,0.7);
}

.hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 15% 10%, rgba(185,139,60,0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(16,39,61,0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf8 0%, #f5f3ef 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
align-items: start;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow.light { color: var(--gold-soft); }

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel { display: grid; gap: 18px; }

.panel-card, .stat-card, .card, .audience-card, .deliverable, .highlight-box, .cta-box, .portrait-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel-card {
  border-radius: 28px;
  padding: 30px;
}

.panel-card h2 { font-size: 1.8rem; }

.mini-title {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.panel-card p { color: var(--muted); }

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section { padding: 84px 0; }

.section-alt {
  background: linear-gradient(180deg, #f0ece6 0%, #f7f4f0 100%);
}

.section-dark {
  background: linear-gradient(135deg, #2f2a24, #4a3b2f);
  color: white;
}

.section-dark h2, .section-dark p { color: white; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-strip {
  padding-top: 34px;
  padding-bottom: 34px;
}

.strip-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: end;
}

.strip-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius);
  padding: 28px;
}

.feature-card p { color: var(--muted); }

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

.audience-card {
  border-radius: 20px;
  padding: 22px 18px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}

.timeline { display: grid; gap: 18px; }

.timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: stretch;
}

.timeline-number {
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #b4874b, #d8c3a2);
  color: #2f2a24;
  font-weight: 800;
  font-size: 1.9rem;
  box-shadow: 0 16px 34px rgba(180, 135, 75, 0.20);
}
.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 26px;
}

.timeline-content p { color: var(--muted); }

.deliverables {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.deliverable {
  border-radius: 18px;
  padding: 18px;
  color: var(--navy);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.portrait-card .photo-card {
  padding: 18px;
  overflow: hidden;
}

.portrait-photo {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  display: block;
  box-shadow: var(--shadow);
} {
  border-radius: 32px;
  min-height: 370px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(185,139,60,0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6f2ec);
  padding: 28px;
}

.portrait-mark {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.highlight-box {
  padding: 20px 22px;
  border-radius: 20px;
  font-weight: 700;
  color: var(--navy);
}

.cta-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(185,139,60,0.15), transparent 26%),
    linear-gradient(135deg, var(--navy), #10202f);
}

.cta-box {
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  color: white;
  backdrop-filter: blur(6px);
}

.cta-box h2, .cta-box p { color: white; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.light-btn {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.footer {
  background: #0a1c2d;
  color: #d6dde6;
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer strong, .footer a { color: white; }

@media (max-width: 1024px) {
  .hero-grid,
  .strip-grid,
  .deliverables,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-stats,
  .deliverables-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .brand-symbol {
    height: 54px;
    width: 54px;
  }

  .menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 64px;
  }

  .card-grid.three,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    min-height: 64px;
  }

  .cta-box {
    padding: 34px 22px;
  }
}

@media (max-width: 560px) {
  .brand-symbol {
    height: 50px;
    width: 50px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-badges {
    flex-direction: column;
  }
}
.timeline-number {
  background: #f8f3ea !important;
  border: 1px solid rgba(74, 59, 47, 0.16) !important;
  color: #4a3b2f !important;
  box-shadow: 0 12px 28px rgba(47, 42, 36, 0.06) !important;
  font-size: 1.8rem !important;
}
.hero-photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 14px;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  display: block;
}
