:root {
  --green: #006b45;
  --green-deep: #00472f;
  --green-light: #eaf6f1;
  --ink: #111513;
  --muted: #66716c;
  --gold: #eba900;
  --red: #e5002b;
  --line: #dfe6e2;
  --white: #fff;
  --page: #f6f8f7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
section[id] { scroll-margin-top: 68px; }

.site-header {
  width: 100%;
  height: clamp(170px, 18vw, 265px);
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.brand { width: 100%; height: 100%; display: block; overflow: hidden; }
.brand img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.site-nav { height: 64px; position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-inner { max-width: 1440px; height: 100%; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.site-nav a { color: var(--muted); font-size: .82rem; font-weight: 800; text-decoration: none; transition: color .2s ease; }
.site-nav a:hover { color: var(--green); }
.site-nav a.active { color: var(--green-deep); position: relative; }
.site-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 2px; background: var(--gold); }
.site-nav .nav-whatsapp { margin-left: auto; padding: 10px 16px; border-radius: 5px; background: var(--green); color: white; }
.site-nav .nav-whatsapp:hover { background: var(--green-deep); color: white; }
.wa-icon, .button-icon { display: grid; place-items: center; border-radius: 50%; background: #25d366; color: white; font-size: 1.15rem; }
.wa-icon { width: 40px; height: 40px; }

.product-shell {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
}
.gallery { padding: clamp(24px, 4vw, 60px); background: radial-gradient(circle at 55% 40%, #fff 0, #f1f4f2 56%, #e5eae7 100%); display: flex; flex-direction: column; justify-content: center; }
.main-image-wrap { min-height: 480px; position: relative; display: grid; place-items: center; overflow: hidden; }
.main-image-wrap::before { content: ""; width: 55%; height: 24px; position: absolute; bottom: 7%; left: 23%; background: rgba(0,0,0,.18); border-radius: 50%; filter: blur(18px); }
.main-image-wrap > img { width: min(100%, 650px); height: 560px; object-fit: contain; mix-blend-mode: multiply; position: relative; transition: opacity .2s ease, transform .35s ease; }
.main-image-wrap.branded-gallery > img { mix-blend-mode: normal; border-radius: 10px; }
.main-image-wrap:hover > img { transform: scale(1.025); }
.arc-reactor-image-wrap > img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: normal; }
.image-note { position: absolute; left: 0; top: 0; z-index: 2; padding: 8px 13px; background: var(--ink); color: white; font-size: .75rem; font-weight: 800; letter-spacing: .06em; }
.thumbnails { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }
.thumbnail { width: 76px; height: 76px; border: 2px solid transparent; border-radius: 8px; background: white; padding: 5px; cursor: pointer; transition: .2s ease; }
.thumbnail img { width: 100%; height: 100%; object-fit: contain; }
.thumbnail:hover, .thumbnail.active { border-color: var(--green); transform: translateY(-2px); }

.product-info { padding: clamp(36px, 5vw, 78px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.category { color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.stock { color: #9b001d; background: #fff0f2; padding: 6px 10px; border-radius: 100px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.stock i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(229,0,43,.1); }
.sku { margin: 0 0 10px; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .1em; }
h1, h2 { margin: 0; font-family: "Space Grotesk", sans-serif; line-height: 1.04; letter-spacing: -.035em; }
h1 { max-width: 650px; font-size: clamp(2.45rem, 4.4vw, 4.6rem); }
.catalogue { max-width: 1440px; margin: 0 auto; padding: clamp(60px, 8vw, 110px) clamp(24px, 7vw, 100px); background: white; }
.catalogue-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.catalogue-heading h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.catalogue-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.product-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-card { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: white; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(17,21,19,.12); }
.card-image { height: 420px; padding: 22px; background: radial-gradient(circle at center, #fff 0, #edf1ef 100%); overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s ease; }
.product-card:hover .card-image img { transform: scale(1.035); }
.card-copy { padding: 24px; }
.card-copy > span { color: var(--green); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.card-copy h2 { max-width: 520px; min-height: 2.1em; margin: 9px 0 24px; font-size: clamp(1.45rem, 2.3vw, 2.2rem); }
.card-copy > div { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.card-copy strong { color: var(--green-deep); font: 700 clamp(1.3rem, 2vw, 1.8rem) "Space Grotesk"; }
.card-copy small { color: var(--green); font-weight: 800; }
.product-card > em { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border-radius: 100px; background: var(--red); color: white; font-size: .65rem; font-style: normal; font-weight: 800; letter-spacing: .07em; }
.intro { max-width: 620px; margin: 22px 0 26px; color: var(--muted); font-size: 1.05rem; }
.price-row { padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.price-label { display: block; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.price-row strong { font-family: "Space Grotesk", sans-serif; color: var(--green-deep); font-size: 2.1rem; }
.payment-pill { border: 1px solid #bddbcf; color: var(--green-deep); background: var(--green-light); border-radius: 100px; padding: 7px 11px; font-size: .74rem; font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; margin: 24px 0; padding: 0; }
.feature-grid li { min-height: 76px; border: 1px solid var(--line); border-radius: 9px; padding: 12px; display: grid; grid-template-columns: 28px 1fr; align-content: center; }
.feature-grid li > span { grid-row: 1 / 3; color: var(--gold); font-size: 1.05rem; }
.feature-grid b { font-size: .86rem; }
.feature-grid small { color: var(--muted); font-size: .72rem; }
.order-button { min-height: 76px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 13px 18px; border-radius: 8px; background: var(--green); color: white; text-decoration: none; box-shadow: 0 12px 25px rgba(0,107,69,.22); transition: .2s ease; }
.order-button:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,71,47,.27); }
.button-icon { width: 42px; height: 42px; }
.order-button > span:nth-child(2) { font-weight: 800; }
.order-button small { display: block; color: rgba(255,255,255,.76); font-weight: 500; }
.arrow { font-size: 1.7rem; }
.order-note { margin: 12px 8px 0; color: var(--muted); font-size: .72rem; text-align: center; }
.second-product { border-top: 1px solid var(--line); }
.second-product .product-info h2 { max-width: 650px; font-size: clamp(2.45rem, 4.4vw, 4.6rem); }
.brake-image-wrap > img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.compact-specs { display: grid; gap: 7px; margin: -5px 0 22px; padding: 15px 18px; border-left: 3px solid var(--gold); background: #f6f8f7; color: var(--muted); font-size: .78rem; }
.compact-specs b { color: var(--ink); margin-right: 5px; }
.mobile-only { display: none; }

.home-hero { max-width: 1440px; min-height: 620px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; background: white; overflow: hidden; }
.home-copy { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.home-copy h1 { max-width: 820px; font-size: clamp(3rem, 6vw, 6.4rem); }
.home-copy > p:not(.section-kicker) { max-width: 710px; margin: 26px 0 32px; color: var(--muted); font-size: 1.08rem; }
.home-cta { width: fit-content; padding: 15px 20px; display: flex; align-items: center; gap: 28px; border-radius: 6px; background: var(--green); color: white; text-decoration: none; font-weight: 800; transition: .2s ease; }
.home-cta:hover { background: var(--green-deep); transform: translateY(-2px); }
.home-cta span { font-size: 1.4rem; }
.home-visual { min-height: 620px; padding: clamp(40px, 6vw, 90px); display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--green-deep); position: relative; }
.home-visual::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(235,169,0,.32); border-radius: 50%; }
.home-visual img { width: min(90%, 500px); position: relative; border-radius: 50%; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.home-visual span { margin-top: 26px; color: white; font: 700 clamp(1.5rem, 2.6vw, 2.5rem)/1.08 "Space Grotesk"; text-align: center; }
.values { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--line); gap: 1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values article { min-height: 245px; padding: clamp(28px, 4vw, 56px); background: var(--page); }
.values article > span { color: var(--gold); font: 700 .8rem "Space Grotesk"; }
.values h2 { margin: 36px 0 10px; font-size: 1.7rem; }
.values p { margin: 0; color: var(--muted); font-size: .9rem; }
.home-ordering { background: white; }
.page-intro { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 120px); background: white; }
.page-intro h1 { max-width: 950px; font-size: clamp(3.2rem, 7vw, 7rem); }
.page-intro > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.standalone-about, .standalone-contact { scroll-margin-top: 64px; }
.about-mission { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 120px); background: white; }
.about-mission h2 { max-width: 1050px; font-size: clamp(2rem, 4vw, 4.2rem); color: var(--green-deep); }
.standalone-contact { padding-top: clamp(65px, 8vw, 100px); }

.category-grid { max-width: 1440px; margin: 0 auto; padding: 0 clamp(24px, 7vw, 100px) clamp(70px, 9vw, 130px); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: white; }
.category-card { min-width: 0; overflow: hidden; border-radius: 12px; background: #0d1210; color: white; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,.2); }
.category-image { height: 410px; overflow: hidden; background: #202622; }
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category-image.product-contain { background: radial-gradient(circle, #fff, #e9eeeb); padding: 18px; }
.category-image.product-contain img { object-fit: contain; mix-blend-mode: multiply; }
.category-card:hover .category-image img { transform: scale(1.035); }
.category-copy { min-height: 180px; padding: 26px; display: grid; grid-template-columns: 42px 1fr; gap: 18px; }
.category-copy > span { color: var(--gold); font: 700 .85rem "Space Grotesk"; }
.category-copy p { margin: 0 0 7px; color: rgba(255,255,255,.52); font-size: .68rem; font-weight: 800; letter-spacing: .13em; }
.category-copy h2 { margin-bottom: 28px; font-size: clamp(1.8rem, 3vw, 3rem); }
.category-copy small { color: #74d6af; font-weight: 800; }
.summary-page { min-height: 650px; max-width: 1440px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) clamp(24px, 7vw, 100px) clamp(80px, 9vw, 130px); background: white; }
.back-link { display: inline-block; margin-bottom: 46px; color: var(--green); font-size: .82rem; font-weight: 800; text-decoration: none; }
.summary-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.summary-heading h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.summary-heading > p { max-width: 460px; margin: 0; color: var(--muted); }
.summary-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.summary-card { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 420px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.summary-image { position: relative; background: radial-gradient(circle, #fff, #e9eeeb); overflow: hidden; }
.summary-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.summary-image em { position: absolute; left: 16px; top: 16px; padding: 7px 10px; border-radius: 100px; background: var(--red); color: white; font-size: .65rem; font-style: normal; font-weight: 800; letter-spacing: .07em; }
.summary-copy { padding: clamp(25px, 3vw, 42px); display: flex; flex-direction: column; justify-content: center; }
.summary-copy h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
.summary-copy > p:not(.sku) { margin: 18px 0; color: var(--muted); }
.summary-copy > strong { margin-bottom: 24px; color: var(--green-deep); font: 700 1.8rem "Space Grotesk"; }
.summary-copy > a { min-height: 52px; padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; border-radius: 6px; background: var(--green); color: white; font-weight: 800; text-decoration: none; transition: .2s ease; }
.summary-copy > a:hover { background: var(--green-deep); }
.detail-breadcrumb { max-width: 1440px; margin: 0 auto; padding: 22px clamp(24px, 5vw, 78px); display: flex; align-items: center; gap: 10px; background: white; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.detail-breadcrumb a { color: var(--green); font-weight: 700; text-decoration: none; }
.detail-product { min-height: 0; }
.brake-details { background: #101a20; }

.details { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 120px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 120px); background: var(--green-deep); color: white; position: relative; overflow: hidden; }
.details::after { content: "EPS"; position: absolute; right: -20px; bottom: -90px; font: 800 17rem/1 "Space Grotesk"; color: rgba(255,255,255,.035); }
.section-kicker { margin: 0 0 14px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.details h2, .how-it-works h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.detail-copy { position: relative; z-index: 1; }
.detail-copy > p { margin: 0 0 32px; max-width: 660px; color: rgba(255,255,255,.72); font-size: 1.1rem; }
dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid rgba(255,255,255,.18); }
dl div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
dt { color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
dd { margin: 3px 0 0; font-weight: 700; }

.how-it-works { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 120px); background: white; }
.how-it-works h2 { margin-bottom: 50px; }
.how-it-works ol { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 0; background: var(--line); border: 1px solid var(--line); }
.how-it-works li { min-height: 205px; padding: 28px; background: white; }
.how-it-works li > span { display: block; margin-bottom: 42px; color: var(--green); font: 700 1rem "Space Grotesk"; }
.how-it-works b { font: 700 1.15rem "Space Grotesk"; }
.how-it-works li p { margin: 8px 0 0; color: var(--muted); font-size: .88rem; }

.about { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 120px); display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(40px, 8vw, 120px); background: #0d1210; color: white; overflow: hidden; }
.about-mark { color: transparent; font: 800 clamp(8rem, 18vw, 17rem)/.8 "Space Grotesk"; -webkit-text-stroke: 2px rgba(235,169,0,.42); letter-spacing: -.08em; }
.about h2, .contact h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.about-copy > p:not(.section-kicker) { max-width: 690px; color: rgba(255,255,255,.7); font-size: 1.04rem; }

.contact { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 120px); background: var(--green-light); }
.contact-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; align-items: end; margin-bottom: 44px; }
.contact-heading .section-kicker, .contact-heading h2 { grid-column: 1; }
.contact-heading > p:last-child { grid-column: 2; grid-row: 1 / 3; align-self: end; margin: 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-card { min-height: 155px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #c9ded5; border-radius: 9px; background: white; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
a.contact-card:hover { transform: translateY(-3px); border-color: var(--green); }
.contact-card > span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.contact-card strong { font: 700 clamp(1.1rem, 2vw, 1.45rem) "Space Grotesk"; overflow-wrap: anywhere; }
.contact-card small { color: var(--green); font-weight: 700; }
.contact-primary { background: var(--green); color: white; border-color: var(--green); }
.contact-primary > span, .contact-primary small { color: rgba(255,255,255,.72); }
.hours { max-width: 720px; margin-top: 36px; padding: 26px 28px; background: white; border-radius: 9px; }
.hours h3 { margin: 0 0 14px; font: 700 1.25rem "Space Grotesk"; }
.hours div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid var(--line); }
.hours span { color: var(--muted); }

footer { padding: 38px clamp(24px, 5vw, 80px); display: grid; grid-template-columns: auto 1fr auto auto auto; align-items: center; gap: 32px; background: #0d1210; color: white; }
footer img { width: 92px; height: 92px; object-fit: contain; object-position: left; border-radius: 50%; }
footer p, footer small { color: #8e9893; }
footer a { color: white; font-weight: 800; text-decoration: none; }
.floating-wa { display: none; }

@media (max-width: 900px) {
  .site-header { height: clamp(105px, 27vw, 155px); }
  .brand img { width: 100%; height: auto; min-height: 100%; }
  .site-nav { height: 58px; overflow-x: auto; }
  .nav-inner { width: max-content; min-width: 100%; padding: 0 18px; gap: 24px; }
  .site-nav .nav-whatsapp { margin-left: 0; }
  .site-nav a.active::after { bottom: -10px; }
  .home-hero { grid-template-columns: 1fr; }
  .home-visual { min-height: 500px; }
  .values { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .summary-heading { align-items: start; flex-direction: column; gap: 18px; }
  .summary-grid { grid-template-columns: 1fr; }
  .catalogue-heading { align-items: start; flex-direction: column; gap: 18px; }
  .product-cards { grid-template-columns: 1fr; }
  .card-image { height: 390px; }
  .product-shell { grid-template-columns: 1fr; }
  .product-shell > .mobile-only { display: flex; margin: 20px 20px 0; }
  .desktop-only { display: none; }
  .gallery { padding: 10px 20px 28px; }
  .main-image-wrap { min-height: 390px; }
  .main-image-wrap > img { height: 410px; }
  .product-info { padding: 34px 22px 55px; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .details { grid-template-columns: 1fr; }
  .how-it-works ol { grid-template-columns: 1fr; }
  .how-it-works li { min-height: 0; }
  .how-it-works li > span { margin-bottom: 20px; }
  .about { grid-template-columns: 1fr; }
  .about-mark { font-size: 9rem; }
  .contact-heading { grid-template-columns: 1fr; }
  .contact-heading > p:last-child { grid-column: 1; grid-row: auto; margin-top: 18px; }
  footer { grid-template-columns: 1fr; gap: 12px; }
  footer p { margin: 0; }
  .floating-wa { width: 56px; height: 56px; display: grid; place-items: center; position: fixed; right: 18px; bottom: 18px; z-index: 30; border-radius: 50%; background: #25d366; color: white; text-decoration: none; font-size: 1.5rem; box-shadow: 0 8px 30px rgba(0,0,0,.25); }
}

@media (max-width: 520px) {
  .site-header { height: 108px; }
  .home-copy { padding: 58px 22px; }
  .home-copy h1 { font-size: 3rem; }
  .home-visual { min-height: 390px; padding: 42px 24px; }
  .values article { min-height: 210px; padding: 32px 22px; }
  .page-intro { padding: 58px 22px; }
  .category-grid { padding-inline: 16px; }
  .category-image { height: 320px; }
  .summary-page { padding-inline: 16px; }
  .summary-card { grid-template-columns: 1fr; }
  .summary-image { min-height: 320px; }
  .detail-breadcrumb { padding-inline: 18px; overflow-x: auto; white-space: nowrap; }
  .catalogue { padding-inline: 16px; }
  .card-image { height: 315px; padding: 12px; }
  .card-copy { padding: 20px; }
  .gallery { padding-inline: 14px; }
  .main-image-wrap { min-height: 340px; }
  .main-image-wrap > img { height: 360px; }
  .image-note { top: 5px; }
  .price-row strong { font-size: 1.75rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .order-button { grid-template-columns: 42px 1fr auto; padding-inline: 13px; }
  .order-button small { font-size: .68rem; }
  .details, .how-it-works { padding-inline: 22px; }
  .about, .contact { padding-inline: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hours { padding: 22px 18px; }
  .hours div { font-size: .85rem; }
  dl { grid-template-columns: 1fr; }
}

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