/* ============================================================
   NADÉLIE V4 — "Blanc Couture"
   Blanc pur · Graphique · Moderne-luxe · Rose poudré graphique
   ============================================================ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --bg-off:     #F8F6F4;
  --graphite:   #1A1A1A;
  --rose:       #C47070;
  --rose-light: #E8A8A8;
  --rose-pale:  #FAF0F0;
  --text-m:     rgba(26, 26, 26, .55);
  --text-d:     rgba(26, 26, 26, .32);
  --border:     rgba(196, 112, 112, .12);

  --font-serif: "Libre Bodoni", serif;
  --font-body:  "Bricolage Grotesque", sans-serif;

  --nav-h:    72px;
  --container: 1200px;
  --radius:   0;

  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out:   cubic-bezier(.76, 0, .24, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rose);
  z-index: 9999;
  transition: width .1s linear;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

em { font-style: italic; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border: 1.5px solid var(--rose);
}
.btn-primary:hover {
  background: #b06060;
  border-color: #b06060;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-secondary:hover {
  background: var(--rose-pale);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .9);
  color: var(--rose);
  border: 1.5px solid var(--white);
  padding: 10px 20px;
  font-size: .8rem;
}
.btn-ghost:hover { background: var(--white); }

.btn-large {
  padding: 18px 40px;
  font-size: .9375rem;
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 100px 0; }

@media (max-width: 1024px) { .section { padding: 80px 0; } }
@media (max-width: 768px)  { .section { padding: 60px 0; } }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-heading {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

/* SVG underline drawn on scroll */
.heading-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: visible;
}

.heading-underline path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1s var(--ease-out-expo);
}

.heading-underline.animate path {
  stroke-dashoffset: 0;
}

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

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-m);
  max-width: 560px;
  margin-top: 8px;
}

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 1000;
  transition: box-shadow .3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(26, 26, 26, .08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1024px) { .nav-inner { padding: 0 32px; } }
@media (max-width: 768px)  { .nav-inner { padding: 0 20px; } }

.nav-logo img {
  height: 40px;
  width: auto;
  filter: none;
}

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

.nav-links li a {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 400;
  color: var(--graphite);
  letter-spacing: .03em;
  transition: color .2s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width .3s ease;
}

.nav-links li a:hover            { color: var(--rose); }
.nav-links li a:hover::after     { width: 100%; }

.nav-links .nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8125rem;
  transition: background .2s ease;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover  { background: #b06060; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--graphite);
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--white);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--white);
}

/* Mobile full-screen nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--graphite);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .4s var(--ease-in-out);
    z-index: 1050;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li a {
    color: var(--white);
    font-size: 1.25rem;
  }
  .nav-links li a::after  { background: var(--rose-light); }
  .nav-links li a:hover   { color: var(--rose-light); }

  .nav-links .nav-cta {
    color: var(--white) !important;
    padding: 14px 32px;
  }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* Left column entrance */
.hero-left {
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 48px;
  background: var(--white);
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}

.hero-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 700;
  font-style: italic;
  line-height: .9;
  color: var(--graphite);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

/* Decorative line: width animates 0→100% */
.hero-line {
  width: 0;
  height: 1px;
  background: var(--rose);
  margin-bottom: 24px;
  transition: width 1.2s var(--ease-out-expo) .6s;
}
.hero-line.animate { width: 100%; }

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

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

/* Right column – sticky on desktop */
.hero-right {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 4px;
}

/* Photos cascade in from bottom */
.hero-grid-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}

.hero-grid-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out-expo);
}

