:root {
  --bg: #f3efe6;
  --surface: rgba(255, 255, 255, 0.45);
  --surface-strong: rgba(255, 255, 255, 0.75);
  --ink: #1f1d19;
  --muted: #62594d;
  --line: rgba(31, 29, 25, 0.12);
  --olive: #4f5a43;
  --clay: #a26d50;
  --ochre: #ba9554;
  --stone: #d8cec0;
  --shadow: 0 16px 50px rgba(31, 29, 25, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(162, 109, 80, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(79, 90, 67, 0.08), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero {
  padding: 110px 0 90px;
  max-width: 830px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  margin: 0 0 20px;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 840px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-copy,
.section-content p,
.panel p,
.contact-wrap p {
  max-width: 760px;
  font-size: 1.06rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.button.secondary {
  background: transparent;
}

.band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-band p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  max-width: 900px;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.card,
.panel,
.contact-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.card {
  padding: 28px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.card li + li {
  margin-top: 10px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
}

.panel {
  padding: 34px;
}

.accent-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
  min-height: 280px;
}

.mini-swatch {
  border-radius: 18px;
  min-height: 120px;
}

.swatch-1 { background: linear-gradient(145deg, #4f5a43, #6a765e); }
.swatch-2 { background: linear-gradient(145deg, #a26d50, #c18b6d); }
.swatch-3 { background: linear-gradient(145deg, #ba9554, #d9b67a); }
.swatch-4 { background: linear-gradient(145deg, #d8cec0, #f1e8db); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--surface-strong);
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.contact-line span,
.contact-note {
  color: var(--muted);
}

.footer {
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav {
    gap: 16px;
    font-size: 0.92rem;
  }

  .two-col,
  .split-panel,
  .contact-wrap,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 76px 0 64px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-line {
    flex-direction: column;
    gap: 4px;
  }
}
