:root {
  --orange: #e8631a;
  --orange-deep: #cc5414;
  --green: #2c4a2e;
  --green-soft: #48684b;
  --cream: #f5f0e8;
  --paper: #fffdf9;
  --paper-soft: rgba(255, 255, 255, 0.74);
  --ink: #1a1208;
  --ink-soft: rgba(26, 18, 8, 0.7);
  --line: rgba(44, 74, 46, 0.12);
  --line-strong: rgba(44, 74, 46, 0.2);
  --shadow: 0 18px 46px rgba(54, 37, 17, 0.08);
  --shadow-strong: 0 24px 60px rgba(54, 37, 17, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 48px));
}

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

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(232, 99, 26, 0.14), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(44, 74, 46, 0.12), transparent 20%),
    linear-gradient(180deg, #fcf7ef 0%, var(--cream) 44%, #f0eadf 100%);
}

body.nav-open {
  overflow: hidden;
}

body.page-subtle {
  background:
    radial-gradient(circle at top left, rgba(232, 99, 26, 0.11), transparent 28%),
    linear-gradient(180deg, #fbf6ee 0%, #f3ede2 100%);
}

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

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

video,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  max-width: 100%;
}

figure {
  margin: 0;
}

.page-shell {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

.container,
.site-header,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--green);
}

.lang-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-link.is-active {
  color: #fff;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--green);
}

.section {
  padding: 72px 0;
}

main > .section:first-child {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section.compact {
  padding-top: 40px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.74;
  overflow-wrap: break-word;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 62ch;
}

.hero-grid,
.split-grid,
.page-hero {
  display: grid;
  gap: 28px;
}

.hero-grid {
  align-items: center;
  gap: 42px;
}

.hero-copy {
  min-width: 0;
}

.hero-copy p {
  max-width: 56ch;
}

.hero-actions,
.button-row,
.footer-legal,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.button-secondary,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button-secondary:hover,
.ghost-link:hover {
  transform: translateY(-1px);
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f18a45);
  box-shadow: 0 14px 30px rgba(232, 99, 26, 0.2);
}

.button-secondary,
.ghost-link {
  color: var(--green);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.54);
}

.ghost-link.inline {
  min-height: 44px;
  padding: 0 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  padding: 10px 14px;
  border: 1px solid rgba(232, 99, 26, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero-media,
.panel,
.card,
.story-card,
.timeline-card,
.sensor-card,
.price-card,
.contact-card,
.legal-card,
.form-card,
.soft-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-media,
.panel,
.card,
.story-card,
.timeline-card,
.sensor-card,
.price-card,
.contact-card,
.legal-card,
.form-card {
  overflow: hidden;
}

.hero-media {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(232, 99, 26, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(44, 74, 46, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.56);
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
  background: #d8d2c8;
}

.media-card img {
  height: 100%;
  object-fit: cover;
}

.hero-main {
  aspect-ratio: 1200 / 677;
}

.hero-secondary {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.hero-secondary .media-card {
  aspect-ratio: 1200 / 677;
}

.hero-main::after,
.media-card::after,
.gallery-main::after,
.gallery-stack .media-card::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 4, 0.04), rgba(12, 8, 4, 0.12) 54%, rgba(12, 8, 4, 0.66));
  pointer-events: none;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.media-caption strong,
.media-caption span {
  color: #fff;
}

.media-caption strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 2vw, 2rem);
  line-height: 1.04;
}

.media-caption span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-grid,
.story-grid,
.product-grid,
.season-grid,
.sensor-grid,
.two-col-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

.trust-grid {
  margin-top: 24px;
}

.card,
.story-card,
.timeline-card,
.sensor-card,
.price-card,
.soft-card {
  padding: 24px;
}

.stat-value,
.price-value {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.9;
}

.story-card h3,
.price-card h3,
.timeline-card h3,
.sensor-card h3,
.soft-card h3 {
  margin-bottom: 12px;
}

.story-card.accent,
.price-card.featured,
.gift-choice.featured {
  background: linear-gradient(180deg, rgba(255, 232, 212, 0.9), rgba(255, 255, 255, 0.84));
}

.story-card.moss,
.sensor-card.moss {
  background: linear-gradient(180deg, rgba(232, 242, 230, 0.88), rgba(255, 255, 255, 0.84));
}

.feature-list,
.policy-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li,
.policy-list li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.feature-list li::before,
.policy-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.split-grid {
  align-items: start;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-pill,
.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  color: var(--green);
  background: rgba(44, 74, 46, 0.1);
}

.coming-pill {
  color: #fff;
  background: rgba(44, 74, 46, 0.9);
}

.live-dot,
.soon-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #52c26b;
  box-shadow: 0 0 0 0 rgba(82, 194, 107, 0.54);
  animation: pulse 2.3s infinite;
}

.soon-dot {
  background: #8fe0a0;
}

.dashboard {
  padding: 24px;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
}

.dashboard-screen {
  padding: 20px;
  border: 1px solid rgba(44, 74, 46, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(44, 74, 46, 0.94), rgba(29, 45, 31, 0.98));
}

.dashboard-screen strong,
.dashboard-screen p,
.dashboard-mini strong,
.dashboard-mini p {
  color: #fff;
}

.dashboard-screen strong,
.dashboard-mini strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.34rem;
}

