/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #1a3c2a;
  --green-mid: #2d5a3f;
  --green-light: #3d7a54;
  --green-pale: #e8f0eb;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d6;
  --white: #fefcf8;
  --text-dark: #1a1a18;
  --text-mid: #4a4a44;
  --text-light: #7a7a72;
  --accent: #c8a45e;
  --accent-light: #dfc078;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(26, 60, 42, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 60, 42, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 60, 42, 0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.text-accent {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 60, 42, 0.08);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.nav-logo-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
}

.nav-logo-bold {
  font-weight: 900;
  color: var(--green-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--green-deep);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
}

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

.nav-cta:hover {
  background: var(--green-mid);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  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);
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 60, 42, 0.95);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-overlay-link:hover {
  color: var(--accent);
}

.nav-overlay-cta {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-top: 16px;
  padding: 14px 32px;
  border: 1.5px solid rgba(245, 240, 232, 0.3);
  border-radius: var(--radius);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(45, 90, 63, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 28px;
}

.headline-line {
  display: block;
}

.headline-line .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 36px;
}

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

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

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 60, 42, 0.15);
}

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

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

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 3/4;
}

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

.hero-img-accent {
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 55%;
  aspect-ratio: 4/5;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

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

.hero-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
}

.badge-sub {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 4px;
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: bobble 2s ease-in-out infinite;
}

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

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  padding-top: 8px;
}

.about-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-item svg {
  flex-shrink: 0;
  color: var(--green-light);
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(26, 60, 42, 0.12);
}

.divider-icon {
  color: var(--green-light);
  flex-shrink: 0;
}

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: var(--cream);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.menu-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-mid);
}

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 60, 42, 0.06);
  transition: all 0.3s ease;
}

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

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  flex-shrink: 0;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-deep);
  flex: 1;
}

.menu-card-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 164, 94, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.menu-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 60, 42, 0.08);
}

.menu-footer {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* ===== ATMOSPHERE ===== */
.atmosphere {
  padding: 120px 0;
  background: var(--white);
}

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

.atm-visual {
  position: relative;
}

.atm-image-grid {
  display: grid;
  gap: 20px;
}

.atm-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.atm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.atm-img:hover img {
  transform: scale(1.03);
}

.atm-img-1 {
  aspect-ratio: 5/6.5;
}

.atm-img-2 {
  aspect-ratio: 5/3.5;
}

.atm-img-3 {
  aspect-ratio: 5/3.5;
}

.atm-content {
  padding-top: 8px;
}

.atm-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.atm-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.atm-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.atm-feature svg {
  color: var(--green-light);
  flex-shrink: 0;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--green-deep);
  color: var(--cream);
}

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

.visit .eyebrow {
  color: var(--accent-light);
}

.visit .section-title {
  color: var(--cream);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.visit-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.visit-detail p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
}

.visit-detail a {
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s;
}

.visit-detail a:hover {
  color: var(--accent-light);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}

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

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 8px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 60, 42, 0.06);
}

.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: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(26, 60, 42, 0.15);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(61, 122, 84, 0.1);
}

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

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
  color: var(--green-deep);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 8px;
}

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

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

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--green-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow {
  color: var(--accent-light);
  text-align: center;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-logo-italic {
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--cream);
}

.footer-logo-bold {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--cream);
}

.footer-logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-left: 4px;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  max-width: 280px;
}

.footer-nav strong,
.footer-contact strong,
.footer-hours strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent-light);
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-hours p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 40px;
  }

  .about-grid,
  .atm-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 100px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-img-accent {
    left: -20px;
    bottom: -30px;
  }

  .hero-badge {
    right: -10px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }

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

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

  .contact-form-wrap {
    padding: 28px;
  }

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

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

  .atm-img-1 {
    aspect-ratio: 4/5;
  }

  .atm-img-2,
  .atm-img-3 {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }

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

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

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

  .hero-divider {
    display: none;
  }

  .hero-img-accent {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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