/* ============================================================
   Ferme au Grand Pré — Stylesheet
   Colours derived from new branding + old palette warmth
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

/* ---------- Custom Properties ---------- */
:root {
  /* Brand colours */
  --teal: #1d6f83;
  --teal-dark: #04626a;
  --teal-light: #2a8fa6;
  --beige: #e1d1b4;
  --beige-light: #f5efe5;
  --beige-pale: #faf7f2;
  --sand: rgba(225, 209, 180, 0.35);
  --gold: #a27c42;

  /* Neutrals */
  --text: #3e3a36;
  --text-light: #6e6e6e;
  --heading: #2e2a26;
  --white: #ffffff;
  --off-white: #fafaf8;
  --grey-light: #f1f1f1;
  --border: rgba(225, 209, 180, 0.5);

  /* Overlay */
  --overlay-dark: rgba(4, 62, 70, 0.55);
  --overlay-beige: rgba(225, 209, 180, 0.45);

  /* Typography */
  --font:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --section-y: 6rem;
  --container: 1120px;

  /* Misc */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  padding-top: 92px;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--teal-dark);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.25;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: var(--section-y) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--teal-dark);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--beige);
  border: none;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img.logo-text {
  height: 72px;
  width: auto;
}

/* ---- Nav ---- */
.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--heading);
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
  border-radius: 1px;
}

.main-nav a:hover {
  color: var(--teal);
}
.main-nav a:hover::after {
  width: 100%;
}

/* ---- Mobile menu toggle ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-top: 72px;*/
  background: linear-gradient(
    155deg,
    var(--teal-dark) 0%,
    var(--teal) 45%,
    #2a8fa6 100%
  );
  overflow: hidden;
  padding: 5rem 1.5rem 3.5rem;
}

/* Subtle decorative circles — organic/earthy feel */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 500px;
  height: 500px;
  top: -220px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(225, 209, 180, 0.12) 0%,
    transparent 70%
  );
}

.hero::after {
  width: 400px;
  height: 400px;
  bottom: -180px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(225, 209, 180, 0.1) 0%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 1000px;
  width: 100%;
}

.hero-content strong {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.hero-logos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  justify-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
}

.hero-logo-img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}

.hero-logo-img--old {
  /*object-fit: cover;*/
  object-position: center 85%;
  padding: 0;
}

.hero-logo-img:hover {
  transform: scale(1.04);
}

.hero-logo-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--beige);
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
}

.hero-address {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  flex-shrink: 0;
  align-self: start;
  margin-top: calc(24px + 0.75rem + 175px);
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(225, 209, 180, 0.35);
  margin: 2rem auto 0;
}

.hero-scroll {
  display: inline-block;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll svg {
  display: block;
  margin: 0.5rem auto 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ============================================================
   LA FERME
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.about-text h1 {
  font-size: 2rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.about-text .about-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   PRODUCT SECTIONS  (Fromages, Yogourts, Saison)
   ============================================================ */
.products-section {
  background: var(--beige-pale);
}

.products-dark-background {
  background: var(--white);
}

.products-section.alt-bg {
  background: var(--white);
}

/* Filter tabs (yogourts genre toggle) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--grey-light);
  border: 1px solid transparent;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.filter-tab:hover {
  color: var(--teal);
  background: var(--beige-light);
}

.filter-tab--active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.filter-tab--active:hover {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.products-section.alt-bg .product-card {
  background: var(--off-white);
}

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

.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--beige-light);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.product-card:hover .product-card-img-primary {
  transform: scale(1.04);
}

.product-card:hover .product-card-img-hover {
  opacity: 1;
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* Placeholder state for missing photos */
.product-card-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige-light), var(--sand));
}

.product-card-img.placeholder::after {
  content: "Photo à venir";
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

/* Inline note under product grid */
.products-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  font-weight: 300;
}

/* ============================================================
   OVERVIEW CARDS (home page product sections)
   ============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

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

.overview-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.overview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(4, 62, 70, 0.15) 100%
  );
  pointer-events: none;
}

.overview-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.overview-card-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.overview-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.overview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  transition:
    gap var(--transition),
    color var(--transition);
}

.overview-card:hover .overview-card-link {
  color: var(--teal-dark);
  gap: 0.7rem;
}

.overview-card-link svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.overview-card:hover .overview-card-link svg {
  transform: translateX(2px);
}

/* ============================================================
   NOUS TROUVER
   ============================================================ */
.find-us {
  background: var(--beige-pale);
}

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.find-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.find-card:hover {
  transform: translateY(-3px);
}

.find-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.find-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.find-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}

