/* =========================================================
   Fruit Stop — Modern Static Website
   Organised into: variables, reset, layout, components,
   page sections, utilities and responsive rules.
   ========================================================= */

:root {
  --black-950: #050505;
  --black-900: #111111;
  --black-800: #1b1b1b;
  --black-700: #2b2b2b;
  --black-600: #3a3a3a;
  --grey-100: #ececec;
  --grey-050: #f7f7f7;
  --red-700: #a60000;
  --red-600: #d40000;
  --red-500: #f22525;
  --red-400: #ff4747;
  --white: #ffffff;
  --ink: #151515;
  --muted: #626262;
  --line: #dedede;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: min(1160px, calc(100% - 40px));
  --header-height: 84px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4 {
  color: var(--black-950);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--black-800);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--red-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--black-950);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 128px);
}

.section--soft {
  background: var(--grey-050);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--black-950);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--red-600);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--black-800);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn:hover {
  background: var(--black-700);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.btn--red {
  background: var(--red-600);
  box-shadow: 0 10px 26px rgba(211, 59, 50, 0.22);
}

.btn--red:hover {
  background: var(--red-700);
  box-shadow: 0 14px 34px rgba(211, 59, 50, 0.3);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.btn--light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black-950);
}

.btn--outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--black-900);
  box-shadow: none;
}

.btn--outline:hover {
  border-color: var(--black-800);
  background: var(--grey-050);
  box-shadow: none;
}

.btn__icon {
  width: 19px;
  height: 19px;
  flex: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: var(--container);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: 220px;
  flex: none;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a:not(.btn) {
  position: relative;
  padding: 12px 14px;
  color: #303030;
  font-size: 0.95rem;
  font-weight: 750;
  transition: color var(--transition);
}

.site-nav a:not(.btn)::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--red-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] {
  color: var(--black-800);
}

.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Navbar call dropdown */
.call-dropdown {
  position: relative;
  flex: none;
}

.call-dropdown__toggle {
  min-height: 48px;
  padding-inline: 18px 15px;
  cursor: pointer;
}

.call-dropdown__chevron {
  width: 17px;
  height: 17px;
  margin-left: 2px;
  transition: transform var(--transition);
}

.call-dropdown.is-open .call-dropdown__chevron {
  transform: rotate(180deg);
}

.call-dropdown__menu {
  position: absolute;
  z-index: 1010;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 280px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.call-dropdown.is-open .call-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .call-dropdown__menu a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.25;
  transition: background var(--transition), color var(--transition);
}

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

.site-nav .call-dropdown__menu a:hover,
.site-nav .call-dropdown__menu a:focus-visible {
  background: var(--grey-050);
  color: var(--black-800);
}

.call-dropdown__menu strong {
  color: var(--black-900);
}

.call-dropdown__menu span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--black-900);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-overlay {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100vh - var(--header-height)));
  align-items: center;
  overflow: hidden;
  background: var(--black-950);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 18% 22%, rgba(212, 0, 0, 0.24), transparent 34%),
    url("images/hero-apples.webp") 58% center / cover no-repeat;
  content: "";
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -36%;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.03), 0 0 0 180px rgba(255, 255, 255, 0.02);
  content: "";
}

.hero-inner {
  width: var(--container);
  margin-inline: auto;
  padding-block: 90px;
}

.hero-content {
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--red-400);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  text-wrap: balance;
}

.hero h1 span {
  color: var(--red-400);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 50px;
}

.hero-meta__item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-meta__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.hero-meta__icon svg {
  width: 18px;
  height: 18px;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 15px;
  padding: 24px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item__icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: none;
  place-items: center;
  border-radius: 15px;
  background: var(--grey-100);
  color: var(--black-800);
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--black-950);
  font-size: 1rem;
}

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.category-card:nth-child(1),
.category-card:nth-child(4) {
  grid-column: span 7;
}

.category-card:nth-child(2),
.category-card:nth-child(3) {
  grid-column: span 5;
}

.category-card img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.88) 100%);
  content: "";
}

.category-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.category-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.category-card p {
  max-width: 520px;
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-weight: 850;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.055);
}

.category-card:hover .text-link svg {
  transform: translateX(5px);
}

/* Split story */
.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  right: -26px;
  bottom: 32px;
  width: 178px;
  padding: 23px;
  border-radius: 20px;
  background: var(--red-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge strong {
  font-size: 2rem;
  line-height: 1;
}

.image-badge span {
  margin-top: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.split__content h2 {
  margin-bottom: 22px;
}

.split__content p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #303030;
  font-weight: 700;
}

.check-list__icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--black-800);
}

.check-list__icon svg {
  width: 14px;
  height: 14px;
}

/* Values */
.value-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  border-color: rgba(212, 0, 0, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.value-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: var(--grey-100);
  color: var(--black-800);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
}

