:root {
  --color-ink: #0e2a2f;
  --color-teal: #0b5f66;
  --color-teal-dark: #083f45;
  --color-sand: #f6ecdd;
  --color-sand-dark: #ead9bd;
  --color-coral: #e8734a;
  --color-coral-dark: #cf5c34;
  --color-white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(14, 42, 47, 0.08);
  --max-width: 1120px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.55;
}

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

a {
  color: var(--color-teal);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
}

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

.section-sub {
  max-width: 640px;
  color: #3d5457;
}

.placeholder-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #8a6b3a;
  background: #fff6e6;
  border: 1px dashed #e2c07f;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--color-coral);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-coral-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn-secondary:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  background: var(--color-white);
  border-bottom: 1px solid #eee2cc;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-teal-dark);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--color-coral);
}

.nav-cta {
  background: var(--color-teal);
  color: var(--color-white) !important;
  padding: 9px 18px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-teal-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}

/* Hero */

.hero {
  background: linear-gradient(160deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white);
  padding: 80px 0;
}

.hero h1 {
  color: var(--color-white);
}

.hero-sub {
  max-width: 620px;
  font-size: 1.08rem;
  color: #dcecec;
}

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

.hero .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-teal-dark);
}

/* Sections */

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-sand);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.split.reverse .split-media {
  order: -1;
}

.media-placeholder {
  background: var(--color-sand-dark);
  border: 2px dashed #cbb488;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b5730;
  font-weight: 600;
  padding: 24px;
}

.feature-list {
  padding-left: 20px;
  margin: 0 0 20px;
}

.feature-list li {
  margin-bottom: 8px;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--color-white);
}

.stats-grid {
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-coral);
  margin: 0 0 8px;
}

.stat-label {
  color: #3d5457;
  margin: 0;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid #d7cbaf;
  border-radius: 8px;
  background: var(--color-white);
}

.contact-form button {
  margin-top: 20px;
  align-self: flex-start;
}

.form-status {
  min-height: 1.4em;
  font-weight: 600;
}

.form-status.success {
  color: #1a7a4c;
}

.form-status.error {
  color: #b3392b;
}

.contact-direct {
  background: var(--color-sand);
  border-radius: var(--radius);
  padding: 24px;
  align-self: start;
}

/* Footer */

.site-footer {
  background: var(--color-teal-dark);
  color: #cfe3e3;
  padding: 32px 0;
}

.footer-inner p {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

/* Responsive */

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid #eee2cc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.open {
    max-height: 320px;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 24px;
    border-top: 1px solid #f1e8d4;
  }

  .nav-cta {
    margin: 12px 24px;
    text-align: center;
  }
}
