/* ============================================
   NOIR LUXURY COFFEE ROASTERY — STYLE
   Warm Espresso · Cream · Gold Accent
   ============================================ */

:root {
  --espresso: #110d08;
  --dark-roast: #1a1209;
  --warm-brown: #2a1f10;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-glow: rgba(201, 169, 110, 0.12);
  --cream: #f5efe6;
  --cream-dim: rgba(245, 239, 230, 0.65);
  --cream-muted: rgba(245, 239, 230, 0.35);
  --glass-bg: rgba(201, 169, 110, 0.04);
  --glass-border: rgba(201, 169, 110, 0.1);
  --glass-hover: rgba(201, 169, 110, 0.08);
  --gradient-gold: linear-gradient(135deg, #c9a96e, #8b6f3a);
  --section-spacing: 120px;
  --container-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 110, 0.3) transparent;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--espresso);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(201, 169, 110, 0.3); border-radius: 3px; }

::selection { background: rgba(201, 169, 110, 0.25); color: #fff; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.1; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.loader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  letter-spacing: 0.5em;
  color: var(--gold);
}
.loader-bar {
  width: 100px; height: 2px;
  background: rgba(201, 169, 110, 0.15);
  margin: 24px auto 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loader-progress {
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gradient-gold);
  z-index: 100001;
  transition: width 0.05s linear;
}

/* ── Navigation ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10000; padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(17, 13, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-container {
  max-width: var(--container-width);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cream);
}
.logo-dot { color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-dim); transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--cream-muted); transition: color 0.3s ease; padding: 4px 2px;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--cream-dim); }
.lang-divider { width: 1px; height: 14px; background: var(--glass-border); }
.mobile-toggle { display: none; color: var(--cream); padding: 4px; }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(17, 13, 8, 0.97);
  backdrop-filter: blur(24px);
  z-index: 100000;
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px;
}
.mobile-close { color: var(--cream); padding: 4px; }
.mobile-links { display: flex; flex-direction: column; gap: 24px; }
.mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500;
  color: var(--cream-dim); transition: color 0.3s ease;
}
.mobile-links a:hover { color: var(--gold); }

/* ── Section Helpers ── */
.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px; color: var(--cream);
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: var(--espresso);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 50px; transition: all 0.3s ease; border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent; color: var(--cream);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 50px; border: 1px solid rgba(201, 169, 110, 0.3);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Glows ── */
.hero-glow, .stat-glow, .cta-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(120px);
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: rgba(201, 169, 110, 0.08);
  top: -200px; right: -150px;
  animation: glowDrift 18s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(139, 111, 58, 0.06);
  bottom: -200px; left: -100px;
  animation: glowDrift 22s ease-in-out infinite reverse;
}
.stat-glow-1 {
  width: 600px; height: 600px;
  background: rgba(201, 169, 110, 0.06);
  top: -200px; left: -100px;
  animation: glowDrift 16s ease-in-out infinite;
}
.stat-glow-2 {
  width: 400px; height: 400px;
  background: rgba(139, 111, 58, 0.08);
  bottom: -150px; right: -50px;
  animation: glowDrift 20s ease-in-out infinite reverse;
}
.cta-glow-1 {
  width: 800px; height: 800px;
  background: rgba(201, 169, 110, 0.08);
  top: -300px; left: 20%;
  animation: glowDrift 18s ease-in-out infinite;
}
.cta-glow-2 {
  width: 500px; height: 500px;
  background: rgba(139, 111, 58, 0.06);
  bottom: -200px; right: 10%;
  animation: glowDrift 22s ease-in-out infinite reverse;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 25px) scale(0.96); }
}

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--espresso) 0%, var(--dark-roast) 50%, #1f150a 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.18; transform: scale(1.05);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; padding: 8px 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-dim); margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400; line-height: 1.05; margin-bottom: 24px;
  background: linear-gradient(135deg, #f5efe6 0%, #c9a96e 60%, #8b6f3a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--cream-dim);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--cream-muted); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  border-radius: 12px; position: relative;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

/* ── ABOUT ── */
#about { padding: var(--section-spacing) 0; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 16px;
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--espresso);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.about-content .section-title { text-align: left; }
.about-text {
  color: var(--cream-dim); margin-bottom: 16px;
  font-size: 1rem; line-height: 1.8;
}
.about-signature {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px; padding-top: 24px;
}
.signature-line {
  width: 40px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.signature-text {
  font-size: 0.8rem; color: var(--cream-muted);
  font-style: italic; letter-spacing: 0.03em;
}

/* ── BLENDS ── */
#blends { padding: var(--section-spacing) 0; position: relative; }
.blends-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blend-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.4s ease;
}
.blend-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.blend-img { height: 240px; overflow: hidden; }
.blend-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blend-card:hover .blend-img img { transform: scale(1.06); }
.blend-info { padding: 28px; }
.blend-origin {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.blend-name {
  font-size: 1.5rem; font-weight: 500;
  margin: 8px 0 10px;
}
.blend-notes {
  font-size: 0.9rem; color: var(--cream-dim);
  font-style: italic; margin-bottom: 16px;
}
.blend-meta {
  display: flex; gap: 16px;
  font-size: 0.8rem; color: var(--cream-muted);
}
.blend-meta span { display: flex; align-items: center; gap: 6px; }
.blend-meta .iconify { color: var(--gold); }

/* ── PROCESS ── */
#process {
  padding: var(--section-spacing) 0; position: relative;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.03), transparent);
}
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-step {
  text-align: center; padding: 32px 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; transition: all 0.4s ease;
}
.process-step:hover {
  background: var(--glass-hover);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--espresso);
}
.process-step h3 {
  font-size: 1.15rem; font-weight: 500; margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem; color: var(--cream-dim); line-height: 1.7;
}

