:root {
  color-scheme: light;
  --site-ink: #1d2c28;
  --site-muted: #60716b;
  --site-line: #d7e2dd;
  --site-leaf: #2f7d59;
  --site-leaf-dark: #1d6041;
  --site-blue: #2d6f92;
  --site-gold: #efb84f;
  --site-tomato: #c75b43;
  --site-cream: #f8f5eb;
  --site-paper: #fff;
  --site-soft: #eef5f1;
  --site-shadow: 0 22px 58px rgba(29, 44, 40, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.storefront-site {
  margin: 0;
  min-height: 100vh;
  color: var(--site-ink);
  background: linear-gradient(180deg, #fbfaf5 0%, #edf4f0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: #12251f;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 62px);
  border-bottom: 1px solid rgba(29, 44, 40, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 34px rgba(29, 44, 40, 0.05);
  backdrop-filter: blur(16px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--site-ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  text-decoration: none;
}

.site-brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--site-leaf-dark), var(--site-blue));
  box-shadow: 0 10px 24px rgba(29, 96, 65, 0.23);
  font-size: 16px;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #35524a;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  border-color: rgba(47, 125, 89, 0.2);
  background: rgba(47, 125, 89, 0.08);
}

.site-nav a.site-nav-shop {
  gap: 7px;
  border-color: var(--site-leaf-dark);
  color: #fff;
  background: linear-gradient(135deg, var(--site-leaf-dark), var(--site-leaf));
}

main { min-height: calc(100vh - 160px); }

.storefront-hero {
  display: grid;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0 clamp(36px, 5vw, 68px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.storefront-hero-copy { display: grid; gap: 19px; }

.storefront-eyebrow {
  margin: 0;
  color: var(--site-tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.storefront-hero h1,
.content-page-card h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.045em;
}

.storefront-lead {
  margin: 0;
  max-width: 720px;
  color: var(--site-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.storefront-notice {
  max-width: 720px;
  padding: 15px 17px;
  border: 1px solid rgba(239, 184, 79, 0.64);
  border-left: 5px solid var(--site-gold);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-weight: 700;
}

.storefront-actions { display: flex; flex-wrap: wrap; gap: 11px; }

.storefront-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(45, 111, 146, 0.34);
  border-radius: 11px;
  color: #194458;
  background: linear-gradient(135deg, #f8fcfd, #e1eef4);
  box-shadow: 0 12px 28px rgba(45, 111, 146, 0.12);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.storefront-button:hover,
.storefront-button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(29, 96, 65, 0.18); }

.storefront-button.is-primary {
  border-color: var(--site-leaf-dark);
  color: #fff;
  background: linear-gradient(135deg, var(--site-leaf-dark), var(--site-leaf));
}

.storefront-button.is-compact { min-height: 48px; padding: 10px 16px; }

.storefront-button > span:nth-child(2) { display: grid; gap: 2px; text-align: left; }
.storefront-button strong { font-size: 15px; }
.storefront-button small { font-size: 11px; font-weight: 650; opacity: 0.82; }

.storefront-button-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.77);
  font-size: 19px;
}

.storefront-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(29, 44, 40, 0.14);
  border-radius: 22px;
  background-image: linear-gradient(145deg, rgba(47, 125, 89, 0.16), rgba(45, 111, 146, 0.19)), var(--storefront-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: var(--site-shadow);
}

.storefront-domain-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  color: #fff;
  background: rgba(21, 51, 41, 0.78);
  box-shadow: 0 18px 42px rgba(15, 34, 29, 0.24);
  backdrop-filter: blur(13px);
}

.storefront-domain-card span { color: #d7efe4; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.storefront-domain-card strong { font-size: clamp(18px, 2.2vw, 26px); overflow-wrap: anywhere; }
.storefront-domain-card small { color: #eaf5f0; line-height: 1.4; }

.proof-strip {
  display: grid;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(29, 44, 40, 0.08);
}

.proof-strip > div { display: grid; gap: 5px; padding: 20px; }
.proof-strip > div + div { border-left: 1px solid var(--site-line); }
.proof-strip strong { color: var(--site-leaf-dark); }
.proof-strip span { color: var(--site-muted); font-size: 14px; line-height: 1.45; }

.storefront-section,
.storefront-callout,
.content-page-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.storefront-section { padding: clamp(58px, 8vw, 96px) 0 0; }

.section-heading { display: grid; max-width: 760px; gap: 10px; margin-bottom: 28px; }
.section-heading.is-split { max-width: none; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr); gap: 34px; align-items: end; }
.section-heading h2,
.storefront-callout h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.03em; }
.section-heading > p:last-child,
.storefront-callout p { margin: 0; color: var(--site-muted); line-height: 1.6; }

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

.storefront-feature-card {
  min-height: 230px;
  padding: 25px;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 15px 38px rgba(29, 44, 40, 0.07);
}

.storefront-feature-icon { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; border-radius: 12px; background: var(--site-soft); font-size: 24px; }
.storefront-feature-card h3 { margin: 0 0 10px; font-size: 20px; }
.storefront-feature-card p { margin: 0; color: var(--site-muted); line-height: 1.58; }

.live-store-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 16px; }

.live-store-card {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 17px 42px rgba(29, 44, 40, 0.08);
}

.live-store-card-heading { display: flex; justify-content: space-between; gap: 16px; padding: 15px 17px; border-bottom: 1px solid var(--site-line); background: #f7faf8; }
.live-store-card-heading span { color: var(--site-muted); font-size: 12px; }
.live-store-card iframe { display: block; width: 100%; height: 250px; border: 0; background: #fff; }
.live-store-card:nth-child(2) iframe { height: 390px; }

.storefront-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(58px, 8vw, 96px);
  margin-bottom: clamp(58px, 8vw, 96px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #173f32, #236b4b 58%, #2d6f92);
  box-shadow: var(--site-shadow);
}

.storefront-callout > div { display: grid; max-width: 760px; gap: 10px; }
.storefront-callout .storefront-eyebrow { color: #f5ce81; }
.storefront-callout p { color: #e4f1eb; }

.content-page-shell { padding: clamp(38px, 6vw, 78px) 0 clamp(58px, 8vw, 96px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; color: var(--site-muted); font-size: 14px; }
.breadcrumbs a { color: var(--site-leaf-dark); font-weight: 750; }

.content-page-card {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--site-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: var(--site-shadow);
}

.content-page-card h1 { font-size: clamp(40px, 5vw, 66px); }
.content-page-copy { display: grid; max-width: 850px; gap: 16px; }
.content-page-copy p { margin: 0; color: #435852; font-size: 17px; line-height: 1.72; }

.contact-grid { display: grid; max-width: 850px; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-grid > div { display: grid; gap: 7px; padding: 18px; border: 1px solid var(--site-line); border-radius: 12px; background: var(--site-soft); }
.contact-grid span { color: var(--site-muted); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-grid a { color: var(--site-leaf-dark); font-size: 17px; font-weight: 800; overflow-wrap: anywhere; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 62px);
  border-top: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer > div { display: grid; gap: 4px; }
.site-footer span { color: var(--site-muted); font-size: 13px; }
.site-footer a { color: var(--site-leaf-dark); font-size: 14px; font-weight: 750; }

a:focus-visible { outline: 3px solid rgba(45, 111, 146, 0.3); outline-offset: 3px; }

@media (max-width: 940px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .storefront-hero { grid-template-columns: 1fr; }
  .storefront-hero-visual { min-height: 380px; order: -1; }
  .storefront-feature-grid { grid-template-columns: 1fr; }
  .storefront-feature-card { min-height: 0; }
  .live-store-grid,
  .section-heading.is-split { grid-template-columns: 1fr; }
  .storefront-callout { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .site-header { position: static; }
  .site-nav a { min-height: 38px; padding: 7px 9px; font-size: 13px; }
  .storefront-hero,
  .proof-strip,
  .storefront-section,
  .storefront-callout,
  .content-page-shell { width: min(100% - 24px, 1220px); }
  .storefront-hero { padding-top: 26px; }
  .storefront-hero-visual { min-height: 300px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div + div { border-top: 1px solid var(--site-line); border-left: 0; }
  .storefront-actions,
  .storefront-button { width: 100%; }
  .storefront-button { justify-content: flex-start; }
  .storefront-button > span:last-child { margin-left: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer nav { justify-content: flex-start; }
}
