/* ─────────────────────────────────────────────
   Gateway Café — Custom Styles
   Palette: Terracotta + Sand
   Fonts: DM Serif Display + Inter + Lora
───────────────────────────────────────────── */

/* ── Custom Properties ─────────────────────── */
:root {
  --terracotta: #C4724E;
  --terracotta-deep: #A85A3A;
  --terracotta-light: #D4916F;
  --sand: #F5EDE3;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD0;
  --cream: #FDF9F4;
  --warm-white: #FFFCF8;
  --text-dark: #2C1E16;
  --text-mid: #5C4033;
  --text-light: #8B7355;
  --text-muted: #A89279;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(44, 30, 22, 0.06), 0 1px 2px rgba(44, 30, 22, 0.04);
  --shadow-md: 0 4px 16px rgba(44, 30, 22, 0.08), 0 2px 4px rgba(44, 30, 22, 0.04);
  --shadow-lg: 0 12px 40px rgba(44, 30, 22, 0.12), 0 4px 12px rgba(44, 30, 22, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Lora', Georgia, serif;
}

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

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

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

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 14px;
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
}

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--text-mid);
  max-width: 65ch;
}

/* ── Section Tag ───────────────────────────── */
.section-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--terracotta);
  display: inline-block;
}

.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }

.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 56ch;
  margin-top: 16px;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 114, 78, 0.3);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 114, 78, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}

.btn-ghost:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ── Header ────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 114, 78, 0.08);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(253, 249, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon {
  color: var(--terracotta);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width var(--transition);
}

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

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  position: relative;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ── Hero ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 114, 78, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 114, 78, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta);
  background: rgba(196, 114, 78, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-tag svg {
  opacity: 0.7;
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--sand-dark);
}

.hero-image {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 680/860;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card svg {
  color: var(--terracotta);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ── About ─────────────────────────────────── */
.about {
  background: var(--warm-white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/640;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-white);
  aspect-ratio: 1;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  right: 40px;
  color: var(--terracotta);
  opacity: 0.2;
  animation: float 5s ease-in-out infinite;
}

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

.about-content h2 {
  margin-bottom: 24px;
}

.about-content > p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(196, 114, 78, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: none;
}

/* ── Menu ──────────────────────────────────── */
.menu {
  background: var(--sand);
}

.menu-alt {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-light) 100%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(196, 114, 78, 0.06);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 114, 78, 0.15);
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand-dark);
}

.menu-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 114, 78, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.menu-card-header h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.menu-item-name {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
  max-width: 200px;
  line-height: 1.4;
}

.menu-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: var(--font-accent);
}

/* ── Space / Gallery ───────────────────────── */
.space {
  background: var(--warm-white);
}

.space .section-header {
  max-width: 640px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-bottom: 60px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 30, 22, 0.6) 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 {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
}

.gallery-item--tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 8;
}

.space-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.space-feature {
  padding: 32px 24px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 114, 78, 0.06);
  transition: all var(--transition);
}

.space-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.space-feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.space-feature h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.space-feature p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: none;
  line-height: 1.6;
}

/* ── Testimonials ──────────────────────────── */
.testimonials {
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
}

.testimonials-alt {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 114, 78, 0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.testimonial-quote {
  color: var(--terracotta);
  opacity: 0.2;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testimonial p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 24px;
  max-width: none;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Visit / Contact ───────────────────────── */
.visit {
  background: var(--warm-white);
}

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

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.contact-card {
  background: var(--sand-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 114, 78, 0.1);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 114, 78, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: none;
  line-height: 1.5;
}

.contact-card a {
  color: var(--terracotta);
}

.visit-form-wrap {
  position: sticky;
  top: 100px;
}

.visit-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 114, 78, 0.06);
}

.visit-form-card h3 {
  margin-bottom: 8px;
}

.visit-form-card > p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--sand-light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 114, 78, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #166534;
  font-weight: 500;
}

.form-success svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* ── Map Section ───────────────────────────── */
.map-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253, 249, 244, 0.9) 0%, rgba(253, 249, 244, 0.7) 50%, transparent 100%);
  display: flex;
  align-items: center;
}

.map-card {
  max-width: 480px;
  padding: 20px 0;
}

.map-card h3 {
  margin-bottom: 12px;
}

.map-card p {
  margin-bottom: 24px;
  color: var(--text-light);
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: none;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
  color: var(--terracotta-light);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .about-grid {
    gap: 60px;
  }

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

  .menu-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

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

  .testimonials-grid .testimonial:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 100;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav a {
    font-size: 16px;
  }

  .nav .btn {
    margin-top: 8px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 30, 22, 0.4);
    z-index: 99;
  }

  .nav-overlay.is-open {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-img-wrap {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
  }

  .hero-float-card {
    left: 16px;
    bottom: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-wave svg {
    height: 50px;
  }

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

  .about-img-secondary {
    right: 0;
    width: 160px;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--tall {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }

  /* Space Features */
  .space-features {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid .testimonial:last-child {
    grid-column: span 1;
    max-width: none;
  }

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

  .visit-form-wrap {
    position: static;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Map */
  .map-section {
    height: 300px;
  }

  .map-overlay {
    background: linear-gradient(to top, rgba(253, 249, 244, 0.95) 0%, rgba(253, 249, 244, 0.8) 60%, transparent 100%);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .menu-card {
    padding: 24px;
  }

  .visit-form-card {
    padding: 24px;
  }

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

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
