:root {
  --ink: #19262b;
  --muted: #667476;
  --paper: #fbfaf6;
  --wash: #eef3ef;
  --sea: #355d63;
  --sea-deep: #1f444a;
  --clay: #b9816f;
  --line: rgba(25, 38, 43, 0.14);
  --shadow: 0 24px 70px rgba(25, 38, 43, 0.12);
  --radius: 8px;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/cormorant-garamond-700.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/source-sans-3-400.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/source-sans-3-600.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/source-sans-3-700.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./assets/fonts/source-sans-3-800.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./assets/fonts/source-sans-3-900.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  line-height: 1.1;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--sea-deep);
}

.page-hero {
  min-height: 42vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 29, 34, 0.82), rgba(12, 29, 34, 0.34) 54%, rgba(12, 29, 34, 0.2)),
    linear-gradient(0deg, rgba(12, 29, 34, 0.72), transparent 48%);
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 76px;
  color: #fff;
}

.kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.hero p {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #fff;
  color: var(--sea-deep);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.section {
  padding: 86px 0;
}

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

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.section-title,
.page-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

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

.copy {
  color: var(--muted);
}

.copy p {
  margin: 0 0 1.1rem;
}

.copy strong {
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

.feature h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.statement {
  border-left: 4px solid var(--clay);
  padding-left: 24px;
  color: var(--sea-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.08;
}

.article {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.article h2,
.article h3 {
  margin: 2.4rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  line-height: 1.08;
}

.article p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.article ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.contact-band {
  background: var(--sea-deep);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card a {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}

.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.form-shell {
  min-height: 560px;
}

.form-message {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
}

.form-message.success {
  background: #e8f4ec;
  color: #245536;
}

.form-message.error {
  background: #fae8e1;
  color: #7b3327;
}

.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.terms-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
}

.form button {
  justify-self: start;
  border: 0;
  background: var(--sea);
  color: #fff;
  cursor: pointer;
}

.form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.site-footer {
  background: #10191c;
  color: rgba(255, 255, 255, 0.78);
  padding: 42px 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

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

@media (max-width: 900px) {
  .nav {
    min-height: 68px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 12px;
  }

  .hero {
    min-height: 68vh;
  }

  .page-hero {
    min-height: 36vh;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .section {
    padding: 62px 0;
  }
}

