/* ============================================================
   VilleAlight — "The Golden Hour Hearth" Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary */
  --primary: #833700;
  --primary-container: #a04500;
  --on-primary: #ffffff;
  --on-primary-container: #fffbff;
  --on-primary-fixed: #3b0900;
  --on-primary-fixed-variant: #872000;
  --primary-fixed: #ffdbd1;
  --primary-fixed-dim: #ffb5a0;
  --inverse-primary: #ffb5a0;

  /* Secondary */
  --secondary: #835400;
  --secondary-container: #fcab28;
  --on-secondary: #ffffff;
  --on-secondary-container: #694300;
  --on-secondary-fixed: #2a1800;
  --on-secondary-fixed-variant: #643f00;
  --secondary-fixed: #ffddb5;
  --secondary-fixed-dim: #ffb957;

  /* Tertiary */
  --tertiary: #73554e;
  --tertiary-container: #8d6d66;
  --on-tertiary: #ffffff;
  --on-tertiary-container: #fffbff;
  --on-tertiary-fixed: #2b1611;
  --on-tertiary-fixed-variant: #5c403a;
  --tertiary-fixed: #ffdad2;
  --tertiary-fixed-dim: #e5beb5;

  /* Error */
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --on-error: #ffffff;
  --on-error-container: #93000a;

  /* Surfaces */
  --surface: #fff9ea;
  --surface-dim: #e0dac4;
  --surface-bright: #fff9ea;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #faf4dd;
  --surface-container: #f5eed7;
  --surface-container-high: #efe8d2;
  --surface-container-highest: #e9e2cc;
  --surface-variant: #e9e2cc;
  --surface-tint: #b12d00;
  --on-surface: #1e1c0e;
  --on-surface-variant: #5a413a;
  --on-background: #1e1c0e;
  --background: #fff9ea;
  --inverse-surface: #333121;
  --inverse-on-surface: #f8f1da;

  /* Outline */
  --outline: #8f7068;
  --outline-variant: #e3beb5;

  /* Typography */
  --font-headline: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-label: 'DM Sans', sans-serif;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-default: 1rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-editorial: 0 32px 64px rgba(30, 28, 14, 0.06);
  --shadow-ambient: 0 16px 32px rgba(30, 28, 14, 0.06);
  --shadow-primary-glow: 0 16px 32px rgba(173, 44, 0, 0.2);
  --shadow-primary-glow-hover: 0 24px 48px rgba(173, 44, 0, 0.3);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-image: 700ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--primary-fixed);
  color: var(--on-primary-fixed);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  line-height: 1.1;
}

ul {
  list-style: none;
}

/* --- Material Symbols --- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* --- Layout --- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.section-padding-lg {
  padding: 8rem 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: linear-gradient(135deg, #0d1f15, #1a3a2a);
  box-shadow: 0 4px 20px rgba(26, 58, 42, 0.3);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 3.5rem;
  width: auto;
  display: block;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 249, 234, 0.8);
  transition: color var(--transition-base);
  padding-bottom: 0.25rem;
}

.nav-link:hover {
  color: #f5c542;
}

.nav-link.active {
  color: #f5c542;
  font-weight: 700;
  border-bottom: 2px solid #f5c542;
}

/* Gallery Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 249, 234, 0.8);
  transition: color var(--transition-base);
  padding-bottom: 0.25rem;
}

.nav-dropdown-trigger:hover {
  color: #f5c542;
}

.nav-dropdown-trigger.active {
  color: #f5c542;
  font-weight: 700;
  border-bottom: 2px solid #f5c542;
}

.nav-dropdown-trigger .material-symbols-outlined {
  font-size: 0.875rem;
  transition: transform var(--transition-base);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: var(--surface-container-lowest);
  border-radius: var(--radius-default);
  box-shadow: 0 8px 32px rgba(30, 28, 14, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--transition-base);
  overflow: hidden;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: rgba(173, 44, 0, 0.1);
  color: var(--primary);
}

/* Header CTA */
.header-cta {
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}

.header-cta:hover {
  background: var(--primary-container);
  box-shadow: var(--shadow-ambient);
}

.header-cta:active {
  transform: scale(0.95);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  color: #f5c542;
}

.mobile-menu-toggle .material-symbols-outlined {
  font-size: 1.875rem;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(255, 249, 234, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--primary);
}

.mobile-nav-close .material-symbols-outlined {
  font-size: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--on-surface-variant);
  transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-nav-cta {
  background: var(--primary);
  color: var(--on-primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-primary:hover {
  background: var(--primary-container);
  box-shadow: var(--shadow-editorial);
}

.btn-primary-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-secondary {
  background: var(--surface-container-highest);
  color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-secondary:hover {
  box-shadow: var(--shadow-ambient);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: var(--on-primary);
  box-shadow: var(--shadow-primary-glow);
}

.btn-gradient:hover {
  box-shadow: var(--shadow-primary-glow-hover);
  transform: translateY(-2px);
}

/* Text/Tertiary Button */
.btn-text {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-base);
}

.btn-text:hover {
  gap: 0.75rem;
}

.btn-text .material-symbols-outlined {
  font-size: 0.875rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface-container);
  border-radius: var(--radius-default);
  overflow: hidden;
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-0.5rem);
}

