/* ============================================
   B's Kitchen @ Amber Hills — Stylesheet
   Bold editorial · Emerald + Cream
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #fefdf8;
  color: #022c22;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Section Eyebrow ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1.5px;
  background: #047857;
}

/* ---- Section Headline ---- */
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.headline-accent {
  font-style: italic;
  color: #047857;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #064e3b;
  color: #fefdf8;
}

.btn--primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #064e3b;
  border: 1.5px solid #064e3b;
}

.btn--ghost:hover {
  background: #064e3b;
  color: #fefdf8;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- Navigation ---- */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: all 0.3s ease;
}

.nav-fixed.scrolled {
  box-shadow: 0 2px 20px rgba(6, 78, 59, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-logo-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #064e3b;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #064e3b;
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #022c22;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #047857;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #064e3b;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #064e3b;
}

.nav-link--cta {
  background: #064e3b;
  color: #fefdf8 !important;
  padding: 0.5rem 1rem;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.3s ease;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: #047857;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #064e3b;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(254, 253, 248, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #022c22;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #047857;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 72px 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #fefdf8 0%, #f5e9cc 50%, #d1fae5 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(6, 78, 59, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(4, 120, 87, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  display: inline-block;
  width: 2rem;
  height: 1.5px;
  background: #047857;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #022c22;
  margin-bottom: 1.5rem;
}

.hero-headline-accent {
  font-style: italic;
  color: #047857;
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #064e3b;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

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

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

/* Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  background: rgba(254, 253, 248, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.12), 0 2px 8px rgba(6, 78, 59, 0.06);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-stat-card .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 0.25rem;
}

.hero-stat-card .stat-label {
  font-size: 0.75rem;
  color: #047857;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.stat-float-1 {
  bottom: 10%;
  left: -2rem;
  animation-delay: 0s;
}

.stat-float-2 {
  top: 15%;
  right: -1.5rem;
  animation-delay: 1.3s;
}

.stat-float-3 {
  bottom: 35%;
  right: -2rem;
  animation-delay: 2.6s;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #047857;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- About Section ---- */
.about {
  padding: 8rem 0;
  background: #fefdf8;
}

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

.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 200px;
  height: 200px;
  background: #d1fae5;
  z-index: -1;
}

.about-text-col {
  padding: 1rem 0;
}

.about-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #047857;
  margin-bottom: 1.5rem;
}

.about-text-col p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #064e3b;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(6, 78, 59, 0.12);
}

.about-stat {
  flex: 1;
}

.about-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(6, 78, 59, 0.15);
  flex-shrink: 0;
}

/* ---- Menu Section ---- */
.menu {
  padding: 8rem 0;
  background: #064e3b;
  color: #fefdf8;
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(254, 253, 248, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(254, 253, 248, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.menu .section-eyebrow {
  color: #6ee7b7;
}

.menu .section-eyebrow::before {
  background: #6ee7b7;
}

.menu .section-headline {
  color: #fefdf8;
}

.menu .headline-accent {
  color: #6ee7b7;
}

.menu-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.menu-card {
  background: rgba(254, 253, 248, 0.06);
  border: 1px solid rgba(254, 253, 248, 0.1);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.menu-card:hover {
  background: rgba(254, 253, 248, 0.1);
  transform: translateY(-4px);
  border-color: rgba(110, 231, 183, 0.3);
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #6ee7b7;
}

.menu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fefdf8;
  margin-bottom: 1.25rem;
}

.menu-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(254, 253, 248, 0.06);
}

.menu-card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fefdf8;
}

.menu-item-desc {
  font-size: 0.75rem;
  color: rgba(254, 253, 248, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(254, 253, 248, 0.5);
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* ---- Gallery Section ---- */
.gallery {
  padding: 8rem 0;
  background: #fefdf8;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(6, 78, 59, 0.08);
}

.gallery-item--large {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 7;
  grid-row: span 1;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  grid-column: span 3;
  grid-row: span 1;
}

/* ---- Visit Section ---- */
.visit {
  padding: 8rem 0;
  background: #d1fae5;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-info {
  padding: 1rem 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #064e3b;
  color: #6ee7b7;
  flex-shrink: 0;
}

.visit-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
  margin-bottom: 0.25rem;
}

.visit-detail-value {
  font-size: 0.9375rem;
  color: #022c22;
  line-height: 1.5;
}

.visit-detail-value:hover {
  color: #064e3b;
  text-decoration: underline;
}

.email-link {
  word-break: break-all;
}

/* Hours */
.visit-hours {
  background: #064e3b;
  padding: 2rem;
  margin-top: 2rem;
}

.visit-hours-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fefdf8;
  margin-bottom: 1.25rem;
}

.visit-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.visit-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.8);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.visit-hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.visit-hours-row span:first-child {
  font-weight: 500;
  color: #6ee7b7;
}

.visit-hours-note {
  font-size: 0.75rem;
  color: rgba(254, 253, 248, 0.4);
  margin-top: 1rem;
  font-style: italic;
}

/* Map */
.visit-map {
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(6, 78, 59, 0.15);
}

.map-wrapper {
  width: 100%;
  height: 100%;
}

/* ---- Contact Section ---- */
.contact {
  padding: 8rem 0;
  background: #fefdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #064e3b;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Form */
.contact-form-wrapper {
  background: #f5e9cc;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
}

.form-input {
  background: rgba(254, 253, 248, 0.8);
  border: 1.5px solid rgba(6, 78, 59, 0.2);
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #022c22;
  transition: all 0.3s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: #047857;
  background: #fefdf8;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.form-input::placeholder {
  color: rgba(6, 78, 59, 0.35);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

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

.form-success-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #064e3b;
  color: #6ee7b7;
  border-radius: 50%;
}

.form-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #022c22;
}

.form-success-text {
  font-size: 0.9375rem;
  color: #064e3b;
  opacity: 0.8;
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: #022c22;
  color: #fefdf8;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6ee7b7;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #6ee7b7;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fefdf8;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.5);
  max-width: 280px;
}

.footer-nav-title,
.footer-contact h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6ee7b7;
  margin-bottom: 1rem;
}

.footer-nav-list,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-list a,
.footer-contact-list a {
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.6);
  transition: color 0.3s ease;
}

.footer-nav-list a:hover,
.footer-contact-list a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid rgba(254, 253, 248, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(254, 253, 248, 0.35);
}

.footer-location {
  font-size: 0.75rem;
  color: rgba(254, 253, 248, 0.35);
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    height: 420px;
    max-width: 520px;
  }

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

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    order: -1;
  }

  .about-image-wrapper img {
    height: 400px;
  }

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 1;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 72px;
    min-height: auto;
    padding-bottom: 6rem;
  }

  .hero-container {
    padding-top: 2rem;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-visual {
    height: 360px;
  }

  .hero-stat-card {
    padding: 0.875rem 1rem;
  }

  .stat-float-1 {
    left: 0.5rem;
    bottom: 5%;
  }

  .stat-float-2 {
    right: 0.5rem;
    top: 10%;
  }

  .stat-float-3 {
    right: 0;
    bottom: 25%;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item img {
    height: 240px;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .about-stat-divider {
    width: 48px;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .visit-map {
    height: 320px;
  }
}

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

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

  .btn {
    justify-content: center;
  }

  .hero-stat-card .stat-number {
    font-size: 0.9375rem;
  }

  .hero-stat-card .stat-label {
    font-size: 0.6875rem;
  }
}
