/* ============================================
   AVLI TIS NEFELIS — MAIN STYLESHEET
   Hidden Garden Café in Paphos
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colors */
  --sage: #8B9D77;
  --sage-light: #A8B898;
  --sage-dark: #6B7D5A;
  --sage-muted: #c2ccb8;
  --cream: #FAF6F0;
  --cream-dark: #F0EAE0;
  --beige: #E8E0D4;
  --stone: #D4C9BA;
  --brown: #3D2E1E;
  --brown-light: #5C4A3A;
  --brown-warm: #6B5940;
  --terracotta: #C4856A;
  --terracotta-muted: #d4a08a;
  --white: #FFFDF9;
  --offwhite: #F7F3ED;

  /* Text */
  --text: #2C2416;
  --text-secondary: #6B5E50;
  --text-light: #8A7E72;
  --text-on-dark: #FAF6F0;

  /* Typography */
  --font-serif: 'EB Garamond', 'Georgia', serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-padding: 24px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 22, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.1);
  --shadow-card: 0 2px 16px rgba(44, 36, 22, 0.06);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}


/* ============================================
   PAGE LOADER — Cinematic garden reveal
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

/* Hero image background with slow Ken-Burns zoom */
.loader__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero.jpg') center / cover no-repeat;
  will-change: transform;
  animation: loaderKenBurns 6s ease-out both;
}

/* Dark overlay that sits on top of the image */
.loader__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 36, 22, 0.82) 0%,
    rgba(44, 36, 22, 0.72) 50%,
    rgba(61, 46, 30, 0.85) 100%
  );
}

/* Centered content wrapper — entrance animation lives here */
.loader__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: loaderLogoEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Loading GIF */
.loader__logo {
  display: block;
  width: 160px;
  height: auto;
}



/* ---- Keyframes ---- */
@keyframes loaderKenBurns {
  from { transform: scale(1.15); }
  to   { transform: scale(1); }
}

@keyframes loaderLogoEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}




@media (prefers-reduced-motion: reduce) {
  .loader__bg,
  .loader__logo,
  .loader__line {
    animation: none !important;
  }
  #page-loader.loader--hide .loader__logo,
  #page-loader.loader--hide .loader__line,
  #page-loader.loader--hide .loader__overlay,
  #page-loader.loader--hide .loader__bg {
    animation: none !important;
    transition: opacity 0.3s ease !important;
  }
  #page-loader.loader--hide .loader__logo,
  #page-loader.loader--hide .loader__line,
  #page-loader.loader--hide .loader__overlay,
  #page-loader.loader--hide .loader__bg {
    opacity: 0 !important;
  }
}


/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

::selection {
  background-color: var(--sage-muted);
  color: var(--brown);
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="down"] {
  transform: translateY(-40px);
}

[data-reveal="left"] {
  transform: translateX(40px);
}

[data-reveal="right"] {
  transform: translateX(-40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1.5px;
  background-color: var(--sage);
}

.section-tag--light {
  color: var(--sage-muted);
}

.section-tag--light::before {
  background-color: var(--sage-muted);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 24px;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}

.btn--primary:hover {
  background-color: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 125, 90, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.5);
}

.btn--outline:hover {
  background-color: var(--white);
  color: var(--brown);
  border-color: var(--white);
  transform: translateY(-2px);
}


/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition-slow);
}

.header.scrolled {
  background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(44, 36, 22, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

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

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 249, 0.35);
  background-color: rgba(255, 253, 249, 0.12);
  margin-left: 14px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 999px;
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background-color: rgba(255, 253, 249, 0.18);
}

