/* =========================================
   SONI PHOTOGRAPHY — style.css
   Light & Clean, Mobile-First
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #a0a0a0;
  --gray-600: #6b6b6b;
  --gray-800: #2a2a2a;
  --accent: #b8946a;
  --accent-light: #f0e6d8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 68px;
  --radius: 4px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.3s var(--ease);
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color var(--trans);
}
.nav.scrolled .nav-logo { color: var(--black); }
.nav-logo span {
  font-weight: 400;
  margin-left: 2px;
  color: var(--accent);
}
.nav.scrolled .nav-logo span { color: var(--accent); }

.nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--trans);
}
.nav.scrolled .nav-links a { color: var(--gray-800); }
.nav-links a:hover { color: var(--accent) !important; }

.nav-cta {
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  transition: border-color var(--trans), background var(--trans) !important;
}
.nav.scrolled .nav-cta {
  border-color: var(--accent);
  color: var(--accent) !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-color: var(--accent) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background var(--trans), transform var(--trans), opacity var(--trans);
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 40px 24px;
  gap: 0;
  animation: slideDown 0.25s var(--ease);
}
.nav-links.mobile-open a {
  color: var(--black);
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  letter-spacing: 0;
  text-transform: none;
}
.nav-links.mobile-open .nav-cta {
  margin-top: 24px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  text-align: center;
  border-radius: var(--radius);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #a07d58;
  border-color: #a07d58;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-800);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 6s ease;
}
.hero-img-1 {
  background-image: url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=1200&q=80');
  flex: 3;
}
.hero-img-2 {
  background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=800&q=80');
  flex: 1;
  display: none;
}
.hero-img-3 {
  background-image: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?w=800&q=80');
  flex: 1;
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 12vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 24px;
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  to { top: 100%; }
}

/* ===== STATS ===== */
.stats {
  background: var(--black);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  background: var(--black);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}

h2 em {
  font-style: italic;
  font-weight: 300;
}

.section-sub {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--trans);
  color: var(--gray-600);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2/3;
}

.portfolio-item.large {
  grid-column: span 2;
  aspect-ratio: 4/3;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: transform 0.6s var(--ease);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.04);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--trans);
}

.portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-info span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
}

.portfolio-item.hidden { display: none; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  position: relative;
  transition: background var(--trans);
}

.service-card:hover {
  background: var(--gray-50);
}

.service-card.featured {
  background: var(--black);
  color: var(--white);
}

.service-card.featured:hover {
  background: var(--gray-800);
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-card.featured .service-icon { color: var(--accent); }

.service-icon svg { width: 36px; height: 36px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: inherit;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card.featured p { color: rgba(255,255,255,0.6); }

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card.featured ul li { color: rgba(255,255,255,0.7); }

.service-card ul li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }

.process-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  min-width: 64px;
  flex-shrink: 0;
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  padding-top: 8px;
}

.process-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  background: var(--white);
  transition: box-shadow var(--trans), transform var(--trans);
}
.pricing-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
  text-align: center;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 6px;
}

.pricing-header p {
  font-size: 13px;
  color: var(--gray-600);
}

.pricing-price {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-600);
  margin-top: 8px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
}

.pricing-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}
.pricing-features li.disabled svg {
  color: var(--gray-400);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--trans);
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
}

/* ===== CONTACT ===== */
.section-contact {
  background: var(--gray-50);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-sub {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.contact-item a {
  font-size: 15px;
  color: var(--black);
  font-weight: 400;
  transition: color var(--trans);
}
.contact-item a:hover { color: var(--accent); }

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-row { margin-bottom: 16px; }

label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #f0faf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: #166534;
  font-size: 14px;
  margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { color: var(--white); }
.footer-brand .nav-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== TABLET (640px+) ===== */
@media (min-width: 640px) {
  .hero-img-2, .hero-img-3 { display: block; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { gap: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .form-row { flex-direction: row; }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  .nav { padding: 0 48px; }
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .container { padding: 0 48px; }
  .hero-content { padding: 0 48px; }
  .hero-scroll { right: 48px; }
  .section { padding: 120px 0; }
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .portfolio-item.large {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
  .contact-info { flex: 0 0 380px; }
  .contact-form { flex: 1; }
  .footer-top { flex-direction: row; gap: 80px; }
  .footer-brand { max-width: 280px; }
}

/* ===== SAFE AREAS (iPhone notch/home bar) ===== */
@supports (padding: max(0px)) {
  .nav { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
  .hero-content { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
  .footer-bottom { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
