/* ============================================
   OTTIMO PLUS — Design Tokens
   ============================================ */

:root {
  --terracotta: #C0714A;
  --terracotta-dark: #5E3225;
  --cream: #FAF5EF;
  --cream-dark: #F0E8DD;
  --charcoal: #1E1D1A;
  --charcoal-light: #4A4640;
  --warm-gray: #B5AEA4;
}


/* ============================================
   Preloader
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phase 1: fade out background while logo flies */
.preloader.transitioning {
  background: transparent;
  pointer-events: none;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Phase 2: fully remove */
.preloader.done {
  display: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.preloader-logo {
  height: 80px;
  width: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: preloaderFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* Flying state — GPU-accelerated transform animation */
.preloader-logo.flying {
  will-change: transform, opacity;
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.25s ease;
}

/* Fade the flying logo out at the end so the nav logo underneath takes over seamlessly */
.preloader-logo.landed {
  opacity: 0 !important;
}

.preloader-line {
  width: 120px;
  height: 1.5px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.preloader-line.fade-out {
  opacity: 0 !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  border-radius: 2px;
  animation: preloaderFill 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderFill {
  to { width: 100%; }
}


/* ============================================
   Base & Reset
   ============================================ */

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

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

/* Lock scroll while preloader is active */
html.no-scroll {
  overflow: hidden;
}

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

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--terracotta);
}

p {
  line-height: 1.65;
  color: var(--charcoal-light);
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Prevent layout shift — constrain images inside their containers */
picture img {
  height: 100%;
}


/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.gallery .container {
  max-width: 1440px;
}

.section-pad {
  padding: clamp(80px, 12vw, 160px) 0;
}


/* ============================================
   Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.2s; }
.fade-in.d3 { transition-delay: 0.3s; }
.fade-in.d4 { transition-delay: 0.4s; }

/* Hero entrance sequence — more generous spacing */
.fade-in.hero-d1 { transition-delay: 0.25s; }
.fade-in.hero-d2 { transition-delay: 0.5s; }
.fade-in.hero-d3 { transition-delay: 0.7s; }
.fade-in.hero-d4 { transition-delay: 0.9s; }
.fade-in.hero-d5 { transition-delay: 1.15s; }

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

/* Parallax scroll image */
.parallax-img img {
  transition: transform 0.05s linear;
  will-change: transform;
}

/* Image reveal — scale-in from slightly zoomed */
.img-reveal {
  clip-path: inset(8% 8% 8% 8%);
  transition:
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-reveal.visible {
  clip-path: inset(0% 0% 0% 0%);
}

/* Pillar border draw-in */
.pillar {
  border-top-color: transparent;
  background-image: linear-gradient(var(--terracotta), var(--terracotta));
  background-size: 0% 2px;
  background-position: center top;
  background-repeat: no-repeat;
  transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar.visible {
  background-size: 100% 2px;
}


/* ============================================
   Placeholders
   ============================================ */

.img-placeholder {
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gray);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed var(--warm-gray);
  border-radius: 12px;
  opacity: 0.5;
  pointer-events: none;
}


/* ============================================
   Nav
   ============================================ */

nav {
  z-index: 100;
  padding: 40px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(250, 245, 239, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: all 0.3s;
}

/* Hide nav logo until preloader logo has landed */
.nav-logo-img.hidden-for-preload {
  opacity: 0 !important;
  transform: none !important;
}

/* When nav logo is revealed after preload, show instantly (no fade) */
.nav-logo-img.no-transition {
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

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

.nav-status {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}


/* ============================================
   Hero
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px 160px;
  position: relative;
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 28px;
}

.hero > p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 640px;
  font-weight: 300;
}

.hero-image {
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16/11;
  margin-top: 64px;
  border-radius: 20px;
  overflow: hidden;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--warm-gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--warm-gray);
}


/* ============================================
   Intro
   ============================================ */

.intro {
  background: var(--terracotta-dark);
  color: var(--cream);
  overflow: hidden;
}

.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.intro h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.intro p {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 410px;
}

.intro-image {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
}


/* ============================================
   Features
   ============================================ */

.features h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: 16px;
}

.features .subtitle {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: clamp(48px, 6vw, 80px);
  color: var(--charcoal-light);
}

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

.feature-card {
  text-align: center;
  padding: 32px 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--terracotta);
  fill: none;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.feature-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
}


/* ============================================
   Image Break
   ============================================ */

.image-break {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}


/* ============================================
   Video
   ============================================ */

.video-section {
  background: var(--terracotta-dark);
  padding: clamp(60px, 10vw, 120px) 0;
}

.video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1816;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
  z-index: 2;
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.video-play-btn svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}

.video-play-btn:hover svg {
  transform: scale(1.08);
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}

.video-controls.visible {
  opacity: 1;
}

.video-progress {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: height 0.2s;
}

.video-progress:hover {
  height: 8px;
}

.video-buffer-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 0 2px 2px 0;
  transition: width 0.3s ease;
}

.video-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

.video-controls-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.video-wrapper:hover .video-controls-bar {
  max-height: 40px;
  opacity: 1;
}

.video-ctrl-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.video-ctrl-btn:hover {
  color: #fff;
}

.video-ctrl-btn svg {
  width: 20px;
  height: 20px;
}

.video-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.video-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.video-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
}

#fullscreenBtn {
  margin-left: auto;
}


/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  background: var(--cream-dark);
}

