:root {
  --green: #285c23;
  --green-2: #34742d;
  --green-dark: #132f13;
  --olive: #68763f;
  --cream: #fffaf0;
  --cream-2: #f5ecd9;
  --sand: #ead8b9;
  --ink: #141812;
  --muted: #64705e;
  --gold: #d5a446;
  --white: #fff;
  --line: rgba(40, 92, 35, .14);
  --shadow: 0 24px 80px rgba(21, 56, 21, .16);
  --shadow-soft: 0 14px 46px rgba(21, 56, 21, .10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(213,164,70,.12), transparent 26rem),
    radial-gradient(circle at 94% 28%, rgba(40,92,35,.10), transparent 24rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 46%, #fff 100%);
  font-family: Candara, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  padding-bottom: 78px;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(40,92,35,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,92,35,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--green-dark);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; color: var(--green); }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 3vw, 29px); letter-spacing: -.02em; }
.header-actions { display: flex; align-items: center; gap: 10px; font-weight: 850; color: var(--green-dark); }
.header-actions a:not(.mini-call) { padding: 10px 8px; }
.mini-call {
  background: var(--green);
  color: white;
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(40,92,35,.22);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(255,255,255,.18), transparent 23rem),
    radial-gradient(circle at 24% 20%, rgba(213,164,70,.42), transparent 18rem),
    linear-gradient(135deg, #122d13 0%, #285c23 58%, #173817 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.18));
  pointer-events: none;
}

.vine-field {
  position: absolute;
  inset: -10% -6%;
  z-index: -1;
  opacity: .28;
  transform: rotate(-5deg);
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255,255,255,.85) 1.5px, transparent 2px),
    linear-gradient(45deg, transparent 47%, rgba(255,255,255,.32) 49%, rgba(255,255,255,.32) 51%, transparent 53%);
  background-size: 70px 70px, 126px 126px;
}
.vine-field span {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255,255,255,.32);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
}
.vine-field span:nth-child(1) { left: 4%; top: 18%; }
.vine-field span:nth-child(2) { left: 24%; top: 58%; transform: rotate(80deg); }
.vine-field span:nth-child(3) { right: 18%; top: 16%; transform: rotate(22deg); }
.vine-field span:nth-child(4) { right: 4%; bottom: 16%; transform: rotate(132deg); }
.vine-field span:nth-child(5) { left: 48%; top: 36%; transform: rotate(48deg); }

.hero-content { width: min(980px, calc(100% - 32px)); padding: 70px 0 102px; position: relative; z-index: 1; }
.hero-logo {
  width: clamp(88px, 18vw, 156px);
  margin: 0 auto 16px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.30));
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.86);
}
.eyebrow.green { color: var(--green); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; margin: 0; }
h1 {
  font-size: clamp(42px, 9vw, 96px);
  line-height: .94;
  max-width: 1000px;
  margin-inline: auto;
  letter-spacing: -.055em;
  text-wrap: balance;
}
h2 { font-size: clamp(32px, 5.4vw, 60px); line-height: .98; letter-spacing: -.04em; color: var(--green-dark); text-wrap: balance; }
h3 { font-size: 25px; line-height: 1.08; color: var(--green-dark); }
.lead { font-size: clamp(18px, 2.4vw, 25px); line-height: 1.45; max-width: 720px; margin: 24px auto 32px; color: rgba(255,255,255,.9); }

.primary-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 15px 23px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover, .action:hover, .social-links a:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: white; box-shadow: 0 14px 32px rgba(0,0,0,.20); }
.btn-light { background: white; color: var(--green); box-shadow: 0 14px 32px rgba(0,0,0,.18); }
.btn-ghost { border: 1px solid rgba(255,255,255,.62); color: white; background: rgba(255,255,255,.13); backdrop-filter: blur(12px); }

.info-strip {
  width: min(1140px, calc(100% - 28px));
  margin: -58px auto 34px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(40,92,35,.14);
  box-shadow: var(--shadow);
}
.info-strip article { background: rgba(255,255,255,.96); padding: 23px; }
.label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; }
.info-strip strong { font-size: 17px; line-height: 1.32; }

