/* ============================================
   AURELIA PREMIUM INTERIOR AGENCY — STYLE
   Dark Plum · Black · Soft Gold · Midnight Purple
   ============================================ */

:root {
  --black: #0a0a0e;
  --dark: #0e0c14;
  --plum: #1a0f1e;
  --midnight: #2d1b3d;
  --purple-dim: rgba(45, 27, 61, 0.3);
  --gold: #c8a86e;
  --gold-light: #dfc08a;
  --gold-glow: rgba(200, 168, 110, 0.12);
  --text-primary: #ede9e3;
  --text-dim: rgba(237, 233, 227, 0.6);
  --text-muted: rgba(237, 233, 227, 0.35);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --gradient-gold: linear-gradient(135deg, #c8a86e, #a08040);
  --gradient-text: linear-gradient(135deg, #dfc08a, #c8a86e, #a08040);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius: 14px;
  --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(200, 168, 110, 0.25) transparent; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black); color: var(--text-primary);
  line-height: 1.7; font-size: 16px;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(200, 168, 110, 0.25); border-radius: 3px; }
::selection { background: rgba(200, 168, 110, 0.2); 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: 'Playfair Display', serif; font-weight: 500; line-height: 1.1; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* ── Preloader ── */
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; letter-spacing: 0.5em;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.loader-bar {
  width: 100px; height: 1px; background: rgba(255,255,255,0.06);
  margin: 20px auto 0; overflow: hidden; position: relative;
}
.loader-progress {
  position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: var(--gradient-gold);
  animation: lSlide 1.2s ease-in-out infinite;
}
@keyframes lSlide { 0% { left: -40%; } 100% { left: 100%; } }

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gradient-gold); z-index: 100001;
}

/* ── Navigation ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10000; padding: 22px 0; transition: all 0.4s ease;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 14, 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: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--text-primary);
}
.logo-dot { color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-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(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.lang-toggle { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--text-muted); transition: color 0.3s ease; padding: 3px;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--text-dim); }
.lang-divider { width: 1px; height: 12px; background: var(--glass-border); }
.mobile-toggle { display: none; color: var(--text-primary); padding: 4px; }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10, 10, 14, 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(--text-primary); padding: 4px; }
.mobile-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-links a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 500;
  color: var(--text-dim); transition: color 0.3s ease;
}
.mobile-links a:hover { color: var(--gold); }

/* ── Section Helpers ── */
.section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px; color: var(--text-primary);
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-gold); color: var(--black);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em; border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 110, 0.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  color: var(--text-primary); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em; border-radius: 50px;
  border: 1px solid rgba(200, 168, 110, 0.25);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--gold); background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ── Glows ── */
.hero-glow, .mat-glow, .cta-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(120px);
}
.hg-1 { width: 700px; height: 700px; background: rgba(45, 27, 61, 0.2); top: -200px; right: -100px; animation: gDrift 20s ease-in-out infinite; }
.hg-2 { width: 500px; height: 500px; background: rgba(200, 168, 110, 0.06); bottom: -200px; left: -100px; animation: gDrift 24s ease-in-out infinite reverse; }
.mg-1 { width: 600px; height: 600px; background: rgba(45, 27, 61, 0.15); top: -200px; left: 50%; animation: gDrift 18s ease-in-out infinite; }
.cg-1 { width: 800px; height: 800px; background: rgba(200, 168, 110, 0.06); top: -300px; left: 25%; animation: gDrift 20s ease-in-out infinite; }
.cg-2 { width: 500px; height: 500px; background: rgba(45, 27, 61, 0.12); bottom: -200px; right: 15%; animation: gDrift 24s ease-in-out infinite reverse; }
@keyframes gDrift {
  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 CINEMATIC ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--black) 0%, var(--plum) 50%, #140e1c 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15; transform: scale(1.05);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block; padding: 8px 20px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 50px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 5rem);
  font-weight: 500; line-height: 1.05; margin-bottom: 24px;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.85;
}
.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: 10px;
  color: var(--text-muted); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: sPulse 2s ease-in-out infinite;
}
@keyframes sPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 24px; }
}

/* ── FEATURED INTERIORS ── */
#featured { padding: var(--section-spacing) 0; position: relative; }
.feat-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin-bottom: 20px; }
.feat-main { grid-row: span 1; }
.feat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
}
.feat-main { min-height: 420px; }
.feat-card img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 200px;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.feat-card:hover img { transform: scale(1.04); }
.feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 14, 0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transform: translateY(6px);
  transition: all 0.5s ease;
}
.feat-card:hover .feat-overlay { opacity: 1; transform: translateY(0); }
.feat-cat {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.feat-overlay h3 { font-size: 1.5rem; color: #fff; margin-bottom: 6px; }
.feat-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 400px; }

.feat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card-sm {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3;
}
.feat-card-sm img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.feat-card-sm:hover img { transform: scale(1.05); }
.feat-overlay-sm {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 14, 0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity 0.4s ease;
}
.feat-card-sm:hover .feat-overlay-sm { opacity: 1; }
.feat-overlay-sm h3 { font-size: 1.1rem; color: #fff; }

/* ── DESIGN VALUES ── */
#values { padding: var(--section-spacing) 0; position: relative; }
.values-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.values-content .section-title { text-align: left; }
.values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.val-card {
  padding: 28px; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.val-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--gradient-gold);
  opacity: 0; transition: opacity 0.4s ease;
}
.val-card:hover { border-color: rgba(200, 168, 110, 0.15); background: var(--glass-hover); transform: translateY(-3px); }
.val-card:hover::before { opacity: 1; }
.val-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.05em; margin-bottom: 14px;
}
.val-card h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 10px; }
.val-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