.how-it-works h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: 12px;
}

.how-it-works .subtitle {
  text-align: center;
  color: var(--charcoal-light);
  font-weight: 300;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.step-img {
  aspect-ratio: 1;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.step-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.step-label {
  text-align: center;
}

.step-number {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.step-label h3 {
  font-size: 1.3rem;
  color: var(--charcoal);
}


/* ============================================
   Gallery
   ============================================ */

.gallery h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-grid .g-img {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-grid .g-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid .g-img:hover img {
  transform: scale(1.04);
}

.gallery-grid .g-img:nth-child(1) { grid-column: 1/5; grid-row: 1/3; aspect-ratio: 3/4; }
.gallery-grid .g-img:nth-child(2) { grid-column: 5/9; aspect-ratio: 1; }
.gallery-grid .g-img:nth-child(3) { grid-column: 9/13; aspect-ratio: 1; }
.gallery-grid .g-img:nth-child(4) { grid-column: 5/9; aspect-ratio: 1; }
.gallery-grid .g-img:nth-child(5) { grid-column: 9/13; aspect-ratio: 1; }


/* ============================================
   Carry Options
   ============================================ */

.carry-options {
  background: var(--terracotta-dark);
}

.carry-options h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--cream);
  text-align: center;
  margin-bottom: 12px;
}

.carry-options .subtitle {
  text-align: center;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.carry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
}

.carry-card .img-placeholder {
  aspect-ratio: 4/3;
  background: var(--charcoal-light);
  margin-bottom: 24px;
}

.carry-card .img-placeholder::after {
  border-color: rgba(255, 255, 255, 0.15);
}

.carry-card .g-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.carry-card .g-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carry-card:hover .g-img img {
  transform: scale(1.04);
}

.carry-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
  text-align: center;
}

.carry-card p {
  color: var(--cream);
  font-weight: 300;
  font-size: 0.9rem;
  text-align: center;
}


/* ============================================
   Pillars
   ============================================ */

.pillars h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.pillar {
  text-align: center;
  padding: 40px 24px;
  border-top: 2px solid var(--terracotta);
}

.pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}


/* ============================================
   Sustainability
   ============================================ */

.sustainability {
  background: var(--cream-dark);
}

.sustainability .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.sustainability h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.sustainability .text-col p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 440px;
}

.material-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--terracotta);
  fill: none;
  stroke-width: 1.5;
}

.badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  font-weight: 500;
}

.sustainability-image {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
}


/* ============================================
   Awards
   ============================================ */

.awards {
  background: var(--charcoal);
}

.awards h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--cream);
  text-align: center;
  margin-bottom: 16px;
}

.awards .subtitle {
  text-align: center;
  color: var(--cream);
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.awards-grid .a-img {
  border-radius: 12px;
  overflow: hidden;
}

.awards-grid .a-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.awards-grid .a-img:hover img {
  transform: scale(1.04);
}

.awards-grid .a-img:nth-child(1) { grid-column: 1/5; grid-row: 1/3; }
.awards-grid .a-img:nth-child(2) { grid-column: 5/13; grid-row: 1; aspect-ratio: 2/1; }
.awards-grid .a-img:nth-child(3) { grid-column: 5/9; grid-row: 2; aspect-ratio: 4/3; }
.awards-grid .a-img:nth-child(4) { grid-column: 9/13; grid-row: 2; aspect-ratio: 4/3; }
.awards-grid .a-img:nth-child(5) { grid-column: 1/7; grid-row: 3; aspect-ratio: 16/10; }
.awards-grid .a-img:nth-child(6) { grid-column: 7/13; grid-row: 3; aspect-ratio: 16/10; }


/* ============================================
   Patents
   ============================================ */

.patents h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: 12px;
}

