/* ========================================
   CSS Variables
   ======================================== */
:root {
  --color-primary: #2E2017;
  --color-letter: #E0D2AA;
  --color-accent: #A89060;
  --color-dark: #1a130d;
  --color-light: #3a2a1e;
  --color-muted: #8a7a68;
  --color-para: #d8d0c0;
  --color-border: rgba(224, 210, 170, 0.15);
  --font-heading: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1100px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: var(--color-letter);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
  scrollbar-width: auto;
  scrollbar-color: var(--color-accent) var(--color-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
  border-left: 1px solid var(--color-border);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border: 1px solid var(--color-border);
  box-shadow:
    inset 1px 1px 0 rgba(224, 210, 170, 0.3),
    inset -1px -1px 0 rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-letter);
}

::-webkit-scrollbar-button {
  display: none;
}

.about-page,
.page--logo-bg {
  background-image: url("images/logo_with_background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 600px;
  background-attachment: fixed;
  position: relative;
}

.page--logo-bg::before,
.about-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.85;
  z-index: -1;
}

.about-page .section:first-of-type {
  padding-top: 4.5vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s ease, opacity 0.4s ease;
}

img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--color-dark);
  box-shadow:
    inset 2px 2px 0 rgba(224, 210, 170, 0.2),
    inset -2px -2px 0 rgba(0, 0, 0, 0.3),
    2px 2px 6px rgba(0, 0, 0, 0.3);
}

p {
  color: var(--color-para);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  background: linear-gradient(
    to right,
    rgba(26, 19, 13, 1) 0%,
    rgba(35, 25, 17, 0.95) 50%,
    rgba(26, 19, 13, 1) 100%
  );
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--color-letter);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header__logo-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-letter);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-letter);
  transition: width 0.4s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-letter);
  background-color: rgba(168, 144, 96, 0.2);
}

.nav__link {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* ========================================
   Hero Section (home page)
   ======================================== */
.hero {
  position: relative;
  background-color: var(--color-dark);
  text-align: center;
  padding: 10rem 2rem;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 19, 13, 0.2) 0%,
    rgba(26, 19, 13, 0.15) 40%,
    rgba(46, 32, 23, 0.7) 100%
  );
  z-index: 2;
}

.hero > *:not(.hero__slides) {
  position: relative;
  z-index: 3;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: normal;
  color: var(--color-letter);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero__logo-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-letter);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__button {
  display: inline-block;
  border: 1px solid var(--color-letter);
  color: var(--color-letter);
  padding: 1rem 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background-color 0.4s ease, color 0.4s ease;
  background-color: rgba(26, 19, 13, 0.5);
}

.hero__button:hover {
  background-color: var(--color-letter);
  color: var(--color-dark);
}

/* ========================================
   Page Sections
   ======================================== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: normal;
  color: var(--color-letter);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.section__text {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--color-para);
  line-height: 2;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 auto;
  max-width: var(--max-width);
}

/* ========================================
   Staff Photos
   ======================================== */
.staff__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.staff__photo {
  aspect-ratio: 3/4;
  background-color: var(--color-dark);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  overflow: hidden;
}

.staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials__images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials__quotes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.testimonials__item {
  height: 180px;
  padding: 2rem;
  background: rgba(26, 19, 13, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  box-shadow:
    inset 3px 3px 0 rgba(224, 210, 170, 0.15),
    inset -3px -3px 0 rgba(0, 0, 0, 0.4),
    4px 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials__quotes .testimonials__item:last-child {
  height: auto;
  min-height: 180px;
}

.testimonials__image {
  width: 180px;
  height: 180px;
  min-width: 180px;
  background-color: var(--color-dark);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.8rem;
  overflow: hidden;
}

.testimonials__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-para);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonials__author {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   Loyalty Section
   ======================================== */
.loyalty {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.loyalty__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  width: 100%;
}

.loyalty__text {
  flex: 1;
  text-align: left;
  border-top: none;
  padding-top: 0;
}

.loyalty__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-para);
  letter-spacing: 0.02em;
}

/* ========================================
   Gallery
   ======================================== */
