/* ============================================
   CALANTHE COFFEE — Brand Styles
   Charcoal + Coral | Playfair Display + Inter
   ============================================ */

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

:root {
  --charcoal-900: #1a1a1a;
  --charcoal-800: #2d2d2d;
  --charcoal-700: #3d3d3d;
  --charcoal-600: #555555;
  --charcoal-500: #6e6e6e;
  --coral-600: #a83f2a;
  --coral-500: #C0503A;
  --coral-400: #d4634f;
  --coral-300: #e8897a;
  --coral-100: #fce8e3;
  --cream-50: #faf8f6;
  --cream-100: #f5f0eb;
  --cream-200: #ede6dd;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal-800);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: var(--space-sm);
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal-900);
  margin-bottom: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--coral {
  background: var(--coral-500);
  color: var(--white);
  border-color: var(--coral-500);
}

.btn--coral:hover {
  background: var(--coral-600);
  border-color: var(--coral-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 80, 58, 0.3);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--charcoal-900);
  border-color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal-800);
  border-color: var(--charcoal-700);
}

.btn--ghost-dark:hover {
  background: var(--charcoal-800);
  color: var(--white);
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.0);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1001;
}

.logo--footer {
  /* styles set in footer context */
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--coral-500);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--coral-500);
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
}

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

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

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

.main-nav .btn--small {
  color: var(--white);
  border-color: var(--coral-500);
  background: var(--coral-500);
}

.main-nav .btn--small:hover {
  background: var(--coral-600);
  border-color: var(--coral-600);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

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

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  left: 0;
  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);
}

/* NAV OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal-900);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  text-align: center;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.5rem;
}

.nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--coral-500);
}

.nav-link--accent {
  color: var(--coral-400);
  margin-top: var(--space-sm);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.65) 0%,
    rgba(26, 26, 26, 0.75) 50%,
    rgba(26, 26, 26, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-3xl);
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--cream-50);
}

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

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-content {
  padding: var(--space-lg) 0;
}

.about-content .section-headline {
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal-600);
  margin-bottom: var(--space-md);
}

.about-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--cream-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: var(--space-4xl) 0;
  background: var(--charcoal-900);
}

.menu .section-headline {
  color: var(--white);
}

.menu-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.menu-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.menu-card {
  background: var(--charcoal-800);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), transform var(--transition);
}

.menu-card:hover {
  border-color: rgba(192, 80, 58, 0.3);
  transform: translateY(-4px);
}

.menu-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(192, 80, 58, 0.12);
  color: var(--coral-400);
  margin-bottom: var(--space-md);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

.menu-item-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-xl);
  font-style: italic;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--space-4xl) 0;
  background: var(--cream-50);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-step {
  position: relative;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  border-color: var(--coral-300);
  box-shadow: 0 12px 40px rgba(192, 80, 58, 0.08);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream-200);
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.process-step:hover .step-number {
  color: var(--coral-100);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: var(--space-sm);
}

.step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--charcoal-600);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  overflow: hidden;
  background: var(--charcoal-900);
  padding: var(--space-2xl) 0;
}

.gallery-track {
  display: flex;
  gap: var(--space-md);
  animation: galleryScroll 40s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.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.08);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: var(--space-4xl) 0;
  background: var(--cream-100);
}

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

.visit-info {
  padding: var(--space-xl) 0;
}

.visit-info .section-headline {
  margin-bottom: var(--space-lg);
}

.visit-address {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal-700);
  margin-bottom: var(--space-xl);
}

.visit-address p {
  margin-bottom: 0.25rem;
}

.visit-address strong {
  color: var(--charcoal-900);
}

.visit-hours-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: var(--space-sm);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  font-size: 0.9375rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--cream-200);
}

.hours-list .day {
  color: var(--charcoal-700);
  font-weight: 500;
}

.hours-list .time {
  color: var(--coral-500);
  font-weight: 600;
}

.visit-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-700);
  transition: color var(--transition);
}

.visit-link:hover {
  color: var(--coral-500);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: var(--charcoal-900);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-headline {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

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

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

.contact-left {
  padding: var(--space-lg) 0;
}

.contact-left .section-headline {
  margin-bottom: var(--space-md);
}

.contact-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal-600);
  margin-bottom: var(--space-xl);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-direct-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-md);
  background: var(--cream-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-direct-link:hover {
  border-color: var(--coral-300);
  box-shadow: 0 8px 24px rgba(192, 80, 58, 0.08);
}

.contact-direct-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral-500);
}

.contact-direct-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal-800);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--cream-50);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal-800);
  background: var(--white);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(192, 80, 58, 0.1);
}

.form-input::placeholder {
  color: var(--charcoal-500);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem;
  background: rgba(192, 80, 58, 0.08);
  border-radius: var(--radius-sm);
  color: var(--coral-600);
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal-900);
  padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-brand .logo-text {
  /* inherited */
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--coral-400);
}

.footer-info address {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-info a:hover {
  color: var(--coral-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .hero-headline br {
    display: block;
  }

  .about-grid,
  .menu-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-wrap {
    aspect-ratio: 16/10;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 240px;
    height: 288px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

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

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

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

  .menu-card {
    padding: var(--space-md);
  }

  .about-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .contact-form {
    padding: var(--space-md);
  }
}
