:root {
  --ink: #17191d;
  --muted: #63666d;
  --line: rgba(23, 25, 29, .12);
  --cream: #f6efe5;
  --ivory: #fbf8f2;
  --blue: #dceaf3;
  --pink: #efdfe2;
  --sage: #dfe9df;
  --white: #fff;
  --accent: #9a5d3f;
  --accent-dark: #71412e;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(31, 32, 35, .12);
  --shadow-soft: 0 14px 40px rgba(31, 32, 35, .09);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.hidden { display: none !important; }

.section-container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-badge, .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-badge::before, .hero-badge::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55; }
.section-title {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-desc, .section-desc-center { color: var(--muted); font-size: 1.05rem; }
.section-desc-center { max-width: 640px; margin: 20px auto 0; }

/* Intro */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0 32%, var(--blue) 32% 58%, var(--pink) 58% 78%, var(--sage) 78% 100%);
  transition: opacity .65s ease, visibility .65s ease;
}
.intro-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.72), transparent 48%);
  pointer-events: none;
}
.intro-overlay.intro-closing { opacity: 0; visibility: hidden; }
.intro-content { position: relative; z-index: 1; width: 100%; text-align: center; }
.intro-logo-container, .brand-logo, .product-header-logo { display: inline-flex; align-items: center; justify-content: center; }
.intro-logo-container img { width: 76px; height: 76px; object-fit: contain; }
.intro-logo-fallback { font-family: Georgia, serif; font-size: 1.2rem; }
.intro-title { margin-top: 12px; font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4.6rem); letter-spacing: -.04em; }
.intro-tagline { margin: 12px 0 0; color: var(--muted); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; }
.intro-carousel-stage { width: 100%; margin: 34px auto 24px; overflow: hidden; }
.intro-carousel-track { display: flex; width: max-content; will-change: transform; }
.intro-carousel-loop-set { display: flex; gap: 22px; padding-right: 22px; }
.intro-carousel-running { animation: introLoop 22s linear infinite; }
.intro-carousel-slide {
  width: clamp(230px, 24vw, 360px);
  aspect-ratio: 1 / .8;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 22px 60px rgba(34,34,36,.10);
  backdrop-filter: blur(10px);
}
.intro-carousel-slide img { width: 100%; height: calc(100% - 34px); object-fit: contain; filter: drop-shadow(0 18px 18px rgba(0,0,0,.12)); }
.intro-carousel-slide span { display: block; margin-top: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
@keyframes introLoop { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Header */
.main-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 84px;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.main-header.scrolled { height: 70px; background: rgba(251,248,242,.9); box-shadow: 0 8px 30px rgba(0,0,0,.06); backdrop-filter: blur(18px); }
.header-container { width: min(calc(100% - 40px), var(--max)); height: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand-logo { justify-self: start; min-width: 130px; }
.brand-logo img { width: 54px; height: 54px; object-fit: contain; }
.logo-fallback-text { font-family: Georgia, serif; font-size: 1.1rem; }
.desktop-nav { justify-self: center; }
.nav-list { display: flex; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .25s ease; }
.nav-link:hover::after { right: 0; }
.header-actions { justify-self: end; }
.mobile-menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.66); cursor: pointer; }
.hamburger-bar { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--ink); transition: .3s; }
.mobile-menu-toggle.open .hamburger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.open .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open .hamburger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--cream), var(--blue) 52%, var(--pink));
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-list { margin: 0; padding: 0; list-style: none; text-align: center; }
.mobile-nav-link { display: block; padding: 8px 20px; font-family: Georgia, serif; font-size: clamp(2.4rem, 10vw, 5rem); line-height: 1.15; }