.patents .subtitle {
  text-align: center;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.patents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.patent-card {
  padding: 40px;
  background: var(--cream-dark);
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.patent-card:hover {
  transform: translateY(-4px);
}

.patent-count {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.patent-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.patent-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.patent-card ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.patent-card ul li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-light);
  padding: 6px 0 6px 20px;
  position: relative;
}

.patent-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--terracotta);
  opacity: 0.6;
}


/* ============================================
   Footer / Contact
   ============================================ */

.coming-soon {
  background: var(--terracotta-dark);
  text-align: center;
  padding: clamp(100px, 15vw, 200px) 24px;
}

.coming-soon h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.coming-soon p {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto 40px;
}

.contact-email {
  margin-bottom: 60px;
}

.contact-email a {
  color: var(--cream);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s, border-bottom-width 0.3s;
}

.contact-email a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  border-bottom-width: 2px;
}

.footer-logo {
  margin: 0 auto 40px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  margin: 0 auto;
}

.footer-bottom {
  color: var(--cream);
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

p.footer-bottom {
  font-size: 0.8rem;
}


/* ============================================
   Responsive — Tablet (≤ 900px)
   ============================================ */

@media (max-width: 900px) {

  .hero-image {
    aspect-ratio: 6/7;
  }

  .intro .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro p {
    margin: 0 auto;
  }

  .intro-image {
    aspect-ratio: 3/4;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .g-img:nth-child(1) {
    grid-column: 1/-1;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .gallery-grid .g-img:nth-child(2),
  .gallery-grid .g-img:nth-child(3),
  .gallery-grid .g-img:nth-child(4),
  .gallery-grid .g-img:nth-child(5) {
    grid-column: auto;
    aspect-ratio: 1;
  }

  .carry-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .sustainability .container {
    grid-template-columns: 1fr;
  }

  .sustainability-image {
    aspect-ratio: 3/4;
    max-width: 500px;
    margin: 0 auto;
  }

  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awards-grid .a-img:nth-child(1) {
    grid-column: 1/-1;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .awards-grid .a-img:nth-child(2) {
    grid-column: 1/-1;
    grid-row: auto;
    aspect-ratio: 21/9;
  }

  .awards-grid .a-img:nth-child(3),
  .awards-grid .a-img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .awards-grid .a-img:nth-child(5),
  .awards-grid .a-img:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .patents-grid {
    grid-template-columns: 1fr;
  }

  .image-break {
    aspect-ratio: 16/9;
  }
}


/* ============================================
   Responsive — Mobile (≤ 600px)
   ============================================ */

/* Disable hover effects on touch devices */
@media (hover: none) {
  .gallery-grid .g-img:hover img,
  .awards-grid .a-img:hover img,
  .carry-card:hover .g-img img,
  .step:hover .step-img img { transform: none; }
  .patent-card:hover { transform: none; }
}

@media (max-width: 600px) {

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .g-img:nth-child(1),
  .gallery-grid .g-img:nth-child(2),
  .gallery-grid .g-img:nth-child(3),
  .gallery-grid .g-img:nth-child(4),
  .gallery-grid .g-img:nth-child(5) {
    grid-column: 1;
    aspect-ratio: 4/3;
  }

  .material-badges {
    justify-content: center;
  }

  .video-play-btn svg {
    width: 48px;
    height: 48px;
  }
}


/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream-dark);
  color: var(--charcoal-light);
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  border: 1px solid rgba(181, 174, 164, 0.3);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 560px;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner.hiding {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-primary,
.cookie-btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.cookie-btn-primary {
  background: var(--terracotta);
  color: white;
}

.cookie-btn-primary:hover {
  background: var(--terracotta-dark);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--charcoal-light);
  border: 1px solid var(--warm-gray);
}

.cookie-btn-secondary:hover {
  background: rgba(181, 174, 164, 0.15);
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(120%);
    max-width: none;
  }
  .cookie-banner.visible {
    transform: translateX(0) translateY(0);
  }
  .cookie-banner.hiding {
    transform: translateX(0) translateY(120%);
  }
}


/* ============================================
   Waitlist Conversion — Buttons, Nav CTA,
   Hero Offer, Waitlist Section, Sticky Bar
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Primary CTA --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--terracotta);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.15s ease,
              box-shadow 0.3s ease;
  box-shadow: 0 6px 18px -8px rgba(192, 113, 74, 0.55);
  -webkit-appearance: none;
  appearance: none;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 10px 26px -10px rgba(94, 50, 37, 0.55);
}
.btn-primary:active {
  transform: translateY(1px);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary.btn-sm {
  padding: 11px 18px;
  font-size: 0.82rem;
  border-radius: 8px;
  box-shadow: none;
}

.btn-loading {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
}
.btn-primary.loading .btn-label { opacity: 0; }
.btn-primary.loading .btn-loading { display: inline-flex; }
.btn-loading svg {
  width: 22px;
  height: 22px;
  animation: btn-spin 0.9s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* --- Nav CTA (appears after scroll) --- */
.nav-cta {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s;
  white-space: nowrap;
}
.nav-cta.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.nav-cta:hover { background: var(--terracotta-dark); }
.nav-cta-divider { opacity: 0.5; }
.nav-cta-price {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
}

/* --- Hero Offer Block --- */
.hero-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  max-width: 560px;
}

.hero-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(192, 113, 74, 0.1);
  color: var(--terracotta);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 4px;
}
.hero-price .price-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--warm-gray);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.hero-price .price-arrow {
  color: var(--warm-gray);
  font-size: 0.95rem;
}
.hero-price .price-new {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--terracotta);
  line-height: 1;
}
.hero-price .price-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-left: 4px;
}