/* Testimonials */
.testimonial-shell {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.testimonial {
  min-width: 100%;
  padding: 10px 70px;
  text-align: center;
}

.quote-mark {
  margin-bottom: 10px;
  color: var(--red-400);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
}

.testimonial blockquote {
  margin-bottom: 26px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.5;
}

.stars {
  margin-bottom: 13px;
  color: var(--red-400);
  letter-spacing: 0.18em;
}

.testimonial cite {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 800;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.slider-btn:hover {
  background: var(--white);
  color: var(--black-950);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

/* Branches */
.branch-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.branch-card__image {
  height: 220px;
  overflow: hidden;
}

.branch-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.branch-card:hover .branch-card__image img {
  transform: scale(1.05);
}

.branch-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.branch-card h3 {
  margin-bottom: 6px;
}

.branch-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 50px;
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.55;
}

.branch-card .branch-address > svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: var(--red-600);
}

.branch-card__image--silverton img {
  object-position: center 52%;
}

.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--red-600);
  font-size: 1.05rem;
  font-weight: 850;
}

.branch-phone svg {
  width: 18px;
  height: 18px;
}

.hours {
  display: grid;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}

.hours strong {
  color: #303030;
}

.branch-card .button-row {
  margin-top: auto;
}

.branch-card .btn {
  flex: 1;
  min-width: 130px;
  padding-inline: 16px;
}

/* CTA */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: clamp(36px, 6vw, 66px);
  border-radius: var(--radius-lg);
  background: var(--red-600);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  top: -170px;
  right: -110px;
  width: 360px;
  height: 360px;
}

.cta-panel::after {
  right: 55px;
  bottom: -250px;
  width: 480px;
  height: 480px;
}

.cta-panel h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-panel p {
  max-width: 700px;
}

/* Footer */
.site-footer {
  padding-top: 72px;
  background: #050505;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 48px;
  padding-bottom: 54px;
}

.footer-brand {
  width: 250px;
  max-height: 82px;
  margin-bottom: 20px;
  object-fit: contain;
  opacity: 1;
}

.footer-about {
  max-width: 400px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.social-links a:hover {
  background: var(--white);
  color: var(--black-950);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Inner page hero */
.page-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: center;
  overflow: hidden;
  background: var(--black-950);
  color: var(--white);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.58)), var(--page-hero-image) center / cover no-repeat;
  content: "";
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(212, 0, 0, 0.24), transparent 28%);
  content: "";
}

.page-hero__inner {
  width: var(--container);
  margin-inline: auto;
  padding-block: 82px;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 750;
}

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

/* Products page */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.product-card__media {
  height: 285px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.product-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h2 {
  margin-bottom: 11px;
  font-size: 1.55rem;
}

.product-card p {
  color: var(--muted);
}

.product-card__media img[src$="fresh-produce.webp"] {
  object-position: center 46%;
}

.product-card__media img[src$="pet-food.webp"] {
  object-position: center 42%;
}

.range-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid #efb7b7;
  border-radius: var(--radius-sm);
  background: #fff3f3;
  color: #6b1d1d;
}

.range-note svg {
  width: 25px;
  height: 25px;
  flex: none;
  color: var(--red-400);
}

/* About page */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline::before {
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  padding-top: 60px;
  text-align: center;
}

.timeline-item::before {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 1px var(--line);
  content: "";
  transform: translateX(-50%);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black-800);
  font-size: 1.25rem;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.93rem;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.team-card__image {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: var(--grey-100);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.04);
}