.card-padded {
  padding: 2.5rem;
}

.card-prominent {
  background: var(--surface-container-highest);
}

.card-low {
  background: var(--surface-container-low);
}

/* ============================================================
   CHIPS / TAGS
   ============================================================ */
.chip {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.chip-secondary {
  background: rgba(252, 171, 40, 0.9);
  color: var(--on-secondary-container);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-surface-variant);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface-container-lowest);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  color: var(--on-surface);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
  opacity: 0.3;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px var(--primary-fixed);
}

.form-textarea {
  resize: none;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%235a413a' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* ============================================================
   ICON BUTTONS / SOCIAL
   ============================================================ */
.icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.icon-btn-surface {
  background: rgba(255, 255, 255, 0.5);
  color: var(--secondary);
}

.icon-btn-surface:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.icon-btn-prominent {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.icon-btn-prominent:hover {
  background: #f5c542;
  color: var(--primary);
  transform: scale(1.1);
}

.icon-btn .material-symbols-outlined {
  font-size: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  width: 100%;
  padding: 3rem 2rem;
  background: var(--primary);
  border-top: 6px solid #ffffff;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-row .material-symbols-outlined {
  color: #f5c542;
}

.footer-brand-name {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.25rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
}

.footer-nav-link:hover {
  color: #f5c542;
}

.footer-nav-link.active {
  color: #f5c542;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */
.hero {
  position: relative;
  padding: 2rem 1.5rem 5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-default);
  height: 618px;
  display: flex;
  align-items: center;
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 28, 14, 0.6), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
  max-width: 48rem;
}

.hero-chip {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.hero-logo {
  display: block;
  max-width: 22rem;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
}

@media (max-width: 767px) {
  .hero-logo {
    max-width: 15rem;
  }

  .hero-content {
    padding: 1.5rem;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 0.9rem;
  }
}

.hero h1 {
  font-weight: 800;
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--primary-fixed);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

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

/* ============================================================
   SECTION: Light & Warmth
   ============================================================ */
.light-warmth {
  padding: 6rem 1.5rem;
  background: var(--surface-container-low);
}

.light-warmth-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.light-warmth-text {
  flex: 1;
}

.light-warmth-text .accent-bar {
  width: 4rem;
  height: 0.25rem;
  background: var(--primary);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.light-warmth-text h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--on-surface);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.light-warmth-text h2 .accent {
  color: var(--primary);
}

.light-warmth-text .desc {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-item .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.875rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-weight: 700;
  color: var(--on-surface);
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
}

.light-warmth-image {
  flex: 1;
  position: relative;
  width: 100%;
}

.light-warmth-image .image-wrapper {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-default);
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
  transform: rotate(-2deg);
  max-width: 20rem;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}

.warmth-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.warmth-slide.active {
  opacity: 1;
}

.light-warmth-image .glow-circle {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background: rgba(252, 171, 40, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

/* ============================================================
   SECTION: What to Expect (Bento Cards)
   ============================================================ */
/* ============================================================
   ORIGINS TENT SECTION
   ============================================================ */
.origins-wrapper {
  max-width: 800px;
  margin: 20px auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  box-shadow: -100vw 0 0 #000000, 100vw 0 0 #000000;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .origins-wrapper {
    margin: 0 auto;
  }
}



.origins-section {
  display: flex;
  align-items: stretch;
  background: #000000;
  overflow: hidden;
  position: relative;
  width: 800px;
  height: 450px;
}

.origins-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.origins-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 30px 40px;
  z-index: 1;
}

.origins-label {
  display: block;
  color: #fcab28;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.origins-logo {
  display: block;
  max-width: 450px;
  height: auto;
  margin: 0 0 16px;
  filter: drop-shadow(0 0 30px rgba(252, 171, 40, 0.3));
}

.origins-desc {
  color: #d4c4a0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 16px;
}

.origins-btn {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  padding: 8px 20px !important;
}

.origins-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
  padding-top: 4rem;
}

.gallery-hero .label {
  font-family: var(--font-label);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.gallery-hero h1 {
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.gallery-hero p {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* Masonry/Bento Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-default);
  cursor: pointer;
  background: var(--surface-container);
}

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

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 28, 14, 0.8), transparent, transparent);
  opacity: 0.6;
}

.gallery-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
}

.gallery-card-content .chip {
  margin-bottom: 0.75rem;
}

