:root {
  --teal-900: #1d3a3f;
  --heading-teal: #2e6b74;
  --teal-700: #2f6b73;
  --teal: #6fbac5;
  --teal-light: #eaf5f6;
  --gold: #f8c153;
  --gold-deep: #e8a52c;
  --cream: #fdfdfc;
  --cream-deep: #f7f3ea;
  --ink: #28333a;
  --ink-soft: #5a6770;
  --radius: 18px;
  --shadow: 0 18px 40px -22px rgba(29, 58, 63, 0.35);
  --font-display: "Lora", serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--teal-900);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 1000;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 253, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(29, 58, 63, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark { height: 38px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a { text-decoration: none; color: var(--teal-900); }
.site-nav a:hover { color: var(--teal-700); }
.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--teal-700); }

@media (max-width: 600px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
  .brand-text { font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 88px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(248, 193, 83, 0.28) 0%, rgba(248, 193, 83, 0) 65%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-mark {
  height: 150px;
  width: auto;
  margin: 0 auto 6px;
}
.hero-mark-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 26px;
}
.hero-mark-caption .caption-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1.15;
}
.hero-mark-caption .caption-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 22px;
}
.hero-lede {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost {
  background: var(--gold);
  color: #1a1a1a;
  border: 2px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-block { display: block; text-align: center; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-deep); }

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal-700);
  margin: 0 0 10px;
}
.eyebrow-light { color: var(--gold); }

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--heading-teal);
  margin: 0 0 40px;
  max-width: 620px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(29, 58, 63, 0.08);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--heading-teal);
  margin: 0 0 10px;
}
.card p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

@media (max-width: 760px) {
  .card-grid { grid-template-columns: 1fr; }
}

.scope-note {
  margin: 40px 0 0;
  padding: 18px 22px;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  color: var(--teal-900);
  font-size: 0.92rem;
  max-width: 760px;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}
.steps li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.step-num {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--heading-teal);
  margin: 4px 0 6px;
}
.steps p { margin: 0; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.section-contact {
  background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: white;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.section-contact h2 { color: white; }
.contact-copy p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 420px; }

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hp-field { position: absolute; left: -9999px; }
.field {
  display: block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-700);
}
.field span { display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--ink);
  padding: 11px 13px;
  border: 1.5px solid rgba(29,58,63,0.18);
  border-radius: 10px;
  background: var(--cream);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  outline: none;
}
.contact-card .btn { margin-top: 6px; }

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
}
.quick-contact a { color: white; text-decoration: none; }
.quick-contact a:hover { text-decoration: underline; }
.quick-contact span { color: rgba(255,255,255,0.7); font-weight: 500; }


@media (max-width: 760px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.75);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: white;
}
.footer-mark { opacity: 0.95; }
.footer-legal {
  font-size: 0.82rem;
  margin: 0;
  flex: 1 1 100%;
  order: 3;
  color: rgba(255,255,255,0.55);
}
.footer-links { display: flex; gap: 20px; font-size: 0.88rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: white; }

/* ---------- Simple legal pages ---------- */
.legal-page { padding: 70px 0 100px; }
.legal-page h1 {
  font-family: var(--font-display);
  color: var(--heading-teal);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 6px;
}
.legal-page .legal-meta {
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.legal-page h2 {
  font-family: var(--font-display);
  color: var(--heading-teal);
  font-size: 1.2rem;
  margin: 34px 0 12px;
}
.legal-page ul {
  color: var(--ink-soft);
  max-width: 680px;
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--teal-700); text-decoration: underline; }
.legal-page .placeholder-note {
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 24px 0 36px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.legal-page p { color: var(--ink-soft); max-width: 680px; }
.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--teal-700);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-cta { transition: none; }
}
