:root {
  --color-navy: #000080;
  --color-red: #FF0000;
  --color-burgundy: #9E2A3A;
  --color-earth: #3A2525;
  --color-cream: #f8f5f2;
  --color-white: #ffffff;
  --color-muted: rgba(58, 37, 37, 0.72);
  --color-line: rgba(0, 0, 128, 0.12);

  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --text-xs: 0.7rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: 1.35rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-hero: clamp(2rem, 5vw, 3.25rem);

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;

  --radius-sm: 0.35rem;
  --radius-md: 0.65rem;
  --radius-lg: 1.25rem;
  --radius-pill: 3rem;

  --shadow-sm: 0 2px 8px rgba(0, 0, 128, 0.08);
  --shadow-md: 0 8px 24px rgba(58, 37, 37, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 128, 0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --max-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-earth);
  background: var(--color-cream);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--color-burgundy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.top-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  position: relative;
  z-index: 100;
}

.top-bar-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.top-bar-logo {
  font-family: var(--font-display);
  font-size: clamp(0.625rem, 2.8vw, var(--text-sm));
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.contact-detail a {
  color: white;
}
.top-bar-logo span {
  color: var(--color-red);
}

.top-bar-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  color: var(--color-navy);
  cursor: pointer;
  font-size: var(--text-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.top-bar-burger:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.top-bar-icon-close {
  display: none;
}

.top-bar-burger.is-active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.top-bar-burger.is-active .top-bar-icon-open {
  display: none;
}

.top-bar-burger.is-active .top-bar-icon-close {
  display: block;
}

.top-bar-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.top-bar-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-bar-list a {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-earth);
  transition: color var(--transition-fast);
}

.top-bar-list a:hover,
.top-bar-list a:focus-visible {
  color: var(--color-red);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: var(--color-red);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s var(--transition-slow) both;
}

.hero-title {
  color: var(--color-white);
  max-width: 14ch;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s 0.1s var(--transition-slow) both;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  max-width: 32ch;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s 0.2s var(--transition-slow) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeUp 0.8s 0.3s var(--transition-slow) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn-primary:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn-dark:hover {
  background: var(--color-earth);
  border-color: var(--color-earth);
  color: var(--color-white);
}

.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-burgundy);
  margin-bottom: var(--space-xs);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 42ch;
  margin-bottom: var(--space-xl);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.grid-two > *,
.grid-three > *,
.product-grid > *,
.contact-layout > * {
  min-width: 0;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: var(--text-lg);
  color: var(--color-red);
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
}

.card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.feature-band {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-2xl) var(--space-lg);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.feature-band h2 {
  color: var(--color-white);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-red);
  line-height: 1;
}

.stat-item span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.image-frame img {
  width: 100%;
  object-fit: cover;
}

.image-offset {
  transform: rotate(-2deg);
}

.image-offset-alt {
  transform: rotate(2.5deg);
}

.timeline-list {
  list-style: none;
  padding: 0;
  border-left: 2px solid var(--color-red);
  margin-left: var(--space-sm);
}

.timeline-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-sm) - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--color-red);
  border-radius: 50%;
}

.quote-block {
  background: linear-gradient(135deg, var(--color-earth) 0%, var(--color-burgundy) 100%);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
}

.quote-block p {
  font-size: var(--text-sm);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.quote-block cite {
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: 600;
}

.testimonial-note {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-md);
  text-align: center;
}

.cta-strip {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(90deg, var(--color-burgundy), var(--color-navy));
  color: var(--color-white);
}

.cta-strip h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-strip p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.site-footer {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--color-line);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-wellness {
  width: 100%;
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: 1.45;
}

.footer-wellness a {
  color: var(--color-muted);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-navy);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.page-hero {
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-earth) 60%, var(--color-burgundy) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background: var(--color-red);
  opacity: 0.15;
  border-radius: 50%;
  transform: rotate(25deg);
}

.page-hero h1 {
  color: var(--color-white);
  position: relative;
  z-index: 1;
  max-width: 18ch;
}

.page-hero p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
  position: relative;
  z-index: 1;
}