.gallery-card-content h3 {
  color: #ffffff;
  font-weight: 700;
}

.gallery-card-lg h3 {
  font-size: 1.875rem;
}

.gallery-card-md h3,
.gallery-card-sm h3 {
  font-size: 1.5rem;
}

/* Card heights */
.gallery-card-lg { height: 320px; }
.gallery-card-md { height: 288px; }
.gallery-card-sm { height: 288px; }
.gallery-card-tall { height: 400px; }

/* Gallery CTA */
.gallery-cta {
  margin-top: 8rem;
  padding: 4rem 2rem;
  border-radius: var(--radius-default);
  background: var(--surface-container-low);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-cta .glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(173, 44, 0, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  margin-right: -8rem;
  margin-top: -8rem;
}

.gallery-cta .glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(131, 84, 0, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  margin-left: -8rem;
  margin-bottom: -8rem;
}

.gallery-cta h2 {
  font-size: 2.5rem;
  color: var(--on-surface);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gallery-cta p {
  color: var(--on-surface-variant);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

.gallery-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Gallery Year Nav */
.gallery-year-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

/* Gallery Coming Soon */
.gallery-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
}

.gallery-coming-soon h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.coming-soon-text {
  font-size: 1.5rem;
  color: var(--on-surface-variant);
  font-family: var(--font-headline);
  font-style: italic;
}

/* Photo Wall */
.photo-wall {
  columns: 2;
  column-gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .photo-wall {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .photo-wall {
    columns: 4;
  }
}

.photo-wall-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-default);
  overflow: hidden;
  cursor: pointer;
  animation: fadeIn 0.4s ease both;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.photo-wall-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(30, 28, 14, 0.2);
}

.photo-wall-item img {
  width: 100%;
  display: block;
}

/* Gallery Empty State */
.gallery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.gallery-empty p {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  font-style: italic;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================================
   INFO PAGE
   ============================================================ */
.info-hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 6rem;
}

.info-hero-text {
  flex: 1;
}

.info-hero-text .label {
  font-family: var(--font-label);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--secondary);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.info-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.info-hero-text p {
  color: var(--on-surface-variant);
  font-size: 1.25rem;
  max-width: 36rem;
  line-height: 1.6;
}

.info-hero-image {
  flex: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-default);
  box-shadow: 0 16px 48px rgba(30, 28, 14, 0.12);
}

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

