/* =============================================
   NaNa's Flavor Bakery and Kitchen
   Design System & Styles
   Kati Thai structural framework — exact replica
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --color-brand: #E8872B;
  --color-brand-hover: #D47A25;
  --color-brand-light: #FEF3E8;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #6b7280;
  --color-border: #e5e7eb;
  --color-bg-white: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-bg-tertiary: #f0f0f0;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-35: 140px;

  --max-container: 1536px;
  --max-content: 1312px;
  --padding-mobile: 16px;
  --padding-desktop: 32px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Layout Utilities --- */
.section-content {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--padding-mobile);
  padding-right: var(--padding-mobile);
}

.section-padding {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* =============================================
   SECTION 1 — HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
}

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

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-primary);
  height: 56px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-accent {
  color: var(--color-brand);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
  min-height: 40px;
  transition: color 0.2s;
}

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

.nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  margin: 0 4px;
}

/* More Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 200px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 8px 0;
}

.dropdown-panel.open {
  display: block;
}

.dropdown-panel a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: background 0.15s;
}

.dropdown-panel a:hover {
  background: var(--color-bg-light);
}

/* Nav CTA */
.btn-nav {
  font-size: 0.875rem;
  min-height: 40px;
  padding: 8px 16px;
}

/* Mobile Nav Controls */
.mobile-nav-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 16px 0;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: background 0.15s;
}

.mobile-menu a:hover {
  background: var(--color-bg-light);
}

.mobile-menu .btn-primary {
  margin: 12px 24px 4px;
  width: calc(100% - 48px);
  justify-content: center;
}

/* =============================================
   SECTION 2 — HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--padding-mobile);
  padding-right: var(--padding-mobile);
}

.hero-text {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 3.5vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.hero-cta-row {
  display: none;
  gap: 12px;
  margin-top: 8px;
}

/* =============================================
   SECTION 3 — MOBILE CTA STRIP
   ============================================= */
.mobile-cta-strip {
  display: block;
  width: 100%;
  background: var(--color-brand-light);
  padding: 16px;
}

.mobile-cta-inner {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-cta-inner .btn-primary,
.mobile-cta-inner .btn-secondary {
  flex: 1;
  justify-content: center;
  min-height: 44px;
  font-size: 0.9375rem;
}

/* =============================================
   BUTTON SYSTEM
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 40px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-brand-hover);
}

.btn-primary.btn-lg {
  min-height: 48px;
  padding: 12px 16px;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-white);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--color-bg-light);
}

.btn-secondary.btn-lg {
  min-height: 48px;
  padding: 12px 16px;
  font-size: 1rem;
}

/* =============================================
   SECTION 4 — FEATURED CAROUSEL
   ============================================= */
.featured-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.featured-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.featured-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.featured-scroll::-webkit-scrollbar {
  display: none;
}

.featured-card {
  flex: 0 0 150px;
  scroll-snap-align: start;
}

.card-image-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s;
}

.add-badge:hover {
  transform: scale(1.05);
}

.add-badge svg {
  width: 20px;
  height: 20px;
}

.card-title {
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   SPLIT SECTIONS — Shared System
   ============================================= */
.split-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.split-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-light);
}

.split-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.split-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.split-body p {
  margin-bottom: 16px;
}

.split-body p:last-child {
  margin-bottom: 0;
}

.split-cta {
  margin-top: 24px;
}

.split-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* =============================================
   SECTION 7 & 13 — FULL-BLEED PROMO
   ============================================= */
.promo-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.promo-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 24px var(--padding-mobile);
}

.promo-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.promo-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-light);
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card-text {
  padding: 24px;
}

.promo-card-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.promo-card-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.promo-card-text .btn-primary {
  width: 100%;
  justify-content: center;
}

/* =============================================
   SECTION 8 — GALLERY GRID
   ============================================= */
.gallery-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.gallery-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   SECTION 10 — VISIT / TEXT SECTION
   ============================================= */
.visit-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.visit-inner {
  max-width: 700px;
  margin: 0 auto;
}

.visit-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.visit-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.visit-body p {
  margin-bottom: 16px;
}

.visit-body p:last-child {
  margin-bottom: 0;
}

.visit-body strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* =============================================
   SECTION 11 — TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--color-bg-light);
  padding-top: 32px;
  padding-bottom: 32px;
}

.testimonials-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.25;
}

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

.testimonial-card {
  background: var(--color-bg-white);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-brand);
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
}

.view-more-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 16px;
  padding: 0;
  cursor: pointer;
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* =============================================
   SECTION 12 — FEATURE ICON GRID
   ============================================= */
.features-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.features-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.25;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  justify-content: center;
  gap: 24px;
}

.feature-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.35;
}

/* =============================================
   SECTION 14 — FAQ ACCORDION
   ============================================= */
.faq-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.faq-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.25;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: var(--color-text-secondary);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  background: var(--color-bg-light);
  padding: 24px;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* =============================================
   SECTION 15 — LOCATION
   ============================================= */
.location-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.location-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.25;
}

.location-card {
  background: var(--color-bg-light);
  overflow: hidden;
}

