:root {
  /* Space reserved for fixed site nav (padding + logo row); keeps hero content below bar */
  --site-nav-offset: 108px;
  --navy: #2e4573;
  --green: #3d5940;
  --text: #0a0a0a;
  --text-secondary: #525252;
  --text-muted-nav: #d4d4d4;
  --surface-tint: #e3ece3;
  --border: #e5e5e5;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-2xl: 32px;
  --radius-40: 40px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-card: 0 1px 3px rgba(13, 13, 18, 0.05), 0 1px 2px rgba(13, 13, 18, 0.04);
  --shadow-feature: 0 24px 48px -12px rgba(13, 13, 18, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

/* Logos and icons: preserve aspect ratio (never stretch to fill width) */
.nav-logo img,
.footer-logo,
.partners-icon,
.btn-arrow,
.btn--outline img,
.carousel-nav img,
.footer-socials img,
.footer-phone img,
.quote-icon,
.why-step img,
.product-card__loc img,
.social-btn img {
  object-fit: contain;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1312px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

/* —— Typography (matches Figma: eyebrow 24px body, display ~70px headers) —— */
.eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
}

.display-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.display-title--section {
  max-width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.center .display-title--section {
  margin-left: auto;
  margin-right: auto;
}

.section-head .display-title--section,
.blog-head .display-title--section,
.gallery-head .display-title--section {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.display-title--light {
  color: #fff;
  max-width: 14ch;
  margin-left: 0;
}

.lead {
  margin: 20px auto 0;
  max-width: 742px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.blog-lead {
  margin: 16px 0 0;
  max-width: 558px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(937px, 100vh);
  color: #fff;
  padding-top: var(--site-nav-offset);
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
}

/* Fixed bar (outside header) so it stays on screen for full page scroll; .is-solid via sticky-nav.js */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  width: 100%;
  padding: 28px 0 20px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.sticky-nav.is-solid {
  background: #000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  position: relative;
  z-index: 2;
  padding: 0 0 48px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
}

/* Logo: inline-block avoids flex stretch on the img */
.nav-logo {
  display: inline-block;
  flex-shrink: 0;
  line-height: 0;
  vertical-align: middle;
}

.nav-logo img {
  display: block;
  height: 51px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  display: inline-block;
  padding: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted-nav);
}

.nav-links a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.nav-search-toggle {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 0;
  min-width: 0;
  height: 40px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted-nav);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: width 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.sticky-nav.is-solid .nav-search-toggle {
  width: 40px;
  min-width: 40px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-search-toggle:hover,
.nav-search-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.nav-search-toggle__icon {
  display: block;
}

.nav-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.social-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn img {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Primary nav: desktop = centered links; mobile = slide-over drawer (see @media) */
.nav-primary {
  display: flex;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav-primary__backdrop {
  display: none;
}

.nav-primary__panel {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-burger {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted-nav);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-burger:hover,
.nav-burger:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.nav-burger__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.nav-burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.sticky-nav.is-solid .nav-burger {
  color: #fff;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-mobile-open {
  overflow: hidden;
}

.hero-copy {
  text-align: center;
  margin: 72px auto 40px;
  max-width: 1086px;
}

.hero-intro {
  margin: 0 auto 32px;
  max-width: 742px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.hero .display-title {
  color: #fff;
  max-width: none;
}

/* Search panel */
.search-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 207px;
  gap: 24px;
  align-items: end;
  max-width: 1044px;
  margin: 0 auto;
  padding: 33px 23px;
  border-radius: var(--radius-md);
  background: rgba(116, 116, 116, 0.3);
  border: 1px solid rgba(216, 216, 216, 0.22);
  backdrop-filter: blur(7px);
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: #fafafa;
}

.field-input {
  position: relative;
}

.field-input input {
  width: 100%;
  height: 64px;
  padding: 0 44px 0 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(216, 216, 216, 0.22);
  background: rgba(116, 116, 116, 0.11);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
}

.field-input input[type="date"] {
  color-scheme: dark;
}

.field-input input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
  cursor: pointer;
}

/* Native date control — hide duplicate Figma calendar glyph */
.field-input.has-calendar:has(input[type="date"])::after {
  display: none;
}

.field-input select {
  width: 100%;
  height: 64px;
  padding: 0 44px 0 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(216, 216, 216, 0.22);
  background: rgba(116, 116, 116, 0.11);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.field-input select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 1px;
}

.field-input select option {
  color: #0a0a0a;
  background: #fff;
}

.field-input.has-chevron::after,
.field-input.has-calendar::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: center / contain no-repeat;
  pointer-events: none;
}

.field-input.has-chevron::after {
  background-image: url("https://sip.liamsummersdev.co.uk/figma-assets/image/c5239b23-1f74-48a9-a091-947708927ad8");
}

.field-input.has-calendar::after {
  background-image: url("https://sip.liamsummersdev.co.uk/figma-assets/image/88c10f11-d749-4ca8-aa05-cb58d0251a58");
}

.btn-search {
  height: 64px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Global search modal (same fields as home hero search) */
.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--site-nav-offset) + 12px) 24px 24px;
  overflow: auto;
}

.site-search-modal[hidden] {
  display: none !important;
}

.site-search-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.site-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1044px, 100%);
  pointer-events: auto;
}

.site-search-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.site-search-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #fff;
}

.site-search-modal__close {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-search-modal__close:hover,
.site-search-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.search-panel--modal {
  margin: 0;
}

body.site-search-open {
  overflow: hidden;
}

/* —— Sections —— */
.section {
  padding: 80px 0;
}

.section--white {
  background: #fff;
}

.section--tint {
  background: var(--surface-tint);
}

.section--tight-bottom {
  padding-bottom: 48px;
}

.section--why {
  padding-bottom: 48px;
}

.section--gallery {
  padding: 64px 0 80px;
  overflow-x: hidden;
}

.section--partners {
  padding: 32px 0 48px;
  background: #fff;
  overflow-x: hidden;
}

.section--testimonial {
  padding-bottom: 100px;
}

.section--blog {
  padding-top: 48px;
}

.section--newsletter {
  padding: 80px 0 100px;
  background: #fff;
}

/* Featured row (3 tall cards) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  position: relative;
  min-height: 518px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 40%, rgba(102, 102, 102, 0.55) 100%);
  pointer-events: none;
}

.feature-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 48px 32px 32px;
  color: #fff;
}

.feature-card__title {
  margin: 0;
  max-width: 340px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.feature-card__meta {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-feature);
}

.btn--green {
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  margin-top: auto;
}

.btn-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  box-shadow: none;
}

.btn--outline img {
  width: 32px;
  height: 32px;
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
  font-size: 18px;
  padding: 18px;
}

.btn--block {
  width: 100%;
}

/* Category chips */
.category-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.image-card--short {
  min-height: 201px;
}

.image-card--tall {
  min-height: 429px;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.image-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 90%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.image-card--tall span {
  left: 50%;
  top: auto;
  bottom: 48px;
  transform: translateX(-50%);
}

/* Carousel rail decoration */
.carousel-rail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin-top: 48px;
}

.carousel-rail--split {
  justify-content: space-between;
  flex-wrap: wrap;
}

.carousel-line {
  flex: 1;
  min-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46, 69, 115, 0.25), transparent);
}

