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

:root {
  --mauve: #BD90A5;
  --mauve-deep: #8B6B7B;
  --mauve-light: #d4b5c4;
  --cream: #f8f5f0;
  --warm-white: #fffefa;
  --charcoal: #2d2d2d;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --terracotta: #c45d3e;
  --terracotta-hover: #d4704f;
  --black: #1a1a1a;
  --divider: #e8e2da;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', serif;
  color: var(--charcoal);
  line-height: 1.15;
  font-weight: 400;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: padding var(--transition), background var(--transition), border-color var(--transition);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--mauve);
  transition: width 0.3s ease;
}

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

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--mauve);
  color: white !important;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background: var(--mauve-deep);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ===== NAV LOGO IMAGE ===== */
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.nav.scrolled .nav-logo-img {
  height: 42px;
}

/* ===== SCROLL HERO ===== */
.scroll-hero {
  position: relative;
  height: 200vh;
}

.scroll-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #ffffff;
}

/* Full-viewport glass layer — fades to reveal sharp frames */
.scroll-hero-glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.1s linear;
}

.scroll-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.scroll-hero-overlay > * {
  pointer-events: auto;
}

.scroll-hero-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2.5rem 3.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-hero-logo {
  width: clamp(160px, 20vw, 280px);
  height: auto;
  display: block;
}

.scroll-hero-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollHintBounce 2s ease-in-out infinite;
}

.scroll-hero-hint svg {
  stroke: var(--text-light);
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* Toast CTA — appears at same position as banner */
.scroll-hero-toast {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) translateY(20px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(45, 45, 45, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 980px;
  padding: 0.6rem 0.7rem 0.6rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.scroll-hero-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: auto;
}

.scroll-hero-toast-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--mauve-light);
}

.scroll-hero-toast-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--mauve);
  color: white;
  border-radius: 980px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.scroll-hero-toast-btn:hover {
  background: var(--mauve-deep);
}

/* Trust bar — appears at animation end as page footer */
.scroll-hero-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--cream);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding: 0.7rem 1.5rem 0.5rem;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.scroll-hero-trust.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 0.4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--mauve);
}

.scroll-hero-trust-footer {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  padding-top: 0.5rem;
  border-top: 1px solid var(--divider);
}

/* ===== BUTTONS (shared) ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--terracotta);
  color: white;
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 93, 62, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--divider);
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--mauve);
  transform: translateY(-2px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--mauve);
  flex-shrink: 0;
}

/* ===== SECTION BASICS ===== */
.section {
  padding: 7rem 0;
}

.section-dark {
  background: var(--black);
  color: white;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: white;
}

.section-dark .text-muted {
  color: rgba(255,255,255,0.6);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== STORY SECTION ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.story-photo-frame {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
  transform: rotate(-2.5deg);
  transition: transform var(--transition);
  max-width: 380px;
}

.story-photo-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.story-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.story-photo-caption {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--mauve-deep);
  text-align: center;
}

.story-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.story-content h2 em {
  font-style: italic;
  color: var(--mauve);
}

.story-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.story-signature {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--mauve-deep);
  margin-top: 2rem;
}

/* ===== SERVICES / WHAT WE OFFER ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--divider);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--mauve);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(189, 144, 165, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--mauve);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.7rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ===== ATELIER / EXPERIENCE SECTION ===== */
#atelier.section {
  padding: 3rem 0;
}

#atelier .section-header {
  margin-bottom: 1.5rem;
}

#atelier .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

#atelier .section-subtitle {
  font-size: 0.92rem;
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

.atelier-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.atelier-card:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 144, 165, 0.3);
}

.atelier-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(189, 144, 165, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.atelier-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--mauve-light);
}

.atelier-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.atelier-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.atelier-card .price {
  font-size: 0.75rem;
  color: var(--mauve-light);
  font-weight: 600;
}

.atelier-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.atelier-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== PRODUCTS PREVIEW ===== */
.products-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0e8eb, #e8dfe2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
}

.product-info {
  padding: 1.25rem;
}

.product-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--divider);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #f5a623;
  color: #f5a623;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Instrument Serif', serif;
  font-size: 4rem;
  color: var(--mauve-light);
  opacity: 0.3;
  line-height: 1;
}

/* ===== HOURS & CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--divider);
  text-align: center;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.hours-table {
  width: 100%;
  text-align: left;
  font-size: 0.88rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--divider);
}

.hours-table td {
  padding: 0.6rem 0;
  color: var(--text-light);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--text);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: left;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--mauve);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--mauve-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--mauve);
  background: rgba(189, 144, 165, 0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.6);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger.active > *:nth-child(1) { transition-delay: 0s; }
.stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.active > *:nth-child(4) { transition-delay: 0.3s; }

.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-scroll { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .scroll-hero-trust { padding: 0.6rem 1rem 0.4rem; }
  .trust-items { gap: 0.4rem 1.5rem; margin-bottom: 0.3rem; }
  .trust-item { font-size: 0.7rem; }
  .trust-item svg { width: 14px; height: 14px; }
  .scroll-hero-trust-footer { font-size: 0.6rem; padding-top: 0.3rem; }
}

@media (max-width: 768px) {
  /* Landing page: always show nav-links, hide hamburger */
  .nav-links { display: flex; }
  .nav-toggle { display: none !important; }

  .scroll-hero-trust { padding: 0.8rem 1rem 0.6rem; }
  .trust-items { gap: 0.5rem 1.5rem; }
  .trust-item { font-size: 0.7rem; }
  .trust-item svg { width: 15px; height: 15px; }
  .scroll-hero-trust-footer { font-size: 0.6rem; }
  .scroll-hero-toast { top: 74%; }

  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-photo-frame { max-width: 300px; }

  .atelier-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-scroll { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 5rem 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .scroll-hero-actions { flex-direction: column; width: 100%; }
  .scroll-hero-actions .btn-primary,
  .scroll-hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .products-scroll { grid-template-columns: 1fr; }

  .scroll-hero-trust { padding: 0.6rem 0.75rem 0.5rem; }
  .trust-items { flex-direction: column; align-items: center; gap: 0.35rem; margin-bottom: 0.4rem; }
  .trust-item { font-size: 0.65rem; }
  .trust-item svg { width: 14px; height: 14px; }
  .scroll-hero-trust-footer { font-size: 0.55rem; padding-top: 0.35rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== PRINT ===== */
@media print {
  .nav, .scroll-hero, .footer { display: none; }
  .section { padding: 2rem 0; }
  body { background: white; }
}
