:root {
  --color-ink: #1A1A1D;
  --color-deep: #3B1C32;
  --color-accent: #6A1E55;
  --color-rose: #A64D79;
  --color-light: #f4eef2;
  --color-muted: #b8a8b4;
  --color-white: #ffffff;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.6rem;
  --space-xl: 2.4rem;
  --space-2xl: 3.6rem;
  --space-3xl: 5rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.65rem;
  --radius-lg: 1.2rem;
  --radius-pill: 3rem;
  --shadow-sm: 0 0.15rem 0.5rem rgba(26, 26, 29, 0.12);
  --shadow-md: 0 0.4rem 1.2rem rgba(59, 28, 50, 0.22);
  --shadow-lg: 0 0.8rem 2rem rgba(106, 30, 85, 0.28);
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --text-xs: 0.72rem;
  --text-sm: 0.82rem;
  --text-base: 0.92rem;
  --text-md: 1.05rem;
  --text-lg: 1.35rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.4rem;
  --text-3xl: 3.2rem;
  --max-width: 72rem;
  --header-height: 3.5rem;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-light);
  background: var(--color-ink);
  overflow-x: hidden;
}

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

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

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

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

h1 { font-size: clamp(var(--text-xl), 5vw, var(--text-3xl)); }
h2 { font-size: clamp(var(--text-lg), 3.5vw, var(--text-2xl)); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }

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

ul { list-style: none; }

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--color-ink);
  border-bottom: 1px solid rgba(166, 77, 121, 0.2);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-height);
  padding: var(--space-sm) 0;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  flex-shrink: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  transition: color var(--transition-fast);
}

.brand-logo:hover {
  color: var(--color-rose);
}

.brand-logo span {
  color: var(--color-rose);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  border-bottom: none;
}

.nav-list a {
  font-size: var(--text-sm);
  color: var(--color-light);
  transition: color var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-rose);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid rgba(166, 77, 121, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
  z-index: 1002;
  color: var(--color-white);
}

.menu-toggle .toggle-icon {
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
}

.menu-toggle .toggle-bars {
  display: block;
}

.menu-toggle .toggle-close {
  display: none;
}

.menu-toggle.is-active .toggle-bars {
  display: none;
}

.menu-toggle.is-active .toggle-close {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 26, 29, 0.75) 0%, rgba(59, 28, 50, 0.55) 50%, rgba(106, 30, 85, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-rose);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid rgba(166, 77, 121, 0.4);
  border-radius: var(--radius-pill);
}

.hero-content h1 {
  max-width: 14ch;
  margin-bottom: var(--space-md);
}

.hero-lead {
  font-size: var(--text-md);
  color: var(--color-muted);
  max-width: 38ch;
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-rose));
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(166, 77, 121, 0.6);
}

.btn-outline:hover {
  background: rgba(166, 77, 121, 0.15);
  color: var(--color-white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header p {
  color: var(--color-muted);
  max-width: 50ch;
  font-size: var(--text-sm);
}

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

.card {
  background: linear-gradient(145deg, var(--color-deep), rgba(59, 28, 50, 0.6));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(166, 77, 121, 0.15);
  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-rose);
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-xs);
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
}

.stat-item {
  flex: 1 1 8rem;
  text-align: center;
  padding: var(--space-md);
  background: rgba(106, 30, 85, 0.15);
  border-radius: var(--radius-md);
  border: 1px solid rgba(166, 77, 121, 0.2);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-rose);
}

.stat-item span {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.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-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 29, 0.4), transparent);
  pointer-events: none;
}

.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-deep);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-rose);
  position: relative;
}

.testimonial-card blockquote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-light);
  margin-bottom: var(--space-sm);
}

.testimonial-card cite {
  font-size: var(--text-xs);
  color: var(--color-rose);
  font-style: normal;
}

