/* ================================================
   Round Mountain Retreat — Weddings & Events
   Naples, Idaho · Forest Retreat
   ================================================ */

/* CSS Custom Properties */
:root {
  --primary: #2D5A3D;
  --primary-light: #4A7B5C;
  --primary-dark: #1A3A2A;
  --accent: #C49A6C;
  --accent-light: #D9B88E;
  --accent-dark: #A67C4E;
  --green: #3D6B4F;
  --green-light: #6B9E7B;
  --green-dark: #1E4A2E;
  --background: #FAF8F5;
  --surface: #FFFFFF;
  --surface-alt: #F2F0EC;
  --text: #2A2520;
  --text-secondary: #6B635A;
  --text-light: #8E857A;
  --text-inverse: #FFFFFF;
  --border: #DDD8D0;
  --border-dark: #C4BEB4;
  --success: #4A7B5C;
  --warning: #C49A6C;
  --error: #C75D5D;
  --shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 58, 42, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 58, 42, 0.16);
  --shadow-hover: 0 12px 32px rgba(26, 58, 42, 0.15), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-primary-glow: 0 4px 16px rgba(45, 90, 61, 0.35);
  --shadow-accent-glow: 0 4px 16px rgba(196, 154, 108, 0.35);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-system: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-system);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.75; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }

/* ===== Layout ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: 88px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: var(--text); margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 620px; margin: 0 auto; font-weight: 400; line-height: 1.8; }

.section-label {
  display: block;
  font-family: var(--font-system);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.85;
}

.section-alt {
  background: linear-gradient(180deg, #FAF8F5, #F2F0EC);
  position: relative;
}

/* ===== Header & Navigation ===== */
.site-header {
  background: rgba(250, 248, 245, 0.98);
  border-bottom: 1px solid rgba(221, 216, 208, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 1);
  box-shadow: 0 1px 0 rgba(221, 216, 208, 0.5);
  border-bottom-color: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header-brand .brand-icon { font-size: 1.4rem; opacity: 0.85; }
.header-brand .brand-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); letter-spacing: -0.01em; }
.header-brand .brand-sub { font-size: 0.65rem; color: var(--text-light); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }

.header-nav { display: flex; align-items: center; gap: 6px; }

.header-nav a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.header-nav a:hover { background: transparent; color: var(--primary-dark); }
.header-nav a.active { background: var(--primary-dark); color: white; border-radius: var(--radius-full); }
.header-cta { flex-shrink: 0; }

.header-cta-book {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--primary-dark);
  color: white !important;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header-cta-book:hover { background: var(--primary); box-shadow: var(--shadow-primary-glow); color: white; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text);
}

@media (max-width: 1100px) {
  .header-nav a { padding: var(--space-sm) 10px; font-size: 0.85rem; }
  .header-nav { gap: 2px; }
}

.nav-mobile-only { display: none; }

@media (max-width: 968px) {
  .nav-mobile-only { display: block; }
  .header-nav a.active { border-radius: var(--radius-full); }
  .mobile-toggle { display: block; }
  .header-cta-book { display: none; }
  .site-header .container { height: 56px; }
  .header-brand .brand-icon { font-size: 1.1rem; }
  .header-brand .brand-text { font-size: 1rem; }
  .header-brand .brand-sub { font-size: 0.55rem; letter-spacing: 1px; }
}

/* ===== Smooth Mobile Menu ===== */
@media (max-width: 968px) {
  .header-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    z-index: 999;
  }

  .header-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-nav a {
    font-size: 1.1rem;
    padding: 12px 24px;
    width: 80%;
    text-align: center;
    border-radius: var(--radius-md);
    transition: background 0.2s, color 0.2s;
  }

  .header-nav a:hover { background: var(--surface-alt); }
  .header-nav a.active { background: var(--primary-dark); color: white; }

  .mobile-toggle.active { color: var(--primary); }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 38, 30, 0.3) 0%, rgba(26, 58, 42, 0.5) 40%, rgba(45, 90, 61, 0.45) 70%, rgba(26, 38, 30, 0.55) 100%);
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: var(--space-xxl) var(--space-lg); max-width: 800px; }

