:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #67625a;
  --paper: #fbf8f1;
  --panel: #fffdf8;
  --line: #e7d9bf;
  --wine: #84283a;
  --green: #2f5b50;
  --gold: #b68a45;
  --hairline: rgba(182, 138, 69, 0.26);
  --shadow: 0 28px 80px rgba(39, 29, 20, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(182, 138, 69, 0.18) 1px, transparent 1px) 50% 0 / min(1120px, calc(100% - 36px)) 100% no-repeat,
    radial-gradient(circle at 12% 16%, rgba(182, 138, 69, 0.13), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(132, 40, 58, 0.08), transparent 31%),
    linear-gradient(135deg, #fbf7ee 0%, #fffdf8 46%, #f3eadb 100%);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 38px;
  border-bottom: 1px solid rgba(231, 217, 191, 0.56);
}

.brand,
.header-link,
.contact-card {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  position: relative;
}

.brand span::after {
  position: absolute;
  inset: auto 0 -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.header-link {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 750;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.header-link:hover,
.header-link:focus-visible {
  border-color: rgba(47, 91, 80, 0.45);
  color: var(--wine);
}

.hero-section {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: clamp(54px, 10vw, 112px) 0 clamp(34px, 7vw, 74px);
}

.hero-section::after {
  width: min(280px, 62vw);
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--hairline), transparent);
  content: "";
}

.eyebrow {
  margin: 0;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.45rem, 5.5vw, 4.72rem);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

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

.feature-grid article,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(252, 247, 238, 0.74));
  box-shadow: var(--shadow);
}

.feature-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(132, 40, 58, 0.26), transparent);
  content: "";
}

.feature-grid article:hover {
  border-color: rgba(182, 138, 69, 0.52);
  box-shadow: 0 30px 90px rgba(39, 29, 20, 0.12);
  transform: translateY(-2px);
}

h2 {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.feature-grid p,
.contact-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 28px;
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--wine), var(--gold));
  content: "";
}

.contact-section h2 {
  margin: 4px 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.02;
}

.contact-card {
  display: grid;
  gap: 4px;
  min-width: min(300px, 100%);
  border: 1px solid rgba(47, 91, 80, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(47, 91, 80, 0.08), rgba(255, 253, 248, 0.86));
  padding: 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(47, 91, 80, 0.42);
  box-shadow: 0 18px 42px rgba(47, 91, 80, 0.11);
  transform: translateY(-1px);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--green);
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feature-grid article,
  .contact-card,
  .header-link {
    transition: none;
  }

  .feature-grid article:hover,
  .contact-card:hover,
  .contact-card:focus-visible {
    transform: none;
  }
}

@media (max-width: 780px) {
  .landing-shell {
    width: min(100%, calc(100% - 28px));
    padding-top: 16px;
  }

  body {
    background:
      radial-gradient(circle at 10% 14%, rgba(182, 138, 69, 0.12), transparent 33%),
      radial-gradient(circle at 88% 6%, rgba(132, 40, 58, 0.07), transparent 34%),
      linear-gradient(135deg, #fbf7ee 0%, #fffdf8 46%, #f3eadb 100%);
  }

  .site-header {
    padding-bottom: 22px;
  }

  .hero-section {
    padding-top: 38px;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.04rem, 9.4vw, 3rem);
    line-height: 0.96;
  }

  .feature-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-width: 0;
  }
}
