/* ─── TOKENS ───────────────────────────────────────────────── */
:root {
  --teal-dark:    #1a5f5a;
  --teal:         #2a8c84;
  --teal-mid:     #3aafa6;
  --teal-light:   #c8ebe9;
  --teal-pale:    #edf7f6;
  --champagne:    #c9a96e;
  --champ-light:  #f5edd8;
  --champ-pale:   #fdf8ef;
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --text-dark:    #1c2b2a;
  --text-mid:     #3d4f4e;
  --text-muted:   #6b7f7e;
  --border:       rgba(42,140,132,0.15);
  --border-mid:   rgba(42,140,132,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm: 0 2px 12px rgba(26,95,90,0.08);
  --shadow-md: 0 6px 32px rgba(26,95,90,0.12);

  --max-w: 1140px;
  --nav-h: 72px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--teal); }
strong { font-weight: 500; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-title { max-width: 480px; margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal);
}
.btn-ghost:hover { background: var(--teal-pale); }
.btn-large { padding: 1rem 2.5rem; font-size: 0.9rem; }

/* ─── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.scrolled .logo-main { color: var(--teal-dark); }
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.scrolled .logo-sub { color: var(--text-muted); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.scrolled .site-nav a { color: var(--text-mid); }
.scrolled .site-nav a:hover { color: var(--teal); }
.nav-cta {
  background: var(--champagne) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: #b8935a !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--white); cursor: pointer; }
.scrolled .nav-toggle { color: var(--teal-dark); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 45%, #3aafa640 100%),
    radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.2) 0%, transparent 60%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-actions .btn-primary { background: var(--champagne); }
.hero-actions .btn-primary:hover { background: #b8935a; }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.hero-credentials .divider { opacity: 0.4; }
.hero-image-wrap { display: flex; justify-content: center; align-items: center; }
.hero-image-placeholder {
  width: 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 1.6rem;
  color: var(--champagne);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.7;
}
.card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ─── WHY SECTION ────────────────────────────────────────────── */
.why-section { background: var(--champ-pale); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.why-text p { color: var(--text-mid); font-size: 0.95rem; }
.why-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 0.5rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.why-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--teal-pale);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stars { color: var(--champagne); font-size: 0.85rem; letter-spacing: 2px; }
blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
  flex: 1;
}
cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal-dark);
}
.review-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.testimonials-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--teal-dark);
  padding: 5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1rem; margin: 0; }
.cta-band .btn-primary { background: var(--champagne); white-space: nowrap; }
.cta-band .btn-primary:hover { background: #b8935a; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: var(--champ-light); font-size: 1.3rem; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 0; }
.footer-brand p + p { margin-top: 0.4rem; }
.footer-brand a { color: var(--teal-light); }
.footer-brand a:hover { color: var(--teal-mid); }
.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--teal-light); }
.footer-accreditations h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.accreditation-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}
.footer-base {
  padding: 1.5rem 0;
}
.footer-base p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-base a { color: rgba(255,255,255,0.4); }
.footer-base a:hover { color: var(--teal-light); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-item { min-width: 40%; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero-inner { padding-top: calc(var(--nav-h) + 1rem); }
  .site-nav {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--teal-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; color: rgba(255,255,255,0.85); }
  .nav-cta { background: var(--champagne) !important; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