.lang-btn.active {
  background-color: rgba(255, 253, 249, 0.92);
  color: var(--brown);
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.header.scrolled .nav__link {
  color: var(--text);
}

.header.scrolled .lang-switcher {
  border-color: rgba(92, 74, 58, 0.18);
  background-color: rgba(250, 246, 240, 0.8);
}

.header.scrolled .lang-btn {
  color: var(--brown);
}

.header.scrolled .lang-btn.active {
  background-color: var(--sage-dark);
  color: var(--white);
}

.nav__link:hover,
.nav__link.active {
  background-color: rgba(255, 255, 255, 0.15);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
  background-color: rgba(139, 157, 119, 0.12);
  color: var(--sage-dark);
}

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

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .nav__toggle-bar {
  background-color: var(--brown);
}

.nav__toggle.open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Replace with your hero image */
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 22, 0.55) 0%,
    rgba(44, 36, 22, 0.65) 45%,
    rgba(44, 36, 22, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-top: 80px;
}

.hero__badge {
  margin-bottom: 32px;
}

.hero__badge-img {
  height: 80px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 253, 249, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 253, 249, 0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__info-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 253, 249, 0.35);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 253, 249, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--sage-muted);
  z-index: -1;
}

.about__content .section-tag {
  margin-bottom: 16px;
}

.about__content .section-title {
  margin-bottom: 28px;
}

.about__content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

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

/* Leaf decoration */
.section-leaf {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.04;
  pointer-events: none;
}

.section-leaf--left {
  top: 60px;
  left: -40px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  border-radius: 50%;
}


/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--section-padding) 0;
  background: url('assets/banner-01.png') center / cover no-repeat;
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
}

.features__header .section-tag {
  padding-left: 0;
  color: rgba(255, 253, 249, 0.82);
}

.features__header .section-tag::before {
  display: none;
}

.features__header .section-title {
  color: var(--white);
}

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

.features__card {
  background-color: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(139, 157, 119, 0.08);
}

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

.features__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 157, 119, 0.1);
  border-radius: 50%;
  color: var(--sage-dark);
  font-size: 1.4rem;
  transition: var(--transition);
}

.features__card:hover .features__icon {
  background-color: var(--sage-dark);
  color: var(--white);
}

.features__card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 12px;
}

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


/* ============================================
   OUR GREEN PHILOSOPHY SECTION
   ============================================ */
.philosophy {
  position: relative;
  padding: var(--section-padding) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(139, 157, 119, 0.10), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(168, 184, 152, 0.10), transparent 42%),
    var(--cream);
  overflow: hidden;
}

.philosophy__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.philosophy__header .section-tag {
  padding-left: 0;
}

.philosophy__header .section-tag::before {
  display: none;
}

.philosophy__intro {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
}

.philosophy__practices-header {
  text-align: center;
  margin-bottom: 36px;
}

.philosophy__practices-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.philosophy__practices-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background-color: var(--sage);
  margin: 16px auto 0;
}

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

.philosophy__card {
  position: relative;
  background-color: var(--white);
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid rgba(139, 157, 119, 0.16);
  box-shadow: 0 6px 18px rgba(61, 46, 30, 0.05);
  transition: var(--transition);
}

.philosophy__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(61, 46, 30, 0.10);
  border-color: rgba(139, 157, 119, 0.32);
}

.philosophy__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 157, 119, 0.12);
  border-radius: 50%;
  color: var(--sage-dark);
  font-size: 1.25rem;
  transition: var(--transition);
}

.philosophy__card:hover .philosophy__icon {
  background-color: var(--sage-dark);
  color: var(--white);
}

.philosophy__card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.philosophy__card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}


/* ============================================
   TREATS SECTION
   ============================================ */
.treats {
  padding: var(--section-padding) 0;
  background-color: var(--cream);
}

.treats__header {
  text-align: center;
  margin-bottom: 56px;
}

.treats__header .section-tag {
  padding-left: 0;
}

.treats__header .section-tag::before {
  display: none;
}

.treats__note {
  max-width: 550px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
}

.treats__counter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

.treats__counter-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.treats__counter-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
}

.treats__counter-photo:hover img {
  transform: scale(1.03);
}

.treats__counter-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--sage-muted);
  z-index: -1;
}

.treats__counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brown);
  border: 1px solid rgba(107, 125, 90, 0.22);
  background-color: rgba(255, 253, 249, 0.72);
  margin-bottom: 18px;
}

