/* =====================================================
   DOMESTIC BAKKERIJ — Design System & Styles
   ===================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core Palette */
  --bg-primary: #F4EDE6;
  --bg-surface: #EDE5DA;
  --bg-white: #FFFFFF;
  --text-primary: #2C2825;
  --text-secondary: #8A8580;
  --accent-primary: #B8935A;
  --accent-secondary: #C4917A;
  --divider: #DDD6CC;
  --inverse-bg: #3A3430;
  --inverse-text: #F5F0EB;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2xl);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-primary);
  margin-top: var(--space-sm);
  transition: width var(--transition-base);
}

.section-title:hover::after {
  width: 100%;
}

.section-title--light {
  color: var(--inverse-text);
}

.section-title--light::after {
  background-color: var(--accent-secondary);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn:hover {
  background: var(--text-primary);
  color: var(--inverse-text);
}

.btn--light {
  border-color: var(--inverse-text);
  color: var(--inverse-text);
}

.btn--light:hover {
  background: var(--inverse-text);
  color: var(--inverse-bg);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(244, 237, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
  transition: all var(--transition-base);
}

.nav--scrolled {
  height: 64px;
  box-shadow: 0 2px 20px rgba(44, 40, 37, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logos {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__logo-link {
  display: flex;
  align-items: center;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text-primary);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-top: 2px;
}

.nav__sub-brands {
  display: flex;
  gap: var(--space-md);
}

.nav__sub-brand {
  display: flex;
  align-items: center;
}

.nav__sub-logo {
  padding: 4px 12px;
  border: 1px solid var(--divider);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__sub-logo span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.nav__sub-brand:hover .nav__sub-logo {
  border-color: var(--accent-primary);
}

.nav__sub-brand:hover .nav__sub-logo span {
  color: var(--accent-primary);
}

.nav__links {
  display: flex;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-primary);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO / SLIDESHOW
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero__slide--active .hero__slide-img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 40, 37, 0.3) 0%,
    rgba(44, 40, 37, 0.5) 50%,
    rgba(44, 40, 37, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.03em;
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--inverse-text);
  letter-spacing: 0.15em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: var(--space-2xl);
}

.hero__announcement {
  padding: var(--space-md) var(--space-xl);
  border: 1px solid rgba(245, 240, 235, 0.4);
  backdrop-filter: blur(4px);
}

.hero__announcement p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.9);
  line-height: 1.8;
}

.hero__dots {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 240, 235, 0.6);
  background: transparent;
  transition: all var(--transition-base);
  cursor: pointer;
}

.hero__dot--active {
  background: var(--inverse-text);
  border-color: var(--inverse-text);
}

.hero__dot:hover {
  border-color: var(--inverse-text);
}

/* =====================================================
   OPENING HOURS
   ===================================================== */
.hours {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.hours__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.hours__card {
  background: var(--bg-white);
  border: 1px solid var(--divider);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.hours__card:hover {
  box-shadow: 0 8px 30px rgba(44, 40, 37, 0.08);
  transform: translateY(-2px);
}

.hours__card--center {
  border-color: var(--accent-primary);
}

.hours__card-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--divider);
}

.hours__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.hours__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-top: var(--space-xs);
}

.hours__card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hours__address {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.hours__phone {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hours__times {
  margin-top: var(--space-sm);
}

.hours__times p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hours__times strong {
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hours__highlight {
  color: var(--accent-primary) !important;
  font-weight: 500;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-surface);
}

.about__container {
  max-width: 800px;
  margin: 0 auto;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.about__cta-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent-primary) !important;
  margin-top: var(--space-md);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.gallery__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.gallery__location {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.gallery__location-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.gallery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.gallery__pair--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery__img-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.gallery__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 37, 0);
  transition: background var(--transition-base);
}

.gallery__img-wrap:hover::after {
  background: rgba(44, 40, 37, 0.1);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__img-wrap:hover .gallery__img {
  transform: scale(1.03);
}

/* =====================================================
   SOCIAL BAR
   ===================================================== */
.social {
  padding: var(--space-3xl) var(--space-xl);
  background-color: var(--bg-surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.social__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}

.social__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.social__link:hover {
  color: var(--accent-primary);
}

.social__icon {
  width: 22px;
  height: 22px;
}

.social__cta {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  padding: var(--space-sm) var(--space-lg);
  border: 1.5px solid var(--accent-primary);
  transition: all var(--transition-base);
}

.social__cta:hover {
  background: var(--accent-primary);
  color: var(--bg-white);
}

/* =====================================================
   TEAM / WHO'S WHO
   ===================================================== */
.team {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.team__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.team__card {
  text-align: center;
  transition: transform var(--transition-base);
}

.team__card:hover {
  transform: translateY(-4px);
}

.team__img-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--divider);
  transition: border-color var(--transition-base);
}

.team__card:hover .team__img-wrap {
  border-color: var(--accent-primary);
}

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

.team__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.team__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.team__role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

/* =====================================================
   HIGH TEA
   ===================================================== */
.high-tea {
  background-color: var(--inverse-bg);
  padding: var(--space-4xl) var(--space-xl);
}

.high-tea__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.high-tea__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.high-tea__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.85);
}

.high-tea__schedule {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.85);
  line-height: 1.8;
}