/* Hover: slight rotation + scale */
.hero-grid-item:hover img {
  transform: scale(1.03) rotate(1.5deg);
}
.hero-grid-item:nth-child(even):hover img {
  transform: scale(1.03) rotate(-1.5deg);
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-band {
  background: var(--graphite);
  overflow: hidden;
  padding: 18px 0;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  white-space: nowrap;
}

.marquee-track .marquee-dot {
  color: var(--rose-light);
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text p {
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--graphite) !important;
  font-weight: 500;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}

.stat-label {
  font-size: .8125rem;
  color: var(--text-d);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image::before { display: none; }
  .about-image img { aspect-ratio: 4/3; }
  .about-stats { gap: 24px; }
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border);
  color: var(--text-m);
  background: transparent;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

/* Gallery stagger: each item staggers in via JS delay */
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out-expo);
}

.gallery-item:hover img { transform: scale(1.05); }

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rose);
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
}

/* ── OCCASIONS BENTO ─────────────────────────────────────── */
.occasions { background: var(--rose-pale); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}

.bento-item {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out-expo);
}

.bento-item:hover img { transform: scale(1.06); }

.bento-wide  { grid-column: span 2; }
.bento-tall  { grid-row: span 2; }

.bento-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(26, 26, 26, .6) 0%, transparent 100%);
}

.bento-tag {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .bento-wide { grid-column: span 2; }
  .bento-tall { grid-row: span 1; }
  .bento-item { aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item { aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .bento-grid { gap: 3px; }
  .bento-wide { grid-column: span 2; }
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing { background: var(--white); }

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.pricing-category {
  border-top: 1px solid var(--graphite);
  padding-top: 24px;
}

.pricing-cat-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 8px;
}

/* Editorial pricing rows — no cards, no glassmorphism */
.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, padding .2s ease, margin .2s ease;
}

.pricing-row:hover {
  background: var(--rose-pale);
  margin: 0 -16px;
  padding: 18px 16px;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite);
}

.pricing-desc {
  font-size: .8125rem;
  color: var(--text-m);
  font-weight: 300;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 700;
  color: var(--graphite);
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-note {
  margin-top: 48px;
  padding: 32px;
  background: var(--rose-pale);
  border-left: 2px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-note p {
  font-size: .9375rem;
  color: var(--text-m);
  max-width: 560px;
}

@media (max-width: 768px) {
  .pricing-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .pricing-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── ORDER FORM ──────────────────────────────────────────── */
.order { background: var(--white); }

.order-form { max-width: 800px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full { grid-column: span 2; }

.form-group label {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--graphite);
}

.form-group label span { color: var(--rose); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--graphite);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  outline: none;
  transition: border-color .3s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10' fill='none'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%23C47070' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  padding-right: 28px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--rose);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-d);
  font-weight: 300;
}

.field-error {
  font-size: .8125rem;
  color: #c0392b;
  font-weight: 400;
  min-height: 18px;
}

.form-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.form-notice {
  font-size: .8125rem;
  color: var(--text-d);
  max-width: 400px;
}

.form-success {
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--rose-pale);
  border-left: 2px solid var(--rose);
  color: var(--graphite);
  font-size: .9375rem;
}
.form-success p { margin: 0; }

/* Submit loading state */
.btn-loading { display: none; }
#submitBtn.loading .btn-text   { display: none; }
#submitBtn.loading .btn-loading { display: inline; }

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-group--full { grid-column: span 1; }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-brand p {
  font-size: .9375rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-location {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .05em;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--rose-light); }

.footer-contact li {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .6);
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, .4);
  transition: color .2s ease;
}
.footer-social a:hover { color: var(--rose-light); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom em {
  color: var(--rose-light);
  font-style: italic;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── HERO MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-right {
    position: relative;
    top: auto;
    height: 60vw;
    max-height: 340px;
    order: -1;
  }

  .hero-left {
    padding: 48px 20px;
    transform: none;
    order: 1;
  }

  .hero-left.visible { transform: none; }

  .hero-title { font-size: clamp(60px, 18vw, 90px); }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-right { height: 70vw; }
  .hero-title { font-size: 58px; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .hero-left,
  .hero-grid-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .heading-underline path { stroke-dashoffset: 0; }

  .hero-line {
    width: 100%;
    transition: none;
  }

  .marquee-track { animation: none; }
}