.treats__counter-badge i {
  color: var(--sage-dark);
}

.treats__counter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 16px;
}

.treats__counter-text {
  max-width: 620px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.treats__counter-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

.treats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.treats__category {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139, 157, 119, 0.08);
  transition: var(--transition);
}

.treats__category:hover {
  box-shadow: var(--shadow-md);
}

.treats__category--seasonal {
  background: linear-gradient(135deg, var(--white) 0%, rgba(196, 133, 106, 0.06) 100%);
  border-color: rgba(196, 133, 106, 0.15);
}

.treats__category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--beige);
}

.treats__category-header i {
  font-size: 1.1rem;
  color: var(--sage-dark);
}

.treats__category--seasonal .treats__category-header i {
  color: var(--terracotta);
}

.treats__category-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brown);
}

.treats__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.treats__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232, 224, 212, 0.6);
  transition: var(--transition);
}

.treats__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.treats__item:first-child {
  padding-top: 0;
}

.treats__item:hover {
  padding-left: 6px;
}

.treats__item-info {
  flex: 1;
}

.treats__item-name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.treats__item-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.treats__item-price {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage-dark);
  white-space: nowrap;
  padding-top: 2px;
}

.treats__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.treats__disclaimer {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
}

.treats__disclaimer i {
  margin-right: 6px;
  color: var(--sage);
}


/* ============================================
   GARDEN EXPERIENCE SECTION
   ============================================ */
.experience {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  /* Replace with a beautiful garden photo */
  background-image: url('assets/garden-experience.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 22, 0.82) 0%,
    rgba(61, 46, 30, 0.75) 100%
  );
}

.experience__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 100px var(--container-padding);
}

.experience__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.experience__text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255, 253, 249, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
}

.experience__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.experience__tags span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 253, 249, 0.25);
  background-color: rgba(255, 253, 249, 0.08);
  transition: var(--transition);
}

.experience__tags span:hover {
  background-color: rgba(255, 253, 249, 0.18);
  border-color: rgba(255, 253, 249, 0.4);
}


/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-padding) 0;
  background-color: var(--offwhite);
}

.gallery__header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery__header .section-tag {
  padding-left: 0;
}

.gallery__header .section-tag::before {
  display: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item[data-reveal] {
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 22, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background-color: var(--cream);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__header .section-tag {
  padding-left: 0;
}

.testimonials__header .section-tag::before {
  display: none;
}

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

.testimonials__card {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139, 157, 119, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonials__stars {
  margin-bottom: 20px;
  display: flex;
  gap: 3px;
  color: var(--terracotta-muted);
  font-size: 0.85rem;
}

.testimonials__card blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--beige);
}

.testimonials__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonials__source {
  font-size: 0.8rem;
  color: var(--text-light);
}


/* ============================================
   VISIT US SECTION
   ============================================ */
.visit {
  padding: var(--section-padding) 0;
  background-color: var(--offwhite);
}

.visit__header {
  text-align: center;
  margin-bottom: 56px;
}

.visit__header .section-tag {
  padding-left: 0;
}

.visit__header .section-tag::before {
  display: none;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit__block {
  margin-bottom: 32px;
}

.visit__block:last-of-type {
  margin-bottom: 32px;
}

.visit__block h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.visit__block h3 i {
  font-size: 1rem;
  color: var(--sage-dark);
}

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

.visit__block a {
  color: var(--sage-dark);
  font-weight: 500;
}

.visit__block a:hover {
  color: var(--brown);
}

.visit__notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visit__notes li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.visit__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--sage-muted);
}

.visit__social {
  display: flex;
  gap: 12px;
}

.visit__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--beige);
  color: var(--text);
  transition: var(--transition);
}

.visit__social-link:hover {
  border-color: var(--sage);
  background-color: var(--sage-dark);
  color: var(--white);
}

.visit__social-link i {
  font-size: 1.1rem;
}

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  border-radius: var(--radius-lg);
}

.visit__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-color: var(--beige);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
}

