:root {
  --bg: #f7f2e8;
  --bg-soft: #fffaf0;
  --ink: #172421;
  --muted: #66736f;
  --brand: #0e3a3a;
  --brand-2: #145a55;
  --accent: #d79b42;
  --accent-soft: #f4dcc0;
  --card: #ffffff;
  --line: rgba(23, 36, 33, 0.12);
  --shadow: 0 24px 70px rgba(14, 58, 58, 0.14);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--accent);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 232, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 16px 45px rgba(14, 58, 58, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(14, 58, 58, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(14, 58, 58, 0.08);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(215, 155, 66, 0.2), transparent 30%),
    linear-gradient(135deg, #0a2e2e, #102f2a);
  color: #f9f3ea;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding-top: 58px;
}

.hero::before {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  content: "";
  border-radius: 999px;
  background: rgba(215, 155, 66, 0.2);
  filter: blur(10px);
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-copy,
.hero-card {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  max-width: 610px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.1vw, 2.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-lede,
.section-heading p,
.rich-copy,
.contact-grid > div > p {
  color: var(--muted);
  font-size: 0.98rem;
}

.section-dark .section-heading p,
.section-dark .check-list,
.section-dark .process-grid p {
  color: rgba(249, 243, 234, 0.76);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  padding: 0 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #1c160f;
  box-shadow: 0 14px 30px rgba(215, 155, 66, 0.28);
}

.button-secondary {
  background: rgba(14, 58, 58, 0.08);
  color: var(--brand);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 42px 0 0;
}

.trust-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.66);
}

.trust-strip dt {
  color: var(--brand);
  font-weight: 900;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card,
.goals-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  padding: 32px;
}

.hero-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.card-glow {
  position: absolute;
  inset: -80px -100px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(215, 155, 66, 0.34);
  filter: blur(12px);
}

.card-kicker {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}

.site-photo {
  position: relative;
  display: grid;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 18px 42px rgba(14, 58, 58, 0.12);
}

.site-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(14, 58, 58, 0.18));
  content: "";
  pointer-events: none;
}

.site-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-photo-hero {
  aspect-ratio: 16 / 9;
}

.site-photo-about {
  aspect-ratio: 4 / 5;
  margin: 28px 0 0;
}

.site-photo-about img {
  object-position: center 20%;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #1c160f;
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 0.42em;
  width: 6px;
  height: 10px;
  border: solid #1c160f;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 155, 66, 0.55);
  box-shadow: 0 20px 50px rgba(14, 58, 58, 0.1);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: rgba(215, 155, 66, 0.18);
  color: var(--brand);
  font-weight: 900;
}

.service-card p,
.process-grid p,
.site-footer p {
  color: var(--muted);
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #1c160f;
  font-weight: 900;
}

.goals-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  margin-top: 28px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.goals-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--brand);
  font-weight: 800;
  padding: 12px 16px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--bg-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-weight: 850;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(215, 155, 66, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  border-radius: 16px;
  font-weight: 800;
  padding: 14px 16px;
}

.form-status.is-success {
  background: rgba(20, 90, 85, 0.12);
  color: var(--brand);
}

.form-status.is-error {
  background: rgba(160, 43, 43, 0.12);
  color: #8a2424;
}

.site-footer {
  padding: 48px 0 24px;
  background: #071f1f;
  color: #f9f3ea;
}

.footer-grid,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-footer small,
.site-footer p,
.footer-links a,
.footer-bottom {
  color: rgba(249, 243, 234, 0.68);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-weight: 800;
}

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

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--bg-soft);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .goals-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .brand small {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .contact-form,
  .goals-card {
    padding: 24px;
  }

  .footer-grid,
  .footer-bottom,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
