:root {
  --green: #1F4D2B;
  --sage: #8FAF8C;
  --terracotta: #C97F42;
  --beige: #F3E2C7;
  --yellow: #E8D3A5;
  --white: #FFFFFF;
  --ink-soft: rgba(31, 77, 43, 0.74);
  --border: rgba(31, 77, 43, 0.18);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--green);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  letter-spacing: 0;
  line-height: 0.86;
}

.brand-kicker {
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.brand-script {
  color: var(--terracotta);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: 2px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--terracotta);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.nav-toggle span {
  background: var(--green);
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: transform 180ms ease;
  width: 24px;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -5px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px);
}

.nav-open .nav-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.checker-strip {
  background-color: var(--beige);
  background-image:
    linear-gradient(45deg, var(--yellow) 25%, transparent 25%),
    linear-gradient(-45deg, var(--yellow) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--yellow) 75%),
    linear-gradient(-45deg, transparent 75%, var(--yellow) 75%);
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
  background-size: 36px 36px;
  height: 34px;
  width: 100%;
}

.hero {
  background: var(--white);
  isolation: isolate;
  min-height: clamp(620px, 84svh, 800px);
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background: var(--white);
  z-index: 0;
}

.hero-overlay {
  background: transparent;
  z-index: 0;
}

.checker-top,
.checker-bottom {
  left: 0;
  position: absolute;
  z-index: 3;
}

.checker-top {
  top: 0;
}

.checker-bottom {
  bottom: 0;
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  margin: 0 auto;
  padding: 108px clamp(20px, 7vw, 108px) 128px;
  position: relative;
  text-align: center;
  width: min(880px, 100%);
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.8rem, 12vw, 10.2rem);
  letter-spacing: 0;
  line-height: 0.78;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  font-weight: 950;
}

.hero h1 em {
  color: var(--terracotta);
  display: block;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 0.58em;
  font-style: normal;
  margin-left: 0;
  margin-top: -0.02em;
  text-transform: none;
}

.brand-wave {
  height: 42px;
  margin: 8px auto 0;
  position: relative;
  width: min(720px, 70vw);
}

.brand-wave::before {
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 50% 50%;
  content: "";
  height: 36px;
  left: 0;
  opacity: 0.95;
  position: absolute;
  right: 0;
  top: -12px;
}

.hero-copy {
  color: var(--green);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 14px 0 0;
  max-width: 620px;
}

.hero-actions,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
}

.hero-actions .button {
  min-width: 214px;
}

.button {
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  text-transform: uppercase;
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--green);
}

.button:hover,
.button:focus-visible,
.link-list a:hover,
.link-list a:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta);
  color: var(--white);
}

.hero-note {
  align-items: center;
  bottom: 48px;
  color: var(--green);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.74rem;
  font-weight: 900;
  gap: 16px;
  letter-spacing: 0.22em;
  position: absolute;
  right: clamp(20px, 8vw, 104px);
  text-transform: uppercase;
  z-index: 2;
}

.hero-note a,
.hero-note span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}

.hero-note a:hover,
.hero-note a:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 64px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.section-heading h2,
.location-grid h2,
.order-grid h2 {
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.section-heading p:last-child,
.location-grid p {
  color: var(--ink-soft);
  margin: 0;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-bottom: 42px;
}

.section-heading.compact {
  align-items: start;
}

.section-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 18px 0 0;
  max-width: 560px;
}

.products-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.82fr);
}

.product-list {
  border-top: 1px solid var(--border);
}

.product-row {
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
}

.product-row span {
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  font-weight: 900;
  text-transform: uppercase;
}

.product-row small {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-style: italic;
  text-align: right;
}

.top-products {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 30px);
}

.top-label {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 18px;
}

.top-products ol {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-products li {
  align-items: center;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
  grid-template-columns: 38px 1fr;
  padding: 14px 0;
}

.top-products li::before {
  color: var(--terracotta);
  content: "\2605";
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.top-products span {
  display: block;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 900;
  text-transform: uppercase;
}

.top-products small {
  color: var(--ink-soft);
  display: block;
  font-size: 0.92rem;
  grid-column: 2;
  margin-top: 2px;
}

.schedule-section {
  background: var(--beige);
}

.schedule-grid {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  grid-template-columns: 1fr;
}

.location-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  text-align: center;
}

.schedule-grid .section-heading {
  align-items: start;
  display: block;
  margin: 0;
}

.schedule-grid .section-heading p:last-child {
  margin-top: 22px;
  max-width: 520px;
}

.schedule-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.schedule-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: 150px 1fr;
  padding: clamp(22px, 4vw, 34px);
}

