/* ============================================
   CASA MICHELANGELO — Premium Restaurant Design
   ============================================ */

:root {
  --gold: #c9a96e;
  --gold-light: #ddc396;
  --gold-dark: #a8853e;
  --cream: #faf6f0;
  --cream-dark: #f0e8da;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --dark: #0d0d0d;
  --text: #3a3a3a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-ornament {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 1em;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: preloaderFill 1.8s var(--transition) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   CONTAINER & UTILITIES
   ============================================ */

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

.section {
  padding: 8rem 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: height 0.4s ease;
}

.nav.scrolled .nav-logo-img {
  height: 40px;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

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

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.15em;
  transition: all 0.4s ease !important;
}

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

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

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

.nav-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s ease;
  transform-origin: center;
}

.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);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-ornament {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  font-style: italic;
  margin: 0.3em 0;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-tag-light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.section-title-light {
  color: var(--white);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.75rem;
}

.section-divider span {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-divider-light span {
  background: var(--gold-light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background: var(--cream);
}

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

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--transition);
}

.about-image-frame:hover .about-image {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-badge-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-divider {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-closing {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-top: 2rem;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */

.highlights {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.highlights-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
  transition: all 0.5s var(--transition);
}

.highlight-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.highlight-card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--transition);
  overflow: hidden;
}

.highlight-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4));
}

.highlight-card:hover .highlight-card-image {
  transform: scale(1.08);
}

.highlight-card-content {
  padding: 2rem;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.highlight-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MITTAGSTISCH SECTION
   ============================================ */

.mittagstisch {
  background: var(--cream);
}

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

.mittagstisch-content .section-tag {
  text-align: left;
}

.mittagstisch-content .section-title {
  text-align: left;
}

.mittagstisch-content .section-divider {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.mittagstisch-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 2rem;
}

.mittagstisch-info {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.mittagstisch-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mittagstisch-label {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.mittagstisch-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.mittagstisch-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.mittagstisch-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--transition);
}

.mittagstisch-image-frame:hover .mittagstisch-image {
  transform: scale(1.05);
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */

.parallax-divider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.parallax-quote {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin: 1.5rem 0;
}

/* ============================================
   INFO / CONTACT SECTION
   ============================================ */

.info {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.info-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.info-card-accent {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.info-card-accent .info-card-title {
  color: var(--white);
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.info-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.info-card-detail {
  margin-bottom: 1rem;
}

.info-card-detail span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.info-card-detail strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}

.info-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.info-phone:hover {
  color: var(--gold-light);
}

.info-email {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.info-email:hover {
  color: var(--gold-light);
}

.info-address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}

.info-card-accent .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}

.info-card-accent .btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ============================================
   GALLERY / IMPRESSIONEN
   ============================================ */

.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition), filter 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

/* ============================================
   MAP
   ============================================ */

.map-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  filter: grayscale(0.5) contrast(1.1);
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s var(--transition);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-grid,
  .mittagstisch-grid {
    gap: 4rem;
  }

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

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

  .info-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.7rem;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  .section {
    padding: 5rem 0;
  }

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

  .about-visual {
    order: -1;
  }

  .about-badge {
    bottom: -20px;
    right: -10px;
    width: 100px;
    height: 100px;
  }

  .about-content .section-tag,
  .about-content .section-title,
  .mittagstisch-content .section-tag,
  .mittagstisch-content .section-title {
    text-align: center;
  }

  .about-content .section-divider,
  .mittagstisch-content .section-divider {
    justify-content: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .parallax-divider {
    height: 50vh;
    min-height: 400px;
  }

  .parallax-bg {
    background-attachment: scroll;
  }

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

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

  .footer-links {
    justify-content: center;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

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

  .hero-title-main {
    font-size: 2.8rem;
  }

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

  .parallax-quote {
    font-size: 2rem;
  }
}
