:root {
  --black: #050505;
  --ink: #101010;
  --paper: #f7f5ef;
  --white: #ffffff;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.16);
  --soft-line: rgba(5, 5, 5, 0.13);
  --pop: #f1f1f1;
  --warm: #e9e1d2;
  --max: 1180px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img,
.site-footer img {
  border-radius: 50%;
}

.brand img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.header-action {
  opacity: 0.86;
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.header-action:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.mobile-nav-action {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 72svh;
  padding: 150px clamp(18px, 4vw, 54px) clamp(58px, 8vw, 96px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54)),
    url("assets/grassy-park-front-approved.jpg") center / cover;
}

.page-hero > div {
  width: min(var(--max), 100%);
  margin: 0 auto;
  animation: riseIn 680ms ease 120ms both;
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5)),
    url("assets/product-premium-counter-display.jpg") center / cover;
}

.biltong-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42)),
    url("assets/biltong-hanging.jpg") center / cover;
}

.biltong-logo-mark {
  width: 74px;
  height: 74px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  object-fit: cover;
}

.review-hero,
.find-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.45)),
    url("assets/Display2.webp") center / cover;
}

.rating-strip {
  align-self: end;
  width: min(240px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(0, 0, 0, 0.58);
}

.rating-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.rating-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 28s ease-in-out infinite alternate;
  transition: opacity 220ms ease, transform 420ms ease;
}

.hero-media img.is-changing {
  opacity: 0.18;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.4) 52%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 82px;
  animation: riseIn 680ms ease 120ms both;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 6.4vw, 6.35rem);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-icon-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: none;
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-icon-row a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.hero-icon-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.dark {
  background: var(--black);
  color: var(--white);
}

.button.light {
  background: var(--paper);
  color: var(--black);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 34px;
  width: min(210px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(14px);
  animation: riseIn 720ms ease 260ms both;
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 5px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  color: rgba(5, 5, 5, 0.78);
  background: var(--warm);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: tickerMove 48s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-right: 1px solid var(--soft-line);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-video-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.home-video-copy h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
}

.home-video-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #464646;
  line-height: 1.72;
}

.home-video-card {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

.home-video-card video {
  width: 100%;
  height: clamp(440px, 58vw, 760px);
  object-fit: cover;
}

.customer-videos {
  display: grid;
  gap: 34px;
}

.customer-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.customer-video-grid article {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
}

.customer-video-grid video {
  width: 100%;
  aspect-ratio: 9 / 12;
  max-height: 560px;
  object-fit: cover;
  background: var(--black);
}

.customer-video-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-top: 1px solid var(--soft-line);
}

.customer-video-grid span {
  color: #666;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-video-grid strong {
  font-size: 0.9rem;
  text-align: right;
  text-transform: uppercase;
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 90px);
}

.section-heading h2,
.showcase-text h2,
.feature-copy h2,
.visit-card h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.5vw, 5.4rem);
  font-weight: 500;
}

.page-split {
  min-height: 640px;
}