.gallery {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  aspect-ratio: 1;
  background-color: var(--color-dark);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   About Page
   ======================================== */
.about__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about__image {
  width: 100%;
  border: 1px solid var(--color-border);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 1rem;
  letter-spacing: 0.05em;
  background-color: var(--color-dark);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__description {
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--color-muted);
}

.about__description p + p {
  margin-top: 1.2rem;
}

.about__cafe-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.about__cafe-image {
  aspect-ratio: 1;
  background-color: var(--color-dark);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  overflow: hidden;
}

.about__cafe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Menu Section Banner
   ======================================== */
.menu-section {
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 150px;
  background-image: url('images/behindcounter.JPG');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.menu-section::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 150px;
  background-color: rgba(46, 32, 23, 0.4);
  pointer-events: none;
  z-index: 0;
}

.menu-section .section__title {
  position: relative;
  z-index: 1;
}

.section.menu-section--banner {
  padding: 4rem 3rem 2rem;
}

.section.menu-section--intro {
  padding-top: 1rem;
}

/* ========================================
   Menu Page
   ======================================== */
.menu__categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1.5rem 0;
}

.menu__category {
  padding: 2.5rem;
  background: rgba(26, 19, 13, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  box-shadow: 
    inset 3px 3px 0 rgba(224, 210, 170, 0.15),
    inset -3px -3px 0 rgba(0, 0, 0, 0.4),
    4px 4px 10px rgba(0, 0, 0, 0.5);
}

.menu__category-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--color-letter);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.menu__category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-accent);
}

