/* ==========================================================================
   Bathroom Remodel NYC - Main Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1A1A1B;
  --primary-dark: #0F0F10;
  --accent: #D4AF37;
  --accent-light: #E5C860;
  --accent-dark: #B8960F;
  --background: #F9F9F9;
  --background-alt: #F0EDE8;
  --text: #1A1A1B;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #FFFFFF;
  --black: #000000;
  --error: #C62828;
  --success: #2E7D32;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --container-max: 1280px;
  --container-padding: 1.5rem;
  --header-height: 80px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--background); -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.section { padding: var(--space-3xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-subtitle { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: var(--space-sm); }
.section-title { margin-bottom: var(--space-md); }
.section-description { max-width: 640px; margin: 0 auto; color: var(--text-light); }
.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); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs); padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border-radius: var(--radius-sm); transition: all var(--transition-base); cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); transition: all var(--transition-base); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo { display: flex; align-items: center; gap: var(--space-sm); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo-icon { width: 40px; height: 40px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.nav-list { display: flex; align-items: center; gap: var(--space-lg); }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--text); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--transition-base); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--accent); }
.nav-cta { margin-left: var(--space-md); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--primary); transition: all var(--transition-fast); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--primary); overflow: hidden; }
.hero-background { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26, 26, 27, 0.9) 0%, rgba(26, 26, 27, 0.7) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 720px; padding-top: var(--header-height); }
.hero-badge { display: inline-block; padding: var(--space-xs) var(--space-md); background: rgba(212, 175, 55, 0.15); border: 1px solid var(--accent); border-radius: var(--radius-xl); color: var(--accent); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: var(--space-lg); }
.hero-title { color: var(--white); margin-bottom: var(--space-lg); }
.hero-title span { color: var(--accent); }
.hero-description { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-bottom: var(--space-xl); line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.hero-stats { display: flex; gap: var(--space-2xl); margin-top: var(--space-3xl); padding-top: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.hero-stat { text-align: left; }
.hero-stat-value { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); margin-top: var(--space-xs); }

.features { background: var(--white); }
.feature-card { background: var(--background); padding: var(--space-xl); border-radius: var(--radius-lg); transition: all var(--transition-base); text-align: center; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 72px; height: 72px; margin: 0 auto var(--space-lg); background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 36px; height: 36px; fill: var(--primary); }
.feature-title { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.feature-description { color: var(--text-light); font-size: 0.9375rem; }

.services-preview { background: var(--background-alt); }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition-base); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--primary); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-badge { position: absolute; top: var(--space-md); left: var(--space-md); padding: var(--space-xs) var(--space-sm); background: var(--accent); color: var(--primary); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border-radius: var(--radius-sm); }
.service-content { padding: var(--space-lg); }
.service-title { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.service-description { color: var(--text-light); font-size: 0.9375rem; margin-bottom: var(--space-md); }
.service-link { display: inline-flex; align-items: center; gap: var(--space-xs); font-weight: 600; color: var(--accent); transition: gap var(--transition-fast); }
.service-link:hover { gap: var(--space-sm); }

.cta { background: var(--primary); position: relative; overflow: hidden; }
.cta-background { position: absolute; inset: 0; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-content { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-title { color: var(--white); margin-bottom: var(--space-md); }
.cta-description { color: rgba(255, 255, 255, 0.8); font-size: 1.125rem; margin-bottom: var(--space-xl); }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-md); }

.footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.8); }
.footer-main { padding: var(--space-3xl) 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-2xl); }
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: var(--space-sm); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: var(--space-lg); }
.footer-logo-icon { width: 40px; height: 40px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.footer-description { font-size: 0.9375rem; line-height: 1.8; margin-bottom: var(--space-lg); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); }
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 20px; height: 20px; fill: var(--white); }
.footer-social a:hover svg { fill: var(--primary); }
.footer-title { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: var(--space-lg); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { font-size: 0.9375rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); font-size: 0.9375rem; }
.footer-contact-item svg { width: 20px; height: 20px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--space-lg) 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a:hover { color: var(--accent); }

.cookie-banner { position: fixed; bottom: -100%; left: 0; right: 0; z-index: 1500; background: var(--primary); padding: var(--space-lg); transition: bottom var(--transition-base); }
.cookie-banner.active { bottom: 0; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); max-width: var(--container-max); margin: 0 auto; }
.cookie-text { color: rgba(255, 255, 255, 0.9); font-size: 0.9375rem; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: var(--space-md); flex-shrink: 0; }
.cookie-btn { padding: var(--space-sm) var(--space-lg); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-md); transition: all var(--transition-fast); }
.cookie-btn-accept { background: var(--accent); color: var(--primary); }
.cookie-btn-accept:hover { background: var(--accent-light); }
.cookie-btn-manage { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); }
.cookie-btn-manage:hover { border-color: var(--white); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 2000; width: 0; transition: width 0.1s linear; }

.fade-in, .fade-up, .fade-scale { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in { opacity: 0; }
.fade-up { transform: translateY(30px); }
.fade-scale { transform: scale(0.95); }
.fade-in.visible, .fade-up.visible, .fade-scale.visible { opacity: 1; transform: translateY(0) scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.page-header { background: var(--primary); padding: var(--space-3xl) 0; padding-top: calc(var(--header-height) + var(--space-3xl)); text-align: center; }
.page-title { color: var(--white); margin-bottom: var(--space-md); }
.page-subtitle { color: rgba(255, 255, 255, 0.7); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

.gallery { background: var(--background-alt); }
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-2xl); }
.filter-btn { padding: var(--space-sm) var(--space-lg); font-size: 0.875rem; font-weight: 500; color: var(--text); background: var(--white); border-radius: var(--radius-xl); transition: all var(--transition-fast); }
.filter-btn:hover, .filter-btn.active { background: var(--accent); color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.gallery-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 26, 27, 0.8) 0%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-lg); opacity: 0; transition: opacity var(--transition-base); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: var(--space-xs); }
.gallery-item-category { color: var(--accent); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }

.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--transition-base); }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; cursor: pointer; transition: background var(--transition-fast); }
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
.contact-info { padding-right: var(--space-xl); }
.contact-subtitle { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: var(--space-sm); }
.contact-title { margin-bottom: var(--space-lg); }
.contact-description { color: var(--text-light); font-size: 1.0625rem; line-height: 1.8; margin-bottom: var(--space-xl); }
.contact-item { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); }
.contact-item-icon { width: 48px; height: 48px; background: var(--background); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 24px; height: 24px; fill: var(--accent); }
.contact-item-label { font-size: 0.875rem; color: var(--text-light); margin-bottom: 4px; }
.contact-item-value { font-weight: 600; color: var(--text); }
.contact-item-value a { color: var(--accent); }
.contact-item-value a:hover { text-decoration: underline; }
.contact-form-wrapper { background: var(--background); padding: var(--space-xl); border-radius: var(--radius-lg); }

.form-group { margin-bottom: var(--space-lg); }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: var(--space-xs); color: var(--text); }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.875rem 1rem; font-size: 1rem; color: var(--text); background: var(--white); border: 2px solid transparent; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all var(--transition-fast); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }
.form-input.error, .form-textarea.error, .form-select.error { border-color: var(--error); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-error { display: none; color: var(--error); font-size: 0.8125rem; margin-top: var(--space-xs); }
.form-message { display: none; padding: var(--space-md); border-radius: var(--radius-md); margin-bottom: var(--space-lg); font-weight: 500; }
.form-message.form-success { background: rgba(46, 125, 50, 0.1); color: var(--success); border: 1px solid var(--success); }
.form-message.form-error { background: rgba(198, 40, 40, 0.1); color: var(--error); border: 1px solid var(--error); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--transition-base); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: var(--space-lg); }
.blog-meta { display: flex; align-items: center; gap: var(--space-md); font-size: 0.875rem; color: var(--text-light); margin-bottom: var(--space-sm); }
.blog-category { color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-title { font-size: 1.25rem; margin-bottom: var(--space-sm); transition: color var(--transition-fast); }
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { color: var(--text-light); font-size: 0.9375rem; margin-bottom: var(--space-md); }
.blog-link { display: inline-flex; align-items: center; gap: var(--space-xs); font-weight: 600; color: var(--accent); }
.blog-link:hover { gap: var(--space-sm); }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: var(--space-3xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.legal-content h2 { font-size: 1.5rem; margin-top: var(--space-xl); margin-bottom: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--background-alt); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { color: var(--text-light); margin-bottom: var(--space-md); }
.legal-content ul { margin-bottom: var(--space-md); padding-left: var(--space-lg); }
.legal-content li { color: var(--text-light); margin-bottom: var(--space-xs); position: relative; }
.legal-content li::before { content: '•'; color: var(--accent); position: absolute; left: -1.5rem; }

.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--primary); }
.error-content { padding: var(--space-xl); }
.error-code { font-family: var(--font-heading); font-size: 12rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: var(--space-lg); }
.error-title { color: var(--white); margin-bottom: var(--space-md); }
.error-description { color: rgba(255, 255, 255, 0.7); font-size: 1.125rem; margin-bottom: var(--space-xl); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding-right: 0; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-list { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; justify-content: flex-start; padding: var(--space-2xl); gap: var(--space-lg); transform: translateX(100%); transition: transform var(--transition-base); }
  .nav-list.active { transform: translateX(0); }
  .nav-link { font-size: 1.25rem; }
  .nav-cta { margin-left: 0; margin-top: var(--space-md); }
  .menu-toggle { display: flex; }
  .hero-stats { flex-direction: column; gap: var(--space-lg); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; gap: var(--space-md); text-align: center; }
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