.visit__map-placeholder i {
  font-size: 2.5rem;
  color: var(--sage);
}

.visit__map-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown-warm);
}

.visit__map-placeholder span {
  font-size: 0.8rem;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--brown);
  color: var(--text-on-dark);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.1);
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer__brand p {
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--white);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--sage-light);
  padding-left: 4px;
}

.footer__contact p {
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__contact a {
  color: rgba(255, 253, 249, 0.6);
}

.footer__contact a:hover {
  color: var(--sage-light);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 249, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 253, 249, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 253, 249, 0.35);
  font-size: 0.8rem;
}

.footer__credit {
  margin-top: 6px;
}

.footer__credit a {
  color: rgba(255, 253, 249, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 253, 249, 0.2);
  transition: var(--transition);
}

.footer__credit a:hover {
  color: var(--sage-light);
  border-bottom-color: var(--sage-light);
}


/* ============================================
   SUBPAGE — Header always solid + light
   ============================================ */
.is-subpage .header,
.header--solid {
  background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(44, 36, 22, 0.06);
}

.is-subpage .nav__link {
  color: var(--text);
}

.is-subpage .nav__link:hover,
.is-subpage .nav__link.active {
  background-color: rgba(139, 157, 119, 0.12);
  color: var(--sage-dark);
}

.is-subpage .lang-switcher {
  border-color: rgba(92, 74, 58, 0.18);
  background-color: rgba(250, 246, 240, 0.8);
}

.is-subpage .lang-btn {
  color: var(--brown);
}

.is-subpage .lang-btn.active {
  background-color: var(--sage-dark);
  color: var(--white);
}

.is-subpage .nav__toggle-bar {
  background-color: var(--brown);
}


/* ============================================
   PAGE HERO — Subpage intro
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background-image:
    linear-gradient(to bottom, rgba(44, 36, 22, 0.55), rgba(44, 36, 22, 0.65)),
    url('assets/menu.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero .section-tag {
  color: var(--text-on-dark);
  background-color: rgba(255, 253, 249, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-hero .section-tag::before {
  background-color: var(--sage-light);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  margin-top: 18px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
  margin: 22px auto 0;
  max-width: 640px;
  color: rgba(255, 253, 249, 0.92);
  font-size: 1.02rem;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.page-hero__note {
  margin: 14px auto 0;
  max-width: 560px;
  color: rgba(255, 253, 249, 0.78);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

/* Image-only hero variant — the banner image carries its own text */
.page-hero--image {
  padding: 0;
  margin-top: 64px; /* clear the fixed header */
  background-image: url('assets/menu.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--cream);
  height: clamp(380px, 56vw, 620px);
  overflow: hidden;
}

.page-hero--image .page-hero__content {
  display: none;
}


/* ============================================
   MENU ANCHOR NAVIGATION — quick links to categories
   ============================================ */
.menu__anchors {
  background-color: var(--cream);
  padding: 26px 0;
  border-bottom: 1px solid rgba(139, 157, 119, 0.18);
  position: relative;
}

.menu__anchors-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.menu__anchor {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background-color: rgba(139, 157, 119, 0.10);
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(139, 157, 119, 0.28);
  transition: var(--transition);
  white-space: nowrap;
}

.menu__anchor:hover {
  background-color: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

/* Offset so anchored scroll doesn't tuck content behind fixed header */
.menu__category {
  scroll-margin-top: 90px;
}


/* ============================================
   MENU PAGE — Categories & items
   ============================================ */
.menu {
  padding: 40px 0 var(--section-padding);
  background-color: var(--cream);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
}

.menu__category {
  position: relative;
}

.menu__category-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 157, 119, 0.3);
  letter-spacing: 0.02em;
}

.menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu__item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown);
  flex-shrink: 0;
}

.menu__item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(139, 157, 119, 0.5);
  align-self: flex-end;
  margin-bottom: 6px;
  min-width: 24px;
}

.menu__item-price {
  font-weight: 500;
  color: var(--sage-dark);
  flex-shrink: 0;
  font-size: 0.98rem;
  white-space: nowrap;
}

