/* ═══════════════════════════════════════════════════════════════
   BREWED & CO. — CAFE WEBSITE STYLES
   Palette: Espresso #2C1810 | Cream #F5EDD6 | Terracotta #C4622D | Gold #E8A838
═══════════════════════════════════════════════════════════════ */

:root {
  --espresso: #2C1810;
  --espresso-light: #4A2E20;
  --cream: #F5EDD6;
  --cream-dark: #EDE0C0;
  --terracotta: #C4622D;
  --terracotta-light: #D4784A;
  --gold: #E8A838;
  --gold-light: #F0C060;
  --white: #FDFAF4;
  --text-dark: #1A0F08;
  --text-mid: #5C3D2A;
  --text-light: #9A7A65;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLL REVEAL ─── */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(60px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 98, 45, 0.35);
}
.btn--primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 98, 45, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
}
.btn--ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
}
.nav__logo-icon { font-size: 1.4rem; }
.nav__logo em { font-style: italic; color: var(--terracotta); }
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--espresso);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  color: var(--espresso);
  padding: 4px;
}
.nav__hamburger svg { width: 26px; height: 26px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 700;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--cream);
  padding: 8px;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__bg-text {
  position: absolute;
  bottom: -20px; left: -20px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  color: rgba(44, 24, 16, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  height: 560px;
}
.hero__img-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__img-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__img-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--espresso);
  line-height: 1;
}
.hero__img-badge-label {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}
.hero__float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__float--1 {
  top: -20px; left: -10px;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 4px solid var(--white);
}
.hero__float--2 {
  bottom: 60px; left: -30px;
  background: var(--gold);
  color: var(--espresso);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  overflow: visible;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-hint svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--espresso);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.marquee-track .dot { color: var(--gold); font-size: 0.7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  padding: 120px 60px;
  background: var(--white);
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__images {
  position: relative;
  height: 560px;
}
.about__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}
.about__stat-card {
  position: absolute;
  top: 50%; left: -20px;
  transform: translateY(-50%);
  background: var(--terracotta);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 3;
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}
.about__tag {
  display: inline-block;
  background: var(--cream);
  color: var(--terracotta);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 24px;
}
.about__title em { font-style: italic; color: var(--terracotta); }
.about__body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about__pillars {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.about__pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--espresso);
}
.about__pillar svg { width: 16px; height: 16px; color: var(--terracotta); }