/* ── LUXURY MATERIAL ── */
#materials {
  padding: var(--section-spacing) 0; position: relative; overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(45, 27, 61, 0.04), transparent);
}
.mat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s ease;
}
.mat-card:hover { transform: translateY(-4px); border-color: rgba(200, 168, 110, 0.15); box-shadow: var(--shadow-card); }
.mat-img { height: 200px; overflow: hidden; }
.mat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.mat-card:hover .mat-img img { transform: scale(1.06); }
.mat-info { padding: 22px; }
.mat-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.mat-info p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; }

/* ── CLIENT EXPERIENCE ── */
#experience { padding: var(--section-spacing) 0; position: relative; }
.exp-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.exp-content .section-title { text-align: left; }
.exp-text { color: var(--text-dim); margin-bottom: 32px; font-size: 1rem; line-height: 1.85; }
.exp-stats { display: flex; gap: 36px; }
.exp-stat { display: flex; flex-direction: column; }
.exp-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.exp-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.exp-testimonials { display: flex; flex-direction: column; gap: 20px; }
.testi-card {
  padding: 28px; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  transition: all 0.3s ease;
}
.testi-card:hover { border-color: rgba(200, 168, 110, 0.12); }
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-quote { font-size: 0.95rem; color: var(--text-dim); line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-initials {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--black); flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 600; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ── AWARDS ── */
#awards { padding: var(--section-spacing) 0; position: relative; }
.awards-list { max-width: 800px; margin: 0 auto; }
.award-row {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.award-row:hover { padding-left: 8px; }
.award-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; color: var(--gold);
  min-width: 50px; flex-shrink: 0;
}
.award-name {
  flex: 1; font-size: 1rem; font-weight: 500;
  color: var(--text-primary);
}
.award-loc { font-size: 0.82rem; color: var(--text-muted); }

/* ── FAQ ── */
#faq { padding: var(--section-spacing) 0; position: relative; }
.faq-list { max-width: 740px; 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: 22px 0; font-size: 1.05rem; font-weight: 500;
  text-align: left; color: var(--text-primary); 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(--text-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; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 22px; color: var(--text-dim); font-size: 0.95rem; line-height: 1.85; }

/* ── CTA ── */
#cta {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(45, 27, 61, 0.08), rgba(200, 168, 110, 0.04));
  border-top: 1px solid var(--glass-border);
}
.cta-content { text-align: center; max-width: 580px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.cta-subtitle { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 36px; line-height: 1.85; }
.cta-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.cta-form input {
  flex: 1; min-width: 150px; padding: 14px 18px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 50px; color: var(--text-primary);
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s ease;
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus { border-color: var(--gold); }
.cta-form .btn-gold { flex-shrink: 0; }

/* ── FOOTER ── */
#footer {
  padding: 72px 0 36px; position: relative;
  border-top: 1px solid var(--glass-border);
  background: rgba(6, 6, 10, 0.5);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.3s ease;
}
.footer-socials a:hover { border-color: rgba(200, 168, 110, 0.3); color: var(--gold); }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px; color: var(--text-primary);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .contact-list li { font-size: 0.88rem; color: var(--text-dim); transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--gold); }
.contact-list li { display: flex; align-items: center; gap: 8px; }
.contact-list .iconify { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--glass-border);
  font-size: 0.78rem; color: var(--text-muted);
}
.pw-link { color: var(--gold); font-weight: 600; transition: color 0.3s ease; }
.pw-link:hover { color: var(--gold-light); }

/* ── Back to Top ── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200, 168, 110, 0.25);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(200, 168, 110, 0.35); }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  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.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.22s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.32s; }

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; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-main { min-height: 320px; }
  .feat-row { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .mat-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-spacing: 64px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .feat-row { grid-template-columns: 1fr; }
  .values-cards { grid-template-columns: 1fr; }
  .mat-grid { grid-template-columns: 1fr; }
  .exp-stats { flex-direction: column; gap: 18px; }
  .award-row { flex-wrap: wrap; gap: 8px; }
  .award-loc { width: 100%; }
  .cta-form { flex-direction: column; }
  .cta-form input { min-width: auto; }
  .cta-form .btn-gold { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
}