/* ═══════════════════════════════════════════════════════════
   EMBER & OAK — STYLESHEET
   Palette: Terracotta Studio variant
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Colors */
  --espresso:    #3D2B1F;
  --mocha:       #6B4C3B;
  --terracotta:  #B5563E;
  --caramel:     #D4896A;
  --cream:       #F2E6D9;
  --parchment:   #FAF5EE;
  --warm-white:  #FFFCF8;
  --text-dark:   #2A1A10;
  --text-mid:    #6B4C3B;
  --text-light:  #A07860;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

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

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-mid: 400ms;
  --duration-slow: 700ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.08);
  --shadow-md: 0 8px 32px rgba(61, 43, 31, 0.12);
  --shadow-lg: 0 24px 64px rgba(61, 43, 31, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all var(--duration-mid) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--warm-white);
  box-shadow: 0 4px 20px rgba(181, 86, 62, 0.35);
}

.btn--primary:hover {
  background: var(--espresso);
  box-shadow: 0 8px 32px rgba(61, 43, 31, 0.3);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}

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

.btn--ghost {
  color: var(--cream);
  border-bottom: 1px solid rgba(242, 230, 217, 0.4);
  border-radius: 0;
  padding: 0.5rem 0;
}

.btn--ghost:hover {
  border-bottom-color: var(--cream);
  transform: translateX(4px);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--duration-mid) var(--ease-out),
              box-shadow var(--duration-mid) var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--warm-white);
  transition: color var(--duration-fast);
  flex-shrink: 0;
}

.nav.scrolled .nav__logo { color: var(--espresso); }

.nav__logo em { font-style: italic; color: var(--terracotta); }

.nav__logo-icon {
  color: var(--terracotta);
  font-size: 1rem;
}

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 252, 248, 0.85);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--duration-fast);
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--duration-mid) var(--ease-out);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--warm-white); }
.nav.scrolled .nav__link:hover { color: var(--terracotta); }

.nav__cta {
  font-size: 0.8rem;
  padding: 0.6rem 1.4rem;
  border-color: rgba(255, 252, 248, 0.6);
  color: var(--warm-white);
}

.nav.scrolled .nav__cta {
  border-color: var(--espresso);
  color: var(--espresso);
}

.nav.scrolled .nav__cta:hover {
  background: var(--espresso);
  color: var(--warm-white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-white);
  transition: all var(--duration-mid) var(--ease-out);
  transform-origin: center;
}

.nav.scrolled .nav__burger span { background: var(--espresso); }

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--duration-fast);
}

.mobile-menu__link:hover { color: var(--caramel); }

.mobile-menu__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: var(--space-md);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--espresso);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Floating beans */
.hero__beans {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bean {
  position: absolute;
  color: var(--mocha);
  font-size: 1.2rem;
  animation: floatBean 8s ease-in-out infinite;
  opacity: 0.4;
}

.bean--1 { top: 15%; left: 8%;  animation-delay: 0s;    font-size: 0.8rem; }
.bean--2 { top: 70%; left: 5%;  animation-delay: 1.5s;  font-size: 1.4rem; }
.bean--3 { top: 30%; left: 48%; animation-delay: 3s;    font-size: 0.6rem; opacity: 0.2; }
.bean--4 { top: 80%; left: 42%; animation-delay: 2s;    font-size: 1rem; }
.bean--5 { top: 10%; left: 38%; animation-delay: 4s;    font-size: 0.7rem; opacity: 0.25; }

@keyframes floatBean {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(12deg); }
  66%       { transform: translateY(8px) rotate(-8deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md) var(--space-xl) clamp(2rem, 6vw, 6rem);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--caramel);
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(242, 230, 217, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 420px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero image side */
.hero__image-wrap {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75) saturate(1.1);
  transition: transform 8s ease-out;
}

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

/* Rating badge */
.hero__image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: -1.5rem;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.badge__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1;
}

.badge__stars {
  color: var(--terracotta);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.badge__label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: clamp(2rem, 6vw, 6rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(242, 230, 217, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(242, 230, 217, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--caramel);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee {
  background: var(--terracotta);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.marquee__dot {
  color: rgba(242, 230, 217, 0.5);
  font-size: 0.6rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: var(--space-xl) 0;
  background: var(--parchment);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__images {
  position: relative;
  height: 600px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about__img-main:hover img { transform: scale(1.04); }

.about__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--parchment);
}

.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about__img-secondary:hover img { transform: scale(1.04); }

.about__img-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
}

.about__body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(61, 43, 31, 0.1);
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ─── MENU ───────────────────────────────────────────────── */
.menu {
  padding: var(--space-xl) 0;
  background: var(--warm-white);
}

.menu__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.menu__subtitle {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* Tabs */
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.menu__tab {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  border: 1.5px solid rgba(61, 43, 31, 0.15);
  border-radius: 100px;
  transition: all var(--duration-mid) var(--ease-out);
}

.menu__tab:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.menu__tab.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--warm-white);
}

/* Panels */
.menu__panel {
  display: none;
}

.menu__panel.active {
  display: block;
  animation: fadeInUp 0.4s var(--ease-out) both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Menu Grid */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Menu Item Card */
.menu-item {
  background: var(--parchment);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--duration-mid) var(--ease-out),
              box-shadow var(--duration-mid) var(--ease-out);
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.menu-item__img {
  height: 200px;
  overflow: hidden;
}

.menu-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.menu-item:hover .menu-item__img img {
  transform: scale(1.06);
}

.menu-item__body {
  padding: 1.25rem;
}

.menu-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item__top h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--espresso);
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--terracotta);
}