.glass-quote {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(90, 50, 20, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 2.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-quote p {
  font-family: var(--font-body);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.125rem;
  text-align: center;
}

/* When & Where Bento */
.when-where {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 8rem;
}

.when-card {
  background: var(--surface-container);
  border-radius: var(--radius-default);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.when-card .material-symbols-outlined {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.when-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.when-card p {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  line-height: 1.6;
}

.where-card {
  background: var(--surface-container-high);
  border-radius: var(--radius-default);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.where-card-text {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.where-card-text .material-symbols-outlined {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.where-card-text h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.where-card-text p {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  line-height: 1.6;
}

.where-card-map {
  flex: 1;
  height: 16rem;
  background: var(--surface-container-highest);
  position: relative;
  overflow: hidden;
}

.where-card-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.where-card-map .pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.where-card-map .pin-icon {
  background: var(--primary);
  color: var(--on-primary);
  padding: 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-ambient);
}

.where-card-map .pin-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.directions-link {
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-base);
}

.directions-link:hover {
  transform: translateX(4px);
}

/* Activities Section */
.activities-header {
  text-align: center;
  margin-bottom: 3rem;
}

.activities-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 1rem;
}

.activities-header p {
  color: var(--on-surface-variant);
  max-width: 42rem;
  margin: 0 auto;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 8rem;
}

.activity-card-horizontal {
  background: var(--surface-container-low);
  border-radius: var(--radius-default);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.activity-card-horizontal img,
.activity-card-horizontal video {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.activity-card-horizontal .text {
  padding: 2rem;
}

.activity-card-horizontal h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.activity-card-horizontal p {
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.activity-card-children {
  background: var(--surface-container);
  border-radius: var(--radius-default);
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.activity-card-children:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 16px 48px rgba(30, 28, 14, 0.15);
}

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

.activity-card-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.activity-card-body {
  padding: 1.5rem;
}

.activity-card-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.activity-card-body p {
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Food Card */
.activity-food-card {
  background: var(--surface-container);
  border-radius: var(--radius-default);
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.activity-food-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 24px 64px rgba(30, 28, 14, 0.18);
}

.activity-food-card:hover .food-top img {
  transform: scale(1.1) rotate(3deg);
}

.activity-food-card:hover .food-tags div {
  background: var(--surface-container-highest);
}

.food-inner {
  padding: 3rem;
}

.food-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.food-top-text h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.food-top-text p {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Food Tabs */
.food-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.food-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--outline-variant);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--on-surface-variant);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.food-tab .material-symbols-outlined {
  font-size: 1.125rem;
}

.food-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-fixed);
}

.food-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* Food Tab Panels */
.food-tab-panels {
  position: relative;
}

.food-tab-panel {
  display: none;
  border-radius: var(--radius-default);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.food-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

.food-tab-panel > img,
.food-panel-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Placeholder for tabs without photos */
.food-panel-placeholder {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3f 50%, #3a6b4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-panel-placeholder .material-symbols-outlined {
  font-size: 5rem;
  color: rgba(252, 171, 40, 0.5);
}

/* Caption: solid below image on mobile */
.food-panel-caption {
  background: #3a2a1a;
  padding: 1rem 1.5rem;
}

.food-panel-caption h5 {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.food-panel-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Caption: glassmorphism overlay on desktop */
@media (min-width: 768px) {
  .food-tab-panel {
    position: relative;
  }

  .food-panel-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    width: fit-content;
    max-width: calc(100% - 3rem);
    background: rgba(90, 50, 20, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
}

/* FAQ Section */
.faq-section {
  max-width: 56rem;
  margin: 0 auto 8rem;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--on-surface);
  margin-bottom: 3rem;
}

.faq-item {
  background: var(--surface-container);
  border-radius: var(--radius-default);
  padding: 2rem;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  font-family: var(--font-headline);
}

.faq-question .material-symbols-outlined {
  color: var(--primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.open .faq-question .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  margin-top: 1rem;
}

.faq-answer p {
  color: var(--on-surface-variant);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: 5rem 2rem 4rem;
  background: var(--surface-container-low);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  background: rgba(173, 44, 0, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  background: rgba(131, 84, 0, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

.contact-hero-label {
  font-family: var(--font-label);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--secondary);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-hero-desc {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: -2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--surface-container);
  border-radius: var(--radius-default);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-editorial);
}

.contact-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #e9e2cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition-base);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-icon .material-symbols-outlined {
  color: #5a413a;
  font-size: 1.875rem;
}

.contact-card h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.contact-card-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card-methods {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.contact-card-note {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

.contact-card-centered {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* Location Preview */
.location-preview {
  background: var(--surface-container-low);
  border-radius: var(--radius-default);
  overflow: hidden;
}

.location-preview-image {
  height: 20rem;
  position: relative;
  overflow: hidden;
}

.location-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}

.location-preview:hover .location-preview-image img {
  transform: scale(1.1);
}

.location-preview-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(173, 44, 0, 0.1);
  mix-blend-mode: multiply;
}

.location-preview-image .badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-preview-image .badge-inner {
  background: rgba(255, 249, 234, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.625rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.location-preview-image .badge-inner:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-ambient);
}

.location-preview-image .badge-inner .material-symbols-outlined {
  font-size: 1rem;
}

/* Organic Wave Decoration */
.wave-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 24rem;
  opacity: 0.3;
  pointer-events: none;
  overflow: hidden;
}

.wave-deco svg {
  width: 100%;
  height: 100%;
}

/* Contact page wrapper */
.contact-page-main {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-content {
    padding: 3rem 6rem;
  }

  .light-warmth-text h2 {
    font-size: 3rem;
  }

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

  .expect-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-card-feature { grid-column: span 8; height: 500px; }
  .gallery-card-side { grid-column: span 4; height: 500px; }
  .gallery-card-tall { grid-column: span 4; height: 600px; }
  .gallery-card-wide { grid-column: span 8; height: 288px; }
  .gallery-card-square { grid-column: span 4; height: 288px; }

  .gallery-cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .info-hero {
    flex-direction: row;
    align-items: center;
  }

  .info-hero-image {
    aspect-ratio: 1/1;
  }

  .info-hero-text h1 {
    font-size: 4.5rem;
  }

  .when-where {
    grid-template-columns: 1fr 2fr;
  }

  .where-card {
    flex-direction: row;
  }

  .where-card-map {
    height: auto;
  }

  .activities-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .activity-card-horizontal {
    grid-column: span 12;
    flex-direction: row;
  }

  .activity-card-horizontal img,
  .activity-card-horizontal video {
    width: 40%;
    height: auto;
  }

  .activity-card-children {
    grid-column: span 4;
  }

  .activity-food-card {
    grid-column: span 12;
  }

  .food-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .food-tags {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .contact-hero-title {
    font-size: 4.5rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .light-warmth-inner {
    flex-direction: row;
  }

  .gallery-hero h1 {
    font-size: 4.5rem;
  }

  .contact-sidebar h1 {
    font-size: 4.5rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .header-inner {
    padding: 1.5rem 2rem;
  }

  .hero-content {
    padding: 3rem 6rem;
  }

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