.high-tea__schedule strong {
  color: var(--accent-secondary);
}

.high-tea__address {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.7;
}

.high-tea__images {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-md);
}

.high-tea__img-wrap {
  overflow: hidden;
  border: 2px solid rgba(245, 240, 235, 0.1);
}

.high-tea__img-wrap--1 {
  aspect-ratio: 3 / 4;
  margin-top: var(--space-2xl);
}

.high-tea__img-wrap--2 {
  aspect-ratio: 3 / 4;
}

.high-tea__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.high-tea__img-wrap:hover .high-tea__img {
  transform: scale(1.03);
}

/* =====================================================
   CUISINETTE
   ===================================================== */
.cuisinette {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-surface);
}

.cuisinette__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.cuisinette__images {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-md);
}

.cuisinette__img-wrap {
  overflow: hidden;
}

.cuisinette__img-wrap:first-child {
  aspect-ratio: 3 / 4;
  margin-bottom: var(--space-2xl);
}

.cuisinette__img-wrap:last-child {
  aspect-ratio: 4 / 3;
}

.cuisinette__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cuisinette__img-wrap:hover .cuisinette__img {
  transform: scale(1.03);
}

.cuisinette__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cuisinette__text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.cuisinette__schedule {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cuisinette__address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   PARTNERS
   ===================================================== */
.partners {
  padding: var(--space-4xl) var(--space-xl);
  background-color: var(--bg-primary);
}

.partners__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.partners__subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-top: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-2xl);
}

.partners__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.partners__card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-2xl);
  border: 1px solid var(--divider);
  background: var(--bg-white);
  min-width: 240px;
  transition: all var(--transition-base);
}

.partners__card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 4px 20px rgba(44, 40, 37, 0.08);
}

.partners__logo-wrap {
  flex: 1;
}

.partners__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.partners__arrow {
  font-size: 1.25rem;
  color: var(--accent-primary);
  transition: transform var(--transition-fast);
}

.partners__card:hover .partners__arrow {
  transform: translateX(4px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: var(--inverse-bg);
  color: var(--inverse-text);
  padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__brand {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(245, 240, 235, 0.15);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 235, 0.5);
}

.footer__locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(245, 240, 235, 0.15);
}

.footer__location {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__location-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
  color: var(--accent-secondary);
}

.footer__location p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 240, 235, 0.8);
}

.footer__phone {
  color: rgba(245, 240, 235, 0.6) !important;
  font-size: 0.85rem !important;
}

.footer__email {
  font-size: 0.85rem !important;
  color: var(--accent-primary) !important;
}

.footer__hours {
  margin-top: var(--space-sm);
}

.footer__hours p {
  font-size: 0.82rem !important;
  color: rgba(245, 240, 235, 0.55) !important;
  line-height: 1.8;
}

.footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__block {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__block-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: var(--space-xs);
}

.footer__block p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 240, 235, 0.7);
}

.footer__link {
  color: var(--accent-primary) !important;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-secondary) !important;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(245, 240, 235, 0.1);
}

.footer__social {
  display: flex;
  gap: var(--space-lg);
}

.footer__social-link {
  color: rgba(245, 240, 235, 0.5);
  transition: color var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--accent-primary);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 235, 0.35);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hours__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hours__card--center {
    order: -1;
  }

  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .team__img-wrap {
    width: 180px;
    height: 180px;
  }

  .high-tea__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .high-tea__images {
    max-width: 600px;
  }

  .cuisinette__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .cuisinette__images {
    max-width: 600px;
  }

  .footer__locations {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -10px 0 30px rgba(44, 40, 37, 0.1);
    z-index: 999;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__sub-brands {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__link {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 500px;
  }

  .hero__title {
    letter-spacing: 0.08em;
  }

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

  .gallery__pair--three {
    grid-template-columns: 1fr;
  }

  .gallery__img-wrap {
    aspect-ratio: 16 / 10;
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .team__img-wrap {
    width: 200px;
    height: 200px;
  }

  .high-tea__images {
    grid-template-columns: 1fr 1fr;
  }

  .high-tea__img-wrap--1 {
    margin-top: 0;
  }

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

  .social__container {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .partners__grid {
    flex-direction: column;
    align-items: center;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__announcement p {
    font-size: 0.7rem;
  }

  .hours__card {
    padding: var(--space-lg);
  }

  .high-tea__images,
  .cuisinette__images {
    grid-template-columns: 1fr;
  }

  .high-tea__img-wrap--1 {
    margin-bottom: 0;
  }

  .high-tea__img-wrap--1,
  .high-tea__img-wrap--2,
  .cuisinette__img-wrap:first-child,
  .cuisinette__img-wrap:last-child {
    aspect-ratio: 16 / 10;
  }
}

/* =====================================================
   MOBILE NAV OVERLAY
   ===================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 40, 37, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =====================================================
   SMOOTH SCROLL OFFSET FOR FIXED NAV
   ===================================================== */
section[id] {
  scroll-margin-top: var(--nav-height);
}

/* =====================================================
   LOADING STATE
   ===================================================== */
body.loading {
  overflow: hidden;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
  .nav, .hero__dots, .nav__hamburger, .social {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  body {
    background: white;
    color: black;
  }
}
