/* ========================================
   Ol' Time Barbershop — Styles
   Palette: Burgundy (#6B1D2A) + Blush (#F5E6D3)
   Fonts: Playfair Display (serif) + Inter (sans)
======================================== */

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

:root {
  --burgundy: #6B1D2A;
  --burgundy-deep: #4A1019;
  --burgundy-light: #8B2E3E;
  --blush: #F5E6D3;
  --blush-light: #FBF3EB;
  --blush-dark: #E8D5C0;
  --cream: #FDF8F4;
  --charcoal: #1A1A1A;
  --text-dark: #2C2C2C;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(107, 29, 42, 0.08);
  --shadow-md: 0 4px 20px rgba(107, 29, 42, 0.1);
  --shadow-lg: 0 8px 40px rgba(107, 29, 42, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: 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 ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--burgundy);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--burgundy);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 24px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--ghost:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 29, 42, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--burgundy);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.01em;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--burgundy);
  background: rgba(107, 29, 42, 0.06);
}

.nav-link--cta {
  background: var(--burgundy);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav-link--cta:hover {
  background: var(--burgundy-deep);
}

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

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(107, 29, 42, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 230, 211, 0.8) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--burgundy);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--burgundy);
  margin-bottom: 24px;
}

.hero-headline-accent {
  color: var(--burgundy-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

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

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

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

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--burgundy);
}

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

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush-dark);
}

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

.hero-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.hero-img--main {
  width: 75%;
  height: 85%;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img--accent {
  width: 55%;
  height: 45%;
  bottom: 8%;
  left: 0;
  z-index: 3;
  border: 4px solid var(--cream);
}

.hero-img--detail {
  width: 45%;
  height: 30%;
  bottom: 0;
  right: 10%;
  z-index: 4;
  border: 4px solid var(--cream);
}

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

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 40%;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

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

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

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feature-icon {
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services {
  padding: 120px 0;
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-eyebrow {
  justify-content: center;
}

.services-header .section-eyebrow::before {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(107, 29, 42, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blush-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-card-number {
  color: rgba(107, 29, 42, 0.12);
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--burgundy);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-includes li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}

.service-card-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--blush);
  border: 1.5px solid var(--burgundy);
  border-radius: 50%;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header .section-eyebrow {
  justify-content: center;
}

.gallery-header .section-eyebrow::before {
  display: none;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 29, 42, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item-overlay span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
}

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

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item--large {
  grid-column: span 7;
  height: 360px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
  height: 240px;
}

.gallery-item--tall {
  grid-column: span 5;
  height: 536px;
}

/* ---------- Visit ---------- */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

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

.visit-info {
  padding: 48px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.visit-info .section-eyebrow {
  color: var(--blush);
}

.visit-info .section-eyebrow::before {
  background: var(--blush);
}

.visit-info .section-title {
  color: var(--white);
  margin-bottom: 32px;
}

.visit-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.visit-address-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--blush);
}

.visit-address-line a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.visit-address-line a:hover {
  color: var(--blush);
}

.visit-hours {
  border-top: 1px solid rgba(245, 230, 211, 0.2);
  padding-top: 32px;
}

.visit-hours-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.visit-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
  font-size: 0.95rem;
  color: var(--blush);
}

.visit-hours-row span:last-child {
  color: var(--white);
  font-weight: 500;
}

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

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

/* ---------- Contact ---------- */
.contact {
  padding: 120px 0;
  background: var(--white);
}

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

.contact-content {
  max-width: 520px;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--blush-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 29, 42, 0.08);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B1D2A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.contact-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-success svg {
  color: var(--burgundy);
}

.contact-success h3 {
  font-size: 1.5rem;
  color: var(--burgundy);
}

.contact-success p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-visual {
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-visual-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 50%;
  height: 30%;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--blush);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--burgundy);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--blush);
  opacity: 0.7;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--blush);
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-contact p {
  font-size: 0.95rem;
  color: var(--blush);
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--blush);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--blush);
  opacity: 0.5;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

  .hero-visual {
    height: 450px;
    max-width: 500px;
  }

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

  .about-content,
  .contact-content {
    max-width: 100%;
  }

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

  .gallery-item--large {
    grid-column: span 12;
    height: 300px;
  }

  .gallery-item--tall {
    grid-column: span 6;
    height: 360px;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    grid-column: span 3;
    height: 240px;
  }

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

  .footer-top > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-link--cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-visual {
    height: 350px;
  }

  .hero-img--main {
    width: 70%;
    height: 75%;
  }

  .hero-img--accent {
    width: 55%;
    height: 40%;
  }

  .hero-img--detail {
    width: 50%;
    height: 28%;
  }

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

  .hero-stat-divider {
    display: none;
  }

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

  .gallery-item--tall {
    grid-column: span 12;
    height: 360px;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    grid-column: span 6;
    height: 200px;
  }

  .visit-info {
    padding: 32px;
  }

  .visit-map {
    min-height: 300px;
  }

  .visit-map iframe {
    min-height: 300px;
  }

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

  .contact-visual img {
    height: 400px;
  }

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

  .footer-top > :first-child {
    grid-column: span 1;
  }

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

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

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

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

  .gallery-item--large,
  .gallery-item--tall,
  .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    grid-column: span 12;
    height: 220px;
  }
}