/* Item with a description sitting under the price row */
.menu__item--with-desc {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.menu__item-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu__item-desc {
  margin: 0;
  padding-right: 4px;
  font-size: 0.84rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
}

/* Subtitle under a category title */
.menu__category-subtitle {
  margin: -16px 0 22px;
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

/* Small note under a category list */
.menu__category-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Subtle highlight for the Avli Specials category */
.menu__category--specials .menu__category-title {
  color: var(--sage-dark);
}

.menu__category--specials .menu__category-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--sage-dark);
  margin-top: 8px;
  border-radius: 2px;
}


/* ============================================
   MENU NOTICE — friendly "food may vary" card
   ============================================ */
.menu__notice {
  position: relative;
  margin: 90px auto 0;
  max-width: 720px;
  padding: 48px 40px 44px;
  background:
    radial-gradient(circle at 88% 12%, rgba(196, 133, 106, 0.10), transparent 42%),
    radial-gradient(circle at 12% 86%, rgba(139, 157, 119, 0.10), transparent 46%),
    var(--white);
  border: 1px solid rgba(139, 157, 119, 0.22);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(61, 46, 30, 0.08);
  text-align: center;
}

.menu__notice::before,
.menu__notice::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background-color: rgba(139, 157, 119, 0.45);
}

.menu__notice::before { left: -64px; }
.menu__notice::after  { right: -64px; }

.menu__notice-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 157, 119, 0.14);
  border-radius: 50%;
  color: var(--sage-dark);
  font-size: 1.3rem;
}

