/* ==========================================================================
   Yamaha Jamaica — 50th Anniversary Landing Page
   Style Guide: Premium, light-first, Yamaha Red accents, Gold anniversary
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --red: #E60012;
  --red-dark: #C4000F;
  --gold: #D4A017;
  --gold-light: #E8BF3A;
  --green: #1D6B37;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --grey: #6B7280;
  --grey-light: #E8E8E8;
  --grey-muted: #9CA3AF;

  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --section-pad: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-glow-red: 0 4px 20px rgba(230,0,18,0.25);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

/* ===================================================================
   NAVIGATION
   =================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav--scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  width: 160px;
  max-height: 48px;
  object-fit: contain;
}

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

.nav__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--red);
}

.nav__link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active .nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Yamaha tuning fork watermark */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: url('./assets/yamaha-watermark.png') no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 24px 140px;
}

.hero__logo-wrap {
  margin-bottom: 40px;
}

.hero__logo {
  width: 400px;
  max-width: 90vw;
  margin: 0 auto;
}

.hero__anniversary {
  margin-bottom: 16px;
}

.hero__fifty {
  font-family: var(--ff-display);
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 70%, #C49515 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(212,160,23,0.2));
  display: inline-block;
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.hero__sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--grey);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Wave Divider */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
}

.hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-path--1 {
  fill: rgba(245,246,248,0.5);
  animation: waveMove1 8s ease-in-out infinite;
}

.wave-path--2 {
  fill: var(--off-white);
  animation: waveMove2 6s ease-in-out infinite;
}

@keyframes waveMove1 {
  0%, 100% { d: path("M0,60 C240,120 480,0 720,60 C960,120 1200,0 1440,60 L1440,120 L0,120 Z"); }
  50% { d: path("M0,80 C240,20 480,100 720,40 C960,80 1200,20 1440,80 L1440,120 L0,120 Z"); }
}

@keyframes waveMove2 {
  0%, 100% { d: path("M0,80 C240,20 480,100 720,40 C960,80 1200,20 1440,80 L1440,120 L0,120 Z"); }
  50% { d: path("M0,60 C240,100 480,20 720,80 C960,40 1200,100 1440,60 L1440,120 L0,120 Z"); }
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(230,0,18,0.2);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37,211,102,0.25);
  gap: 0;
}

.btn--whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn--whatsapp:active {
  transform: translateY(0);
}

/* ===================================================================
   SECTIONS — Common
   =================================================================== */
.section {
  padding: var(--section-pad) 0;
}

.section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section__label-line {
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section__label-line--gold {
  background: var(--gold);
}

.section__label-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.section__heading {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section__heading--light {
  color: var(--white);
}

/* ===================================================================
   LEGACY HEADER BANNER
   =================================================================== */
.legacy-header {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.legacy-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.legacy-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.5) 40%,
    rgba(26,26,26,0.2) 100%
  );
}

.legacy-header__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legacy-header__tag {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.legacy-header__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

/* ===================================================================
   LEGACY
   =================================================================== */
.legacy {
  background: var(--off-white);
}

.legacy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.legacy__col .legacy__body {
  margin-bottom: 20px;
}

.legacy__col .legacy__body:last-child {
  margin-bottom: 0;
}

.legacy__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--grey);
  max-width: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 32px 20px 0;
  border-top: 2px solid var(--grey-light);
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--red);
}

.stat__number {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--charcoal);
  display: block;
  line-height: 1.1;
}

.stat__plus {
  color: var(--red);
}

.stat__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}

/* ===================================================================
   PRODUCTS
   =================================================================== */
.products {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.products::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: url('./assets/yamaha-watermark.png') no-repeat center / contain;
  opacity: 0.025;
  pointer-events: none;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card__icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 20px;
}

.product-card__icon svg {
  width: 100%;
  height: 100%;
}

.product-card__title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.product-card__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  transition: color var(--transition);
  cursor: pointer;
}