.content-band {
  display: grid;
  gap: 44px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-grid article,
.contact-panel {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
}

.detail-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.detail-grid p {
  color: #464646;
  line-height: 1.72;
}

.product-showcase {
  min-height: 66svh;
}

.product-showcase img {
  height: 66svh;
}

.offering-grid.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expanded-reviews {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.expanded-reviews figure {
  min-height: 230px;
}

.find-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.map-panel {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.contact-panel h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-panel dl {
  margin: 0;
}

.contact-panel div {
  padding: 18px 0;
  border-top: 1px solid var(--soft-line);
}

.contact-panel dt,
.contact-panel dd {
  margin: 0;
}

.contact-panel dt {
  margin-bottom: 7px;
  color: #666;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-panel a {
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.branch-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: clamp(32px, 5vw, 58px);
  padding-bottom: 18px;
}

.branch-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 4px;
}

.branch-heading h2,
.locations-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.branch-card {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.branch-card iframe {
  display: block;
  width: 100%;
  height: 170px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.branch-card-body {
  padding: 18px;
}

.branch-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: #777;
  font-size: 0.72rem;
  font-weight: 900;
}

.branch-card h2 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.branch-card p {
  min-height: 50px;
  margin-bottom: 14px;
  color: #303030;
  font-size: 0.88rem;
  line-height: 1.45;
}

.branch-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.branch-card dl div {
  padding-top: 10px;
  border-top: 1px solid var(--soft-line);
}

.branch-card dt,
.branch-card dd {
  margin: 0;
}

.branch-card dt {
  margin-bottom: 4px;
  color: #666;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-card dd {
  color: #161616;
  font-size: 0.82rem;
  line-height: 1.42;
}

.branch-card dd a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.branch-actions,
.social-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.branch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-actions a:first-child {
  background: var(--black);
  color: var(--white);
}

.social-contact {
  padding-top: 0;
  padding-bottom: clamp(32px, 5vw, 58px);
}

.social-contact a {
  min-height: 40px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  font-weight: 900;
}

.section-heading.compact {
  max-width: 760px;
}

.intro-copy {
  align-self: end;
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.store-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.store-copy h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
}

.store-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #464646;
  font-size: 1.04rem;
  line-height: 1.74;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.store-actions button {
  min-height: 42px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.store-actions button.is-active,
.store-actions button:hover {
  background: var(--black);
  color: var(--white);
}

.store-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 14px;
  align-items: center;
}

.store-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.store-image-frame img {
  position: relative;
  width: 100%;
  height: clamp(340px, 40vw, 560px);
  object-fit: cover;
  transition: opacity 180ms ease, transform 220ms ease;
}


.store-image-frame.is-changing img {
  opacity: 0.18;
  transform: scale(1.015);
}

.store-thumbs {
  display: grid;
  gap: 12px;
}

.store-thumbs.is-hidden {
  display: none;
}

.store-thumbs button {
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  padding: 0;
  background: var(--white);
  cursor: pointer;
  opacity: 0.68;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.store-thumbs button:hover,
.store-thumbs button.is-active {
  border-color: var(--black);
  opacity: 1;
  transform: translateX(-2px);
}

.store-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat-row div {
  border-top: 1px solid var(--soft-line);
  padding-top: 16px;
}

.stat-row div,
.offering-grid article,
.review-grid figure,
.detail-grid article,
.contact-panel,
.visit-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stat-row div:hover,
.offering-grid article:hover,
.review-grid figure:hover,
.detail-grid article:hover,
.contact-panel:hover {
  transform: translateY(-5px);
}

.stat-row strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.stat-row span {
  color: #666;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.showcase {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.showcase img {
  width: 100%;
  height: 78svh;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 800ms ease, opacity 300ms ease;
}

.showcase:hover img {
  opacity: 0.86;
  transform: scale(1.035);
}

.showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
}

.showcase-text {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 7vw, 76px);
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  transform: translateX(-50%);
}

.showcase-text h2 {
  max-width: 900px;
}

.offerings {
  display: grid;
  gap: 44px;
}

.offering-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offering-grid article,
.review-grid figure {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.offering-image {
  width: calc(100% + 48px);
  max-width: none;
  height: 180px;
  margin: -24px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  background: var(--black);
}

.offering-video {
  display: block;
}

.offering-grid article:hover,
.review-grid figure:hover,
.detail-grid article:hover,
.contact-panel:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.offering-grid span {
  display: block;
  margin-bottom: 16px;
  color: #777;
  font-size: 0.78rem;
  font-weight: 900;
}

.offering-grid h3,
.hours h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.offering-grid p,
.feature-copy p,
.visit-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.offering-grid p,
.offering-description {
  color: #303030;
  line-height: 1.68;
}

.offering-link {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-premium {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.product-premium-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.product-premium-copy p:not(.eyebrow) {
  color: #303030;
  font-size: 1.05rem;
  line-height: 1.75;
}

.product-premium-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.product-premium-images figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.11);
}

.product-premium-images img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.product-premium-images figure:first-child img {
  object-position: center;
}

.product-premium-images figure:last-child img {
  object-position: center;
}

.product-premium-images figcaption {
  padding: 14px 16px 16px;
  color: #323232;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.honey-marinade {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.honey-marinade-video {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
}

.honey-marinade-video video {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.honey-marinade-copy {
  max-width: 560px;
}

.honey-marinade-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.honey-marinade-copy p:not(.eyebrow) {
  color: #303030;
  font-size: 1.02rem;
  line-height: 1.75;
}

.honey-marinade-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 10px;
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-gallery {
  display: grid;
  gap: 34px;
}

.counter-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 12px;
}

.counter-gallery img {
  width: 100%;
  height: clamp(300px, 34vw, 480px);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--black);
}

.biltong-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.biltong-counter img,
.biltong-counter video {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.biltong-copy h2,
.biltong-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.biltong-copy p,
.biltong-cta p {
  color: #303030;
  font-size: 1.05rem;
  line-height: 1.75;
}

.biltong-note {
  margin-top: 24px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.biltong-counter-media {
  display: grid;
  gap: 28px;
}

.biltong-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.biltong-media-grid video,
.biltong-media-grid img {
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--black);
}

.biltong-media-grid video {
  object-position: center;
}

.biltong-menu-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.biltong-menu-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.biltong-menu-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.biltong-menu-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.biltong-menu-copy p:not(.eyebrow) {
  color: #303030;
  font-size: 1.05rem;
  line-height: 1.75;
}

.biltong-menu-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.biltong-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.biltong-pack,
.price-card {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
}

.biltong-pack img {
  width: 100%;
  height: clamp(190px, 22vw, 280px);
  border-radius: var(--radius);
  background: #050505;
  object-fit: contain;
  object-position: center;
}

.biltong-pack {
  display: grid;
  grid-template-columns: minmax(170px, 0.44fr) minmax(0, 0.56fr);
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.biltong-pack div,
.price-card {
  padding: clamp(16px, 1.6vw, 24px);
}

.biltong-pack div {
  padding: 0;
}

.biltong-pack span,
.price-card span {
  display: block;
  margin-bottom: 10px;
  color: #707070;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.biltong-pack h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.biltong-pack h3 {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.biltong-pack p {
  margin: 0;
  font-size: 0.95rem;
}

.biltong-pack p,
.price-card p,
.price-card li {
  color: #303030;
  line-height: 1.65;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li {
  border-top: 1px solid var(--soft-line);
  padding-top: 8px;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bulk-price-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  margin-bottom: 16px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 34px);
  background: var(--white);
}

.bulk-price-board img {
  width: 100%;
  max-height: 720px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #f5f2eb;
}

.bulk-price-board h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.bulk-price-board p:not(.eyebrow) {
  color: #303030;
  line-height: 1.75;
}

.bulk-price-board a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.biltong-cta {
  margin: 0 auto clamp(48px, 8vw, 88px);
}

.biltong-cta > div {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
    url("assets/Biltong%20Page/Biltong%20selection.webp") center / cover;
  color: var(--white);
}

.biltong-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
}

.specials {
  display: grid;
  gap: 34px;
}

.banger-panel,
.special-branches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.banger-card,
.special-branches article {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 24px);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.banger-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #6a6a6a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.banger-card h3,
.special-branches h3 {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.banger-card p,
.special-branches p {
  color: #303030;
  line-height: 1.65;
}

.special-branches {
  padding-top: 4px;
}

.local-seo {
  display: grid;
  gap: 28px;
}

.local-seo .section-heading p {
  max-width: 920px;
  color: #303030;
  line-height: 1.75;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-grid article,
.seo-faq details {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
}

.seo-grid article {
  padding: clamp(20px, 2vw, 26px);
}

.seo-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.seo-grid p,
.seo-faq p {
  color: #303030;
  line-height: 1.68;
}

.seo-grid a {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 2px solid var(--black);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-faq {
  display: grid;
  gap: 10px;
}

.seo-faq details {
  padding: 0 20px;
}

.seo-faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.seo-faq p {
  padding-bottom: 18px;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.specials-grid.flyer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.special-card {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.special-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--black);
}

.flyer-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f4f1eb;
}

.special-card div {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 20px;
}

.special-tag {
  align-self: flex-start;
  margin-bottom: 18px;
  color: #6a6a6a;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.special-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.special-card p {
  margin-bottom: 18px;
  color: #303030;
  line-height: 1.65;
}

.special-price {
  margin-top: auto;
  color: var(--black);
  font-size: 0.94rem;
}

.special-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 0 !important;
  margin-top: 14px;
  padding: 0 !important;
}

.special-actions a,
.special-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.special-actions button {
  background: var(--white);
  color: var(--black);
}

.flyer-card div {
  min-height: 190px;
}

.special-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.84);
}

.special-lightbox.is-open {
  display: flex;
}

.special-lightbox img {
  max-width: min(96vw, 860px);
  max-height: 88svh;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
}

.special-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(44px, 6vw, 74px) 0;
  align-items: center;
  background: var(--white);
}

.video-frame,
.image-frame {
  align-self: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.split-feature .video-frame,
.split-feature .image-frame {
  margin-left: clamp(18px, 3vw, 38px);
}

.video-frame video,
.image-frame img {
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  object-fit: cover;
}

.about-slider-frame img {
  transition: opacity 220ms ease, transform 260ms ease;
}

.about-slider-frame img.is-changing {
  opacity: 0.35;
  transform: scale(1.015);
}

.feature-copy {
  align-self: center;
  padding: 0;
}

.feature-copy p {
  max-width: 580px;
  color: #303030;
}

.feature-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
}

.reviews {
  display: grid;
  gap: 44px;
}

.review-grid figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

.review-grid blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.22;
}

