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

:root {
  --navy: #2c257c;
  --navy-mid: #3d3ba0;
  --navy-light: #4e4cb5;
  --steel: #7674c8;
  --mist: #eeedf8;
  --white: #f7f7fc;
  --accent: #ffffff;
  --accent-light: #d8d7f5;
  --text: #1a1960;
  --text-muted: #6665a8;
  --line: rgba(44,37,124,0.12);
  --navy-deep: #211c68;
  --site-bg-image: url('../images/balonlunaylon.webp');
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.22, 1.2, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  font-family: 'Manrope', sans-serif;
  min-height: 100%;
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  isolation: isolate;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--site-bg-image) center/cover no-repeat;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(112deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  background-size: auto, 220% 100%;
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
}

img, iframe { max-width: 100%; }

nav {
  position: fixed; top: 16px; left: 5%; right: 5%; z-index: 100;
  background: rgba(44,37,124);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out), box-shadow .3s;
}
.is-ready nav { opacity: 1; transform: translateY(0); }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color .3s, transform .3s var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s var(--ease-out);
}
.nav-links a:hover { color: var(--accent); transform: translateY(-1px); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .25s, opacity .25s;
}
nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(247,247,252,0.96) 0%, rgba(247,247,252,0.86) 48%, rgba(247,247,252,0.28) 100%),
    linear-gradient(135deg, rgba(44,37,124,0.34), rgba(78,76,181,0.58));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.96fr);
  align-items: center;
  padding: 150px 5% 82px;
  gap: clamp(36px, 6vw, 92px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.26) 48%, transparent 54%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(44,37,124,0.045) 46px 47px);
  background-size: 180% 100%, auto;
  opacity: 0.5;
  pointer-events: none;
  animation: packagingGlint 14s var(--ease-out) infinite;
}
.hero.has-bg {
  background:
    linear-gradient(90deg, rgba(247,247,252,0.96) 0%, rgba(247,247,252,0.86) 48%, rgba(247,247,252,0.28) 100%),
    linear-gradient(135deg, rgba(44,37,124,0.34), rgba(78,76,181,0.58));
}
.hero-text {
  position: relative; z-index: 1;
  min-width: 0;
  max-width: 660px;
  animation: fadeUp .8s var(--ease-out) both;
}
.hero-tag {
  display: inline-block;
  background: rgba(44,37,124,0.08);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(44,37,124,0.12);
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
  color: var(--navy);
  margin-bottom: 30px;
  font-weight: 700;
  max-width: 760px;
  overflow-wrap: anywhere;
}
.hero h1 em {
  color: var(--navy-mid);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.14em;
  background: rgba(118,116,200,0.22);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow .75s .55s var(--ease-out) forwards;
}
.hero p {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.78;
  color: #4f4e91;
  max-width: 570px;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  max-width: 100%;
  transition: transform .3s var(--ease-elastic), background .3s, box-shadow .3s;
  box-shadow: 0 4px 16px rgba(44,37,124,0.2);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,0.28) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
}
.hero-cta:hover { background: var(--navy-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(44,37,124,0.25); }
.hero-cta:hover::before { transform: translateX(120%); }
.hero-visual {
  min-height: clamp(320px, 43vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; z-index: 1;
  animation: floatIn .9s .15s var(--ease-out) both;
}
.stat-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(44,37,124,0.12);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
}
.stat-icon {
  width: 48px; height: 48px;
  background: rgba(44,37,124,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.stat-num { font-size: 28px; font-weight: 600; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

section {
  min-height: 100svh;
  padding: clamp(72px, 9vw, 110px) 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reveal {
  --reveal-y: 10px;
  opacity: 0.001;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity .34s ease-out var(--reveal-delay, 0ms),
    transform .42s var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal--text {
  --reveal-y: 8px;
}

.reveal--line {
  --reveal-y: 6px;
}

.reveal--panel {
  --reveal-y: 12px;
}

.reveal--image {
  --reveal-y: 8px;
  transform: translate3d(0, var(--reveal-y), 0) scale(0.996);
}

.reveal--image.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.section-tag {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px; font-weight: 600;
}
.section-tag-light { color: rgba(255,255,255,0.7); }
h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 520px; margin-bottom: 60px;
}

.about {
  background:
    linear-gradient(135deg, rgba(247,247,252,0.94) 0%, rgba(244,244,251,0.86) 46%, rgba(226,229,244,0.76) 100%);
}
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-grid > *,
.products-grid > *,
.gallery-grid > *,
.contact-grid > * { min-width: 0; }
.about-copy {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(44,37,124,0.12);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 20px 48px rgba(44,37,124,0.12);
  backdrop-filter: blur(8px);
}
.about-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  transition: transform .45s var(--ease-out), filter .45s var(--ease-out);
}
.about-image:hover { transform: translateY(-5px) scale(1.015); filter: saturate(1.06); }
.about-sub { margin-bottom: 0; }
.about-points { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy); margin-top: 6px; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(44,37,124,0.24);
  animation: dotPulse 2.8s ease-out infinite;
}
.about-point strong { display: block; color: var(--navy); margin-bottom: 4px; font-weight: 500; }
.about-point p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.products {
  background:
    linear-gradient(135deg, rgba(35,31,118,0.74) 0%, rgba(48,43,142,0.68) 48%, rgba(88,86,182,0.58) 100%);
}
.products .section-tag { color: rgba(255,255,255,0.72); }
.products h2 { color: #fff; }
.products .section-sub { color: rgba(255,255,255,0.78); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1120px;
  width: 100%;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(44,37,124,0.12);
  transition: transform .35s var(--ease-elastic), box-shadow .35s var(--ease-out), border-color .35s;
  box-shadow: 0 18px 48px rgba(15,14,58,0.22);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(118,116,200,0.16) 48%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 28px 68px rgba(15,14,58,0.3);
}
.product-card:hover::after { transform: translateX(120%); }
.product-img {
  width: auto;
  height: auto;
  max-width: min(100%, 340px);
  max-height: 280px;
  object-fit: contain;
  display: block;
  align-self: center;
  margin: 0 auto;
  padding: 22px 18px 10px;
  transition: transform .45s var(--ease-out);
}
.product-card:hover .product-img { transform: translateY(-4px) scale(1.025); }
.product-body { padding: 24px; }
.product-body h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.product-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; overflow-wrap: anywhere; }

.gallery {
  background:
    linear-gradient(135deg, rgba(18,17,72,0.88) 0%, rgba(38,33,116,0.82) 48%, rgba(68,65,162,0.74) 100%);
  position: relative;
}
.gallery::before,
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 22px);
  opacity: 0.26;
  pointer-events: none;
}
.products,
.gallery { overflow: hidden; position: relative; }
.products > *,
.gallery > * { position: relative; z-index: 1; }
.gallery h2 { color: #fff; }
.gallery .section-tag { color: rgba(255,255,255,0.68); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 10px;
  gap: 12px;
  max-width: 1180px;
  width: 100%;
}
.gallery-item {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 640px;
  background: var(--white);
  border-radius: 4px;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255,255,255,0.24);
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s;
  align-self: start;
  justify-self: center;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 46px rgba(8,7,38,0.36);
  z-index: 2;
  position: relative;
}
.gallery-item.large {
  grid-column: span 2;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  background:
    linear-gradient(135deg, rgba(247,247,252,0.95) 0%, rgba(255,255,255,0.9) 52%, rgba(230,232,244,0.78) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(44,37,124,0.12);
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s, transform .3s var(--ease-out);
}
.contact-item:hover { background: var(--mist); transform: translateX(4px); }
.contact-item:nth-child(even) { border-right: none; }
.contact-item:nth-child(3),
.contact-item:nth-child(4) { border-bottom: none; }

.contact-icon {
  width: 42px; height: 42px;
  background: var(--navy-deep);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.contact-item p { color: var(--navy); font-size: 15px; font-weight: 500; line-height: 1.5; overflow-wrap: anywhere; }

.contact-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 40px rgba(44,37,124,0.1);
  aspect-ratio: 1;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

footer {
  background: rgba(44,37,124);
  padding: 30px 5%;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 36px; width: auto; }
footer p { font-size: 13px; color: rgba(255,255,255,0.35); }

.floating-actions {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  pointer-events: none;
}

.floating-action {
  position: fixed;
  bottom: clamp(18px, 3vw, 30px);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 16px 38px rgba(20,18,70,0.26);
  pointer-events: auto;
  transform: translateY(14px) scale(0.96);
  opacity: 0;
  transition:
    opacity .55s var(--ease-out),
    transform .32s var(--ease-elastic),
    box-shadow .32s var(--ease-out);
}

.is-ready .floating-action {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-action:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 22px 48px rgba(20,18,70,0.32);
}

.floating-action svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.floating-action--phone {
  left: clamp(16px, 3vw, 34px);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.floating-action--whatsapp {
  right: clamp(16px, 3vw, 34px);
  background: linear-gradient(135deg, #168a4a, #25d366);
  transition-delay: .08s;
}

.floating-action::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.18;
  animation: actionPulse 2.8s ease-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

@keyframes slowBackdrop {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.4%, -1%, 0); }
}

@keyframes filmSweep {
  from { background-position: 0 0, 160% 0; }
  to { background-position: 0 0, -60% 0; }
}

@keyframes packagingGlint {
  0%, 18% { background-position: 160% 0, 0 0; }
  48%, 100% { background-position: -80% 0, 0 0; }
}

@keyframes textureDrift {
  from { background-position: 0 0; }
  to { background-position: 90px 90px; }
}

@keyframes dotPulse {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(44,37,124,0.24); }
  35% { box-shadow: 0 0 0 9px rgba(44,37,124,0); }
}

@keyframes actionPulse {
  0%, 72%, 100% { transform: scale(0.86); opacity: 0; }
  18% { opacity: 0.18; }
  45% { transform: scale(1.14); opacity: 0; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .floating-action::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  nav {
    left: 24px;
    right: 24px;
    padding: 12px 22px;
  }
  .nav-links { gap: 22px; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 132px 6% 72px;
  }
  .hero-visual:empty { display: none; }
  .hero-text { max-width: 720px; }

  .products-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map {
    width: min(100%, 620px);
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  body::before {
    background-position: center top;
    background-size: auto 100svh;
  }

  nav {
    top: 12px; left: 16px; right: 16px;
    padding: 12px 20px;
    border-radius: 10px;
    flex-wrap: wrap;
  }
  .nav-logo img { height: 36px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    max-width: none;
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.14);
    flex-direction: column;
    gap: 0;
    overflow: visible;
  }
  nav.is-open .nav-links { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    font-size: 13px;
    color: rgba(255,255,255,0.86);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 112px 5% 56px;
    gap: 34px;
  }
  .hero-visual {
    min-height: 260px;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
  .hero-text { padding: 0; }
  .hero h1 { font-size: clamp(28px, 7vw, 44px); margin-bottom: 20px; }
  .hero p { font-size: 16px; max-width: 100%; }

  section {
    min-height: auto;
    padding: 72px 5%;
  }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-info { grid-template-columns: 1fr; gap: 0; }
  .contact-item,
  .contact-item:nth-child(even),
  .contact-item:nth-child(3),
  .contact-item:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .contact-item:last-child { border-bottom: none; }
  .about-copy { padding: 32px; }
  .about-image { max-width: 100%; }

  .products-grid { grid-template-columns: repeat(2, minmax(190px, 1fr)); gap: 14px; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gallery-item.large {
    grid-column: span 2;
  }

  h2 { font-size: clamp(24px, 5vw, 36px); margin-bottom: 16px; }
  .section-sub { font-size: 15px; margin-bottom: 40px; }

  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-logo img { height: 32px; }

  .floating-action {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }

  .floating-action svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  nav {
    top: 10px; left: 12px; right: 12px;
    padding: 10px 16px;
  }
  .nav-logo img { height: 32px; }

  .hero {
    min-height: 100svh;
    padding: 96px 5% 48px;
    gap: 30px;
  }
  .hero-tag { font-size: 11px; padding: 5px 12px; }
  .hero-text { padding: 0; }
  .hero h1 { font-size: clamp(38px, 13vw, 56px); margin-bottom: 16px; }
  .hero p { font-size: 15px; margin-bottom: 32px; }
  .hero-cta { padding: 12px 28px; font-size: 14px; }
  .hero-visual { min-height: 0; }

  section { padding: 58px 5%; }
  .section-tag { font-size: 11px; margin-bottom: 8px; }
  h2 { font-size: clamp(20px, 6vw, 32px); margin-bottom: 12px; }
  .section-sub { font-size: 14px; margin-bottom: 32px; }

  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large {
    grid-column: span 1;
  }
  .gallery-grid { grid-auto-rows: 10px; }

  .about-copy { padding: 24px; }
  .about-points { gap: 20px; margin-top: 28px; }
  .about-point p { font-size: 14px; }

  .contact-item { gap: 14px; }
  .contact-item { padding: 22px 18px; }
  .contact-icon { width: 40px; height: 40px; font-size: 18px; }
  .contact-item p { font-size: 15px; }
  .contact-map { aspect-ratio: 1 / 1; }

  .product-body h3 { font-size: 16px; }
  .product-body p { font-size: 13px; }
}