.hero-cta {
  padding: 18px 36px;
  font-size: 1rem;
}

.hero-microcopy {
  font-size: 0.78rem;
  color: var(--warm-gray);
  text-align: center;
  margin-top: 2px;
}

/* Adjust hero image margin since offer adds content */
.hero .hero-image {
  margin-top: 56px;
}

@media (max-width: 600px) {
  .hero-offer { margin-top: 28px; gap: 12px; }
  .hero-price .price-new { font-size: 1.5rem; }
  .hero-price .price-old { font-size: 0.95rem; }
  .hero-price .price-tag { display: none; }
  .hero-cta { width: 100%; padding: 16px 24px; }
  .hero .hero-image { margin-top: 40px; }
  .scroll-hint { display: none; }
}


/* --- Waitlist Section --- */
.waitlist {
  background: var(--cream);
  padding: clamp(96px, 14vw, 160px) 0 clamp(72px, 10vw, 120px);
}
.waitlist-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(192, 113, 74, 0.4);
  border-radius: 999px;
  color: var(--terracotta);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.waitlist h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.waitlist-lede {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--charcoal-light);
  margin: 0 auto 44px;
  max-width: 540px;
  line-height: 1.65;
}

/* --- Waitlist 3-Step Mechanism --- */
.waitlist-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 44px;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.waitlist-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid rgba(94, 50, 37, 0.1);
  border-radius: 14px;
}

.waitlist-steps .step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.waitlist-steps .step-title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.waitlist-steps .step-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  line-height: 1.5;
  font-weight: 300;
}

.waitlist-lede strong {
  color: var(--terracotta);
  font-weight: 500;
}

@media (max-width: 760px) {
  .waitlist-steps {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 12px;
  }
  .waitlist-steps li {
    padding: 18px 18px;
  }
}


/* --- Price Comparison Card --- */
.price-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  background: var(--cream-dark);
  border-radius: 18px;
  padding: 32px clamp(24px, 4vw, 48px);
  margin: 0 auto 44px;
  max-width: 520px;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.price-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  font-weight: 500;
}

