:root {
  color-scheme: light;
  --bg: #f3f1ea;
  --bg-soft: #ebe4d7;
  --card: rgba(255, 255, 255, 0.72);
  --card-border: rgba(64, 52, 34, 0.12);
  --text: #1f1b16;
  --muted: #665d51;
  --accent: #8b5d2e;
  --accent-strong: #5a3715;
  --shadow: 0 18px 50px rgba(70, 53, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 93, 46, 0.12), transparent 35%),
    radial-gradient(circle at right 20%, rgba(90, 55, 21, 0.1), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%);
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
}

.site-header,
.site-footer,
.card {
  backdrop-filter: blur(16px);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  margin-bottom: 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent), #c58948);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

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

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.domain-line {
  margin: 6px 0 0;
  color: var(--accent-strong);
  font-size: 0.98rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent-strong);
  background: rgba(139, 93, 46, 0.1);
}

main {
  display: grid;
  gap: 22px;
}

.card {
  border-radius: 30px;
  padding: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

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

h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 0.98;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  color: #fff;
}

.button.secondary {
  color: var(--accent-strong);
  border: 1px solid rgba(139, 93, 46, 0.25);
  background: rgba(255, 255, 255, 0.5);
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.stat,
.feature,
.contact-card,
.policy-list article {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(64, 52, 34, 0.1);
}

.stat {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.stat span,
.contact-card h2,
.feature h2,
.policy-list h2 {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat strong {
  font-size: 1.35rem;
}

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

.feature,
.contact-card,
.policy-list article {
  padding: 22px;
}

.feature p,
.contact-card p,
.policy-list p,
.split-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.section-block h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.policy-list,
.contact-grid {
  display: grid;
  gap: 16px;
}

.policy-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card.highlight {
  background: linear-gradient(160deg, rgba(139, 93, 46, 0.13), rgba(255, 255, 255, 0.75));
}

.contact-card a {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 22px;
  border-radius: 24px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--accent-strong);
}

@media (max-width: 900px) {
  .hero,
  .grid.three-up,
  .split-copy,
  .policy-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 10px;
  }

  .card,
  .site-header,
  .site-footer {
    border-radius: 22px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2rem;
  }
}