.menu__table-header {
  display: grid;
  grid-template-columns: 1fr 4rem 4rem 1fr 4rem 4rem;
  gap: 0 4.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.menu__category--iced .menu__table-header {
  display: flex;
  justify-content: flex-end;
  padding-right: 0.5rem;
}

.menu__table-header span {
  color: var(--color-letter);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu__table-header span:nth-child(2),
.menu__table-header span:nth-child(3),
.menu__table-header span:nth-child(5),
.menu__table-header span:nth-child(6) {
  text-align: right;
}

.menu__table {
  display: grid;
  grid-template-columns: 1fr 4rem 4rem 1fr 4rem 4rem;
  gap: 0 4.15rem;
}

.menu__row {
  display: contents;
}

.menu__table .menu__item-sprice:empty {
  min-width: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.menu__item-sprice,
.menu__item-rprice {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.menu__item-name,
.menu__item-sprice,
.menu__item-rprice {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.menu__food-list {
  display: flex;
  flex-direction: column;
}

.menu__food-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.menu__food-item--tall {
  padding: 1.15rem 0;
}

.menu__category--plate .menu__food-item:last-child {
  border-bottom: none;
}

.menu__food-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.menu__food-header .menu__item-name {
  border-bottom: none;
}

.menu__food-header .menu__item-rprice {
  border-bottom: none;
}

.menu__food-image {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 1rem auto;
  border-radius: var(--radius-sm, 4px);
}

.menu__food-legend {
  font-size: 0.8rem;
  color: var(--color-para);
  letter-spacing: 0.1em;
}

.menu__category--plate .menu__food-legend:first-of-type {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.menu__item-desc {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
  opacity: 0.7;
}

/* ========================================
   Location Page
   ======================================== */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.location__map {
  min-height: 350px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: rgba(26, 19, 13, 0.85);
  box-shadow: 
    inset 3px 3px 0 rgba(224, 210, 170, 0.15),
    inset -3px -3px 0 rgba(0, 0, 0, 0.4),
    4px 4px 10px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.location__map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.location__hours {
  background: rgba(26, 19, 13, 0.85);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 
    inset 3px 3px 0 rgba(224, 210, 170, 0.15),
    inset -3px -3px 0 rgba(0, 0, 0, 0.4),
    4px 4px 10px rgba(0, 0, 0, 0.5);
}

.location__hours-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--color-letter);
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours__day {
  color: var(--color-letter);
  letter-spacing: 0.03em;
}

/* ========================================
   Policy Pages
   ======================================== */
.policy__back {
  display: inline-block;
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.policy__back:hover {
  color: var(--color-letter);
}

.policy__container {
  max-width: 800px;
  margin: 0 auto;
}

.policy__container h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--color-letter);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.policy__container h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-letter);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.policy__container p {
  font-size: 0.95rem;
  color: var(--color-para);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.policy__container ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy__container li {
  font-size: 0.95rem;
  color: var(--color-para);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy__container a {
  color: var(--color-letter);
  text-decoration: underline;
}

.policy__container a:hover {
  color: var(--color-accent);
}

.policy__updated {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: italic;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--color-dark);
  text-align: center;
  padding: 2rem 2rem;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer__left {
  flex: 1;
}

.footer__right {
  flex: 1;
  text-align: right;
}

.footer__contact {
  margin-top: 0.25rem;
}

.footer__contact p {
  color: var(--color-muted);
  font-size: 0.8rem;
  margin: 0.2rem 0;
  letter-spacing: 0.03em;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-letter);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer__socials {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer__social-link {
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.footer__social-link:hover {
  color: var(--color-letter);
}

.footer__social-icon {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  margin-right: 0.4rem;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.footer__social-link:hover .footer__social-icon {
  opacity: 1;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

.footer__cookie-link {
  color: var(--color-muted);
  text-decoration: underline;
}

.footer__cookie-link:hover {
  color: var(--color-letter);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .header__inner {
    gap: 1rem;
    position: relative;
  }

  .header__logo {
    gap: 0.5rem;
  }

  .header__logo-image {
    width: 32px;
    height: 32px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav {
    display: flex;
    justify-content: flex-end;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 19, 13, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }

  .nav__list.nav__list--open {
    display: flex;
  }

  .nav__list li {
    width: 100%;
    text-align: center;
  }

  .nav__link {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    display: block;
    white-space: normal;
    color: var(--color-muted);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .nav__link:hover,
  .nav__link:active,
  .nav__link--active {
    color: var(--color-letter);
    background-color: rgba(168, 144, 96, 0.3);
  }

  .nav__link::after {
    display: none;
  }

  .hero {
    padding: 5rem 1.5rem;
  }

  .hero__title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__logo-image {
    width: 80px;
    height: 80px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__button {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .gallery {
    padding: 0 1.5rem 3rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .about__story,
  .location__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__cafe-gallery {
    grid-template-columns: 1fr;
  }

  .menu__item-desc {
    grid-column: span 1;
  }

  .menu__category {
    padding: 1.5rem;
  }

  .menu__categories {
    gap: 2rem;
  }

  .location__hours {
    padding: 1.5rem;
  }

  .footer {
    padding: 1.5rem 1.5rem;
  }

  .footer__socials {
    flex-direction: column;
    gap: 1rem;
  }

  .loyalty {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .loyalty__images {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 1rem;
  }

  .loyalty__text {
    text-align: center;
  }

  .loyalty__text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .menu__table-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: none;
  }

  .menu__table-header span:first-child {
    flex: 1;
    min-width: 0;
  }

  .menu__table-header span:nth-child(4),
  .menu__table-header span:nth-child(5),
  .menu__table-header span:nth-child(6) {
    display: none;
  }

  .menu__table-header span:nth-child(2),
  .menu__table-header span:nth-child(3) {
    width: 4rem;
    text-align: right;
    flex-shrink: 0;
  }

  .menu__table {
    display: flex;
    flex-direction: column;
  }

  .menu__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }

  .menu__item-name {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }

  .menu__item-sprice:empty,
  .menu__item-rprice:empty {
    display: none;
  }

  .menu__item-name,
  .menu__item-sprice,
  .menu__item-rprice {
    border-bottom: 1px solid var(--color-border);
  }

  .menu__item-sprice,
  .menu__item-rprice {
    width: 4rem;
    text-align: right;
    flex-shrink: 0;
  }

  .staff__photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .section.menu-section--banner {
    padding: 2rem 1.5rem 0;
  }

  .section.menu-section--intro {
    padding: 0 1.5rem 3rem;
  }

  .testimonials {
    flex-direction: column;
    align-items: center;
  }

  .testimonials__images {
    flex-direction: row;
    gap: 1rem;
  }

  .testimonials__image {
    width: 0;
    height: 0;
    min-width: unset;
    padding-bottom: 33%;
    flex: 1;
  }

  .testimonials__item {
    height: auto;
    padding: 1.5rem;
  }

  .testimonials__quote {
    font-size: 0.95rem;
  }

  .header__logo {
    font-size: 1.1rem;
  }
}

/* ========================================
   Browser Compatibility & Accessibility
   ======================================== */

/* Aspect-ratio fallback for older browsers */
@supports not (aspect-ratio: 1) {
  .gallery__item,
  .about__cafe-image {
    height: 0;
    padding-bottom: 100%;
  }

  .staff__photo {
    height: 0;
    padding-bottom: 133.33%;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-letter);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Touch feedback for interactive elements */
.hero__button:active,
.nav__link:active,
.footer__social-link:active {
  transform: scale(0.98);
  opacity: 0.8;
}

/* Tap highlight color */
a {
  -webkit-tap-highlight-color: rgba(168, 144, 96, 0.3);
}

/* Flexbox gap fallback for older Safari/Firefox */
@supports not (gap: 1rem) {
  .nav__list li + li {
    margin-left: 2.5rem;
  }

  .hero__title > * + * {
    margin-left: 2rem;
  }

  .testimonials__images > * + *,
  .testimonials__quotes > * + *,
  .testimonials > * + * {
    margin-top: 2rem;
  }

  .loyalty > * + * {
    margin-top: 3rem;
  }

  .footer__socials li + li {
    margin-top: 1rem;
  }

  .menu__categories > * + * {
    margin-top: 3rem;
  }

  .staff__photos > * + * {
    margin-top: 1.5rem;
  }

  .gallery > * + * {
    margin-top: 1rem;
  }

  .about__cafe-gallery > * + * {
    margin-top: 1rem;
  }

  .header__inner {
    gap: 0;
  }

  .header__logo > * + * {
    margin-left: 0.8rem;
  }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner--hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text p {
  font-size: 0.9rem;
  color: var(--color-para);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.cookie-banner__links {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.cookie-banner__links a {
  color: var(--color-letter);
  text-decoration: underline;
}

.cookie-banner__links a:hover {
  color: var(--color-accent);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: transparent;
  color: var(--color-letter);
}

.cookie-banner__btn--accept {
  background-color: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.cookie-banner__btn--accept:hover {
  background-color: var(--color-letter);
}

.cookie-banner__btn--reject {
  background-color: transparent;
  color: var(--color-letter);
}

.cookie-banner__btn--reject:hover {
  border-color: var(--color-letter);
}

.cookie-banner__btn--manage {
  background-color: transparent;
  color: var(--color-muted);
}

.cookie-banner__btn--manage:hover {
  color: var(--color-letter);
  border-color: var(--color-letter);
}

/* ========================================
   Cookie Preferences Modal
   ======================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
}

.cookie-modal--hidden {
  display: none;
}

.cookie-modal__inner {
  background: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow:
    inset 3px 3px 0 rgba(224, 210, 170, 0.15),
    inset -3px -3px 0 rgba(0, 0, 0, 0.4),
    4px 4px 10px rgba(0, 0, 0, 0.5);
}

.cookie-modal__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-letter);
  margin-bottom: 1rem;
}

.cookie-modal__desc {
  font-size: 0.9rem;
  color: var(--color-para);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-modal__category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal__category:last-of-type {
  border-bottom: none;
}

.cookie-modal__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-modal__category-name {
  font-size: 0.95rem;
  color: var(--color-letter);
  margin-bottom: 0.25rem;
}

.cookie-modal__category-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.cookie-modal__toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-modal__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-modal__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  transition: 0.3s;
}

.cookie-modal__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: var(--color-muted);
  transition: 0.3s;
}

.cookie-modal__toggle input:checked + .cookie-modal__slider {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.cookie-modal__toggle input:checked + .cookie-modal__slider::before {
  transform: translateX(20px);
  background-color: var(--color-dark);
}

.cookie-modal__toggle input:disabled + .cookie-modal__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .cookie-modal__inner {
    padding: 1.5rem;
  }

  .cookie-modal__actions {
    flex-direction: column;
  }

  .footer__columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__right {
    text-align: left;
  }

  .footer__socials {
    justify-content: flex-start;
  }
}

/* Food Menu Lightbox */
.food-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: zoom-out;
}
.food-lightbox.active {
  display: flex;
}
.food-lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  transition: opacity 0.2s;
}
.food-lightbox__close:hover {
  opacity: 0.7;
}
.food-lightbox__img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  cursor: default;
}
