/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #422A3A;
  background: #FFFBF7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A86C96;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #A86C96, #F0C27F);
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #422A3A;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: #A86C96;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #7B4A6B;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.8;
}
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, #7B4A6B, #A86C96);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 74, 107, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 74, 107, 0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  color: #422A3A;
  border: 1.5px solid rgba(123, 74, 107, 0.2);
}
.btn--ghost:hover {
  background: #fff;
  border-color: #A86C96;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(123, 74, 107, 0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #422A3A;
}
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #7B4A6B;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #A86C96, #F0C27F);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: #422A3A; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #F0C27F, #E0A84F) !important;
  color: #422A3A !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(240, 194, 127, 0.4);
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(240, 194, 127, 0.5); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #422A3A;
  transition: background 0.3s;
}
.nav-toggle:hover { background: rgba(123, 74, 107, 0.08); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(255, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: #422A3A;
  transition: color 0.3s;
}
.mobile-link:hover { color: #A86C96; }
.mobile-link--cta {
  margin-top: 12px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #F0C27F, #E0A84F);
  color: #422A3A;
  padding: 12px 28px;
  border-radius: 50px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFBF7 0%, #F9F5F7 40%, #FFF4D6 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.shape--1 {
  width: 500px; height: 500px;
  background: #E8D5E1;
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape--2 {
  width: 350px; height: 350px;
  background: #FFE9A8;
  bottom: 10%; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape--3 {
  width: 200px; height: 200px;
  background: #D4B3C8;
  top: 40%; right: 30%;
  animation: float 6s ease-in-out infinite;
}
.shape--4 {
  width: 120px; height: 120px;
  background: #FFD96E;
  top: 20%; left: 20%;
  animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 74, 107, 0.08);
  border: 1px solid rgba(123, 74, 107, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7B4A6B;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge svg { color: #F0C27F; }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2B1C26;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #A86C96, #F0C27F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #7B4A6B;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero floating cards */
.hero-cards {
  position: relative;
  height: 560px;
}
.hero-image-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(123, 74, 107, 0.2);
  width: 280px;
  height: 360px;
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 28, 38, 0.3) 0%, transparent 50%);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(123, 74, 107, 0.1);
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(123, 74, 107, 0.1), rgba(240, 194, 127, 0.1));
  color: #7B4A6B;
}
.float-card-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #422A3A;
  line-height: 1.2;
}
.float-card-label {
  font-size: 0.8rem;
  color: #A86C96;
  font-weight: 500;
}
.float-card--1 { top: 0; left: 0; animation-delay: 0s; }
.float-card--2 { top: 5%; right: -10px; animation-delay: 0.5s; }
.float-card--3 { bottom: 15%; left: -20px; animation-delay: 1s; }
.float-card--4 { bottom: 0; right: 0; animation-delay: 1.5s; }

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

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  color: #FFFBF7;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: #FFFBF7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 640px;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 74, 107, 0.15);
  width: 360px;
  height: 480px;
  position: relative;
  z-index: 1;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(123, 74, 107, 0.2);
  width: 260px;
  height: 320px;
  z-index: 2;
  border: 4px solid #FFFBF7;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: 40px;
  right: 60px;
  color: #A86C96;
  opacity: 0.3;
  z-index: 0;
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-content { max-width: 480px; }
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #7B4A6B;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #422A3A;
}
.about-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(123, 74, 107, 0.1), rgba(240, 194, 127, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B4A6B;
  flex-shrink: 0;
}

/* ── MENU ── */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFBF7 0%, #F9F5F7 100%);
}
.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 48px;
}
.menu-cat {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7B4A6B;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(123, 74, 107, 0.12);
  transition: all 0.3s;
}
.menu-cat:hover, .menu-cat.active {
  background: linear-gradient(135deg, #7B4A6B, #A86C96);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(123, 74, 107, 0.25);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(123, 74, 107, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(123, 74, 107, 0.06);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(123, 74, 107, 0.15);
}
.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7B4A6B;
}
.menu-card-body { padding: 20px 24px 24px; }
.menu-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #422A3A;
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 0.9rem;
  color: #A86C96;
  line-height: 1.6;
}