.price-block-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--warm-gray);
}
.price-block--old .price-block-value {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-block--new .price-block-value {
  font-size: 2.6rem;
  color: var(--terracotta);
}

.price-block-save {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  background: var(--terracotta);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
}

.price-divider {
  width: 1px;
  background: rgba(94, 50, 37, 0.18);
  align-self: stretch;
}

/* --- Waitlist Form --- */
.waitlist-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.waitlist-field {
  display: flex;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(94, 50, 37, 0.18);
  border-radius: 12px;
  padding: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.waitlist-field:focus-within {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(192, 113, 74, 0.12);
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
}
.waitlist-form input[type="email"]::placeholder {
  color: var(--warm-gray);
}

.waitlist-submit {
  white-space: nowrap;
  padding: 14px 22px;
  font-size: 0.9rem;
  border-radius: 8px;
  box-shadow: none;
}

.waitlist-form.has-error .waitlist-field {
  border-color: #b8412a;
}

.form-error {
  font-size: 0.82rem;
  color: #b8412a;
  margin: 10px 4px 0;
  min-height: 1.2em;
}

.form-microcopy {
  font-size: 0.78rem;
  color: var(--warm-gray);
  text-align: center;
  margin: 14px 0 0;
}

@media (max-width: 520px) {
  .waitlist-field {
    flex-direction: column;
    padding: 8px;
    gap: 6px;
  }
  .waitlist-submit { width: 100%; padding: 15px 22px; }
}

/* --- Success State --- */
.waitlist-success {
  max-width: 520px;
  margin: 0 auto;
  padding: 36px 32px;
  background: var(--cream-dark);
  border-radius: 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.waitlist-success.visible {
  opacity: 1;
  transform: translateY(0);
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
}

.waitlist-success h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.waitlist-success p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  max-width: 380px;
  margin: 0 auto;
}

/* --- Trust strip --- */
.waitlist-trust {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 48px 0 0;
  padding: 0;
}
.waitlist-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  font-weight: 400;
}
.trust-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-dark);
}
.trust-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--terracotta);
  fill: none;
}


/* --- Sticky Bottom CTA --- */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 14px 12px 22px;
  background: var(--charcoal);
  border-radius: 14px;
  box-shadow: 0 14px 38px -12px rgba(0, 0, 0, 0.4);
  transform: translateY(180%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.sticky-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.sticky-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}

.sticky-cta-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  min-width: 0;
}
.sticky-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--warm-gray);
  text-decoration: line-through;
}
.sticky-arrow {
  color: var(--warm-gray);
  font-size: 0.85rem;
}
.sticky-new {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1;
}
.sticky-tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-family: 'DM Sans', sans-serif;
  margin-left: 2px;
}

.sticky-cta .btn-primary {
  box-shadow: 0 6px 16px -8px rgba(192, 113, 74, 0.7);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .sticky-cta {
    padding: 10px 12px 10px 16px;
    gap: 10px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .sticky-eyebrow { font-size: 0.58rem; letter-spacing: 0.12em; }
  .sticky-tag { display: none; }
  .sticky-new { font-size: 1.05rem; }
  .sticky-old { font-size: 0.76rem; }
  .sticky-arrow { font-size: 0.78rem; }
  .sticky-cta .btn-primary { padding: 10px 14px; font-size: 0.78rem; }
}

/* Push cookie banner above sticky CTA so they don't collide */
.cookie-banner {
  bottom: 88px;
}
@media (max-width: 480px) {
  .cookie-banner { bottom: 80px; }
}


/* --- Confirmed Banner (post double opt-in) --- */
.confirmed-banner {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-140%);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 18px;
  background: var(--terracotta);
  color: #ffffff;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: calc(100vw - 32px);
  width: max-content;
  box-shadow: 0 12px 32px -10px rgba(94, 50, 37, 0.45);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}
.confirmed-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.confirmed-banner svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.confirmed-banner span {
  max-width: 420px;
}
.confirmed-close {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 4px;
  transition: color 0.2s;
}
.confirmed-close:hover { color: #ffffff; }

@media (max-width: 600px) {
  .confirmed-banner {
    top: 12px;
    left: 12px;
    right: 12px;
    transform: translateX(0) translateY(-140%);
    width: auto;
    max-width: none;
    font-size: 0.82rem;
    padding: 10px 12px 10px 14px;
  }
  .confirmed-banner.visible {
    transform: translateX(0) translateY(0);
  }
  .confirmed-banner span { max-width: none; }
}

/* Responsive — Price card collapses on small screens */
@media (max-width: 520px) {
  .price-card {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
  .price-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
    align-self: center;
  }
  .price-block--new .price-block-value { font-size: 2.4rem; }
}
