:root {
  --bg: #f7f3ea;
  --paper: #fffdf8;
  --ink: #151914;
  --muted: #677060;
  --line: #dbd1bf;
  --accent: #0f766e;
  --accent-2: #b45309;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
}

.brand {
  font-weight: 900;
  text-decoration: none;
  font-size: 1.15rem;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a,
footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(36px, 7vw, 96px) clamp(18px, 5vw, 64px);
}

.hero-copy {
  max-width: 760px;
}

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

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.links a,
.contact-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.links a:nth-child(even) {
  background: var(--accent);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(22, 23, 20, 0.16);
}

.band {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.band.muted {
  background: #ebe3d5;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-inner h2,
.policy-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.columns h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.columns p,
.contact p,
.policy-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact h2 {
  margin: 0 0 8px;
}

.policy-page {
  min-height: 72vh;
}

.policy-hero {
  padding: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.policy-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.policy-content {
  max-width: 880px;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 64px);
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 1.3rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

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