.carousel-dots {
  display: flex;
  gap: 14px;
}

.carousel-nav {
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(46, 69, 115, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav img {
  width: 24px;
  height: 24px;
}

.carousel-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel-nav--muted {
  opacity: 0.5;
}

/* Section head */
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: minmax(280px, 517px) 1fr;
  gap: 48px;
  align-items: start;
}

.why-images {
  position: relative;
  min-height: 640px;
}

.why-img--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 464px;
  max-width: 100%;
  height: 632px;
  object-fit: cover;
  border-radius: var(--radius-40);
  box-shadow: 0 24px 48px rgba(13, 13, 18, 0.18);
}

.why-img--overlap {
  position: absolute;
  left: 66px;
  top: 435px;
  width: min(451px, 85%);
  height: 451px;
  border-radius: var(--radius-40);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-img--overlap > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-deco {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 173px;
  height: auto;
  max-width: 55%;
  object-fit: contain;
}

.why-copy .display-title--section {
  margin-left: 0;
  max-width: none;
}

.why-text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.why-text p {
  margin: 0 0 1em;
}

.why-text p:last-child {
  margin-bottom: 0;
}

.why-steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 24px 32px;
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 8px rgba(13, 13, 18, 0.02), 0 5px 10px rgba(13, 13, 18, 0.04);
}