.menu__notice-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.menu__notice-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 6px 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.menu__vat-note {
  margin-top: 60px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu__footnote {
  margin: 64px auto 0;
  max-width: 720px;
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 20px 24px;
  border-top: 1px solid rgba(139, 157, 119, 0.18);
  border-bottom: 1px solid rgba(139, 157, 119, 0.18);
}


/* ============================================
   MOBILE OVERLAY MENU
   ============================================ */
.nav__overlay {
  display: none;
}


/* ============================================
   RESPONSIVE — TABLET ( <= 1024px )
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 90px;
  }

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

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

  .gallery__grid {
    grid-auto-rows: 180px;
  }

  .about__grid {
    gap: 50px;
  }

  .about__image img {
    height: 400px;
  }

  .treats__counter {
    gap: 50px;
  }

  .treats__counter-photo img {
    height: 400px;
  }
}


/* ============================================
   RESPONSIVE — MOBILE ( <= 768px )
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
    --container-padding: 20px;
  }

  .header,
  .header.scrolled {
    padding: 14px 0;
  }

  .nav__logo-img,
  .header.scrolled .nav__logo-img {
    height: 40px;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 10px;
    background-color: rgba(255, 253, 249, 0.24);
  }

  .lang-btn {
    font-size: 0.68rem;
    padding: 5px 8px;
  }

  /* Mobile Nav */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    transform: translateX(100%);
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    background:
      radial-gradient(circle at 88% 12%, rgba(196, 133, 106, 0.18), transparent 36%),
      radial-gradient(circle at 12% 80%, rgba(139, 157, 119, 0.15), transparent 44%),
      linear-gradient(160deg, rgba(250, 246, 240, 0.72), rgba(240, 234, 224, 0.68));
    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 110px 28px 48px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    box-shadow: -16px 0 40px rgba(61, 46, 30, 0.18);
  }

  .header.scrolled .nav__menu {
    background:
      radial-gradient(circle at 88% 12%, rgba(196, 133, 106, 0.16), transparent 36%),
      radial-gradient(circle at 12% 80%, rgba(139, 157, 119, 0.14), transparent 44%),
      linear-gradient(160deg, rgba(250, 246, 240, 0.9), rgba(240, 234, 224, 0.88));
    backdrop-filter: blur(18px) saturate(118%);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__menu::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(92, 74, 58, 0.15);
    border-radius: 28px;
    pointer-events: none;
  }

  .nav__menu .nav__link {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    color: var(--brown);
    padding: 13px 24px;
    width: min(280px, 100%);
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: none;
    border: 1px solid transparent;
    border-radius: 999px;
  }

  .header.scrolled .nav__menu .nav__link {
    color: var(--brown);
  }

  .nav__menu .nav__link:hover,
  .nav__menu .nav__link.active {
    background-color: rgba(255, 253, 249, 0.62);
    border-color: rgba(92, 74, 58, 0.2);
    color: var(--brown);
    box-shadow: 0 10px 26px rgba(61, 46, 30, 0.16);
  }

  .header.scrolled .nav__menu .nav__link:hover,
  .header.scrolled .nav__menu .nav__link.active {
    color: var(--brown);
    background-color: rgba(255, 253, 249, 0.62);
    border-color: rgba(92, 74, 58, 0.2);
  }

  /* Force white toggle bars when menu is open */
  .nav__toggle.open .nav__toggle-bar {
    background-color: var(--brown);
  }

  /* Hero */
  .hero {
    background-attachment: scroll;
  }

  .hero__badge-img {
    height: 56px;
  }

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

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__info-strip {
    font-size: 0.7rem;
    gap: 10px;
  }

  .hero__scroll {
    display: none;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image img {
    height: 320px;
  }

  .about__image-accent {
    display: none;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features__card {
    padding: 32px 24px;
  }

  /* Philosophy */
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .philosophy__card {
    padding: 30px 24px;
  }

  .philosophy__practices-title {
    font-size: 1.4rem;
  }

  /* Menu page */
  .menu__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .menu__category-title {
    font-size: 1.5rem;
  }

  .page-hero {
    padding: 110px 0 40px;
  }

  .page-hero--image {
    padding: 0;
    height: clamp(142px, 45vw, 265px);
    background-size: 190% auto;
    background-position: center center;
  }

  .menu__anchors {
    padding: 18px 0;
  }

  .menu__anchors-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu__anchors-inner::-webkit-scrollbar {
    display: none;
  }

  .menu__anchor {
    font-size: 0.72rem;
    padding: 7px 16px;
  }

  .menu__notice {
    margin: 64px 8px 0;
    padding: 36px 24px 32px;
  }

  .menu__notice::before,
  .menu__notice::after {
    display: none;
  }

  .menu__notice-title {
    font-size: 1.4rem;
  }

  .menu__vat-note {
    margin-top: 44px;
  }

  /* Treats */
  .treats__counter {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treats__counter-photo img {
    height: 320px;
  }

  .treats__counter-accent {
    display: none;
  }

  .treats__counter-text {
    font-size: 0.94rem;
  }

  /* Experience */
  .experience__bg {
    background-attachment: scroll;
  }

  .experience__content {
    padding: 80px var(--container-padding);
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__card {
    padding: 32px 24px;
  }

  /* Visit */
  .visit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit__info {
    text-align: center;
  }

  .visit__block h3 {
    justify-content: center;
  }

  .visit__notes {
    align-items: center;
  }

  .visit__notes li {
    padding-left: 0;
  }

  .visit__notes li::before {
    display: none;
  }

  .visit__map {
    min-height: 300px;
  }

  .visit__map-placeholder {
    min-height: 300px;
  }

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

  .visit__social-link {
    width: min(320px, 100%);
    justify-content: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__brand p {
    max-width: 100%;
  }

  .footer__links ul {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE ( <= 480px )
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .hero__content {
    padding-top: 100px;
  }

  .hero__info-strip .hero__info-dot {
    display: none;
  }

  .hero__info-strip {
    flex-direction: column;
    gap: 4px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .treats__item {
    flex-direction: column;
    gap: 4px;
  }

  .treats__item-price {
    align-self: flex-start;
  }
}


/* ============================================
   ACCESSIBLE FOCUS STYLES
   ============================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *:not([data-reveal]),
  *:not([data-reveal])::before,
  *:not([data-reveal])::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .hero {
    background-attachment: scroll;
  }

  .experience__bg {
    background-attachment: scroll;
  }
}