.team-card__body {
  padding: 28px;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  display: block;
  margin-bottom: 16px;
  color: var(--red-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Reveal enhancement */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* Business hours and live status */
.business-hours-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.business-hours-section::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 0, 0, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.hours-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.hours-intro h2 {
  margin-bottom: 18px;
}

.hours-intro .lead {
  max-width: 560px;
  margin-bottom: 28px;
}

.open-status,
.branch-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
}

.open-status {
  min-height: 50px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  background: var(--grey-050);
  color: var(--black-900);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 50%;
  background: #777;
  box-shadow: 0 0 0 5px rgba(119, 119, 119, 0.12);
}

.open-status.is-open {
  border-color: #b8dfc2;
  background: #f0fff4;
  color: #146b2e;
}

.open-status.is-open .status-dot {
  background: #20a54a;
  box-shadow: 0 0 0 5px rgba(32, 165, 74, 0.14);
}

.open-status.is-closed {
  border-color: #efb7b7;
  background: #fff3f3;
  color: #8d1717;
}

.open-status.is-closed .status-dot {
  background: var(--red-600);
  box-shadow: 0 0 0 5px rgba(212, 0, 0, 0.13);
}

.status-detail {
  margin: 15px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.status-time {
  display: flex;
  max-width: 420px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.status-time strong {
  color: var(--black-900);
}

.hours-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hours-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 28px;
  background: var(--black-950);
  color: rgba(255, 255, 255, 0.72);
}

.hours-card__header h3 {
  margin: 0;
  color: var(--white);
}

.hours-card__header span {
  flex: none;
  font-size: 0.86rem;
  font-weight: 800;
}

.hours-list {
  display: grid;
  padding: 10px 28px;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(115px, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row strong {
  color: var(--black-900);
}

.hours-row span {
  font-weight: 800;
  text-align: right;
}

.hours-row.is-today {
  border-bottom-color: transparent;
  background: #fff1f1;
  color: var(--red-700);
}

.hours-row.is-today strong::after {
  display: inline-block;
  margin-left: 8px;
  color: var(--red-600);
  content: "Today";
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.hours-note {
  padding: 18px 28px 24px;
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--grey-050);
  color: var(--muted);
  font-size: 0.87rem;
}

.branch-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}

.branch-card__heading h3 {
  margin: 0;
}

.branch-status {
  flex: none;
  padding: 5px 10px;
  background: var(--grey-100);
  color: var(--black-700);
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.branch-status.is-open {
  background: #e8f8ed;
  color: #146b2e;
}

.branch-status.is-closed {
  background: #ffe9e9;
  color: #8d1717;
}

@media (max-width: 900px) {
  .hours-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .business-hours-section::before {
    display: none;
  }

  .hours-card__header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .hours-list {
    padding-inline: 14px;
  }

  .hours-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 10px;
  }

  .hours-note {
    padding-inline: 22px;
  }

  .status-time {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .branch-card__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 1040px) {
  :root {
    --container: min(100% - 32px, 960px);
  }

  .brand {
    width: 220px;
  }

  .site-nav a:not(.btn) {
    padding-inline: 10px;
  }

  .call-dropdown__toggle {
    padding-inline: 15px 13px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .grid--3,
  .product-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .brand {
    width: 212px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    display: none;
    width: min(86vw, 370px);
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 106px 24px 30px;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
    transform: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 15px 16px;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .site-nav a:not(.btn):hover,
  .site-nav a[aria-current="page"] {
    background: var(--grey-050);
  }

  .site-nav .btn {
    margin-top: 12px;
  }

  .call-dropdown {
    width: 100%;
  }

  .call-dropdown__toggle {
    width: 100%;
  }

  .call-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    padding: 7px;
    border-radius: 15px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .call-dropdown.is-open .call-dropdown__menu {
    display: grid;
  }

  .site-nav .call-dropdown__menu a {
    padding: 13px;
  }

  .mobile-overlay {
    position: fixed;
    z-index: 999;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
  }

  .mobile-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 100%), url("images/hero-apples.webp") 64% center / cover no-repeat;
  }

  .hero-meta {
    gap: 16px;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .category-card,
  .category-card:nth-child(n) {
    grid-column: span 6;
    min-height: 330px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .split__media img {
    min-height: 430px;
  }

  .image-badge {
    right: 20px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    text-align: left;
  }

  .timeline-item::before {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding-block: 70px;
  }

  .brand {
    width: 190px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-inner {
    padding-block: 74px 100px;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .product-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:nth-child(n) {
    grid-column: auto;
    min-height: 390px;
  }

  .category-card__content {
    padding: 25px;
  }

  .split__media img {
    min-height: 360px;
  }

  .image-badge {
    right: 15px;
    bottom: 15px;
    width: 155px;
    padding: 18px;
  }

  .testimonial {
    padding-inline: 4px;
  }

  .branch-card__image {
    height: 210px;
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 460px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Mobile reliability improvements */
@supports not (height: 100dvh) {
  @media (max-width: 820px) {
    .site-nav { height: 100vh; }
  }
}

@media (max-width: 820px) {
  .header-inner { gap: 14px; }
  .site-nav { overflow-y: auto; overscroll-behavior: contain; }
  .site-nav a, .site-nav button { min-height: 48px; }
  .page-hero__inner { padding-block: 64px; }
}

@media (max-width: 420px) {
  :root { --container: calc(100% - 22px); }
  .brand { width: 162px; }
  .menu-toggle { width: 44px; height: 44px; }
  .site-nav { width: min(92vw, 350px); padding-inline: 18px; }
  .hero { min-height: 660px; }
  .hero-inner { padding-block: 62px 92px; }
  .category-card, .category-card:nth-child(n) { min-height: 350px; }
  .branch-card__body, .product-card__body, .team-card__body { padding: 22px; }
}

/* Prevent intrinsic image and card widths from forcing horizontal scrolling. */
.split,
.split > *,
.hours-layout,
.hours-layout > *,
.grid > *,
.product-grid > *,
.team-grid > *,
.category-grid > * {
  min-width: 0;
}

.split__media img,
.product-card img,
.team-card img,
.branch-card img,
.category-card img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}