.schedule-card span {
  background: var(--sage);
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.18em;
  padding: 10px 12px;
  text-align: center;
  text-transform: uppercase;
}

.schedule-card div {
  display: grid;
  gap: 10px;
}

.schedule-card strong {
  display: block;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.location-section {
  background: var(--white);
}

.location-grid {
  align-items: center;
}

.location-grid p {
  margin-inline: auto;
  margin-top: 22px;
  max-width: 560px;
}

.location-grid .link-list {
  justify-content: center;
}

.link-list a {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 13px 16px;
  text-transform: uppercase;
}

.social-proof-section {
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}

.social-proof-section .section-kicker,
.social-proof-section h2 {
  color: var(--white);
}

.social-heading {
  grid-template-columns: 0.55fr 1.45fr;
}

.marquee {
  margin-inline: calc(clamp(18px, 5vw, 64px) * -1);
  overflow: hidden;
}

.marquee-track {
  animation: marquee-slide 38s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee img {
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  object-fit: contain;
  width: clamp(210px, 18vw, 270px);
}

.quote-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 26px;
  width: clamp(280px, 25vw, 360px);
}

.quote-card span {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 18px 0 0;
}

.quote-card small {
  color: var(--ink-soft);
  display: block;
  font-size: 0.95rem;
  margin-top: 14px;
}

.proof-card p {
  color: var(--green);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 0.94;
}

.review-card p {
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
}

.review-link {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  margin-top: 28px;
  min-height: 46px;
  padding: 13px 16px;
  text-transform: uppercase;
}

.review-link:hover,
.review-link:focus-visible {
  background: var(--white);
  color: var(--green);
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.order-section {
  background: var(--white);
}

.order-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.order-grid h2 {
  line-height: 1.06;
}

.phone-actions {
  align-content: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phone-card {
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 18px;
}

.phone-card span {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-card strong {
  color: var(--green);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.phone-card:hover,
.phone-card:focus-visible {
  border-color: var(--terracotta);
}

.site-footer {
  background: var(--white);
  color: var(--green);
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 220px 1fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 48px clamp(18px, 5vw, 64px);
}

.footer-brand .brand-kicker {
  font-size: 1.35rem;
}

.footer-brand .brand-script {
  font-size: 1.9rem;
}

.footer-note {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}

.floating-call {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 8px;
  bottom: 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  position: fixed;
  right: 18px;
  text-transform: uppercase;
  z-index: 15;
}

.floating-call:hover,
.floating-call:focus-visible {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

@media (max-width: 920px) {
  .site-nav {
    align-items: stretch;
    background: var(--white);
    border-left: 1px solid var(--border);
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    padding: 80px 28px;
    position: fixed;
    right: 0;
    top: var(--header-height);
    transform: translateX(100%);
    transition: transform 200ms ease;
    width: min(320px, 86vw);
  }

  .site-nav a {
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    padding: 18px 0;
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .nav-toggle {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: inline-flex;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 35;
  }

  .hero-content {
    padding: 98px 22px 122px;
    width: min(720px, 100%);
  }

  .section-heading,
  .products-layout,
  .schedule-grid,
  .location-grid,
  .order-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .schedule-cards,
  .phone-actions {
    grid-template-columns: 1fr;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 92px;
  }

  .site-header {
    padding: 0 16px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background: var(--white);
  }

  .hero-overlay {
    background: transparent;
  }

  .hero-content {
    padding: 76px 18px 108px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.1rem);
  }

  .brand-wave {
    height: 30px;
    width: min(330px, 74vw);
  }

  .brand-wave::before {
    border-bottom-width: 3px;
    height: 26px;
  }

  .hero-copy {
    font-size: 0.9rem;
    max-width: 95%;
  }

  .hero-actions {
    margin-top: 22px;
    width: min(320px, 100%);
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  .hero-note {
    bottom: 42px;
    gap: 8px;
    left: 18px;
    right: 18px;
  }

  .hero-note span {
    font-size: 0.62rem;
  }

  .section {
    padding: 58px 18px;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 0;
  }

  .product-row small {
    text-align: left;
  }

  .top-products {
    padding: 22px;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .schedule-card span {
    justify-content: flex-start;
    width: fit-content;
  }

  .marquee {
    margin-inline: -18px;
  }

  .marquee-track {
    gap: 12px;
  }

  .marquee img {
    width: 156px;
  }

  .quote-card {
    min-height: 250px;
    padding: 22px;
    width: 245px;
  }

  .order-grid {
    padding: 52px 18px;
  }

  .floating-call {
    bottom: 12px;
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