.hero-badge {
  display: inline-block;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero h1 { font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.03em; color: white; margin-bottom: var(--space-lg); text-shadow: 0 2px 40px rgba(0,0,0,0.25); line-height: 1.05; }
.hero-subtitle { font-size: 1.35rem; color: rgba(255,255,255,0.88); margin-bottom: var(--space-xl); font-family: var(--font-serif); font-weight: 400; letter-spacing: 0.02em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover { box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--primary-dark); color: white; }
.btn-primary:hover { color: white; background: var(--primary); box-shadow: 0 4px 20px rgba(45, 90, 61, 0.25); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { color: white; background: var(--accent-dark); box-shadow: 0 4px 20px rgba(196, 154, 108, 0.25); }
.btn-outline { background: transparent; border: 1.5px solid var(--primary); color: var(--primary); transition: all 0.3s; }
.btn-outline:hover { background: var(--primary-dark); color: white; border-color: var(--primary-dark); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: white; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; box-shadow: var(--shadow-primary-glow); }
.btn-group { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; }

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid rgba(221, 216, 208, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.card:hover { box-shadow: 0 4px 16px rgba(26, 58, 42, 0.08); transform: translateY(-2px); }

.card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.card:hover .card-img { transform: scale(1.02); }
.card-body { padding: var(--space-lg); }
.card-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: var(--space-sm); }
.card-subtitle { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: var(--space-sm); }
.card-text { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-md); line-height: 1.5; }

/* ===== Grid ===== */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 968px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-direction: column; align-items: center; gap: var(--space-sm); }
  .btn-group .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 100vh; min-height: 100svh; padding: var(--space-xxl) 0 100px; }
  .hero-subtitle { font-size: 0.95rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: var(--space-xxl) 0; }
  .page-hero { padding: 60px 0 40px; }
  .page-hero p { font-size: 0.95rem; }
  .card-body { padding: var(--space-md); }
}

/* ===== Split Layout ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.split-text .section-label { margin-bottom: var(--space-sm); }
.split-text h2 { margin-bottom: var(--space-md); }
.split-text p { font-size: 1.05rem; line-height: 1.8; }

@media (max-width: 768px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: var(--space-lg); direction: ltr; }
  .split-image { height: 280px; }
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-xxl);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }

/* ===== Feature List ===== */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
    linear-gradient(135deg, var(--primary), var(--primary-light));
  flex-shrink: 0;
}

/* ===== Info Cards ===== */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-lg); }

.info-card {
  background: var(--surface);
  border: 1px solid rgba(221, 216, 208, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.info-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45,90,61,0.08), rgba(45,90,61,0.15));
  border: 2px solid rgba(45,90,61,0.15);
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}
.info-card h4 { color: var(--primary); margin-bottom: var(--space-sm); }
.info-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0; }

@media (max-width: 600px) {
  .info-cards { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .info-card { padding: var(--space-lg) var(--space-md); }
  .info-card h4 { font-size: 0.95rem; }
  .info-card p { font-size: 0.8rem; }
}
@media (max-width: 380px) { .info-cards { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer {
  background: #1E1E24;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer .container { position: relative; z-index: 1; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand h3 { color: white; font-size: 1.2rem; margin-bottom: 4px; font-weight: 600; letter-spacing: -0.01em; }
.footer-brand .footer-brand-sub { color: rgba(255,255,255,0.3); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: rgba(255,255,255,0.35); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: var(--space-lg); font-family: var(--font-system); font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 5px 0; transition: color 0.3s ease; position: relative; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; margin: 0; letter-spacing: 0.02em; }

.footer-social { display: flex; gap: var(--space-md); }
.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover { color: rgba(255,255,255,0.85); }
.footer-social a::after { display: none; }

.footer-address { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; margin-bottom: 8px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .section-label { color: rgba(255, 255, 255, 0.65); position: relative; z-index: 2; letter-spacing: 3px; }
.page-hero h1 { color: white; margin-bottom: var(--space-md); position: relative; z-index: 2; font-size: 3.2rem; text-shadow: 0 2px 30px rgba(0,0,0,0.2); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; position: relative; z-index: 2; max-width: 560px; margin: 0 auto; font-weight: 300; }

.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 38, 30, 0.4) 0%, rgba(26, 58, 42, 0.55) 50%, rgba(45, 90, 61, 0.45) 100%); z-index: 0; }

/* ===== Visual Break ===== */
.visual-break {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.visual-break::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 38, 30, 0.35) 0%, rgba(26, 58, 42, 0.5) 50%, rgba(26, 38, 30, 0.4) 100%); z-index: 1; }
.visual-break-content { position: relative; z-index: 2; text-align: center; padding: 64px var(--space-lg); max-width: 680px; color: white; }
.visual-break-content h3 { color: white; font-family: var(--font-serif); font-size: 2.4rem; margin-bottom: var(--space-md); text-shadow: 0 2px 30px rgba(0,0,0,0.3); letter-spacing: -0.02em; font-weight: 400; font-style: italic; }
.visual-break-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 0; text-shadow: 0 1px 12px rgba(0,0,0,0.2); line-height: 1.7; font-weight: 300; }

