/* ============================================
   COFFEE HUB — Luxury Coffee Aesthetic
   Palette: Parchment & Ink + Terracotta warmth
   Fonts: Cormorant Garamond + Outfit
   ============================================ */

:root {
  --cream:     #F4ECD8;
  --parchment: #EDE0C8;
  --tan:       #D4C5A9;
  --brown:     #5B3A29;
  --espresso:  #2C1A0E;
  --copper:    #B87333;
  --terracotta:#B5563E;
  --warm-white:#FDFAF5;
  --ink:       #1C1410;

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

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- RESET ---- */
*, *::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(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(244,236,216,0.2);
  margin: 0 auto;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--copper);
  width: 0;
  animation: loadFill 1.4s var(--ease-out) forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 8px; height: 8px;
  background: var(--copper);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 9997;
  width: 36px; height: 36px;
  border: 1px solid rgba(184,115,51,0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}
.cursor.hover { width: 14px; height: 14px; background: var(--terracotta); }
.cursor-follower.hover { width: 56px; height: 56px; opacity: 0.6; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(28, 20, 16, 0.92);
  backdrop-filter: blur(16px);
  padding: 1rem 4rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo-icon { color: var(--copper); font-size: 0.9rem; }
.nav-links {
  display: flex; gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.75);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-instagram {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: rgba(184,115,51,0.2);
  border: 1px solid rgba(184,115,51,0.4);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.nav-instagram:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--copper); }
.mobile-ig {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(244,236,216,0.6);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--copper);
  color: var(--warm-white);
  border: 1px solid var(--copper);
}
.btn-primary:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,236,216,0.4);
}
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn-dark {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--espresso);
}
.btn-dark:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,20,16,0.75) 0%,
    rgba(28,20,16,0.4) 50%,
    rgba(28,20,16,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--parchment);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244,236,216,0.8);
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 4rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(244,236,216,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(28,20,16,0.7);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.6);
}
.marquee-track .dot { color: var(--copper); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- ABOUT ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--warm-white);
}
.about-media {
  position: relative;
  overflow: hidden;
}
.about-img-wrap {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.about-img-wrap img {
  height: 100%;
  transition: transform 0.8s var(--ease-out);
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute; bottom: 3rem; right: -1.5rem;
  background: var(--copper);
  color: var(--warm-white);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}
.about-content {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(28,20,16,0.75);
  margin-bottom: 1.25rem;
}
.about-stats {
  display: flex; gap: 3rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(28,20,16,0.1);
  border-bottom: 1px solid rgba(28,20,16,0.1);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28,20,16,0.5);
}

/* ---- MENU ---- */
.menu {
  background: var(--espresso);
  padding: 7rem 4rem;
}
.menu-header {
  text-align: center;
  margin-bottom: 5rem;
}
.menu-header .section-label { color: var(--copper); }
.menu-header .section-title { color: var(--cream); }
.menu-header .section-title em { color: var(--tan); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-category {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(244,236,216,0.06);
  transition: background 0.3s;
}
.menu-category:hover { background: rgba(255,255,255,0.07); }
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(244,236,216,0.1);
  display: flex; align-items: center; gap: 0.6rem;
}
.cat-icon { font-size: 1rem; }
.menu-items { display: flex; flex-direction: column; gap: 0.9rem; }
.menu-items li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(244,236,216,0.7);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(244,236,216,0.05);
  transition: color 0.3s;
}
.menu-items li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-items li:hover { color: var(--cream); }
.menu-items li span:last-child {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--copper);
}

/* ---- GALLERY ---- */
.gallery {
  padding: 7rem 4rem;
  background: var(--warm-white);
}
.gallery-header {
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ---- INSTAGRAM CTA ---- */
.ig-cta {
  max-width: 1200px;
  margin: 0 auto;
}
.ig-cta-link {
  display: flex; align-items: center; gap: 1.5rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 1.75rem 2.5rem;
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(220,39,67,0.25);
}
.ig-cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(220,39,67,0.35);
}
.ig-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.ig-text { flex: 1; }
.ig-handle {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.03em;
}
.ig-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}
.ig-arrow { color: white; opacity: 0.8; }

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--parchment);
  padding: 7rem 4rem;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials .section-title { color: var(--espresso); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(28,20,16,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,20,16,0.08);
}
.stars {
  color: var(--copper);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--espresso);
}
.testimonial-author span {
  font-size: 0.75rem;
  color: rgba(28,20,16,0.5);
  letter-spacing: 0.05em;
}

/* ---- CONTACT ---- */
.contact {
  position: relative;
  padding: 8rem 4rem;
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
}
.contact-bg img { object-fit: cover; }
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,20,16,0.92) 0%, rgba(28,20,16,0.75) 100%);
}
.contact-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block { display: flex; flex-direction: column; gap: 0.4rem; }
.info-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.info-value {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(244,236,216,0.85);
}
.info-ig {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(244,236,216,0.85);
  transition: color 0.3s;
}
.info-ig:hover { color: var(--copper); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-input {
  width: 100%;
  background: rgba(244,236,216,0.07);
  border: 1px solid rgba(244,236,216,0.15);
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
}
.form-input::placeholder { color: rgba(244,236,216,0.35); }
.form-input:focus {
  border-color: var(--copper);
  background: rgba(244,236,216,0.1);
}
.form-textarea { min-height: 120px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--ink);
  padding: 4rem 4rem 2rem;
}
.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,236,216,0.08);
  flex-wrap: wrap;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244,236,216,0.4);
}
.footer-links {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-social {}
.footer-ig {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(244,236,216,0.15);
  border-radius: 50%;
  color: rgba(244,236,216,0.6);
  transition: all 0.3s;
}
.footer-ig:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(244,236,216,0.25);
  flex-wrap: wrap; gap: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 400px; }
  .about-badge { right: 2rem; }
  .about-content { padding: 4rem 3rem; }
}

@media (max-width: 900px) {
  .nav { padding: 1.25rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .nav-links, .nav-instagram { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 2rem; }
  .hero-scroll { left: 2rem; }
  .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-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery { padding: 5rem 2rem; }
  .testimonials { padding: 5rem 2rem; }
  .contact { padding: 5rem 2rem; }
  .menu { padding: 5rem 2rem; }
  .footer { padding: 3rem 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 1; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; }
  .ig-cta-link { flex-wrap: wrap; }
  .contact-grid { gap: 2rem; }
}