.review-grid figcaption {
  margin-top: 28px;
  color: #666;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--black);
}

.gallery img {
  width: 100%;
  height: clamp(360px, 48vw, 680px);
  object-fit: cover;
  transition: filter 220ms ease, transform 320ms ease;
}

.gallery img:hover {
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.012);
}

.visit {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.visit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(18px, 3vw, 32px);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  color: var(--white);
  background: var(--black);
}

.locations-heading {
  grid-column: 1 / -1;
}

.locations-heading h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.6vw, 3.65rem);
}

.visit-card p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.location-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.location-list h3 {
  margin-bottom: 7px;
  font-size: 0.86rem;
  line-height: 1.25;
}

.location-list p {
  margin-bottom: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.location-card dl {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
}

.location-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
}

.location-card dt,
.location-card dd {
  margin: 0;
}

.location-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.location-card dd {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.35;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.location-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.location-actions a:first-child {
  background: var(--white);
  color: var(--black);
}

.hours {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.hours dl {
  margin: 0;
}

.hours div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.hours dt,
.hours dd {
  font-size: 0.84rem;
  line-height: 1.35;
}

.site-footer {
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 54px) 26px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.55fr));
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand p {
  margin: 0;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-brand span {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--white);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.social-instagram .social-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-tiktok .social-icon {
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .header-action {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--radius);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
  }

  .nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

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

  .nav-toggle span + span {
    margin-top: 0;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 22;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 104px 18px 28px;
    overflow-y: auto;
    background: rgba(5, 5, 5, 0.84);
    backdrop-filter: blur(18px);
    color: var(--white);
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    font-weight: 650;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a::after {
    display: none;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 1;
    font-weight: 650;
  }

  .mobile-nav-action {
    display: flex;
    justify-content: center;
    min-height: 52px;
    margin-top: 22px;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    margin: -46px 18px 24px auto;
  }

  .intro,
  .split-feature,
  .visit-card,
  .find-layout,
  .home-video-feature,
  .product-premium,
  .honey-marinade,
  .biltong-intro,
  .biltong-menu-feature,
  .bulk-price-board,
  .branch-contact,
  .store-showcase,
  .review-hero,
  .find-hero {
    grid-template-columns: 1fr;
  }

  .offering-grid,
  .review-grid,
  .offering-grid.expanded,
  .product-premium-images,
  .detail-grid,
  .customer-video-grid,
  .biltong-feature-grid,
  .biltong-media-grid,
  .price-card-grid,
  .banger-panel,
  .special-branches,
  .seo-grid,
  .specials-grid,
  .counter-gallery,
  .location-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-premium-images img,
  .honey-marinade-video video,
  .biltong-media-grid video,
  .biltong-media-grid img {
    height: 340px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .site-header.is-open {
    min-height: 68px;
  }

  .brand span {
    max-width: 220px;
    font-size: 0.82rem;
  }

  .hero-media img {
    animation: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 118px 0 64px;
  }

  .hero-icon-row a {
    flex: 1 1 160px;
    justify-content: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0) 42%);
  }

  .hero-panel {
    width: calc(100% - 32px);
    margin: -40px 16px 18px;
  }

  .section-pad {
    width: calc(100% - 32px);
  }

  .stat-row,
  .offering-grid,
  .review-grid,
  .gallery,
  .offering-grid.expanded,
  .product-premium-images,
  .honey-marinade,
  .biltong-feature-grid,
  .biltong-media-grid,
  .price-card-grid,
  .detail-grid,
  .customer-video-grid,
  .banger-panel,
  .special-branches,
  .seo-grid,
  .specials-grid,
  .counter-gallery,
  .branch-contact,
  .location-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-premium-images img,
  .honey-marinade-video video,
  .biltong-media-grid video,
  .biltong-media-grid img {
    height: 280px;
  }

  .bulk-price-board {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .biltong-menu-image img {
    max-height: 520px;
  }

  .biltong-pack,
  .biltong-pack:nth-child(5) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .biltong-pack img {
    height: 240px;
  }

  .page-hero {
    min-height: 64svh;
    padding: 120px 16px 54px;
  }

  .offering-grid article,
  .review-grid figure {
    min-height: 0;
  }

  .offering-grid span {
    margin-bottom: 18px;
  }

  .offering-image {
    height: 210px;
  }

  .special-card img {
    height: 190px;
  }

  .flyer-card img {
    height: auto;
  }

  .special-card div {
    min-height: 0;
    padding: 18px;
  }

  .counter-gallery img {
    height: 280px;
  }

  .showcase img {
    min-height: 520px;
  }

  .split-feature {
    min-height: 0;
    gap: 22px;
    padding: 28px 0 34px;
  }

  .video-frame video,
  .image-frame img {
    height: 300px;
  }

  .split-feature .video-frame,
  .split-feature .image-frame {
    margin-left: 0;
  }

  .feature-copy {
    padding: 0 0 8px;
  }

  .page-split .image-frame img {
    height: 170px;
  }

  .page-split .feature-copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .page-split .feature-copy p {
    color: #303030;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .gallery {
    padding: 8px;
  }

  .gallery img {
    height: 430px;
  }

  .home-video-card video {
    height: 520px;
  }

  .store-image-frame img {
    height: 320px;
  }

  .store-media {
    grid-template-columns: 1fr;
  }

  .store-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .store-thumbs button {
    flex: 0 0 58px;
    width: 58px;
  }

  .store-thumbs button:hover,
  .store-thumbs button.is-active {
    transform: translateY(-2px);
  }

  .customer-video-grid video {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .visit-card {
    padding: 18px;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 460px;
  }

  .branch-card iframe {
    height: 150px;
  }

  .branch-card p {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media img,
  .hero-panel,
  .hero-icon-row a,
  .ticker div {
    animation: none !important;
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