.asym-layout {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
}

.asym-block {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.asym-float {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.asym-float:nth-child(odd) {
  transform: rotate(-1.5deg);
  margin-right: 8%;
}

.asym-float:nth-child(even) {
  transform: rotate(1deg);
  margin-left: 6%;
}

.asym-overlap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.asym-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-red);
}

.asym-card:nth-child(2) {
  margin-left: 12%;
  margin-top: -2rem;
  border-left-color: var(--color-navy);
}

.asym-card:nth-child(3) {
  margin-right: 10%;
  margin-top: -1.5rem;
  border-left-color: var(--color-burgundy);
}

.slant-section {
  background: var(--color-white);
  padding: var(--space-2xl) var(--space-lg);
  transform: skewY(-2deg);
  margin: var(--space-2xl) 0;
}

.slant-inner {
  transform: skewY(2deg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base);
}

.product-card:nth-child(2) {
  transform: translateY(1.5rem);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card:nth-child(2):hover {
  transform: translateY(0.5rem);
}

.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-red);
  margin: var(--space-sm) 0;
}

.product-body p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  flex: 1;
}

.contact-zone {
  padding: var(--space-2xl) var(--space-lg);
}

.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-panel {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.contact-panel h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-panel p {
  font-size: var(--text-sm);
  opacity: 0.9;
}

.contact-detail {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  word-break: break-word;
}

.contact-detail i {
  color: var(--color-red);
  margin-right: var(--space-xs);
  width: 1rem;
}

.contact-form-wrap {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
  border-top: 4px solid var(--color-red);
}

.contact-form label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2xs);
  color: var(--color-earth);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: var(--space-sm);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  background: var(--color-cream);
  transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-navy);
}

.contact-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  margin-bottom: var(--space-md);
}

.form-check input {
  width: auto;
  margin: 0.15rem 0 0;
}

.form-check a {
  text-decoration: underline;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-red);
  margin-bottom: var(--space-sm);
  display: none;
}

.form-error.is-visible {
  display: block;
}

.map-wrap {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: skewY(-1deg);
}

.map-wrap iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  display: block;
}

.legal-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
  font-size: var(--text-xl);
}

