/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette from logo */
  --navy:       #1e2a4a;
  --navy-light: #2a3a5e;
  --teal:       #2a7a7a;
  --teal-dark:  #1e5a5a;
  --teal-muted: #3a9494;
  --orange:     #f57c20;
  --orange-dark:#d4621a;
  --orange-light: rgba(245,124,32,0.12);
  /* Neutrals */
  --surface:    #ffffff;
  --bg-warm:    #f4f1ec;
  --border:     #e2ddd6;
  --fg:         #1e2a4a;
  --fg-muted:   #5a6a8a;
  /* Fonts */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Announcement Bar ──────────────────────────────────────── */
.announcement {
  background: var(--orange);
  color: #fff;
  padding: 11px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.announcement-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.announcement-link {
  color: #fff;
  font-weight: 600;
  margin-left: 8px;
  text-decoration: underline;
  white-space: nowrap;
}

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 88px 24px 88px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(42,122,122,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,124,32,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_165897/images/8d534e8c-d6d0-48ba-a5ac-ea0e7b34f1b2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-photo-wrap {
  flex-shrink: 0;
}

.hero-photo {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(42,122,122,0.6);
  box-shadow: 0 0 0 5px rgba(30,42,74,0.7), 0 8px 32px rgba(0,0,0,0.5);
  display: block;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-muted);
}

.hero-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shape {
  position: absolute;
  border-radius: 24px;
}

.hero-shape-1 {
  display: none;
}

.hero-shape-2 {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, rgba(42,122,122,0.3) 0%, rgba(42,122,122,0.1) 100%);
  border: 1px solid rgba(42,122,122,0.25);
  border-radius: 24px;
  bottom: 60px; left: 20px;
}

.hero-shape-3 {
  width: 100px; height: 100px;
  background: rgba(42,122,122,0.12);
  border: 1px solid rgba(42,122,122,0.2);
  border-radius: 20px;
  top: 60px; left: 60px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  width: 220px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-card-line {
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 5px;
  margin-bottom: 10px;
}

.hero-card-line-short { width: 60%; }
.hero-card-line-medium { width: 80%; }

.hero-card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-muted);
  margin-top: 14px;
}

.hero-card-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-muted);
  display: inline-block;
}

/* ─── Approach ──────────────────────────────────────────────── */
.approach {
  background: var(--bg-warm);
  padding: 80px 24px;
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.approach-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 560px;
  margin-bottom: 48px;
}

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

.approach-item {
  padding: 32px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.approach-icon {
  margin-bottom: 16px;
}

.approach-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}

.approach-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ─── Specialties ───────────────────────────────────────────── */
.specialties {
  background: var(--surface);
  padding: 80px 24px;
}

.specialties-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.specialties-header {
  margin-bottom: 48px;
}

.specialties-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.specialties-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 14px;
}

.specialties-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.specialty-card {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.specialty-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  border-radius: 0;
}

.specialty-card:nth-child(2) .specialty-card-accent { background: var(--teal); }
.specialty-card:nth-child(4) .specialty-card-accent { background: var(--teal); }

.specialty-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.specialties-note {
  padding: 20px 24px;
  background: rgba(42,122,122,0.08);
  border-radius: 10px;
  border-left: 4px solid var(--teal);
}

.specialties-note p {
  font-size: 15px;
  color: var(--teal-dark);
  font-weight: 500;
}

/* ─── Philosophy ────────────────────────────────────────────── */
.philosophy {
  background: linear-gradient(160deg, var(--navy) 0%, #152033 100%);
  padding: 80px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 50%, rgba(42,122,122,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.philosophy-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 12px;
}

.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 24px;
}

.philosophy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.philosophy-credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.credential-item {
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.credential-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.credential-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--bg-warm);
  padding: 80px 24px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

.contact-partnership {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.contact-item-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.contact-availability {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,122,122,0.25);
  color: var(--teal-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.availability-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-muted);
  display: inline-block;
  animation: pulse 2s infinite;
}

.contact-availability h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.contact-availability p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-cta:hover { background: var(--orange-dark); }

.contact-free-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  padding: 10px 16px;
  background: var(--orange-light);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
}

/* ─── Section CTA Banner ───────────────────────────────────── */
.section-cta {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(42,122,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 12px;
}

.section-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}

.section-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}

.section-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.section-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ─── Floating CTA Button ──────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,124,32,0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.floating-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,124,32,0.5), 0 4px 12px rgba(0,0,0,0.25);
}

.floating-cta-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .section-cta { padding: 48px 20px; }
}
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.footer-brand-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-meta p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  margin-top: 8px;
  color: rgba(255,255,255,0.28) !important;
}

.footer-pt-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-pt-link:hover {
  color: rgba(255,255,255,0.85);
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { display: none; }
  .hero-photo-wrap { display: flex; justify-content: center; }
  .hero-photo { width: 220px; height: 270px; }
  .approach-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-headline { font-size: 32px; }
  .contact-availability { padding: 24px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px; }
  .approach, .specialties, .contact, .philosophy { padding: 56px 20px; }
  .announcement { font-size: 13px; flex-direction: column; gap: 4px; }
  .hero-meta { gap: 16px; }
  .nav-logo-img { height: 44px; }
}