.contact-section {
  position: relative;
  padding: var(--space-2xl) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-panel {
  background: linear-gradient(160deg, var(--color-deep) 0%, var(--color-ink) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(166, 77, 121, 0.2), transparent 70%);
  pointer-events: none;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.contact-detail i {
  color: var(--color-rose);
  margin-top: 0.15rem;
  width: 1rem;
  text-align: center;
}

.contact-form-wrap {
  background: rgba(26, 26, 29, 0.6);
  border: 1px solid rgba(166, 77, 121, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-xs);
  margin-bottom: var(--space-xs);
  color: var(--color-muted);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  background: var(--color-ink);
  border: 1px solid rgba(166, 77, 121, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  transition: border-color var(--transition-fast);
}

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

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.checkbox-group input {
  margin-top: 0.15rem;
  accent-color: var(--color-rose);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
  border: 1px solid rgba(166, 77, 121, 0.2);
}

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

.site-footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(166, 77, 121, 0.15);
  margin-top: var(--space-xl);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-links a {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 1000;
  background: var(--color-deep);
  border: 1px solid rgba(166, 77, 121, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  display: none;
  animation: fadeUp var(--transition-base) forwards;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  font-size: var(--text-xs);
  padding: var(--space-xs) var(--space-md);
}

.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-ink) 100%);
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  max-width: 50ch;
}

.asym-layout {
  position: relative;
}

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

.asym-block:nth-child(odd) {
  transform: rotate(-0.5deg);
}

.asym-block:nth-child(even) {
  transform: rotate(0.5deg);
}

.asym-overlap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

.asym-card {
  background: var(--color-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(166, 77, 121, 0.15);
  box-shadow: var(--shadow-md);
}

.asym-card.offset-right {
  margin-left: 0;
}

.asym-image-float {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.asym-image-float.alt {
  transform: rotate(-2deg);
}

.angled-section {
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  background: linear-gradient(135deg, rgba(59, 28, 50, 0.5), rgba(106, 30, 85, 0.2));
  padding: var(--space-2xl) 0;
  margin: var(--space-xl) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(166, 77, 121, 0.2);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: scale(1.02);
}

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

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

.product-card ul {
  margin: var(--space-sm) 0;
}

.product-card li {
  font-size: var(--text-xs);
  color: var(--color-muted);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.product-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-rose);
  font-size: 0.65rem;
}

.legal-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

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

.legal-content h3 {
  font-size: var(--text-md);
  margin: var(--space-lg) 0 var(--space-xs);
  color: var(--color-rose);
}

.legal-content p,
.legal-content li {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: var(--space-lg);
  list-style: disc;
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  list-style: disc;
}

.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.thankyou-inner {
  max-width: 32rem;
}

.thankyou-icon {
  font-size: 3rem;
  color: var(--color-rose);
  margin-bottom: var(--space-md);
  animation: pulse 2s ease infinite;
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

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

.text-muted-block {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.text-muted-block.narrow {
  max-width: 32ch;
}

.text-muted-sm {
  color: var(--color-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
}

.section-cta {
  text-align: center;
}

.actions-center {
  justify-content: center;
}

.btn-spaced {
  margin-top: var(--space-lg);
}

.compliance-note {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-md);
  max-width: 55ch;
  line-height: 1.5;
}

.section-cta .compliance-note {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .asym-block:nth-child(odd),
  .asym-block:nth-child(even) {
    transform: none;
  }

  .asym-image-float,
  .asym-image-float.alt {
    transform: none;
  }

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

  .hero-content {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

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

  .hero-lead {
    font-size: var(--text-sm);
    max-width: none;
  }

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

  .contact-form-wrap {
    padding: var(--space-md);
  }

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

  .main-nav {
    position: static;
    width: 0;
    overflow: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    background: rgba(26, 26, 29, 0.98);
    z-index: 1001;
    padding: var(--space-3xl) var(--space-lg);
    border: none;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    max-width: 16rem;
    text-align: center;
  }

  .nav-list a {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    padding: var(--space-md) var(--space-lg);
    color: var(--color-white);
  }

  .nav-list a:hover {
    color: var(--color-rose);
  }

  .site-header {
    z-index: 1002;
  }

  .page-hero p,
  .section-header p {
    max-width: none;
  }

  .legal-content {
    padding: var(--space-xl) 0 var(--space-2xl);
  }

  .thankyou-wrap,
  .error-wrap {
    min-height: 60vh;
    padding: var(--space-xl) 0;
  }

  .thankyou-inner {
    width: 100%;
    padding: 0 var(--space-xs);
  }
}

@media (max-width: 639px) {
  .grid-two {
    gap: var(--space-md);
  }

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

  .asym-overlap {
    gap: var(--space-md);
  }

  .asym-block {
    margin-bottom: var(--space-xl);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-lg);
  }

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

  .angled-section {
    padding: var(--space-xl) 0;
    margin: var(--space-lg) 0;
  }

  .brand-logo {
    font-size: var(--text-sm);
    line-height: 1.25;
  }

  .stat-row {
    gap: var(--space-sm);
  }

  .stat-item {
    flex: 1 1 calc(50% - var(--space-sm));
    min-width: 0;
    padding: var(--space-sm);
  }

  .footer-inner {
    gap: var(--space-md);
  }

  .cookie-banner {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 479px) {
  .container {
    width: 94%;
  }

  .services-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex: 1 1 100%;
  }

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

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

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

  .angled-section {
    clip-path: none;
  }

  .brand-logo {
    font-size: 0.7rem;
  }

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

  .contact-detail {
    font-size: var(--text-xs);
  }

  .checkbox-group {
    font-size: 0.68rem;
  }
}

@media (max-width: 359px) {
  :root {
    --text-base: 0.85rem;
    --text-sm: 0.78rem;
    --text-xs: 0.68rem;
    --text-md: 0.95rem;
    --text-lg: 1.15rem;
    --text-xl: 1.45rem;
    --text-2xl: 1.85rem;
    --text-3xl: 2.2rem;
    --space-sm: 0.55rem;
    --space-md: 0.85rem;
    --space-lg: 1.2rem;
    --space-xl: 1.8rem;
    --space-2xl: 2.4rem;
    --space-3xl: 3rem;
    --header-height: 2.85rem;
  }

  .container {
    width: 96%;
  }

  .brand-logo {
    font-size: 0.6rem;
    letter-spacing: -0.02em;
  }

  .header-bar {
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
    min-height: var(--header-height);
  }

  .menu-toggle {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
  }

  .nav-list a {
    font-size: var(--text-md);
    padding: var(--space-sm) var(--space-md);
  }

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

  .hero-content {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.25rem var(--space-xs);
  }

  .section {
    padding: var(--space-lg) 0;
  }

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

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

  .product-card-body,
  .testimonial-card {
    padding: var(--space-md);
  }

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

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

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

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

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

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: var(--space-xs) var(--space-sm);
  }

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

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

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

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

  .thankyou-icon {
    font-size: 2rem;
  }

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

  .text-muted-block {
    max-width: none;
    padding: 0 var(--space-xs);
  }

  .legal-content h2 {
    font-size: var(--text-md);
  }

  .legal-content h3 {
    font-size: var(--text-sm);
  }

  .legal-content p,
  .legal-content li {
    font-size: var(--text-xs);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: var(--space-lg) 0;
  }

  .hero-content {
    padding: var(--space-lg) 0;
  }
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 640px) {
  .grid-two {
    grid-template-columns: 1fr 1fr;
  }

  .asym-overlap {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .brand-logo {
    max-width: none;
    font-size: var(--text-md);
    flex-shrink: 0;
  }

  .main-nav {
    width: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    gap: var(--space-lg);
    justify-content: flex-end;
    align-items: center;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    width: auto;
    max-width: none;
    text-align: left;
  }

  .nav-list a {
    display: inline;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    padding: var(--space-xs) 0;
    color: var(--color-light);
  }

  .nav-list a:hover {
    color: var(--color-rose);
  }

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

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

  .testimonial-slider {
    flex-direction: row;
  }

  .testimonial-card {
    flex: 1;
  }

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

@media (min-width: 1024px) {
  .asym-overlap.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .asym-card.offset-right {
    margin-left: -2rem;
    margin-top: -3rem;
    z-index: 2;
  }

  .asym-card.offset-left {
    margin-right: -2rem;
    margin-top: -3rem;
    z-index: 2;
  }

  .hero-content h1 {
    max-width: 16ch;
  }

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

@media (min-width: 1200px) {
  .container {
    width: 90%;
  }

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

  .hero-content {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }

  .nav-list {
    gap: var(--space-xl);
  }

  .brand-logo {
    font-size: var(--text-lg);
  }
}