.why-step img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}

.why-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}

.why-step p {
  margin: 4px 0 0;
  font-size: 18px;
  color: var(--navy);
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 185px;
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.sponsor-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
}

.sponsor-logo img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Product cards */
.product-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.product-card__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 171px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  flex: 1;
}

.product-card__loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}

.product-card__loc img {
  width: 24px;
  height: 24px;
}

/* Gallery + partners: full-bleed horizontal scroll with edge fade to white */
.scroll-strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.scroll-strip__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 10vw, 140px);
  z-index: 2;
  pointer-events: none;
}

.scroll-strip__fade--left {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.scroll-strip__fade--right {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Horizontal carousel tracks (arrow-controlled scroll; gap = space between items) */
.carousel-track {
  --carousel-gap: 32px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--carousel-gap);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(24px, calc(50vw - 656px));
  padding: 28px max(24px, calc(50vw - 656px));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track--partners {
  --carousel-gap: 48px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Global img { max-width: 100% } would shrink all logos into one row — disable here so overflow scroll works */
.carousel-track--partners img {
  flex: 0 0 auto;
  flex-shrink: 0;
  max-width: none;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-carousel__slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(420px, 78vw);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-40);
}

.gallery-carousel__slide--tall {
  height: min(632px, 52vh);
  min-height: 320px;
}

.gallery-carousel__slide--short {
  height: min(362px, 36vh);
  min-height: 240px;
}

.gallery-carousel__slide img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-40);
  object-fit: cover;
  object-position: center;
}

.scroll-strip--gallery {
  min-height: min(680px, 58vh);
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 16px;
}

.gallery-head .display-title--section {
  margin-left: 0;
}

.gallery-head__nav {
  display: flex;
  gap: 16px;
}

.partners-carousel-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.partners-rule-wrap {
  margin-top: 8px;
}

.partners-rule {
  height: 1px;
  background: rgba(46, 69, 115, 0.15);
}

/* Testimonial carousel */
.testimonial-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-row .carousel-nav {
  flex-shrink: 0;
}

.testimonial-carousel {
  flex: 1 1 0;
  min-width: 0;
  max-width: min(1007px, 100%);
}

.testimonial-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  outline: none;
}

.testimonial-carousel__track:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--navy);
  border-radius: var(--radius-xl);
}

.testimonial-carousel__track::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 2px 0 4px;
  box-sizing: border-box;
  transition: opacity 0.45s ease;
  opacity: 0.55;
}

.testimonial-carousel__slide.is-active {
  opacity: 1;
}

.testimonial-carousel__slide:not(.is-active) .testimonial-card {
  transform: translateY(6px);
  box-shadow: 0 2px 8px rgba(13, 13, 18, 0.06);
}

.testimonial-carousel__slide .testimonial-card {
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s ease;
}

.testimonial-carousel__slide.is-active .testimonial-card {
  transform: translateY(0);
  box-shadow: var(--shadow-card);
}

.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(46, 69, 115, 0.22);
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease;
}

.testimonial-dot:hover {
  background: rgba(46, 69, 115, 0.45);
}

.testimonial-dot.is-active {
  background: var(--navy);
  transform: scale(1.2);
}

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

  .testimonial-carousel__slide,
  .testimonial-carousel__slide .testimonial-card,
  .testimonial-dot {
    transition: none;
  }

  .nav-primary__backdrop,
  .nav-primary__panel,
  .nav-burger__bar {
    transition: none !important;
  }
}

.testimonial-card {
  display: grid;
  grid-template-columns: 306px 1fr;
  gap: 40px;
  width: 100%;
  max-width: none;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  align-items: start;
}

.testimonial-card__photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 322px;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.testimonial-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-place {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}

/* Blog */
.blog-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
}

