:root {
  color-scheme: light;
  --paper: #f7f4ed;
  --paper-strong: #fffaf0;
  --ink: #1f2527;
  --muted: #66706f;
  --line: rgba(31, 37, 39, 0.14);
  --teal: #0e7c76;
  --teal-dark: #0a4f4c;
  --coral: #cf6b4f;
  --amber: #c9972b;
  --shadow: 0 18px 50px rgba(31, 37, 39, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(247, 244, 237, 0.82);
  border-bottom: 1px solid rgba(31, 37, 39, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 720;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(10, 79, 76, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(18px, 4vw, 56px) 64px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, 0.96) 0%, rgba(247, 244, 237, 0.82) 36%, rgba(247, 244, 237, 0.18) 64%),
    linear-gradient(180deg, rgba(247, 244, 237, 0.16), rgba(247, 244, 237, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 14vw, 9.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 28px 0 0;
  color: #384244;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
}

.button-primary {
  color: #fff;
  background: var(--teal-dark);
}

.button-primary:hover {
  background: #073f3d;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.72);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(31, 37, 39, 0.28);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--paper-strong);
}

.intro-grid,
.split,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-grid > p,
.contact-inner > p {
  margin: 0;
  color: #465051;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

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

.card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  margin-bottom: 54px;
  color: var(--teal-dark);
  background: rgba(14, 124, 118, 0.1);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 820;
}

.card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.band {
  background: #e9f0ec;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(31, 37, 39, 0.16);
}

.note-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(31, 37, 39, 0.16);
}

.note-row span {
  color: var(--teal-dark);
  font-weight: 820;
}

.note-row p {
  margin: 0;
  color: #455051;
  line-height: 1.55;
}

.contact {
  background:
    linear-gradient(135deg, rgba(14, 124, 118, 0.12), rgba(207, 107, 79, 0.09)),
    var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 760;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(14, 124, 118, 0.12), rgba(207, 107, 79, 0.09)),
    var(--paper);
}

.error-shell {
  width: min(720px, 100%);
}

.error-shell .brand {
  margin-bottom: 64px;
}

.error-shell h1 {
  font-size: clamp(3.25rem, 10vw, 7rem);
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 106px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.88) 46%, rgba(247, 244, 237, 0.3) 100%),
      linear-gradient(90deg, rgba(247, 244, 237, 0.94), rgba(247, 244, 237, 0.44));
  }

  .hero-media img {
    object-position: 64% center;
  }

  .intro-grid,
  .split,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 210px;
  }

  .card-icon {
    margin-bottom: 36px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    min-height: 690px;
  }

  h1 {
    font-size: clamp(3.45rem, 21vw, 5.7rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(310px, 100%);
  }

  .note-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    display: grid;
  }
}
