:root {
  color-scheme: light;
  --bg: #7d8168;
  --panel: #f4ede2;
  --panel-soft: #efe4d3;
  --panel-strong: #fbf8f2;
  --text: #47443d;
  --muted: #7f776a;
  --accent: #d2a365;
  --accent-dark: #be8b48;
  --line: rgba(71, 68, 61, 0.12);
  --shadow: 0 24px 70px rgba(58, 52, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 16%);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}

.page-frame {
  width: min(100%, 1480px);
  min-height: 100vh;
  background: var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: grid;
  place-items: center;
  padding: 28px 22px 18px;
  background: var(--panel-strong);
}

.site-logo {
  width: min(100%, 210px);
  height: auto;
  object-fit: contain;
}

.hero-section {
  position: relative;
  padding: 0;
}

.hero-banner {
  width: 100%;
  height: auto;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}

h2 {
  font-size: clamp(1.65rem, 7vw, 2.15rem);
  line-height: 1.03;
  font-weight: 600;
}

.social-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 12px 18px 10px;
  background: var(--panel);
}

.feature-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-align: center;
}

.feature-item svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.1;
}

.feature-item svg path {
  fill: none;
  stroke: var(--text);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item p {
  margin: 0;
  max-width: 10ch;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.1;
}

.social-section {
  padding: 40px 22px 50px;
  background: var(--panel);
  border-top: 1px solid rgba(71, 68, 61, 0.06);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.social-section h2 {
  max-width: 13ch;
}

.social-copy {
  max-width: 30ch;
  margin-top: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f8f3eb;
  background: var(--accent);
  border: 1px solid var(--accent);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.copyright {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (min-width: 601px) {
  .page-frame {
    width: min(calc(100% - 40px), 1480px);
    min-height: auto;
    border-radius: 0;
    overflow: hidden;
  }

  .feature-strip {
    padding: 12px 28px 14px;
  }

  .feature-item svg {
    width: 58px;
    height: 58px;
  }

  .feature-item p {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .page-shell {
    padding: 22px;
  }
}

@media (max-width: 680px) {
  .social-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-strip {
    padding: 14px 10px 12px;
  }

  .feature-item svg {
    width: 42px;
    height: 42px;
  }

  .feature-item p {
    font-size: 0.82rem;
  }
}
