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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --white: #ffffff;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,.1), 0 2px 4px rgba(15,23,42,.06);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.08);
  --shadow-xl: 0 24px 60px rgba(15,23,42,.15), 0 8px 20px rgba(15,23,42,.1);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-800);
  background: var(--slate-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal-600);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,250,252,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.6);
  transition: box-shadow .3s ease;
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--slate-900);
}
.logo-light { color: var(--white); }
.logo-icon { flex-shrink: 0; }

.nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .938rem;
  color: var(--slate-600);
  transition: color .2s, background .2s;
}
.nav a:hover {
  color: var(--teal-600);
  background: var(--teal-50);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .938rem;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn-primary:hover {
  background: var(--teal-700);
  box-shadow: 0 6px 20px rgba(13,148,136,.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 2px solid var(--slate-200);
}
.btn-outline:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
  background: var(--teal-50);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--teal-600);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
}
.btn-nav:hover {
  background: var(--teal-700);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all .3s ease;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--slate-50);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo {
  position: absolute;
  opacity: .12;
}
.geo-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--teal-500);
  top: -200px;
  right: -100px;
}
.geo-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--amber-500);
  bottom: 10%;
  left: -80px;
  opacity: .08;
}
.geo-rect-1 {
  width: 200px;
  height: 200px;
  background: var(--teal-400);
  top: 30%;
  left: 5%;
  border-radius: var(--radius-xl);
  transform: rotate(25deg);
  opacity: .07;
}
.geo-tri {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--amber-400);
  top: 15%;
  right: 15%;
  opacity: .06;
  transform: rotate(-15deg);
}
.geo-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--teal-600) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  bottom: 20%;
  right: 5%;
  opacity: .15;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  color: var(--slate-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--teal-600);
}
.stat-label {
  font-size: .813rem;
  color: var(--slate-400);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--slate-200);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card-main {
  width: 340px;
  height: 440px;
  top: 20px;
  right: 0;
  z-index: 2;
}
.hero-card-float {
  width: 200px;
  height: 200px;
  bottom: 60px;
  right: 60px;
  z-index: 3;
  border: 4px solid var(--white);
}
.hero-card-badge {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 4;
  background: var(--teal-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: .813rem;
  text-align: center;
  padding: 16px;
}
.hero-card-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  right: -16px;
  background: var(--slate-900);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}
.accent-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal-400);
}
.accent-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* ─── SECTION COMMON ─── */
.section-label {
  display: inline-block;
  font-size: .813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.text-teal { color: var(--teal-600); }
.section-sub {
  font-size: 1.063rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 520px;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  color: var(--slate-500);
}
.about-float-card strong {
  display: block;
  color: var(--slate-800);
  font-size: .938rem;
}

.about-content { max-width: 480px; }
.about-content > p {
  color: var(--slate-500);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-content > p:last-of-type { margin-bottom: 28px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .938rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── MENU ─── */
.menu {
  padding: 100px 0;
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}
.menu-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.geo-circle-3 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--teal-500);
  top: -150px;
  left: -100px;
  opacity: .05;
}
.geo-rect-2 {
  width: 160px;
  height: 160px;
  background: var(--amber-500);
  bottom: 10%;
  right: 5%;
  border-radius: var(--radius-xl);
  transform: rotate(40deg);
  opacity: .06;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}
.menu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.menu-card-teal .menu-card-icon svg { stroke: var(--teal-600) !important; }
.menu-card-slate .menu-card-icon svg { stroke: var(--slate-600) !important; }
.menu-card-accent .menu-card-icon svg { stroke: var(--amber-500) !important; }

.menu-card-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.menu-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-visual img {
  transform: scale(1.05);
}
.menu-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  color: var(--slate-700);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.menu-card-body {
  padding: 24px;
}
.menu-card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.menu-card-slate .menu-card-icon { background: var(--slate-100); }
.menu-card-accent .menu-card-icon { background: #fef3c7; }

.menu-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.menu-card-body > p {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-list li {
  font-size: .875rem;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
}
.menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
}
.menu-card-slate .menu-list li::before { background: var(--slate-400); }
.menu-card-accent .menu-list li::before { background: var(--amber-500); }

/* ─── VISIT ─── */
.visit {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.visit-content { max-width: 500px; }
.visit-content > p {
  color: var(--slate-500);
  font-size: 1.063rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail strong {
  display: block;
  font-size: .938rem;
  color: var(--slate-800);
  margin-bottom: 2px;
}
.visit-detail span,
.visit-detail a {
  font-size: .9rem;
  color: var(--slate-500);
}
.visit-detail a:hover { color: var(--teal-600); }

.visit-visual { position: relative; min-height: 460px; }
.visit-img-stack { position: relative; }
.visit-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visit-img-small {
  position: absolute;
  bottom: -32px;
  left: -32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.visit-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal-600);
  opacity: .08;
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info { max-width: 440px; }
.contact-info .section-title { color: var(--white); }
.contact-info > p {
  color: var(--slate-400);
  font-size: 1.063rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  color: var(--slate-300);
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s ease;
}
.contact-chip:hover {
  background: rgba(20,184,166,.15);
  border-color: var(--teal-500);
  color: var(--teal-400);
}

.contact-form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-form { display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .813rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .938rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-500);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: rgba(20,184,166,.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(20,184,166,.12);
  border: 1px solid rgba(20,184,166,.3);
  border-radius: var(--radius-md);
  color: var(--teal-400);
  font-size: .938rem;
  margin-top: 4px;
}
.form-success.show {
  display: flex;
}
.form-success strong { color: var(--teal-300); }

/* ─── FOOTER ─── */
.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand p {
  color: var(--slate-400);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav strong,
.footer-contact strong {
  font-size: .813rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-400);
  font-weight: 700;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--slate-300);
  font-size: .9rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--teal-400); }
.footer-contact address {
  font-style: normal;
  color: var(--slate-400);
  font-size: .9rem;
  line-height: 1.8;
}
.footer-contact a {
  color: var(--slate-400);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--teal-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom span {
  font-size: .813rem;
  color: var(--slate-500);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { max-width: 100%; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit-content { max-width: 100%; }
  .visit-visual { min-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000;
  }
  .nav.open { transform: translateX(0); }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav a {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .btn-nav {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-visual { height: 200px; }

  .about-float-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    display: inline-flex;
  }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .visit-img-small { display: none; }
}