.blog-head .display-title--section {
  margin-left: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

a.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-card > img {
  width: 100%;
  height: 319px;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
}

.blog-card p {
  margin: 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.blog-card time {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* Newsletter */
.newsletter-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px;
  min-height: 585px;
  border-radius: var(--radius-2xl);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.newsletter-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background: url("https://sip.liamsummersdev.co.uk/figma-assets/image/bc8031ab-9da7-47fe-9c93-da3ab2a2f58f") top left / 600px auto repeat;
  pointer-events: none;
}

.newsletter-copy,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-copy p {
  margin: 32px 0 0;
  max-width: 450px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 572px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  height: 64px;
  padding: 0 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fafafa;
  font-family: var(--font-body);
  font-size: 16px;
}

.newsletter-check {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  cursor: pointer;
}

.newsletter-check input {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  accent-color: var(--green);
}

/* Footer */
.site-footer {
  background: #fff;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 388px 1fr;
  gap: 48px 80px;
  padding-bottom: 48px;
}

/* align-self: start — grid row stretch must not size the logo column to full row height */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  align-self: start;
  min-width: 0;
}

.footer-logo-wrap {
  display: inline-block;
  line-height: 0;
  max-width: 388px;
}

.footer-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 388px;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand > p {
  margin: 17px 0 0;
  font-size: 20px;
  color: var(--text-secondary);
}

.footer-phone {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
}

.footer-phone img {
  width: 48px;
  height: 48px;
}

.footer-phone span {
  display: block;
  font-size: 18px;
  color: var(--text-secondary);
}

.footer-phone a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.footer-follow {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.footer-follow > span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46, 69, 115, 0.06);
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}

.footer-links h3 {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 32px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 40px 0 48px;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid rgba(82, 82, 82, 0.25);
  margin: 0 0 40px;
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-secondary);
}

