/* ============================================
   A-Bear's Sno-Balls — Custom Styles
   ============================================ */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --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;
  --slate-950: #080e18;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.15);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  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, ol {
  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: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--slate-900);
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-400) 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: white;
  border-color: var(--teal-600);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--slate-800);
  border-color: var(--slate-300);
}
.btn-outline:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-xl);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
}

/* --- Section --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--teal-200);
  background: rgba(45, 212, 191, 0.15);
  border-color: rgba(45, 212, 191, 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title--light {
  color: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}

.logo-dot {
  color: var(--teal-600);
}

.logo--light .logo-text {
  color: white;
}

.logo--light .logo-dot {
  color: var(--teal-300);
}

.logo-dot::before {
  content: '.';
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-600);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--teal-600);
  background: var(--teal-50);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  position: relative;
  transition: background 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  left: 0;
  transition: transform 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--teal-50) 50%, #ecfeff 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.12;
}

.shape-circle-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal-400);
  top: -120px;
  right: -100px;
}

.shape-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--teal-300);
  bottom: 10%;
  left: -60px;
}

.shape-diamond {
  width: 120px;
  height: 120px;
  background: var(--teal-500);
  top: 25%;
  left: 45%;
  transform: rotate(45deg);
  opacity: 0.08;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid var(--teal-400);
  top: 60%;
  right: 15%;
  opacity: 0.1;
}

.shape-square {
  width: 80px;
  height: 80px;
  background: var(--teal-300);
  bottom: 20%;
  right: 30%;
  transform: rotate(30deg);
  opacity: 0.08;
  border-radius: 12px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-700);
  background: white;
  border: 1px solid var(--teal-200);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--slate-900);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* Hero Image */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  background: var(--teal-600);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.2;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 600/700;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

.float-card-1 {
  top: 15%;
  left: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

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

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- Menu --- */
.menu {
  background: var(--slate-50);
  overflow: hidden;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card--accent {
  border-color: var(--teal-200);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
}

.menu-card--accent:hover {
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.2);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 400/260;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-img--teal {
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
}

.menu-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--teal-600);
  color: white;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.menu-card-body {
  padding: 24px;
}

.menu-card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  padding: 4px 12px;
  border-radius: 50px;
}

.menu-card-tag--teal {
  color: white;
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.menu-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--slate-500);
  background: white;
  border: 1px solid var(--slate-200);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin: 0 auto;
}

.menu-deco {
  position: absolute;
  pointer-events: none;
  inset: 0;
  overflow: hidden;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.deco-circle-1 {
  width: 400px;
  height: 400px;
  background: var(--teal-400);
  top: -100px;
  right: -100px;
}

.deco-circle-2 {
  width: 250px;
  height: 250px;
  background: var(--teal-300);
  bottom: -50px;
  left: -50px;
}

/* --- About --- */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/640;
}

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

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
  aspect-ratio: 400/300;
}

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

.about-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--teal-400) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.4;
  z-index: -1;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
}

.about-feature-title {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.about-feature-text {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* --- Visit --- */
.visit {
  background: var(--slate-50);
}

.visit-card {
  position: relative;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 50%, var(--teal-500) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 60px;
}

.visit-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.visit-bg-shape {
  position: absolute;
  border-radius: 50%;
}

.visit-bg-circle-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  top: -150px;
  right: -100px;
}

.visit-bg-circle-2 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  bottom: -80px;
  left: -50px;
}

.visit-bg-dots {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.visit-info {
  color: white;
}

.visit-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: white;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-200);
}

.visit-details strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.visit-details span,
.visit-details a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.visit-details a:hover {
  color: white;
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 560/400;
}

.visit-map-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.visit-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.visit-map-link:hover .visit-map-img {
  transform: scale(1.03);
}

.visit-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}

.visit-map-link:hover .visit-map-overlay {
  background: rgba(15, 23, 42, 0.25);
}

.visit-map-overlay svg {
  color: var(--teal-300);
}

/* --- Contact --- */
.contact {
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left {
  padding-top: 10px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-quick-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 12px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.contact-quick-item:hover {
  border-color: var(--teal-300);
  color: var(--teal-700);
  background: var(--teal-50);
}

.contact-quick-item svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate-800);
  background: white;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  color: var(--teal-800);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  position: relative;
  background: var(--slate-900);
  color: white;
  padding: 60px 0 0;
  overflow: hidden;
}

.footer-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
}

.footer-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(45, 212, 191, 0.06);
  top: -100px;
  right: -50px;
}

.footer-shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(45, 212, 191, 0.04);
  bottom: -60px;
  left: 10%;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--slate-300);
  transition: color 0.2s;
}

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

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--slate-300);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--slate-500);
}

.footer-bottom span {
  color: #f43f5e;
}

/* --- Mobile Nav Overlay --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: 88px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  .main-nav a:hover {
    background: var(--teal-50);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .about-grid {
    gap: 40px;
  }

  .visit-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float-card {
    display: none;
  }

  .hero-wave svg {
    height: 50px;
  }

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

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

  .about-images {
    max-width: 480px;
  }

  .about-img-secondary {
    right: -10px;
    bottom: -20px;
  }

  .visit-card {
    padding: 32px 24px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visit-map {
    aspect-ratio: 400/300;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .hero-title {
    font-size: 2rem;
  }

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .contact-form {
    padding: 24px;
  }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