/* Homepage hero */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
  background: linear-gradient(115deg, var(--cream) 0 54%, var(--blue) 54% 100%);
}
.hero-bg-overlay { position: absolute; width: 440px; height: 440px; right: -120px; top: 12%; border-radius: 50%; background: var(--pink); opacity: .72; filter: blur(2px); }
.hero-container { position: relative; z-index: 1; width: min(calc(100% - 40px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 70px; align-items: center; }
.hero-content { max-width: 660px; }
.hero-headline { margin: 0; font-family: Georgia, serif; font-weight: 500; font-size: clamp(3.8rem, 7vw, 7.4rem); line-height: .88; letter-spacing: -.06em; }
.hero-subheadline { max-width: 610px; margin: 28px 0 0; color: #4f5359; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-art { position: relative; min-height: 570px; }
.hero-art-card { position: absolute; overflow: hidden; border-radius: 30px; background: rgba(255,255,255,.66); box-shadow: var(--shadow); }
.hero-art-card img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform .7s ease; }
.hero-art-card:hover img { transform: scale(1.05) rotate(-2deg); }
.hero-art-card.primary { width: 68%; height: 70%; right: 0; top: 2%; background: rgba(255,255,255,.72); }
.hero-art-card.secondary { width: 45%; height: 44%; left: 0; bottom: 0; background: var(--pink); }
.hero-art-card.tertiary { width: 35%; height: 34%; right: 7%; bottom: 2%; background: var(--sage); }
.hero-caption { position: absolute; right: 0; bottom: 45%; transform: rotate(90deg) translateX(50%); transform-origin: right bottom; font-size: .67rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }

.about-section, .products-section, .gallery-section, .why-us-section, .contact-section { padding: 120px 0; }
.about-section { background: var(--pink); }
.products-section { background: var(--ivory); }
.gallery-section { background: var(--blue); }
.why-us-section { background: var(--sage); }
.contact-section { background: var(--cream); }

.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.about-text-content .section-title { font-size: clamp(2.5rem, 5vw, 5rem); }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.visual-card { min-height: 260px; padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.68); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: flex-end; }
.visual-card.accent { margin-top: 70px; background: var(--ink); color: white; }
.visual-number { font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1; }
.visual-label { margin-top: 12px; font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.products-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.product-card { grid-column: span 4; overflow: hidden; border: 1px solid rgba(255,255,255,.75); border-radius: var(--radius-lg); background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease; }
.product-card:nth-child(4), .product-card:nth-child(5) { grid-column: span 6; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image-container { position: relative; height: 330px; overflow: hidden; background: linear-gradient(145deg, var(--blue), var(--cream)); }
.product-card:nth-child(2) .product-image-container { background: linear-gradient(145deg, var(--pink), var(--cream)); }
.product-card:nth-child(3) .product-image-container { background: linear-gradient(145deg, var(--sage), var(--ivory)); }
.product-card:nth-child(4) .product-image-container { background: linear-gradient(145deg, #e8ddf0, var(--cream)); }
.product-card:nth-child(5) .product-image-container { background: linear-gradient(145deg, #dfeef2, var(--pink)); }
.product-image-container img { width: 100%; height: 100%; object-fit: contain; padding: 25px; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image-container img { transform: scale(1.07) rotate(-2deg); }
.luxury-placeholder { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.image-loaded .luxury-placeholder { display: none; }
.placeholder-tag { font-size: .7rem; letter-spacing: .16em; }
.placeholder-text { font-family: Georgia, serif; font-size: 2rem; }
.product-info { padding: 26px; }
.product-name { margin: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.product-description { min-height: 52px; color: var(--muted); font-size: .95rem; }
.product-actions { margin-top: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: white; font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: .25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); background: transparent; color: var(--ink); }

.gallery-group { margin-top: 58px; }
.gallery-group + .gallery-group { padding-top: 58px; border-top: 1px solid rgba(23,25,29,.13); }
.gallery-group-header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 20px; }
.gallery-group-title { margin: 0 0 20px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 500; letter-spacing: -.04em; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-card, .gallery-view-more-card { min-height: 300px; overflow: hidden; border-radius: var(--radius-md); background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.gallery-card:nth-child(2) { transform: translateY(24px); }
.gallery-image-container { height: 100%; }
.gallery-image-container img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-view-more-card {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(23,25,29,.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.96), rgba(255,255,255,.72) 48%, rgba(220,234,243,.72) 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 22px 54px rgba(31,32,35,.11);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.gallery-view-more-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: radial-gradient(circle at 34% 28%, #fff, var(--pink));
  box-shadow: 0 30px 70px rgba(31,32,35,.16);
}
.gallery-loading-message, .gallery-empty-message, .product-carousel-loading { padding: 30px; color: var(--muted); text-align: center; }

.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { min-height: 280px; padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.65); transition: transform .3s ease, background .3s ease; }
.why-card:hover { transform: translateY(-6px); background: white; }
.why-number { font-family: Georgia, serif; font-size: 2rem; }
.why-title { margin: 50px 0 12px; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; line-height: 1.1; }
.why-desc { color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; }
.form-container, .info-container { padding: clamp(26px, 4vw, 50px); border-radius: var(--radius-xl); background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(23,25,29,.28); border-radius: 0; padding: 13px 2px; background: transparent; color: var(--ink); outline: 0; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--ink); }
.btn-submit { width: 100%; margin-top: 12px; }
.info-block { padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.info-title { font-family: Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.phone-links { display: grid; gap: 8px; }
.phone-link { color: var(--muted); }
.map-link-card { display: block; overflow: hidden; border-radius: var(--radius-lg); }
.map-visual-simulation { min-height: 280px; padding: 24px; background: radial-gradient(circle at 28% 38%, rgba(255,255,255,.85), transparent 18%), linear-gradient(135deg, var(--blue), var(--pink)); }
.map-simulation-overlay { height: 100%; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; }
.map-tag { font-size: .68rem; letter-spacing: .16em; font-weight: 700; }
.map-action-text { margin-top: 8px; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.map-address-hint { margin-top: 12px; color: var(--muted); }

.main-footer { padding: 42px 20px; background: var(--ink); color: white; text-align: center; }
.footer-container { display: grid; gap: 5px; }
.copyright-text, .footer-slogan { margin: 0; }
.footer-slogan { color: rgba(255,255,255,.68); font-size: .77rem; letter-spacing: .08em; }

/* Standalone pages */
.standalone-page { min-height: 100svh; }
.page-soft-blue { background: var(--blue); }
.page-warm-ivory { background: var(--cream); }
.page-blush-pink { background: var(--pink); }
.page-powder-blue { background: #dce9f1; }
.page-soft-cream { background: var(--ivory); }
.standalone-main { min-height: 100svh; padding: 30px 0 70px; }
.page-back-link { position: fixed; top: 24px; left: 24px; z-index: 10; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.72); backdrop-filter: blur(12px); font-size: 1.3rem; }
.standalone-section { padding: 90px 0 30px; }
.standalone-header { margin-bottom: 70px; }
.standalone-container { width: min(calc(100% - 40px), 1180px); }
.standalone-content-grid { margin-top: 20px; }
.contact-actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-action-button { min-height: 180px; padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.74); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: flex-end; }
.contact-action-button span { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-action-button strong { margin-top: 8px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.contact-action-button.whatsapp-style { background: var(--sage); }
.standalone-map-card { margin-top: 24px; }

/* Product showcase pages */
.clean-product-page { min-height: 100svh; padding: 90px 0 82px; }
.product-theme-blue { background: var(--blue); }
.product-theme-pink { background: var(--pink); }
.product-theme-cream { background: var(--cream); }
.product-theme-lilac { background: #e8e0ef; }
.product-theme-sky { background: #dcecf0; }
.product-showcase-header, .product-showcase-controls { position: fixed; left: 0; right: 0; z-index: 50; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 28px; background: rgba(255,255,255,.54); backdrop-filter: blur(18px); }
.product-showcase-header { top: 0; height: 76px; }
.product-showcase-controls { bottom: 0; height: 70px; }
.product-header-action { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-header-back { justify-self: start; font-size: 1.4rem; }
.product-header-inquire { justify-self: end; }
.product-header-logo { justify-self: center; font-family: Georgia, serif; }
.product-header-logo img { width: 44px; height: 44px; object-fit: contain; }
.product-showcase-main { min-height: calc(100svh - 172px); }
.product-showcase { width: 100%; }
.product-showcase-copy { width: min(calc(100% - 40px), 1180px); margin: 24px auto 20px; text-align: center; }
.product-showcase-copy span { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-showcase-copy h1 { margin: 6px 0 0; font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .9; }
.product-carousel-viewport { position: relative; }
.product-carousel-track { display: flex; gap: 28px; overflow-x: auto; padding: 22px max(8vw, calc((100vw - 760px)/2)); scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-carousel-track::-webkit-scrollbar { display: none; }
.product-carousel-slide { flex: 0 0 min(68vw, 760px); height: min(58vh, 620px); scroll-snap-align: center; border-radius: var(--radius-xl); background: rgba(255,255,255,.66); box-shadow: var(--shadow); }
.product-carousel-slide img { width: 100%; height: 100%; object-fit: contain; padding: clamp(22px, 4vw, 54px); }
.product-showcase-controls { grid-template-columns: 1fr auto 1fr; }
.product-carousel-arrow { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.72); cursor: pointer; }
.product-carousel-arrow:first-child { justify-self: end; margin-right: 20px; }
.product-carousel-arrow:last-child { justify-self: start; margin-left: 20px; }
.product-carousel-counter { font-size: .72rem; font-weight: 700; letter-spacing: .15em; }

/* Scroll reveal */
.reveal-ready { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal-ready.reveal-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-container { grid-template-columns: 1fr 1fr; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-section { padding-top: 120px; }
  .hero-content { max-width: 800px; }
  .hero-art { min-height: 520px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-card { grid-column: span 6; }
  .product-card:nth-child(5) { grid-column: span 12; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-actions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-container, .header-container, .hero-container, .standalone-container { width: min(calc(100% - 28px), var(--max)); }
  .main-header { height: 72px; }
  .brand-logo img { width: 46px; height: 46px; }
  .hero-section { min-height: auto; padding: 110px 0 54px; background: linear-gradient(160deg, var(--cream) 0 58%, var(--blue) 58% 100%); }
  .hero-headline { font-size: clamp(3.4rem, 16vw, 5.5rem); }
  .hero-subheadline { margin-top: 22px; }
  .hero-art { min-height: 410px; margin-top: 12px; }
  .hero-art-card.primary { width: 76%; height: 64%; }
  .hero-art-card.secondary { width: 52%; height: 43%; }
  .hero-art-card.tertiary { width: 39%; height: 32%; }
  .hero-caption { display: none; }
  .about-section, .products-section, .gallery-section, .why-us-section, .contact-section { padding: 78px 0; }
  .section-header { margin-bottom: 34px; }
  .about-visual { grid-template-columns: 1fr; }
  .visual-card, .visual-card.accent { min-height: 180px; margin-top: 0; }
  .products-grid { display: grid; grid-template-columns: 1fr; }
  .product-card, .product-card:nth-child(4), .product-card:nth-child(5) { grid-column: auto; }
  .product-image-container { height: 290px; }
  .gallery-grid { display: flex; overflow-x: auto; gap: 14px; padding: 4px 2px 28px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery-card { flex: 0 0 78vw; min-height: 310px; scroll-snap-align: center; }
  .gallery-view-more-card { flex: 0 0 72vw; width: 72vw; min-height: 0; scroll-snap-align: center; }
  .gallery-card:nth-child(2) { transform: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 230px; }
  .form-container, .info-container { padding: 24px; border-radius: 24px; }
  .intro-title { font-size: 2.2rem; }
  .intro-content { transform: translateY(-7svh); }
  .intro-logo-container img { width: 64px; height: 64px; }
  .intro-carousel-stage { margin-top: 26px; }
  .intro-carousel-loop-set { gap: 14px; padding-right: 14px; }
  .intro-carousel-slide { width: 72vw; border-radius: 22px; }
  .intro-carousel-running { animation-duration: 23s; }
  .standalone-section { padding-top: 80px; }
  .standalone-header { margin-bottom: 42px; }
  .page-back-link { top: 16px; left: 14px; }
  .contact-action-button { min-height: 140px; }
  .clean-product-page { padding-top: 76px; }
  .product-showcase-header { height: 68px; padding: 0 16px; }
  .product-header-logo { font-size: .9rem; }
  .product-carousel-track { gap: 16px; padding: 16px 10vw 28px; }
  .product-carousel-slide { flex-basis: 80vw; height: 52vh; border-radius: 24px; }
  .product-showcase-copy { margin-top: 20px; }
}

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

/* Desktop intro and navigation corrections */
@media (min-width: 821px) {
  .desktop-nav { display: block !important; }
  .mobile-menu-toggle { display: none !important; }
  .mobile-nav { display: none !important; }

  .intro-overlay {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .intro-content {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    padding-inline: clamp(24px, 4vw, 72px);
    box-sizing: border-box;
  }

  .intro-logo-container,
  .intro-title,
  .intro-tagline {
    position: relative;
    z-index: 2;
    max-width: min(100%, 1100px);
    margin-inline: auto;
  }

  .intro-title {
    font-size: clamp(2.8rem, 4.4vw, 4.8rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .intro-carousel-stage {
    width: calc(100vw - clamp(48px, 8vw, 144px));
    max-width: 1480px;
    min-width: 0;
    margin: 30px auto 22px;
    overflow: hidden;
  }

  .intro-carousel-track {
    min-width: 0;
  }

  .intro-carousel-loop-set {
    gap: clamp(16px, 1.6vw, 26px);
    padding-right: clamp(16px, 1.6vw, 26px);
  }

  .intro-carousel-slide {
    width: clamp(190px, 17vw, 290px);
    flex: 0 0 auto;
  }

  .intro-tagline {
    padding-inline: 20px;
    white-space: normal;
  }
}

/* Starter screen: product animation only */
.intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
}
.intro-content .intro-carousel-stage {
  margin-block: 0;
}
@media (max-width: 820px) {
  .intro-content { transform: none; padding-block: 8svh; }
}
@media (min-width: 821px) {
  .intro-content { padding-block: clamp(36px, 6vh, 80px); }
  .intro-carousel-stage { margin-block: 0; }
}