.legal-page h2 {
  font-size: var(--text-md);
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-page p,
.legal-page li {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.legal-page ul {
  margin-bottom: var(--space-md);
}

.thank-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.thank-inner {
  max-width: 32rem;
  width: 100%;
}

.thank-inner .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.thank-inner i {
  font-size: 2.5rem;
  color: var(--color-red);
  margin-bottom: var(--space-md);
}

.thank-inner h1 {
  margin-bottom: var(--space-md);
}

.thank-inner p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.error-page {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--color-red);
  line-height: 1;
  opacity: 0.3;
}

.consent-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 24rem;
  background: var(--color-earth);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  font-size: var(--text-xs);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.consent-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.consent-popup p {
  margin-bottom: var(--space-sm);
  opacity: 0.92;
}

.consent-popup a {
  color: var(--color-red);
  text-decoration: underline;
}

.consent-accept {
  font-size: var(--text-xs);
  padding: var(--space-xs) var(--space-md);
}

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

@media (max-width: 1200px) {
  .section-wrap {
    padding: var(--space-2xl) var(--space-md);
  }

  .hero-section {
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
  }

  .asym-layout,
  .contact-zone {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (max-width: 1024px) {
  .grid-three {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-card:nth-child(2) {
    transform: none;
  }

  .product-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 28rem;
    justify-self: center;
    width: 100%;
  }

  .hero-title {
    max-width: 20ch;
  }

  .hero-desc {
    max-width: 40ch;
  }

  h2 {
    font-size: clamp(1.35rem, 3vw, var(--text-xl));
  }

  .contact-layout {
    gap: var(--space-xl);
  }
}

@media (max-width: 810px) {
  .top-bar {
    z-index: 300;
  }

  .top-bar-wrap {
    position: relative;
    z-index: 310;
    flex-wrap: nowrap;
  }

  .top-bar-burger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 320;
  }

  .top-bar-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 290;
    flex: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-cream);
    padding: var(--space-3xl) var(--space-lg);
    overflow-y: auto;
  }

  .top-bar-nav.is-open {
    display: flex;
  }

  .top-bar-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 20rem;
    padding: 0;
    border: none;
  }

  .top-bar-list li {
    width: 100%;
    text-align: center;
  }

  .top-bar-list a {
    display: block;
    width: 100%;
    padding: var(--space-md);
    font-size: var(--text-md);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .grid-two,
  .grid-three,
  .product-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(2):hover {
    transform: none;
  }

  .image-offset,
  .image-offset-alt {
    transform: none;
  }

  .asym-float:nth-child(odd),
  .asym-float:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .asym-card:nth-child(2),
  .asym-card:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }

  .contact-panel,
  .contact-form-wrap,
  .map-wrap {
    transform: none;
  }

  .slant-section {
    transform: none;
    margin: var(--space-xl) 0;
  }

  .slant-inner {
    transform: none;
  }

  .feature-band {
    clip-path: none;
    padding: var(--space-xl) var(--space-md);
  }

  .hero-section {
    min-height: 80vh;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    align-items: flex-end;
  }

  .hero-title {
    max-width: none;
  }

  .hero-desc {
    max-width: none;
  }

  .stat-row {
    gap: var(--space-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item {
    text-align: center;
  }

  .stat-item strong {
    font-size: var(--text-xl);
  }

  .page-hero {
    padding: var(--space-xl) var(--space-md);
  }

  .page-hero::after {
    width: 8rem;
    height: 8rem;
    bottom: -2rem;
    right: -2rem;
  }

  .page-hero h1 {
    max-width: none;
  }

  .cta-strip {
    padding: var(--space-xl) var(--space-md);
  }

  .quote-block {
    padding: var(--space-lg);
  }

  .card {
    padding: var(--space-md);
  }

  .contact-panel,
  .contact-form-wrap {
    padding: var(--space-lg);
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .top-bar-burger,
  .btn {
    min-height: 2.75rem;
  }

  .map-wrap iframe {
    height: 14rem;
  }

  .legal-page {
    padding: var(--space-lg) var(--space-md) var(--space-xl);
  }

  .consent-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --text-hero: clamp(1.65rem, 7vw, 2.25rem);
    --text-xl: 1.5rem;
    --text-2xl: 1.85rem;
    --space-xl: 1.5rem;
    --space-2xl: 2.25rem;
    --space-3xl: 3rem;
  }

  .top-bar-wrap {
    padding: var(--space-sm) var(--space-md);
  }

  .section-wrap,
  .asym-layout,
  .contact-zone {
    padding: var(--space-xl) var(--space-md);
  }

  .grid-two,
  .grid-three,
  .product-grid {
    gap: var(--space-md);
  }

  .hero-section {
    min-height: 75vh;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .stat-item {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
  }

  .stat-item strong {
    font-size: var(--text-lg);
    min-width: 2.5rem;
  }

  .product-body .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-strip .btn {
    width: 100%;
    justify-content: center;
  }

  .feature-band .btn {
    width: 100%;
    justify-content: center;
  }

  .thank-page,
  .error-page {
    min-height: 70vh;
    padding: var(--space-xl) var(--space-md);
  }

  .thank-inner .btn-row {
    flex-direction: column;
    width: 100%;
  }

  .thank-inner .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .timeline-list li {
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .asym-card {
    padding: var(--space-md);
  }

  .site-footer {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --text-base: 0.875rem;
    --text-sm: 0.75rem;
    --text-md: 1rem;
    --text-lg: 1.2rem;
    --space-lg: 1.25rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }

  .top-bar-logo {
    font-size: 0.6rem;
  }

  .top-bar-burger {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.65rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .page-hero p,
  .section-intro,
  .hero-desc {
    font-size: var(--text-sm);
  }

  .legal-page h1 {
    font-size: var(--text-lg);
  }

  .legal-page h2 {
    font-size: var(--text-base);
    margin-top: var(--space-lg);
  }

  .map-wrap iframe {
    height: 12rem;
  }

  .consent-popup {
    padding: var(--space-sm);
    font-size: 0.65rem;
  }

  .consent-accept {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    gap: var(--space-xs) var(--space-sm);
  }

  .footer-links a {
    font-size: 0.65rem;
  }
}

@media (max-width: 375px) {
  .top-bar-wrap {
    gap: var(--space-sm);
  }

  .top-bar-logo {
    font-size: 0.55rem;
  }

  .hero-section {
    min-height: 70vh;
  }

  .card h3,
  .asym-card h3 {
    font-size: var(--text-base);
  }

  .product-price {
    font-size: var(--text-md);
  }

  .quote-block p {
    font-size: 0.75rem;
  }

  .contact-form textarea {
    min-height: 5rem;
  }

  .form-check {
    font-size: 0.65rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93.75%;
  }

  :root {
    --text-hero: 1.5rem;
    --text-xl: 1.35rem;
    --text-2xl: 1.65rem;
    --space-md: 0.875rem;
    --space-lg: 1rem;
    --space-xl: 1.25rem;
    --space-2xl: 1.75rem;
    --space-3xl: 2.25rem;
    --radius-lg: 1rem;
  }

  .top-bar-wrap {
    padding: var(--space-xs) var(--space-sm);
  }

  .top-bar-logo {
    font-size: 0.5rem;
    letter-spacing: -0.03em;
  }

  .top-bar-burger {
    width: 1.875rem;
    height: 1.875rem;
  }

  .top-bar-list a {
    font-size: 0.65rem;
    padding: var(--space-xs) 0;
  }

  .section-wrap,
  .asym-layout,
  .contact-zone,
  .slant-section {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-section {
    min-height: 65vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-title {
    font-size: var(--text-hero);
    margin-bottom: var(--space-sm);
  }

  .hero-desc {
    margin-bottom: var(--space-md);
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-xs) var(--space-sm);
  }

  .card,
  .asym-card,
  .contact-panel,
  .contact-form-wrap,
  .quote-block {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .grid-two,
  .grid-three,
  .product-grid {
    gap: var(--space-sm);
  }

  .image-frame {
    border-radius: var(--radius-md);
  }

  .page-hero {
    padding: var(--space-lg) var(--space-sm);
  }

  .page-hero::after {
    width: 5rem;
    height: 5rem;
  }

  .feature-band {
    padding: var(--space-lg) var(--space-sm);
  }

  .stat-item strong {
    font-size: var(--text-md);
  }

  .stat-item span {
    font-size: 0.6rem;
  }

  .cta-strip {
    padding: var(--space-lg) var(--space-sm);
  }

  .site-footer {
    padding: var(--space-sm);
    font-size: 0.6rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-page {
    padding: var(--space-md) var(--space-sm) var(--space-lg);
  }

  .legal-page p,
  .legal-page li {
    font-size: 0.75rem;
  }

  .thank-page,
  .error-page {
    padding: var(--space-lg) var(--space-sm);
  }

  .thank-inner i {
    font-size: 2rem;
  }

  .error-code {
    font-size: clamp(3rem, 20vw, 5rem);
  }

  .consent-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-sm);
  }

  .map-wrap iframe {
    height: 10rem;
  }

  .product-body {
    padding: var(--space-sm);
  }

  .timeline-list {
    margin-left: var(--space-xs);
  }

  .timeline-list li::before {
    width: 8px;
    height: 8px;
    left: calc(-1 * var(--space-xs) - 4px);
  }
}

@media (min-width: 811px) {
  .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-lg);
  }

  .top-bar-wrap {
    max-width: none;
    margin: 0;
    padding: 0;
    flex: 0 1 auto;
  }

  .top-bar-burger {
    display: none;
  }

  .top-bar-nav {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
  }
}

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

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

  .hero-tag,
  .hero-title,
  .hero-desc,
  .hero-actions {
    animation: none;
  }

  .card:hover,
  .product-card:hover,
  .btn:hover {
    transform: none;
  }
}
