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

:root {
  --teal: #1B6B7B;
  --deep-teal: #1A2E32;
  --light-teal: #4DB8CC;
  --off-white: #F5F2EE;
  --linen: #E8E2D9;
  --sand: #D9D2C8;
  --warm-grey: #7A7470;
  --black: #1A1A1A;
  --border: rgba(26,26,26,0.1);
  --font-head: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--black); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 60px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--off-white); z-index: 100; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 40px; height: 40px; }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: 0.02em; color: var(--teal); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--warm-grey); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta { background: var(--teal) !important; color: var(--off-white) !important; padding: 10px 22px; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--deep-teal) !important; }

.btn-primary { display: inline-block; background: var(--teal); color: var(--off-white); padding: 15px 30px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--deep-teal); transform: translateY(-1px); }
.btn-ghost { display: inline-block; color: var(--black); font-size: 15px; font-weight: 500; text-decoration: none; opacity: 0.45; transition: opacity 0.2s; }
.btn-ghost:hover { opacity: 1; }

.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--teal); }

h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.01em; color: var(--black); margin-bottom: 28px; }
h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 3vw, 40px); letter-spacing: -0.01em; line-height: 1.1; color: var(--black); margin-bottom: 16px; }
h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 10px; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--warm-grey); font-weight: 400; line-height: 1.75; max-width: 520px; margin-bottom: 48px; }

.proof-strip { background: var(--linen); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 60px; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--warm-grey); white-space: nowrap; }
.proof-item::before { content: '✓'; color: var(--teal); font-weight: 700; }

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-contain { width: 100%; height: 100%; object-fit: contain; display: block; }

footer { background: var(--deep-teal); padding: 48px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--off-white); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: rgba(245,242,238,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--off-white); }
footer p { font-size: 13px; color: rgba(245,242,238,0.3); }

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .proof-strip { padding: 16px 24px; gap: 16px; }
}