/* Mobile navigation: hamburger + slide-over drawer */
@media (max-width: 900px) {
  :root {
    --site-nav-offset: 84px;
  }

  /* Full-screen .nav-primary (z-index 350) must sit BELOW the bar chrome */
  .nav-logo,
  .nav-actions,
  .nav-burger {
    position: relative;
    z-index: 400;
  }

  .sticky-nav {
    padding: 12px 0 12px;
    padding-top: max(12px, env(safe-area-inset-top, 0px));
  }

  .sticky-nav .nav-search-toggle {
    width: 40px;
    min-width: 40px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-logo img {
    height: 40px;
    max-height: 40px;
    max-width: 280px;
    width: auto;
  }

  .top-nav {
    flex-wrap: nowrap;
    gap: 8px 12px;
    align-items: center;
  }

  .nav-actions {
    margin-left: auto;
    gap: 4px;
  }

  .nav-socials {
    gap: 4px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }

  .nav-primary {
    position: fixed;
    inset: 0;
    z-index: 350;
    flex: none;
    justify-content: flex-end;
    pointer-events: none;
  }

  .nav-primary.is-open {
    pointer-events: auto;
  }

  .nav-primary__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .nav-primary.is-open .nav-primary__backdrop {
    opacity: 1;
  }

  .nav-primary__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    justify-content: flex-start;
    align-items: stretch;
    background: #0a0a0a;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: max(20px, env(safe-area-inset-top, 0px)) 20px max(28px, env(safe-area-inset-bottom, 0px));
  }

  .nav-primary.is-open .nav-primary__panel {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    flex: none;
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 16px 12px;
    font-size: 22px;
    color: #e5e5e5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a.active {
    color: #fff;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-burger {
    display: grid;
    place-items: center;
  }

  .hero-copy {
    margin: 48px auto 28px;
  }

  .hero-intro {
    font-size: clamp(17px, 4.2vw, 20px);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-carousel__slide {
    width: min(360px, 85vw);
  }

  .gallery-carousel__slide--tall {
    height: min(520px, 48vh);
  }

  .gallery-carousel__slide--short {
    height: min(300px, 34vh);
  }

  .scroll-strip--gallery {
    min-height: min(560px, 54vh);
  }

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

  .why-images {
    min-height: 480px;
  }

  .why-img--main {
    position: relative;
    width: 100%;
    height: 400px;
  }

  .why-img--overlap {
    position: relative;
    left: 0;
    top: -80px;
    margin-left: auto;
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel .btn-search {
    grid-column: 1 / -1;
  }

  .feature-grid,
  .category-grid,
  .region-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .section--gallery {
    padding: 48px 0 56px;
  }

  .section--newsletter {
    padding: 56px 0 72px;
  }

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

  .feature-grid,
  .category-grid,
  .region-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .display-title--section {
    font-size: clamp(36px, 10vw, 52px);
  }

  .producers-layout,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

  .blog-cards-grid,
  .discover-grid,
  .producers-grid {
    grid-template-columns: 1fr;
  }

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

/* —— Inner pages (Figma: Producers, Blogs, FAQ, Our Story, Discover) —— */
.page-hero {
  position: relative;
  min-height: min(541px, 72vh);
  color: #fff;
  padding-top: var(--site-nav-offset);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
}

.page-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 48px 16px 64px;
  max-width: 1088px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

/* Override global img { display: block } so arrows stay inline with labels */
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb img {
  display: block;
  width: 22px;
  height: 22px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

.breadcrumb__sep {
  width: 24px;
  height: 24px;
  opacity: 0.95;
}

.page-hero .display-title {
  color: #fff;
  margin: 0;
}

.page-main {
  padding-bottom: 80px;
}

.page-section {
  padding: 48px 0 64px;
}

.page-section--tint {
  background: var(--surface-tint);
}

/* Producers */
.producers-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.producers-toolbar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.producers-toolbar__meta {
  margin: 0;
  width: 100%;
  text-align: right;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: min(404px, 100%);
}

.search-field img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-field span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #737373;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.sort-btn img {
  width: 24px;
  height: 24px;
}

.producers-layout {
  display: grid;
  grid-template-columns: min(392px, 100%) 1fr;
  gap: 40px;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  max-height: min(1250px, 85vh);
  overflow: auto;
}

.filters-clear {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 7px rgba(130, 130, 130, 0.12);
}

.filter-block {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-block:last-of-type {
  border-bottom: none;
}

.filter-block h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.filter-range {
  height: 6px;
  background: #f5f5f5;
  border-radius: 10px;
  margin: 16px 0 8px;
  position: relative;
}

.filter-range__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: var(--navy);
  border-radius: 10px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
}

.filter-check input {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.producers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.producer-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-feature);
  min-height: 510px;
}

.producer-card__media {
  position: relative;
  margin: 15px 15px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 384 / 161;
  box-shadow: var(--shadow-card);
}

.producer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producer-card__body {
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.producer-card__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

.producer-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.producer-card__loc {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
}

.producer-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.producer-card .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  justify-content: center;
}

/* Blog listing */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr min(416px, 100%);
  gap: 48px;
  align-items: start;
}

.blog-sidebar {
  padding: 31px 24px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: #fff;
}

.blog-sidebar h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.recent-post {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
}

.recent-post img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.recent-post h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.recent-post time {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-pill {
  display: inline-block;
  padding: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-list-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-list-card__img {
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 416 / 319;
  box-shadow: var(--shadow-card);
}

.blog-list-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.blog-list-card p {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.blog-list-card time {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* FAQ */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1312px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid #f5f5f5;
  background: #fff;
  box-shadow: 0 5px 10px rgba(13, 13, 18, 0.04), 0 4px 8px rgba(13, 13, 18, 0.02);
  overflow: hidden;
}

.faq-item--open,
.faq-item[open] {
  border-color: var(--navy);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: url("https://sip.liamsummersdev.co.uk/figma-assets/image/ddc823f5-5c6a-41bc-893a-a8d041c2515b") center / contain no-repeat;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 40px 40px;
  margin-top: -8px;
}

.faq-item__body p {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 1204px;
}

/* Our Story */
.story-split {
  display: grid;
  grid-template-columns: min(517px, 100%) 1fr;
  gap: 48px;
  align-items: start;
}

.story-visual {
  position: relative;
  min-height: 520px;
}

.story-visual__large {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(13, 13, 18, 0.18);
  max-width: 464px;
}

.story-visual__large img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-visual__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(451px, 90%);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.story-visual__small img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.story-copy .eyebrow {
  margin-bottom: 20px;
}

.story-copy .display-title {
  color: var(--navy);
  margin-bottom: 24px;
}

.story-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Discover */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.discover-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 23px;
  background: #fff;
  box-shadow: var(--shadow-card);
  min-height: 525px;
  display: flex;
  flex-direction: column;
}

.discover-card__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.discover-card__head img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.discover-card__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.discover-card p {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
}

/* Article */
.article-hero-img {
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 480px;
}

.article-hero-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.article-body {
  max-width: 800px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin: 40px 0 16px;
}

.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

@media (max-width: 1200px) {
  .producers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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