.location-map {
  width: 100%;
  height: 250px;
  background: var(--color-bg-tertiary);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  padding: 24px;
}

.location-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.location-address,
.location-phone {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.location-phone a {
  color: var(--color-brand);
  font-weight: 500;
}

.location-hours-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  border: none;
  background: none;
}

.location-hours-toggle .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  color: var(--color-text-secondary);
}

.location-hours-toggle.open .chevron {
  transform: rotate(180deg);
}

.location-hours-content {
  display: none;
  padding: 0 0 12px;
}

.location-hours-content.open {
  display: block;
}

.location-hours-content p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.location-actions .btn-primary,
.location-actions .btn-secondary {
  width: 100%;
  justify-content: center;
}

.location-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.location-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.location-social a:hover {
  color: var(--color-brand);
}

.location-social svg {
  width: 20px;
  height: 20px;
}

/* =============================================
   SECTION 16 — FOOTER
   ============================================= */
.site-footer {
  background: var(--color-text-primary);
  color: #d1d5db;
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand-statement {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 400px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--color-brand);
}

.footer-social-text {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.5;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-social-icons a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-social-icons a:hover {
  color: var(--color-brand);
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 16px;
  margin-top: 8px;
}

.footer-legal {
  font-size: 0.75rem;
  color: #6b7280;
}

/* =============================================
   RESPONSIVE — TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
  .section-content {
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
  }

  /* Hero */
  .hero-content {
    padding-left: var(--padding-desktop);
    padding-right: var(--padding-desktop);
  }

  .hero-text {
    gap: 12px;
  }

  /* Mobile CTA strip hidden on tablet+ */
  .mobile-cta-strip {
    display: none;
  }

  /* Hero CTA visible on tablet+ */
  .hero-cta-row {
    display: flex;
  }

  /* Featured carousel */
  .featured-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Gallery */
  .gallery-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Split sections */
  .split-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Testimonials */
  .testimonials-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  /* Features */
  .features-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* FAQ */
  .faq-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Location */
  .location-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .location-map {
    height: 100%;
    min-height: 350px;
  }

  .location-actions {
    flex-direction: row;
  }

  .location-actions .btn-primary,
  .location-actions .btn-secondary {
    width: auto;
  }

  /* Visit */
  .visit-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Promo */
  .promo-inner {
    padding: 32px var(--padding-desktop);
  }

  /* Footer */
  .site-footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-brand-col {
    flex: 1;
    min-width: 250px;
  }

  .footer-links-col {
    flex: 0 0 auto;
  }

  .footer-social-col {
    flex: 0 0 auto;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
  /* Navigation */
  .desktop-nav {
    display: block;
  }

  .mobile-nav-controls {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  /* Hero */
  .hero {
    min-height: 640px;
    height: calc(100vh - 136px);
    max-height: 752px;
  }

  /* Featured carousel cards */
  .featured-card {
    flex: 0 0 240px;
  }

  .card-image-wrapper {
    width: 240px;
    height: 240px;
  }

  .featured-scroll {
    gap: 32px;
  }

  .card-title {
    margin-top: 12px;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  /* Split sections desktop 2-col */
  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .split-grid.reversed {
    direction: ltr;
  }

  .split-grid.reversed .split-image-col {
    order: 2;
  }

  .split-grid.reversed .split-text {
    order: 1;
  }

  .split-heading {
    font-size: 2rem;
  }

  .split-cta .btn-primary {
    width: auto;
  }

  /* Promo */
  .promo-section {
    min-height: 800px;
  }

  .promo-card {
    flex-direction: row;
  }

  .promo-card-image {
    width: 50%;
    aspect-ratio: auto;
    min-height: 300px;
  }

  .promo-card-text {
    width: 50%;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .promo-card-heading {
    font-size: 1.75rem;
  }

  .promo-card-text .btn-primary {
    width: auto;
  }

  /* Gallery */
  .gallery-heading {
    font-size: 2rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-heading {
    font-size: 2rem;
  }

  /* Features */
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 16px;
  }

  .feature-tile {
    width: 220px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .features-heading {
    font-size: 2rem;
  }

  /* FAQ */
  .faq-heading {
    font-size: 2rem;
  }

  /* Location */
  .location-heading {
    font-size: 2rem;
  }

  /* Visit */
  .visit-heading {
    font-size: 2rem;
  }
}

/* =============================================
   RESPONSIVE — WIDE DESKTOP (1280px+)
   ============================================= */
@media (min-width: 1280px) {
  .split-grid {
    gap: 140px;
  }

  .features-grid {
    gap: 16px 40px;
  }
}

/* =============================================
   RESPONSIVE — 2XL (1536px+)
   ============================================= */
@media (min-width: 1536px) {
  /* Content maxes out at 1312px, no further scaling needed */
}

/* =============================================
   UTILITY / PRINT
   ============================================= */
@media print {
  .site-header,
  .mobile-cta-strip,
  .hero-cta-row,
  .promo-section {
    display: none;
  }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

/* Smooth scroll offset for sticky header */
[id] {
  scroll-margin-top: 80px;
}
