/* ============================================
   Arany Ligét Kaszinó — Golden Grove Nights
   Design System & Global Styles
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Core palette */
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-bright: #D4AF37;
  --gold-dark: #A68A3E;
  --gold-muted: #B89D4A;

  /* Dark forest tones */
  --forest-deep: #0B1409;
  --forest-dark: #0F1A0C;
  --forest: #1A2E15;
  --forest-mid: #2A4420;
  --forest-light: #3D5C30;
  --forest-muted: #4A6B3A;

  /* Warm browns */
  --brown-deep: #1E150E;
  --brown-dark: #3D2B1F;
  --brown: #5C3D2E;
  --brown-warm: #7A5640;

  /* Neutrals */
  --cream: #F5F0E3;
  --cream-warm: #EDE6D6;
  --ivory: #FAF7F0;
  --parchment: #E8DFC8;
  --warm-white: #FFFDF5;

  /* Accents */
  --amber: #E8A84B;
  --ember: #D4783A;
  --olive: #8B7D3C;

  /* Functional */
  --overlay-dark: rgba(11, 20, 9, 0.7);
  --overlay-medium: rgba(11, 20, 9, 0.5);
  --overlay-light: rgba(11, 20, 9, 0.35);
  --gold-glow: rgba(201, 168, 76, 0.3);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--forest-deep);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

::selection {
  background-color: var(--gold-muted);
  color: var(--forest-deep);
}

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--forest-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-mid);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 0.015em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
}

p {
  margin-bottom: var(--space-md);
  color: var(--cream-warm);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  display: block;
  font-weight: 600;
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-warm);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--dark {
  background-color: var(--forest-deep);
}

.section--forest {
  background-color: var(--forest-dark);
}

.section--warm {
  background: linear-gradient(180deg, var(--forest-dark) 0%, var(--brown-deep) 100%);
}

.section--gold-accent {
  background: linear-gradient(180deg, var(--brown-deep) 0%, var(--forest-dark) 100%);
}

.section--cream {
  background-color: var(--parchment);
  color: var(--forest-deep);
}

.section--cream .section-label {
  color: var(--gold-dark);
}

.section--cream h2,
.section--cream h3 {
  color: var(--forest-deep);
}

.section--cream p {
  color: var(--brown-dark);
}

/* --- Decorative Elements --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--space-md) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 20, 9, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.nav-logo-text small {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

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

.nav-links a {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--cream-warm);
  text-decoration: none;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease-out);
}

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

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

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

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
  border-radius: 1px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(11, 20, 9, 0.4) 0%,
      rgba(11, 20, 9, 0.15) 40%,
      rgba(11, 20, 9, 0.2) 60%,
      rgba(11, 20, 9, 0.85) 100%
    );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
  animation: heroFadeIn 1.2s var(--ease-out) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--warm-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--cream-warm);
  max-width: 550px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--forest-deep);
  border-radius: 2px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Image Sections --- */
.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.image-text-grid.reverse .image-text-image {
  order: -1;
}

.image-text-image {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.image-text-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.image-text-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 3px;
  pointer-events: none;
}

.image-text-content {
  padding: var(--space-md) 0;
}

.image-text-content h2 {
  margin-bottom: var(--space-sm);
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--forest-dark);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 168, 76, 0.25);
}

.card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--forest-dark), transparent);
  pointer-events: none;
}

.card-body {
  padding: var(--space-md);
}

.card-body h3 {
  margin-bottom: var(--space-xs);
}

.card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Feature Cards (icon-based) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(26, 46, 21, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 3px;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
  background: rgba(26, 46, 21, 0.7);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--cream-warm);
}

/* --- Gallery Strip --- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.gallery-strip .gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gallery-strip .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.gallery-strip .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 9, 0.2);
  pointer-events: none;
  transition: background 0.4s ease;
}

.gallery-strip .gallery-item:hover::after {
  background: transparent;
}

/* --- Quote / CTA Banner --- */
.cta-banner {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner .hero-overlay {
  background: rgba(11, 20, 9, 0.8);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  line-height: 1.5;
}

.cta-banner cite {
  font-family: var(--font-accent);
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* --- Footer --- */
.footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  padding-right: var(--space-lg);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--cream-warm);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--cream-warm);
  transition: color 0.3s var(--ease-out);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--olive);
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--olive);
}

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

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-info-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-form {
  background: var(--forest-dark);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 3px;
  padding: var(--space-lg);
}

.contact-form label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(11, 20, 9, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  margin-bottom: var(--space-md);
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--olive);
  opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-dark);
  background: rgba(11, 20, 9, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* --- Hours Table --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--cream-warm);
}

.hours-table td:first-child {
  font-family: var(--font-accent);
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hours-table td:last-child {
  text-align: right;
}

/* --- Map Placeholder --- */
.map-container {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--forest-dark);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) brightness(0.85) contrast(1.1);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 20, 9, 0.5);
  transition: background 0.4s ease;
  cursor: pointer;
}

.map-overlay:hover {
  background: transparent;
}

.map-overlay-content {
  text-align: center;
  color: var(--cream);
}

.map-overlay-content svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
  margin-bottom: 0.5rem;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .image-text-grid {
    gap: var(--space-md);
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(11, 20, 9, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-out);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .image-text-grid,
  .image-text-grid.reverse {
    grid-template-columns: 1fr;
  }

  .image-text-grid.reverse .image-text-image {
    order: 0;
  }

  .image-text-image img {
    height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

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

  .gallery-strip .gallery-item {
    height: 220px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .hero {
    min-height: 85vh;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner blockquote {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }

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

  .gallery-strip .gallery-item {
    height: 250px;
  }

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

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream-warm); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Leaf ornament background pattern */
.bg-pattern {
  position: relative;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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%3Cpath d='M30 5 C30 5 50 18 50 32 C50 42 40 50 30 55 C20 50 10 42 10 32 C10 18 30 5 30 5Z' fill='%23C9A84C'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

/* Page transition */
.page-enter {
  animation: pageEnter 0.6s var(--ease-out) forwards;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Separator line */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: var(--space-sm) auto var(--space-md);
}

/* Floating glow accent */
.glow-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