.dashboard-screen p,
.dashboard-mini p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.dashboard-mini-grid {
  display: grid;
  gap: 12px;
}

.dashboard-mini {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(232, 99, 26, 0.9), rgba(200, 83, 19, 0.94));
}

.sensor-grid .sensor-card strong,
.metric-value {
  display: block;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.stay-showcase,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 1200 / 677;
  background: #d9d2c8;
}

.gallery-main img,
.gallery-stack .media-card img,
.page-hero-media img {
  height: 100%;
  object-fit: cover;
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.gallery-stack .media-card {
  aspect-ratio: 1200 / 677;
}

.timeline-card {
  min-height: 100%;
}

.timeline-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gift-banner,
.contact-card,
.form-card,
.legal-card,
.soft-panel {
  padding: 28px;
}

.gift-banner,
.soft-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(232, 99, 26, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.soft-panel strong,
.contact-card strong,
.form-card strong,
.legal-card strong {
  color: var(--green);
}

.page-hero {
  align-items: center;
}

.page-hero-copy {
  display: grid;
  gap: 18px;
}

.page-hero-copy p {
  max-width: 60ch;
}

.page-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius-xl);
  background: #ddd5c8;
}

.page-hero-media.panel {
  padding: 0;
}

.page-hero-aside {
  display: grid;
  gap: 16px;
}

.panel-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.panel-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1rem;
}

.price-grid,
.comparison-grid,
.policy-grid,
.gift-grid {
  display: grid;
  gap: 18px;
}

.price-card .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(44, 74, 46, 0.08);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  margin-top: 18px;
  margin-bottom: 10px;
}

.price-note {
  margin-top: 16px;
  font-size: 0.92rem;
}

.form-card {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.helper {
  font-size: 0.9rem;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--green);
}

.form-status.is-error {
  color: var(--orange-deep);
}

button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.legal-shell {
  padding: 44px 0 80px;
}

.legal-card {
  display: grid;
  gap: 20px;
}

.legal-card h2 {
  font-size: 1.5rem;
}

.legal-card section {
  display: grid;
  gap: 12px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 0 0 40px;
}

.footer-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 1.06rem;
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer-links,
.footer-legal {
  color: var(--ink-soft);
}

.footer-small {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(82, 194, 107, 0.54);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(82, 194, 107, 0);
  }
}

@media (min-width: 720px) {
  .hero-secondary,
  .trust-grid,
  .story-grid,
  .product-grid,
  .season-grid,
  .sensor-grid,
  .two-col-grid,
  .gift-grid,
  .legal-grid,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button,
  .button-row .button,
  .button-row .button-secondary {
    width: auto;
  }

  .page-hero-aside,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .hero-grid,
  .split-grid,
  .page-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  main > .section:first-child {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .season-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sensor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 959px) {
  .section {
    padding: 72px 0;
  }

  main > .section:first-child {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .hero-grid,
  .split-grid,
  .page-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  :root {
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: min(1180px, calc(100vw - 32px));
  }

  .container,
  .site-header,
  .site-footer {
    width: var(--container);
    max-width: var(--container);
  }

  .site-header {
    top: 8px;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 28px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    font-size: 0.78rem;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span {
    font-size: 0.76rem;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .site-nav {
    gap: 6px;
    margin-left: auto;
  }

  .site-nav > .lang-group {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: var(--container);
    margin: 0 auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fffaf4;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
  }

  main > .section:first-child {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 0.96;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  h3 {
    font-size: clamp(1.25rem, 7vw, 1.65rem);
  }

  .hero-copy p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .button,
  .button-secondary,
  .ghost-link {
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 24px;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .chip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-wrap: initial;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
  }

  .chip {
    min-width: 0;
    padding: 9px 12px;
    text-align: center;
    font-size: 0.84rem;
  }

  .hero-media {
    padding: 8px;
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
  }

  .media-card {
    border-radius: 22px;
  }

  .hero-main,
  .hero-secondary .media-card,
  .gallery-main,
  .gallery-stack .media-card,
  .page-hero-media {
    min-height: 220px;
    aspect-ratio: auto;
  }

  .hero-secondary {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-secondary .media-card {
    min-height: 188px;
  }

  .media-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 5px;
  }

  .media-caption strong {
    font-size: 1.22rem;
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .hero-main .media-caption strong {
    font-size: 1.46rem;
  }

  .trust-grid {
    gap: 10px;
  }

  .card,
  .story-card,
  .timeline-card,
  .sensor-card,
  .price-card,
  .soft-card {
    padding: 18px;
  }

  .gift-banner,
  .contact-card,
  .form-card,
  .legal-card,
  .soft-panel,
  .footer-panel {
    padding: 20px;
  }

  .page-hero {
    gap: 24px;
  }

  .page-hero-copy {
    gap: 16px;
  }

  .page-hero-media {
    min-height: 212px;
  }

  .price-value,
  .stat-value {
    font-size: clamp(2rem, 12vw, 2.75rem);
    line-height: 1;
  }

  .field input,
  .field textarea,
  .field select {
    min-height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }

  .footer-links,
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
  }

  h1 {
    font-size: clamp(2.38rem, 11.5vw, 3rem);
  }

  .hero-copy h1 {
    max-width: 8.6ch;
  }

  .chip-row {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 24px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .live-dot,
  .soon-dot {
    animation: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