/* ═══════════════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════════════ */
.menu {
  padding: 120px 60px;
  background: var(--cream);
}
.menu__container { max-width: 1200px; margin: 0 auto; }
.menu__header { text-align: center; margin-bottom: 60px; }
.menu__tag {
  display: inline-block;
  background: var(--espresso);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.menu__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 16px;
}
.menu__title em { font-style: italic; color: var(--terracotta); }
.menu__subtitle { color: var(--text-mid); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu__tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid transparent;
  transition: var(--transition);
}
.menu__tab:hover { border-color: var(--terracotta); color: var(--terracotta); }
.menu__tab.active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.menu__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.07);
  transition: var(--transition);
  animation: fadeIn 0.4s ease;
}
.menu__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu__item.hidden { display: none; }
.menu__item-img {
  height: 200px;
  overflow: hidden;
}
.menu__item-img img {
  transition: transform 0.5s ease;
}
.menu__item:hover .menu__item-img img { transform: scale(1.08); }
.menu__item-info { padding: 20px; }
.menu__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.menu__item-top h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.3;
}
.menu__price {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 8px;
}
.menu__item-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.menu__tag-item {
  display: inline-block;
  background: rgba(232, 168, 56, 0.15);
  color: var(--espresso);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.gallery {
  padding: 120px 60px;
  background: var(--espresso);
}
.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery__tag {
  display: inline-block;
  background: rgba(232, 168, 56, 0.2);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
}
.gallery__title em { font-style: italic; color: var(--gold); }
.gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { transition: transform 0.6s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 60px;
  background: var(--cream);
  overflow: hidden;
}
.testimonials__container { max-width: 1200px; margin: 0 auto; }
.testimonials__header { text-align: center; margin-bottom: 60px; }
.testimonials__tag {
  display: inline-block;
  background: var(--espresso);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--espresso);
}
.testimonials__title em { font-style: italic; color: var(--terracotta); }
.testimonials__track-wrap { overflow: hidden; }
.testimonials__track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial__card {
  min-width: calc(33.333% - 19px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.07);
  flex-shrink: 0;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial__card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--espresso);
}
.testimonial__author span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonials__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonials__btn:hover { background: var(--terracotta); transform: scale(1.05); }
.testimonials__btn svg { width: 18px; height: 18px; }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: var(--transition);
  cursor: pointer;
}
.testimonials__dot.active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   HOURS BANNER
═══════════════════════════════════════════════════════════════ */
.hours-banner {
  background: var(--terracotta);
  padding: 60px;
}
.hours-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hours-banner__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
  flex: 1;
  min-width: 180px;
}
.hours-banner__item svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}
.hours-banner__item div { display: flex; flex-direction: column; gap: 2px; }
.hours-banner__item strong {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.hours-banner__item span { font-size: 0.85rem; opacity: 0.85; }
.hours-banner__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 60px;
  background: var(--white);
}
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__tag {
  display: inline-block;
  background: var(--cream);
  color: var(--terracotta);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 20px;
}
.contact__title em { font-style: italic; color: var(--terracotta); }
.contact__body { color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.contact__detail svg { width: 20px; height: 20px; color: var(--terracotta); flex-shrink: 0; }
.contact__form {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 28px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--espresso);
}
.form__group input,
.form__group textarea {
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}
.form__success.show { display: flex; }
.form__success svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--espresso);
  padding: 80px 60px 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 237, 214, 0.1);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer__logo em { font-style: italic; color: var(--gold); }
.footer__brand p {
  color: rgba(245, 237, 214, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245, 237, 214, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--transition);
}
.footer__socials a:hover { background: var(--terracotta); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(245, 237, 214, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__newsletter h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer__newsletter p {
  color: rgba(245, 237, 214, 0.65);
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer__form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(245, 237, 214, 0.2);
}
.footer__form input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(245, 237, 214, 0.08);
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.footer__form input::placeholder { color: rgba(245, 237, 214, 0.4); }
.footer__form input:focus { outline: none; }
.footer__form button {
  padding: 12px 20px;
  background: var(--terracotta);
  color: var(--white);
  transition: background var(--transition);
}
.footer__form button:hover { background: var(--terracotta-light); }
.footer__form button svg { width: 18px; height: 18px; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(245, 237, 214, 0.4);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 18px 40px; }
  .nav.scrolled { padding: 12px 40px; }
  .nav__links { gap: 24px; }
  .hero { padding: 100px 40px 60px; gap: 40px; }
  .about { padding: 80px 40px; }
  .about__container { gap: 50px; }
  .menu { padding: 80px 40px; }
  .gallery { padding: 80px 40px; }
  .testimonials { padding: 80px 40px; }
  .hours-banner { padding: 50px 40px; }
  .contact { padding: 80px 40px; }
  .footer { padding: 60px 40px 0; }
  .footer__container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonial__card { min-width: calc(50% - 14px); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 48px;
  }
  .hero__content { order: 1; }
  .hero__visual { order: 2; height: 380px; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__float--1 { width: 90px; height: 90px; }
  .about { padding: 80px 24px; }
  .about__container { grid-template-columns: 1fr; gap: 40px; }
  .about__images { height: 380px; }
  .menu { padding: 80px 24px; }
  .gallery { padding: 80px 24px; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .testimonials { padding: 80px 24px; }
  .testimonial__card { min-width: calc(100% - 0px); }
  .hours-banner { padding: 40px 24px; }
  .hours-banner__container { flex-direction: column; gap: 28px; }
  .hours-banner__divider { display: none; }
  .contact { padding: 80px 24px; }
  .contact__container { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 0; }
  .footer__container { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 40px; }
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .about__pillars { flex-direction: column; gap: 12px; }
}