.product-card__link--soon {
  color: var(--grey-muted);
}

.product-card:hover .product-card__link:not(.product-card__link--soon) {
  color: var(--red-dark);
}

/* ===================================================================
   ROADMAP
   =================================================================== */
.roadmap {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  background: url('./assets/yamaha-watermark.png') no-repeat center / contain;
  opacity: 0.03;
  pointer-events: none;
}

.roadmap__sub {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 260px;
  padding: 0 16px;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--red);
  margin-bottom: 20px;
  background: var(--white);
}

.step__title {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.step__connector {
  flex: 0 0 80px;
  padding-top: 26px;
}

.step__connector svg {
  width: 100%;
  height: 4px;
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact {
  background: var(--charcoal);
  color: var(--white);
}

.contact .section__label-text {
  color: var(--grey-muted);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__details {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--white);
}

.contact__item p {
  font-size: 15px;
  color: var(--grey-muted);
  line-height: 1.5;
}

.contact__social {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: all var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-link--whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
}

/* Contact Map Preview */
.contact__map {
  display: block;
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact__map:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.contact__map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(230,0,18,0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}

.contact__map-pin {
  color: var(--red);
  animation: mapPinBounce 2s ease-in-out infinite;
}

@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.contact__map-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.contact__map-address {
  font-size: 12px;
  color: var(--grey-muted);
}

/* Contact Form */
.contact__form-wrap {
  position: relative;
}

.contact-form {
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}

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

.contact__success {
  display: none;
  text-align: center;
  padding: 60px 36px;
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.contact__success.active {
  display: block;
}

.contact__success svg {
  margin: 0 auto 20px;
}

.contact__success h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact__success p {
  color: var(--grey-muted);
  font-size: 15px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo-badge {
  background: rgba(255,255,255,0.92);
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
}

.footer__logo {
  width: 120px;
  height: auto;
}

.footer__tagline {
  font-size: 13px;
  color: var(--grey-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--grey-muted);
  transition: color var(--transition);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===================================================================
   ANIMATIONS — Scroll Reveal
   =================================================================== */
.fade-in,
.slide-up {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in {
  transform: translateY(16px);
}

.slide-up {
  transform: translateY(32px);
}

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

/* Staggered delays for hero */
.fade-in--delay-1 { transition-delay: 0.15s; }
.fade-in--delay-2 { transition-delay: 0.3s; }
.fade-in--delay-3 { transition-delay: 0.45s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

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

  .contact__grid {
    gap: 48px;
  }

  /* Legacy columns tablet */
  .legacy__columns {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-pad: 64px;
  }

  /* Nav mobile */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--grey-light);
  }

  .nav__link::after {
    display: none;
  }

  .nav__logo img {
    width: 130px;
  }

  /* Hero */
  .hero__logo {
    width: 280px;
  }

  .hero__content {
    padding: 24px 16px 120px;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Legacy */
  .legacy__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legacy-header {
    height: 160px;
  }

  .stat {
    border-top: none;
    border-left: 2px solid var(--grey-light);
    padding: 0 0 0 20px;
    text-align: left;
  }

  .stat::before {
    top: 0;
    left: -2px;
    bottom: auto;
    width: 2px;
    height: 40px;
    transform: none;
  }

  /* Products */
  .products__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step {
    max-width: 100%;
  }

  .step__connector {
    transform: rotate(90deg);
    flex: 0 0 40px;
    padding-top: 0;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero__logo-wrap {
    margin-bottom: 24px;
  }

  .hero__logo {
    width: 220px;
  }

  .section__heading {
    font-size: 26px;
  }

  .product-card {
    padding: 28px 20px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ===================================================================
   Print — minimal
   =================================================================== */
@media print {
  .nav, .hero__wave, .btn, .contact-form, .step__connector {
    display: none;
  }

  .fade-in, .slide-up {
    opacity: 1 !important;
    transform: none !important;
  }
}