@media (max-width: 968px) {
  .visual-break { background-attachment: scroll; min-height: 300px; }
  .visual-break-content h3 { font-size: 1.6rem; }
}

/* ===== Photo Grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.photo-grid-hero {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
}
.photo-grid-hero .photo-grid-item:first-child {
  grid-row: 1 / 3;
}
.photo-grid-item {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  min-height: 200px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.photo-grid-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

@media (max-width: 600px) {
  .photo-grid, .photo-grid-hero { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-grid-hero .photo-grid-item:first-child { grid-row: auto; }
  .photo-grid-item { min-height: 200px; }
}

/* ===== Gallery Grid ===== */
.gallery-grid { columns: 3; column-gap: var(--space-md); }

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 42, 0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.gallery-item:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 12px 32px rgba(26, 58, 42, 0.2), 0 4px 12px rgba(0,0,0,0.1); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; display: block; }

@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(0,0,0,0.5); transform: scale(0.92); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  z-index: 2001;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.8rem;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2001;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  z-index: 2001;
}

/* ===== Inquiry Form ===== */
.inquiry-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.inquiry-form h3 { text-align: center; margin-bottom: var(--space-sm); }
.form-subtitle { text-align: center; color: var(--text-secondary); margin-bottom: var(--space-xl); }

.form-group { margin-bottom: var(--space-lg); }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-system);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

@media (max-width: 600px) {
  .inquiry-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section h3 { color: white; margin-bottom: var(--space-sm); }
.newsletter-section p { color: rgba(255,255,255,0.7); margin-bottom: var(--space-lg); }
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-dark); }

@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
}

/* ===== Partners Section ===== */
.partners-section {
  padding: 20px 0;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}
.partner-badge:hover { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.partner-icon { color: var(--primary); font-size: 0.8rem; }
.partner-name { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.partner-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

@media (max-width: 600px) {
  .partner-divider { display: none; }
  .partners-row { gap: var(--space-sm); }
}

/* ===== Scroll Reveal ===== */
.reveal { transition: opacity 0.8s ease; }
.reveal-ready .reveal { opacity: 0; }
.reveal-ready .reveal.visible { opacity: 1; }

/* ===== Animations ===== */
@keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stat-animated { animation: countUp 0.6s ease-out forwards; }

/* ===== Mobile CTA Bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px var(--space-lg);
  border-top: 1px solid var(--border);
  z-index: 900;
  gap: var(--space-sm);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.mobile-cta-bar .btn { flex: 1; text-align: center; font-size: 0.9rem; padding: 12px; }

@media (max-width: 968px) {
  .mobile-cta-bar { display: flex; }
  .site-footer { padding-bottom: 80px; }
}

/* ===== Utility ===== */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ===== High Contrast Mode ===== */
.high-contrast {
  --background: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F5F5F5;
  --text: #000000;
  --text-secondary: #333333;
  --text-light: #555555;
  --border: #999999;
}

/* ===== Large Text Mode ===== */
.large-text { font-size: 20px; }
.large-text h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.large-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.large-text h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* ===== Reviews ===== */
.reviews-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}
.review-card {
  background: var(--surface);
  border: 1px solid rgba(221, 216, 208, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.review-card .review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}
.review-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: var(--space-sm); }
.review-card .review-author { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* Gallery Grid — masonry-style photo layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img {
    height: 200px !important;
  }
}
