:root {
  --brand-green: #2D6A4F;
  --brand-green-dark: #1B4332;
  --brand-cream: #FDF8F0;
  --brand-gold: #B08D57;
  --text: #1B1B1B;
  --text-muted: #5C5C5C;
  --border: rgba(27, 67, 50, 0.12);
  --shadow: 0 10px 30px rgba(27, 67, 50, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--brand-cream);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brand-green-dark);
  margin: 0 0 0.5em;
  font-weight: 600;
}

a { color: var(--brand-green); }

.nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-green-dark);
  text-decoration: none;
}

.nav__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav__links a:hover { color: var(--brand-green); }

.hero {
  padding: 72px 32px 56px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 640px;
}

.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: var(--brand-green);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(27, 67, 50, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-green-dark);
  border: 1.5px solid var(--brand-green);
}

.pillars {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow);
}

.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 106, 79, 0.1);
  color: var(--brand-green);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.pillar h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.pillar p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.storefront {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 0 16px 32px;
}

.storefront__heading {
  text-align: center;
  padding: 24px 16px 20px;
}

.storefront__heading h2 {
  font-size: clamp(26px, 3.5vw, 34px);
}

.storefront__heading p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 4px 0 0;
}

.storefront__frame-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.storefront__frame {
  width: 100%;
  height: 100vh;
  min-height: 720px;
  border: 0;
  display: block;
}

.footer {
  background: var(--brand-green-dark);
  color: #D8E8DF;
  padding: 48px 32px 32px;
  margin-top: 64px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer h4 {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
}

.footer p, .footer a {
  font-size: 14px;
  line-height: 1.7;
  color: #D8E8DF;
  text-decoration: none;
}

.footer a:hover { color: #ffffff; }

.footer__note {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; padding: 32px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .hero { padding: 48px 20px 32px; }
  .storefront__frame { height: 80vh; min-height: 560px; }
}
