/* ========== DESIGN TOKENS ========== */
:root {
  --bg: #faf7f3;
  --surface: #fffdfb;
  --surface-soft: #f4eee8;
  --surface-blush: #efe3e4;
  --surface-taupe: #ddd1cb;
  --text: #2d2724;
  --text-muted: #756a63;
  --text-light: #9a8f88;
  --line: rgba(45, 39, 36, 0.1);
  --line-strong: rgba(45, 39, 36, 0.18);
  --gold: #b89763;
  --gold-deep: #9a7742;
  --gold-light: #d4b88a;
  --blush: #d4a0a0;
  --shadow: 0 20px 60px rgba(114, 92, 72, 0.12);
  --shadow-sm: 0 8px 24px rgba(114, 92, 72, 0.08);
  --shadow-lg: 0 32px 80px rgba(114, 92, 72, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 10px;
  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fdfaf7 0%, #f7f1ea 100%);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ========== ACCESSIBILITY ========== */
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; background: white; padding: 12px 16px; z-index: 1000; border-radius: 8px; }

/* ========== LAYOUT ========== */
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 247, 243, 0.85);
  border-bottom: 1px solid rgba(45, 39, 36, 0.05);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 247, 243, 0.95);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 80px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 12px; transition: opacity 0.2s; }
.brand:hover { opacity: 0.8; }
.brand-logo {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 2px 8px rgba(197, 157, 97, 0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong, .brand-text span {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; letter-spacing: 0.03em;
}
.brand-text span { font-weight: 700; }

/* Desktop Nav */
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  padding: 4px 0; position: relative;
  transition: color 0.25s;
}
.desktop-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: white;
  width: 42px; height: 42px; border-radius: var(--radius-xs); cursor: pointer;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 18px; height: 2px; background: var(--text);
  border-radius: 2px; position: absolute; left: 50%; transform: translateX(-50%);
  transition: 0.3s var(--ease);
}
.hamburger { top: 50%; margin-top: -1px; }
.hamburger::before { content: ''; top: -6px; left: 0; width: 18px; }
.hamburger::after { content: ''; top: 6px; left: 0; width: 18px; }
.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); }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 8px;
  padding: 8px 24px 24px; background: rgba(250, 247, 243, 0.98);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 10px 0; font-size: 1rem; color: var(--text-muted); border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .btn { margin-top: 8px; border-bottom: none; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  transition: all 0.3s var(--ease); border: 1.5px solid transparent; cursor: pointer;
}
.btn-sm { min-height: 42px; padding: 0 20px; font-size: 0.85rem; }
.btn-primary {
  background: linear-gradient(145deg, #c8a26b, #ae8650);
  color: white; box-shadow: 0 8px 20px rgba(174, 134, 80, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(174, 134, 80, 0.38);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: rgba(255,255,255,0.6); border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.9); border-color: var(--gold-light); }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, .footer-brand {
  font-family: 'Playfair Display', serif; line-height: 1.08;
  letter-spacing: -0.01em; margin: 0;
}
h1 { font-size: clamp(2.8rem, 4.8vw, 5rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
p { margin: 0; color: var(--text-muted); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; font-weight: 600; color: var(--gold-deep); margin-bottom: 14px;
}

/* ========== HERO ========== */
.hero {
  position: relative; width: 100%; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(60, 50, 42, 0.55) 0%, rgba(90, 75, 62, 0.35) 40%, rgba(180, 160, 140, 0.15) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, transparent 40%, rgba(0,0,0,0.20) 100%);
}
.hero-border-top, .hero-border-bottom {
  position: absolute; left: 0; right: 0; z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
}
.hero-border-top { top: 0; }
.hero-border-bottom { bottom: 0; }
.hero-content {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 48px;
  width: min(var(--container), calc(100% - 48px)); margin: 0 auto;
  padding: 80px 0;
}

/* Frosted glass panel */
.hero-glass {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hero-logo {
  width: 180px; height: auto; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  margin-bottom: 14px;
}
.hero-glass-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  text-align: center; line-height: 1.2;
  letter-spacing: 0.18em; color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin: 0;
}
.hero-glass-name span {
  font-weight: 700; letter-spacing: 0.22em;
}

/* Hero copy */
.hero-copy h1 {
  color: white; max-width: none;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  font-weight: 500; letter-spacing: 0.04em; margin-bottom: 16px;
  border-left: 3px solid var(--gold-light); padding-left: 14px;
}
.hero-text {
  font-size: 1.02rem; max-width: 52ch;
  line-height: 1.75; color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-outline {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
}

/* ========== INTRO STRIP ========== */
.intro-strip { padding-bottom: 20px; }
.intro-strip-inner { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.intro-strip p { max-width: 820px; font-size: 1.02rem; color: var(--text); }

/* ========== SECTIONS ========== */
.section { padding: 88px 0; }
.split-layout, .experience-grid, .contact-grid { display: grid; gap: 48px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.section-copy p + p { margin-top: 16px; }
.section-heading { margin-bottom: 36px; }
.section-heading.narrow { max-width: 720px; }

/* ========== ABOUT ========== */
.image-stack { position: relative; min-height: 580px; }
.image-stack img, .experience-visual img, .gallery-grid img { object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.stack-large { width: 100%; height: 100%; }
.stack-small {
  position: absolute; width: 42%; bottom: -20px; right: -8px;
  border: 6px solid rgba(250, 247, 243, 0.96);
  transition: transform 0.5s var(--ease);
}
.stack-small:hover { transform: translateY(-4px); }

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card {
  padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.75); border: 1px solid rgba(45, 39, 36, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.service-icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }
.highlight-card { background: linear-gradient(145deg, #f3e8e6, #efe0dc); border-color: transparent; }
.highlight-card:hover { border-color: var(--blush); }

/* ========== TEAM ========== */
.team-section { background: linear-gradient(180deg, transparent, rgba(244, 238, 232, 0.5), transparent); }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.team-card {
  text-align: center; padding: 24px 20px;
  background: rgba(255,255,255,0.65); border: 1px solid rgba(45, 39, 36, 0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 16px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-role { color: var(--gold-deep); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.team-card p:last-child { font-size: 0.88rem; line-height: 1.55; }

/* ========== PRICING ========== */
.pricing-section { background: linear-gradient(180deg, rgba(255,253,251,0.6), rgba(239,227,228,0.25)); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.pricing-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.8); border: 1px solid rgba(45, 39, 36, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card h3 { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gold-light); }
.pricing-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 0;
}
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li span:first-child { color: var(--text); }
.pricing-list li span:last-child { font-weight: 700; color: var(--gold-deep); white-space: nowrap; margin-left: 12px; }

/* ========== EXPERIENCE ========== */
.experience-section { background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(239,227,228,0.3)); }
.experience-notes { display: grid; gap: 16px; margin-top: 22px; }
.experience-note {
  padding: 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.5); border: 1px solid var(--line);
  transition: border-color 0.3s;
}
.experience-note:hover { border-color: var(--gold-light); }
.experience-notes strong, .contact-label, .footer-title {
  display: block; color: var(--text); font-weight: 600; margin-bottom: 4px;
}

/* ========== FEATURES ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-card {
  padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.75); border: 1px solid rgba(45, 39, 36, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-number {
  display: inline-block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold-light);
  line-height: 1; margin-bottom: 12px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: linear-gradient(180deg, transparent, rgba(244, 238, 232, 0.4), transparent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card {
  padding: 30px; border-radius: var(--radius); margin: 0;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(45, 39, 36, 0.06);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-card footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.testimonial-card footer strong { display: block; color: var(--text); font-size: 0.9rem; }
.testimonial-card footer span { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; align-items: stretch;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 20px;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(45, 39, 36, 0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay, .gallery-item:focus .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 10px 22px; border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 999px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-content img {
  max-width: 100%; max-height: 85vh; object-fit: contain;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer;
  border-radius: 50%; transition: background 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.6rem; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== BOOKING ========== */
.booking-section { padding-top: 40px; }
.booking-panel {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px;
  padding: 40px; border-radius: 28px;
  background: linear-gradient(135deg, #efe3df, #efe9de 60%, #fbf7f1);
  border: 1px solid rgba(45, 39, 36, 0.06);
  box-shadow: var(--shadow-lg);
}
.booking-form { display: grid; gap: 14px; }
.booking-form label { display: grid; gap: 6px; color: var(--text); font-weight: 600; font-size: 0.88rem; }
.booking-form input, .booking-form select, .booking-form textarea {
  min-height: 48px; border-radius: var(--radius-xs); padding: 10px 14px;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(45, 39, 36, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 99, 0.15);
}
.booking-form textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 4px; }
.booking-form .btn { margin-top: 4px; }
.booking-form input.error, .booking-form select.error { border-color: #c0392b; }

/* ========== CONTACT ========== */
.contact-card {
  display: grid; gap: 22px; border-radius: 24px; padding: 28px;
  background: rgba(255,255,255,0.76); border: 1px solid rgba(45, 39, 36, 0.06);
  box-shadow: var(--shadow-sm);
}
.contact-card a { color: var(--gold-deep); transition: color 0.2s; }
.contact-card a:hover { color: var(--text); }

/* ========== FOOTER ========== */
.site-footer { padding: 40px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.7fr 0.9fr; gap: 32px; }
.footer-brand-block { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.footer-brand { font-size: 1.8rem; margin-bottom: 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { transition: color 0.25s; }
.site-footer a:hover { color: var(--gold-deep); }
.footer-bottom {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(145deg, #c8a26b, #ae8650);
  color: white; border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(174, 134, 80, 0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 22px; height: 22px; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .split-layout, .experience-grid, .contact-grid,
  .services-grid, .features-grid, .footer-grid, .gallery-grid,
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid, .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-stack { min-height: auto; }
  .stack-small { position: relative; width: min(300px, 55%); margin: -100px 0 0 auto; right: auto; bottom: auto; }
}

@media (max-width: 820px) {
  .desktop-nav, .header-actions .btn-sm { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero { min-height: 70vh; }
  .hero-content { flex-direction: column; text-align: center; padding: 60px 0; gap: 28px; }
  .hero-glass { padding: 28px 32px; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-brand-name { font-size: 1.3rem; }
  .hero-copy h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-subtitle { border-left: none; padding-left: 0; text-align: center; }
  .hero-text { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .section { padding: 64px 0; }
  .booking-panel { grid-template-columns: 1fr; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid, .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