.action-grid {
  width: min(1140px, calc(100% - 28px));
  margin: 0 auto 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.action:hover { box-shadow: 0 18px 50px rgba(21,56,21,.17); border-color: rgba(40,92,35,.28); }
.action-featured { grid-column: span 2; background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; }
.icon { width: 48px; height: 48px; border-radius: 17px; display: grid; place-items: center; font-size: 24px; background: rgba(40,92,35,.09); flex: 0 0 auto; font-weight: 900; }
.action-featured .icon { background: rgba(255,255,255,.16); }
.action b { display: block; font-size: 19px; }
.action small { color: var(--muted); }
.action-featured small { color: rgba(255,255,255,.78); }

.story-section, .highlights, .socials {
  width: min(1140px, calc(100% - 28px));
  margin: 0 auto 82px;
}
.story-section { display: grid; grid-template-columns: 1fr .88fr; gap: clamp(24px, 5vw, 62px); align-items: center; }
.copy p:not(.eyebrow), .signature-card p, .highlight-grid p { color: #3f493a; font-size: 18px; line-height: 1.7; }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { padding-left: 31px; position: relative; font-weight: 900; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 900; }
.signature-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  padding: clamp(25px, 5vw, 48px);
  border: 1px solid var(--line);
}
.card-vine {
  position: absolute;
  right: -70px;
  top: -84px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(40,92,35,.18);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  transform: rotate(14deg);
}
.card-vine::before,
.card-vine::after {
  content: "";
  position: absolute;
  border-radius: 999px 0 999px 999px;
  background: rgba(40,92,35,.14);
}
.card-vine::before { width: 78px; height: 44px; left: 32px; bottom: 20px; transform: rotate(22deg); }
.card-vine::after { width: 60px; height: 36px; right: 36px; top: 68px; transform: rotate(-34deg); }
.signature-card .btn { margin-top: 6px; }

.section-heading { text-align: center; margin-bottom: 26px; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.highlight-grid article {
  min-height: 245px;
  padding: 25px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.highlight-grid span { display: inline-flex; color: var(--gold); font-weight: 950; letter-spacing: .12em; margin-bottom: 28px; }
.highlight-grid p { margin-bottom: 0; }

.socials {
  padding: clamp(36px, 6vw, 58px) 22px;
  border-radius: 36px;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 20% 15%, rgba(213,164,70,.36), transparent 16rem),
    linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: var(--shadow);
}
.socials h2 { color: white; }
.socials p { color: rgba(255,255,255,.82); font-size: 18px; }
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.social-links a { border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.12); border-radius: 999px; padding: 13px 20px; font-weight: 900; transition: transform .18s ease, background .18s ease; }
.social-links a:hover { background: white; color: var(--green); }

footer { text-align: center; padding: 30px 18px 46px; color: var(--muted); }
footer img { width: 76px; margin: 0 auto 12px; }
footer b { color: var(--green-dark); font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.fine-print { max-width: 650px; margin: 12px auto 0; font-size: 13px; }

.sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.sticky-cta a { text-align: center; padding: 13px 10px; border-radius: 999px; font-weight: 900; background: var(--green); color: white; }
.sticky-cta a:first-child { background: var(--green-dark); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media (max-width: 860px) {
  .header-actions a:not(.mini-call) { display: none; }
  .info-strip, .action-grid, .story-section, .highlight-grid { grid-template-columns: 1fr; }
  .info-strip { margin-top: -40px; }
  .action-featured { grid-column: auto; }
  .story-section, .highlights, .socials { margin-bottom: 64px; }
  .highlight-grid article { min-height: auto; }
}

@media (max-width: 540px) {
  body { padding-bottom: 74px; }
  .site-header { padding-inline: 12px; }
  .brand span { font-size: 19px; }
  .brand img { width: 40px; height: 40px; }
  .mini-call { padding: 9px 12px; font-size: 14px; }
  .hero { min-height: 80vh; }
  .hero-content { padding-top: 50px; }
  h1 { font-size: clamp(42px, 13vw, 64px); }
  .primary-actions .btn { width: 100%; }
  .info-strip strong { font-size: 16px; }
  .action { padding: 16px; }
  .action b { font-size: 18px; }
  .icon { width: 44px; height: 44px; }
}