.find-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.find-card .schedule {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.find-also {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 300;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 21/9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  background:
    linear-gradient(var(--overlay-dark), var(--overlay-dark)),
    url("assets/img/pano.jpg") center / cover no-repeat;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact h2 {
  color: var(--white);
}

.contact .divider {
  background: rgba(255, 255, 255, 0.3);
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-detail svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  opacity: 0.8;
}

.contact-detail a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}
.contact-detail a:hover {
  text-decoration-color: var(--white);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 300;
}

/* ============================================================
   CHEESE DETAIL PAGE
   ============================================================ */

/* ---------- Hero ---------- */
.cheese-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  max-height: 520px;
  overflow: hidden;
}

.cheese-hero-img {
  position: absolute;
  inset: 0;
}

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

.cheese-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 62, 70, 0.75) 0%,
    rgba(4, 62, 70, 0.35) 50%,
    rgba(4, 62, 70, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.cheese-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--beige-light);
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 1rem;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.cheese-back-link:hover {
  opacity: 1;
  color: var(--white);
}

.cheese-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.cheese-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Detail Grid ---------- */
.cheese-detail {
  background: var(--beige-pale);
}

.cheese-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ---------- Gallery ---------- */
.cheese-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cheese-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow);
}

.cheese-gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
}

.cheese-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cheese-gallery-item:hover img {
  transform: scale(1.03);
}

/* ---------- Info Card ---------- */
.cheese-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.cheese-info-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.cheese-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.cheese-meta svg {
  flex-shrink: 0;
  stroke: var(--gold);
}

.cheese-info-card .divider {
  margin: 0 0 1.5rem;
}

.cheese-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
}

.cheese-description p {
  margin: 0;
}

.cheese-info-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cheese-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}

.cheese-info-item svg {
  flex-shrink: 0;
  stroke: var(--teal);
}

/* ---------- Prev / Next Navigation ---------- */
.cheese-nav-section {
  background: var(--white);
  padding: 4rem 0;
}

.cheese-nav-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 2rem;
}

.cheese-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cheese-nav-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--beige-pale);
  border-radius: var(--radius);
  padding: 1rem;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.cheese-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.cheese-nav-placeholder {
  visibility: hidden;
}

.cheese-nav-next {
  flex-direction: row-reverse;
  text-align: right;
}

.cheese-nav-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cheese-nav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cheese-nav-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cheese-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cheese-nav-label svg {
  stroke: var(--text-light);
}

.cheese-nav-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
}

.cheese-nav-next .cheese-nav-label {
  justify-content: flex-end;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --section-y: 4rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-logo-img {
    width: 220px;
    height: 220px;
  }

  .hero-logos {
    gap: 3rem;
  }

  .hero-arrow {
    margin-top: calc(24px + 0.75rem + 110px - 24px);
  }

  .hero-arrow svg {
    width: 48px;
    height: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .find-us-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  /* Cheese detail responsive — tablet */
  .cheese-hero {
    height: 40vh;
    min-height: 280px;
  }

  .cheese-hero-title {
    font-size: 2.2rem;
  }

  .cheese-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cheese-info-card {
    position: static;
  }

  .cheese-detail-gallery {
    order: -1;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .hero {
    padding: 3rem 1rem 2.5rem;
  }

  .hero-content h1 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
  }

  .hero-tagline {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .hero-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .hero-logo-img {
    width: 170px;
    height: 170px;
  }

  .hero-arrow {
    align-self: center;
    margin-top: 0;
    transform: rotate(90deg);
  }

  .hero-arrow svg {
    width: 36px;
    height: 36px;
  }

  .hero-address {
    font-size: 0.82rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .map-wrapper {
    aspect-ratio: 4/3;
  }

  /* Cheese detail responsive — mobile */
  .cheese-hero {
    height: 35vh;
    min-height: 240px;
  }

  .cheese-hero-overlay {
    padding-bottom: 2rem;
  }

  .cheese-hero-title {
    font-size: 1.6rem;
  }

  .cheese-info-card {
    padding: 1.5rem;
  }

  .cheese-detail-gallery {
    grid-template-columns: 1fr;
  }

  .cheese-gallery-item:first-child {
    aspect-ratio: 4/3;
  }

  .cheese-gallery-item:not(:first-child) {
    aspect-ratio: 4/3;
  }

  .cheese-nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cheese-nav-placeholder {
    display: none;
  }

  .cheese-nav-next {
    flex-direction: row;
    text-align: left;
  }

  .cheese-nav-next .cheese-nav-label {
    justify-content: flex-start;
  }

  .cheese-nav-section {
    padding: 3rem 0;
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
