:root {
  --green-dark: #073f2d;
  --green: #1d7b35;
  --green-bright: #278c3a;
  --green-soft: #eaf4e6;
  --cream: #f7f8f2;
  --text: #16372b;
  --muted: #6c7d73;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 67, 43, 0.12);
  --max-width: 1120px;
  --button-radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.top-notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 4%;
  background: #a1bf38;
  color: #052f21;
  text-align: center;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .03em;
}

.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(5, 44, 31, .28), transparent);
  color: var(--white);
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 63, 45, .96);
  box-shadow: 0 6px 24px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(96%, 1280px);
  margin: 0 auto;
  transition: min-height .35s ease;
}
.site-header.is-scrolled .header-inner {
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  width: 178px;
  flex: 0 0 auto;
}
.brand-logo {
  width: 100%;
  height: auto;
  transform-origin: left center;
  transition: transform .22s ease;
}
.brand:hover .brand-logo { transform: scale(1.06); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .9rem;
  font-weight: 700;
}
.main-nav a {
  display: inline-block;
  opacity: .92;
  text-shadow: 0 1px 10px rgba(0,0,0,.32);
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}
.main-nav a:hover { opacity: 1; color: #a9e56d; transform: scale(1.07); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-link,
.cart-link {
  padding: 12px 16px;
  border-radius: var(--button-radius);
  font-size: .85rem;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.store-link { background: rgba(7,63,45,.42); }
.cart-link { background: var(--green-bright); }
.store-link:hover,
.cart-link:hover {
  transform: scale(1.055);
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
}
.store-link svg,
.cart-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-section {
  min-height: 560px;
  display: grid;
  grid-template-columns: 170px 1.1fr 1fr;
  background: linear-gradient(90deg, #0a4d32 0%, #1e7937 52%, #f3f5ec 52%, #f3f5ec 100%);
}
.hero-left {
  background: #063825;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.vertical-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 52% center;
  opacity: .95;
}
.hero-content {
  padding: 160px 70px 78px;
  min-width: 0;
  color: var(--white);
  background: linear-gradient(90deg, #0a4d32 0%, #1e7937 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  color: #8bd15f;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 12px;
}
h1,h2,h3,p { margin-top: 0; }
h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: .98;
  max-width: 620px;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--green-dark);
}
h3 { color: var(--green-dark); margin-bottom: 8px; }
p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.hero-content p {
  width: 100%;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  overflow-wrap: break-word;
}
.hero-buttons,
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--button-radius);
  font-weight: 900;
  font-size: .9rem;
}
.btn-dark { background: #063825; color: var(--white); }
.btn-light { background: var(--white); color: var(--green-dark); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-outline { border: 1px solid var(--green); color: var(--green); }
.hero-photo {
  min-height: 560px;
  overflow: hidden;
}
.hero-photo-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}
.placeholder-image,
.placeholder-photo,
.placeholder-small,
.placeholder-tall {
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: rgba(255,255,255,.95);
  background:
    linear-gradient(rgba(7,63,45,.35), rgba(7,63,45,.35)),
    repeating-linear-gradient(135deg, #1d7b35 0 12px, #2e9342 12px 24px);
}
.placeholder-photo {
  color: var(--green-dark);
  background:
    linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,.4)),
    repeating-linear-gradient(135deg, #dce9d8 0 12px, #f4f7ef 12px 24px);
}
.section-padding { padding: 92px 0; }
.process-section {
  position: relative;
  background: var(--white);
  text-align: center;
}
.process-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to top, rgba(234,244,230,.8), transparent);
  pointer-events: none;
}
.cards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
  text-align: left;
}
.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 32px 28px 0;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid var(--green-soft);
  margin: 0 auto 18px;
}
.info-card h3 { text-align: center; }
.card-image {
  height: 275px;
  margin: auto -28px 0;
  color: var(--green-dark);
  background:
    linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)),
    repeating-linear-gradient(135deg, #cbdcc0 0 12px, #eef4e9 12px 24px);
}
.product-figure {
  margin: auto -28px 0;
  background: var(--green-dark);
}
.product-figure img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}
.product-figure figcaption {
  min-height: 45px;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.about-section {
  background: linear-gradient(180deg, #f3f8f1 0%, #ffffff 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 80px;
}
.about-media {
  position: relative;
  min-height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-photo {
  width: min(80%, 390px);
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--green-dark);
  background:
    linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)),
    repeating-linear-gradient(135deg, #bed8b5 0 12px, #edf5e8 12px 24px);
}
.about-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}
.stats-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 245px;
  background: var(--white);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.stats-box strong {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 3.15rem;
  line-height: .9;
  letter-spacing: -.06em;
}
.stats-box span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.3;
}
.stat-one { left: 0; top: 70px; text-align: left; }
.stat-two { left: 20px; bottom: 50px; text-align: left; }
.about-content p { max-width: 610px; }
.checks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 28px;
  font-weight: 800;
  color: var(--green-dark);
}
.shop-section {
  background: var(--green-dark);
}
.shop-box {
  background: var(--white);
  padding: 56px;
  box-shadow: var(--shadow);
  text-align: center;
}
.shop-box p { max-width: 760px; margin-inline: auto; }
.shop-actions { justify-content: center; }
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.contact-mascot {
  display: grid;
  place-items: center;
  min-height: 350px;
}
.contact-mascot img {
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(7,63,45,.16));
  transition: transform .25s ease;
}
.contact-mascot img:hover { transform: scale(1.04) rotate(-1deg); }
.site-footer {
  background: #062f22;
  color: var(--white);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr 1.05fr;
  gap: 52px;
  align-items: start;
  padding-bottom: 48px;
}
.footer-brand { max-width: 235px; }
.footer-logo {
  width: 104px;
  max-height: 126px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 20px;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-column h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1rem;
}
.footer-column > a {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}
.footer-column > a:hover { color: #a9e56d; }
.social-links { display: flex; flex-wrap: nowrap; gap: 9px; }
.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-links a:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  transform: scale(1.12);
}
.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links .icon-fill,
.social-links .icon-fill path { fill: var(--white); stroke: none; }
.social-links .icon-dot { fill: var(--white); stroke: none; }
.footer-label {
  color: #a9e56d;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sister-footer p { margin-bottom: 4px; }
.footer-sister-link { color: var(--white) !important; font-weight: 800; }
.fitfest-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  margin: 2px 0 4px;
}
.footer-location {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 42px;
  padding: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
}
.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.location-copy h3 { margin: 8px 0 12px; color: var(--white); }
.location-copy address {
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  font-style: normal;
  line-height: 1.7;
}
.location-copy a { margin-top: 16px; color: #a9e56d; font-size: .88rem; font-weight: 800; }
.footer-map {
  width: 100%;
  min-height: 220px;
  border: 0;
  filter: saturate(.78);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-bottom a {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.site-footer p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.construction-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  gap: 4px;
  width: min(380px, calc(100% - 48px));
  padding: 18px 22px;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  border-left: 4px solid #a9e56d;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.construction-notice span { font-size: .9rem; color: rgba(255,255,255,.78); }
.construction-notice.is-visible { opacity: 1; transform: translateY(0); }

.legal-body { background: var(--cream); }
.legal-header {
  background: var(--green-dark);
  padding: 18px 0;
}
.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-header .brand { width: 170px; }
.legal-back { color: var(--white); font-size: .9rem; font-weight: 800; }
.legal-main { padding: 72px 0 96px; }
.legal-document {
  max-width: 860px;
  padding: 54px 62px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.legal-document h1 {
  color: var(--green-dark);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
}
.legal-document h2 {
  margin-top: 38px;
  font-size: 1.35rem;
  line-height: 1.25;
}
.legal-document li {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-date { font-weight: 800; color: var(--green); }
.legal-note {
  margin: 28px 0;
  padding: 18px 20px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
}
.legal-note p { margin: 0; }
.legal-footer { padding: 24px 0; background: #062f22; text-align: center; }
.legal-footer p { margin: 0; color: rgba(255,255,255,.72); font-size: .85rem; }

.contact-page-body { background: var(--white); }
.contact-top-notice {
  padding: 9px 4%;
  background: #a1bf38;
  color: #052f21;
  text-align: center;
  font-size: .76rem;
  font-weight: 900;
}
.contact-page-header { background: var(--green-dark); color: var(--white); }
.contact-nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .88rem;
  font-weight: 800;
}
.contact-nav a { color: rgba(255,255,255,.82); }
.contact-nav a:hover,
.contact-nav a[aria-current="page"] { color: #a9e56d; }
.contact-page-hero {
  padding: 86px 0 92px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6,56,37,.98), rgba(29,123,53,.88)),
    repeating-linear-gradient(135deg, #1d7b35 0 12px, #2e9342 12px 24px);
}
.contact-page-hero h1 { max-width: 760px; margin-bottom: 18px; }
.contact-page-hero p { max-width: 660px; margin: 0; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.contact-details-section { background: var(--cream); }
.contact-details-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}
.contact-info-panel,
.contact-map-card {
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-info-panel { padding: 44px; }
.contact-detail { padding: 20px 0; border-top: 1px solid #e4ebe3; }
.contact-detail > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-detail a { color: var(--green); font-weight: 800; }
.contact-detail address { color: var(--text); font-style: normal; line-height: 1.65; }
.contact-social-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.contact-map-card { display: flex; flex-direction: column; min-height: 430px; }
.contact-map-card iframe { width: 100%; flex: 1; min-height: 360px; border: 0; }
.contact-map-card > a { padding: 18px 22px; color: var(--green); font-size: .88rem; font-weight: 900; }
.contact-form-section { background: var(--white); }
.contact-form-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-form-copy { position: sticky; top: 32px; }
.form-status {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
}
.form-status span { color: var(--muted); font-size: .86rem; line-height: 1.5; }
.contact-form {
  padding: 40px;
  background: var(--cream);
  border: 1px solid #e1e9df;
}
.contact-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-form fieldset[disabled] { opacity: .72; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cdd9cb;
  border-radius: 2px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  resize: vertical;
}
.contact-form .privacy-check { display: flex; grid-template-columns: none; align-items: center; gap: 10px; }
.contact-form .privacy-check input { width: 17px; height: 17px; margin: 0; }
.contact-form button:disabled,
.contact-form fieldset[disabled] button { cursor: not-allowed; filter: grayscale(.25); }
.form-disabled-message { margin: 14px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }
.contact-page-footer { padding: 26px 0; background: #062f22; color: var(--white); }
.contact-page-footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.contact-page-footer p { margin: 0; color: rgba(255,255,255,.7); font-size: .85rem; }
.contact-page-footer-inner > div { display: flex; gap: 20px; }
.contact-page-footer a { color: rgba(255,255,255,.78); font-size: .82rem; }

@media (min-width: 981px) and (max-width: 1220px) {
  .hero-section { grid-template-columns: 1.08fr .92fr; }
  .hero-left { display: none; }
  .hero-content { padding: 160px 52px 78px; }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 3.7vw, 3.5rem);
  }
  .hero-content p { max-width: 100%; }
}

@media (max-width: 980px) {
  .top-notice { position: static; min-height: 0; }
  .site-header { position: sticky; top: 0; background: var(--green-dark); }
  .header-inner,
  .site-header.is-scrolled .header-inner {
    width: min(92%, var(--max-width));
    flex-wrap: wrap;
    min-height: 0;
    margin: 0 auto;
    padding: 14px 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero-section { grid-template-columns: 1fr; background: var(--green); }
  .hero-left { display: none; }
  .hero-content { padding: 70px 8%; }
  .hero-photo { min-height: 360px; }
  .hero-photo-image { min-height: 360px; }
  .cards-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-location { grid-template-columns: 1fr; }
  .contact-details-grid,
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-grid { gap: 36px; }
  .contact-form-copy { position: static; }
}

@media (max-width: 640px) {
  .brand { width: 150px; }
  .header-actions { width: 100%; justify-content: center; }
  .main-nav { gap: 14px; font-size: .78rem; }
  h1 { font-size: 2.45rem; }
  .section-padding { padding: 68px 0; }
  .shop-box { padding: 36px 24px; }
  .checks-grid { grid-template-columns: 1fr; }
  .stats-box { position: static; margin: 12px; text-align: left; }
  .about-media { flex-direction: column; }
  .about-photo { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .footer-brand { max-width: none; }
  .footer-logo { margin-inline: auto; }
  .social-links { justify-content: center; }
  .fitfest-logo { margin-inline: auto; }
  .location-copy { align-items: center; text-align: center; }
  .footer-location { padding: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-header-inner { align-items: flex-start; }
  .legal-main { padding: 36px 0 64px; }
  .legal-document { padding: 34px 24px; }
  .contact-nav-inner { flex-direction: column; padding: 18px 0; }
  .contact-nav { gap: 15px; flex-wrap: wrap; justify-content: center; font-size: .78rem; }
  .contact-page-hero { padding: 62px 0 68px; }
  .contact-info-panel,
  .contact-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-map-card { min-height: 360px; }
  .contact-page-footer-inner { flex-direction: column; text-align: center; }
  .contact-page-footer-inner > div { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header,
  .header-inner,
  .construction-notice,
  .main-nav a,
  .brand-logo,
  .store-link,
  .cart-link,
  .social-links a { transition: none; }
  .contact-mascot img { transition: none; }
}