/* ── SPECIALS ── */
.specials {
  padding: 100px 0;
  background: linear-gradient(135deg, #F9F5F7 0%, #FFF4D6 100%);
}
.specials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.specials-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.special-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.special-item-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A86C96, #F0C27F);
  flex-shrink: 0;
  margin-top: 8px;
}
.special-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #422A3A;
  margin-bottom: 6px;
}
.special-item-desc {
  font-size: 0.95rem;
  color: #7B4A6B;
  line-height: 1.7;
}
.specials-img-stack {
  position: relative;
  height: 620px;
}
.specials-img-stack img {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(123, 74, 107, 0.15);
  width: 340px;
  height: 480px;
  object-fit: cover;
}
.specials-img-accent {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123, 74, 107, 0.15), rgba(240, 194, 127, 0.15));
  z-index: -1;
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0;
  background: #FFFBF7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(123, 74, 107, 0.08);
  transition: all 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(123, 74, 107, 0.15); }
.gallery-item--tall { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-item--wide { grid-column: 3 / 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── VISIT ── */
.visit {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFBF7 0%, #F9F5F7 100%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-desc {
  font-size: 1.05rem;
  color: #7B4A6B;
  line-height: 1.7;
  margin-bottom: 36px;
}
.visit-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 74, 107, 0.08), rgba(240, 194, 127, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B4A6B;
  flex-shrink: 0;
}
.visit-detail strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A86C96;
  margin-bottom: 4px;
}
.visit-detail p { font-size: 0.95rem; color: #422A3A; line-height: 1.6; }
.visit-detail a { color: #7B4A6B; text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.visit-detail a:hover { color: #A86C96; }
.visit-map { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(123, 74, 107, 0.1); }

/* Contact form */
.visit-form-wrap { max-width: 520px; }
.visit-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(123, 74, 107, 0.08);
  border: 1px solid rgba(123, 74, 107, 0.06);
}
.visit-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #422A3A;
  margin-bottom: 8px;
}
.visit-form-subtitle {
  font-size: 0.95rem;
  color: #A86C96;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7B4A6B;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(123, 74, 107, 0.15);
  border-radius: 12px;
  background: #FFFBF7;
  color: #422A3A;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #A86C96;
  box-shadow: 0 0 0 3px rgba(168, 108, 150, 0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { color: #7B4A6B; margin-bottom: 16px; }
.form-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #422A3A;
  margin-bottom: 8px;
}
.form-success p { color: #A86C96; font-size: 0.95rem; }

/* ── FOOTER ── */
.footer {
  background: #2B1C26;
  color: rgba(255, 251, 247, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 251, 247, 0.08);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFBF7;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F0C27F;
  margin-bottom: 4px;
}
.footer-links a, .footer-links span {
  font-size: 0.9rem;
  color: rgba(255, 251, 247, 0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: #FFFBF7; }
.footer-contact strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F0C27F;
  margin-bottom: 12px;
  display: block;
}
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: rgba(255, 251, 247, 0.6); transition: color 0.3s; }
.footer-contact a:hover { color: #F0C27F; }

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

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  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; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { height: 400px; order: -1; }
  .hero-image-card { width: 220px; height: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 480px; }
  .specials-layout { grid-template-columns: 1fr; gap: 48px; }
  .specials-img-stack { height: 480px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-form-wrap { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-cards { height: 320px; }
  .float-card { padding: 14px 18px; border-radius: 16px; }
  .float-card-icon { width: 40px; height: 40px; }
  .float-card-stat { font-size: 1.2rem; }
  .float-card-label { font-size: 0.7rem; }
  .float-card--1 { top: 0; left: 0; }
  .float-card--2 { top: 0; right: 0; }
  .float-card--3 { bottom: 60px; left: 0; }
  .float-card--4 { bottom: 0; right: 0; }
  .hero-image-card { width: 180px; height: 240px; }
  .about-images { height: 380px; }
  .about-img-main { width: 260px; height: 360px; }
  .about-img-float { width: 180px; height: 240px; }
  .about-features { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item--tall { grid-column: 1 / 2; grid-row: 1 / 2; }
  .gallery-item--wide { grid-column: 2 / 3; }
  .visit-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cards { height: 260px; }
  .float-card--1 { top: -10px; left: -5px; }
  .float-card--2 { top: -10px; right: -5px; }
  .float-card--3 { bottom: 50px; left: -5px; }
  .float-card--4 { bottom: -10px; right: -5px; }
  .hero-image-card { width: 150px; height: 200px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: 1 / -1; grid-row: auto; }
  .gallery-item { height: 220px; }
}