.menu-item__body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.menu-item__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(181, 86, 62, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  padding: var(--space-xl) 0;
  background: var(--espresso);
}

.gallery .section-eyebrow { color: var(--caramel); }
.gallery .section-title { color: var(--cream); }
.gallery .section-title em { color: var(--caramel); }

.gallery .container {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

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

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

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
  filter: brightness(0.8) saturate(0.9);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-out);
}

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

.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ─── SPECIALS ───────────────────────────────────────────── */
.specials {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.specials__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.specials__body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

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

.special-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-mid) var(--ease-out),
              box-shadow var(--duration-mid) var(--ease-out);
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.special-card__img {
  height: 180px;
  overflow: hidden;
}

.special-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.special-card__body {
  padding: 1.25rem;
}

.special-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--terracotta);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.special-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.special-card__body p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.special-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terracotta);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: var(--space-xl) 0;
  background: var(--parchment);
}

.testimonials .section-title,
.testimonials .section-eyebrow {
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 2rem;
  border-left: 3px solid var(--terracotta);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-mid) var(--ease-out),
              box-shadow var(--duration-mid) var(--ease-out);
}

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

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.testimonial footer strong {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--espresso);
}

.testimonial footer span {
  color: var(--terracotta);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: var(--space-xl) 0;
  background: var(--warm-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.contact__detail p,
.contact__detail a {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

.contact__detail a:hover { color: var(--terracotta); }

.contact__social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(61, 43, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--duration-mid) var(--ease-out);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--warm-white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact__form-wrap {
  background: var(--parchment);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  border: 1.5px solid rgba(61, 43, 31, 0.12);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--duration-fast),
              box-shadow var(--duration-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181, 86, 62, 0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--terracotta);
  font-weight: 500;
  text-align: center;
  min-height: 1.4em;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--space-xl) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(242, 230, 217, 0.1);
}

.footer__brand .nav__logo-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__name em { font-style: italic; color: var(--caramel); }

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(242, 230, 217, 0.5);
  font-weight: 300;
  line-height: 1.6;
}

.footer__links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1.25rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links li,
.footer__links a {
  font-size: 0.875rem;
  color: rgba(242, 230, 217, 0.6);
  font-weight: 300;
  transition: color var(--duration-fast);
}

.footer__links a:hover { color: var(--caramel); }

.footer__newsletter h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.5rem;
}

.footer__newsletter p {
  font-size: 0.8rem;
  color: rgba(242, 230, 217, 0.5);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(242, 230, 217, 0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream);
}

.newsletter-form input::placeholder {
  color: rgba(242, 230, 217, 0.35);
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 1.1rem;
  transition: background var(--duration-fast);
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--caramel); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--space-md);
  font-size: 0.75rem;
  color: rgba(242, 230, 217, 0.3);
  font-weight: 300;
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--warm-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--duration-mid) var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--espresso);
  transform: translateY(-3px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Large tablets */
@media (max-width: 1100px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
  }

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

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

/* Tablets */
@media (max-width: 900px) {
  :root {
    --space-xl: 5rem;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: calc(var(--nav-height) + 3rem) var(--space-md) var(--space-lg);
    text-align: center;
  }

  .hero__sub { margin: 0 auto var(--space-lg); }
  .hero__actions { justify-content: center; }

  .hero__image-wrap {
    height: 50vw;
    min-height: 300px;
  }

  .hero__image-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
  }

  .hero__scroll-hint { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__images {
    height: 400px;
  }

  .specials__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

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

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

  .gallery__item {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .hero__headline {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn--ghost {
    border-radius: 100px;
    border: 1.5px solid rgba(242, 230, 217, 0.4);
    padding: 0.85rem 2rem;
  }

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

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

  .about__stats {
    gap: var(--space-md);
  }

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

  .gallery__item {
    height: 260px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .contact__form-wrap {
    padding: 1.5rem;
  }

  .about__images {
    height: 320px;
  }

  .about__img-main {
    width: 80%;
    height: 80%;
  }

  .about__img-secondary {
    width: 60%;
    height: 45%;
  }

  .br-desktop { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}