/* ── GALLERY ── */
#gallery { padding: var(--section-spacing) 0; position: relative; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gal-wide { grid-column: span 2; }
.gal-item { border-radius: 10px; overflow: hidden; position: relative; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.06); }

/* ── STATISTICS ── */
#statistics {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(139, 111, 58, 0.06));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  display: block; font-size: 0.85rem;
  color: var(--cream-dim); margin-top: 8px;
}

/* ── TESTIMONIALS ── */
#testimonials { padding: var(--section-spacing) 0; position: relative; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  padding: 36px; background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; transition: all 0.4s ease;
}
.testi-card:hover {
  background: var(--glass-hover);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.testi-quote {
  font-size: 1rem; color: var(--cream-dim);
  line-height: 1.8; margin-bottom: 28px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--espresso);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author span { font-size: 0.8rem; color: var(--cream-muted); }

/* ── FAQ ── */
#faq { padding: var(--section-spacing) 0; position: relative; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 1.05rem; font-weight: 500;
  text-align: left; color: var(--cream); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  transition: transform 0.3s ease; flex-shrink: 0;
  margin-left: 16px; color: var(--cream-muted);
}
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 24px; color: var(--cream-dim);
  font-size: 0.95rem; line-height: 1.8;
}

/* ── CTA ── */
#cta {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.06), rgba(139, 111, 58, 0.08));
  border-top: 1px solid var(--glass-border);
}
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; }
.cta-subtitle { font-size: 1.1rem; color: var(--cream-dim); margin-bottom: 40px; line-height: 1.8; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.cta-form input {
  flex: 1; padding: 14px 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 50px; color: var(--cream);
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s ease;
}
.cta-form input::placeholder { color: var(--cream-muted); }
.cta-form input:focus { border-color: var(--gold); }

/* ── FOOTER ── */
#footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  background: rgba(8, 6, 3, 0.5);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand p {
  color: var(--cream-dim); font-size: 0.9rem;
  margin-top: 16px; line-height: 1.7; max-width: 280px;
}
.footer-socials { display: flex; gap: 16px; margin-top: 24px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim); transition: all 0.3s ease;
}
.footer-socials a:hover {
  background: var(--glass-hover); color: var(--gold);
  border-color: rgba(201, 169, 110, 0.3);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px; color: var(--cream);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a, .contact-list li {
  font-size: 0.875rem; color: var(--cream-dim); transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--gold); }
.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list .iconify { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--glass-border);
  font-size: 0.8rem; color: var(--cream-muted);
}
.inline-icon { display: inline-flex; vertical-align: middle; color: #c0392b; }

/* ── Back to Top ── */
#backToTop {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; visibility: hidden;
  transform: translateY(16px); transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4); }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.35s; }

body.lang-switching [data-i18n], body.lang-switching [data-i18n-placeholder] {
  opacity: 0; transition: opacity 0.2s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-spacing: 80px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 360px; }
  .blends-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --section-spacing: 64px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .blends-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gal-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-form { flex-direction: column; }
  .cta-form .btn-primary { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-img-accent { width: 140px; height: 140px; bottom: -20px; right: -10px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}