:root {
  --sand: #f6f0e7;
  --paper: #fffdf8;
  --ink: #16211d;
  --muted: #66756e;
  --line: rgba(22, 33, 29, 0.12);
  --forest: #184437;
  --forest-deep: #0f3027;
  --blush: #ea8b72;
  --card-shadow: 0 20px 50px rgba(18, 39, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(234, 139, 114, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #f7f1e8 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 251, 244, 0.92);
  border-bottom: 1px solid rgba(22, 33, 29, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(24, 68, 55, 0.12);
}

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

.brand-copy strong {
  font-size: 1.45rem;
}

.brand-copy small,
.hero-copy,
.card p,
.site-footer p,
.site-nav a,
.footer-links a {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.brand-copy small,
.site-nav a,
.hero-copy,
.card p,
.site-footer p {
  color: var(--muted);
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta,
.button {
  border: 1px solid transparent;
}

.nav-cta,
.button-primary {
  background: var(--forest);
  color: #fff;
}

.site-nav a:hover {
  background: rgba(24, 68, 55, 0.07);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 48, 39, 0.82), rgba(15, 48, 39, 0.45) 46%, rgba(15, 48, 39, 0.12)),
    linear-gradient(0deg, rgba(255, 250, 243, 0.95), rgba(255, 250, 243, 0.12) 45%);
}

.hero-content,
.section,
.site-footer {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  padding: clamp(60px, 10vw, 100px) 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd9bf;
  font: 800 0.78rem/1 "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1.6;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font: 800 0.98rem/1 "Avenir Next", "Segoe UI", sans-serif;
}

.section {
  padding: 34px 0 24px;
}

.section-head {
  margin-bottom: 18px;
}

.section .eyebrow {
  color: var(--blush);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: minmax(0, 420px);
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--card-shadow);
}

.card-label {
  margin-bottom: 8px;
  color: var(--blush);
  font: 800 0.74rem/1 "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card a,
.card span {
  font: 800 0.95rem/1.4 "Avenir Next", "Segoe UI", sans-serif;
}

.card a {
  color: var(--forest);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 42px;
  border-top: 1px solid rgba(22, 33, 29, 0.08);
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero-content,
  .section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: 1.8rem;
  }
}
