:root {
  --color-bg: #120F0D;
  --color-text: #D6D3D1;
  --color-hover: #1C1917;
  --color-accent: #44403C;
  --color-highlight: #FAFAF9;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.9rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(18,15,13,0.9) 0%, rgba(18,15,13,0) 100%);
  transition: all var(--transition-luxury);
}

.header.scrolled {
  background: rgba(18,15,13,0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
}

.logo:hover {
  letter-spacing: 0.15em;
  color: var(--color-highlight);
}

.nav-desktop {
  display: none;
  gap: var(--space-md);
}

.nav-desktop a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-highlight);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  width: 2rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(0.7rem) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(18,15,13,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  transition: right var(--transition-luxury);
  z-index: 999;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  transform: translateX(2rem);
  transition: all var(--transition-smooth);
}

.nav-mobile.active a {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile.active a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active a:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active a:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.active a:nth-child(4) { transition-delay: 0.4s; }
.nav-mobile.active a:nth-child(5) { transition-delay: 0.5s; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, rgba(18,15,13,0.95) 0%, rgba(28,25,23,0.9) 50%, rgba(18,15,13,0.95) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(250,250,249,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 60s linear infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(18,15,13,0.4) 100%);
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.hero-ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
}

.hero-ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--color-highlight);
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(250,250,249,0.3);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  border-radius: var(--radius-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-highlight);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-luxury);
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn:hover {
  color: var(--color-bg);
  border-color: var(--color-highlight);
}

.btn span {
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section-asymmetric {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.section-content {
  max-width: 40rem;
}

.section-visual {
  position: relative;
  min-height: 20rem;
}

.card {
  background: var(--color-hover);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-accent);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-text);
}

.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.product-card {
  background: var(--color-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-accent);
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  background: var(--color-accent);
}

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

.product-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-highlight);
  margin-top: var(--space-sm);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--color-hover);
  border: 1px solid var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 2px rgba(250,250,249,0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--color-highlight);
}

/* --------------------------------------------------------------------------
   MAP SECTION
   -------------------------------------------------------------------------- */
.map-section {
  max-width: 62rem;
  margin: 0 auto;
}

/* Header row */
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.map-header-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.map-header-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-highlight);
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--color-hover);
}

.map-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.2rem;
}

.map-header p {
  font-size: 0.82rem;
  color: rgba(214,211,209,0.55);
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.map-directions-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Map container — aspect-ratio driven, no fixed height */
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-accent);
  background: var(--color-hover);
  isolation: isolate;
}

/* Loading skeleton that shows while iframe loads */
.map-skeleton {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(28,25,23,0) 0%,
      rgba(68,64,60,0.12) 50%,
      rgba(28,25,23,0) 100%
    );
  background-size: 200% 100%;
  animation: skeletonShimmer 2s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Tap-to-activate overlay — prevents mobile scroll hijacking */
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,15,13,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: opacity var(--transition-smooth), backdrop-filter var(--transition-smooth);
  outline: none;
  /* Prevents double-tap zoom / browser gesture interference on touch */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.map-overlay:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-highlight);
}

.map-overlay.is-active {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.map-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  pointer-events: none;
  padding: 2rem;
}

.map-overlay-pin {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(250,250,249,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250,250,249,0.06);
  margin-bottom: 0.25rem;
  animation: overlayPinPulse 3s ease-in-out infinite;
}

.map-overlay-pin i {
  font-size: 1.4rem;
  color: var(--color-highlight);
}

@keyframes overlayPinPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(250,250,249,0); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(250,250,249,0.04); }
}

.map-overlay-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,250,249,0.85);
}

.map-overlay-hint {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(214,211,209,0.4);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  z-index: 1;
}

/* Footer info strip */
.map-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250,250,249,0.06);
}

.map-footer-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(214,211,209,0.45);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.map-footer-item i {
  font-size: 0.8rem;
  color: rgba(250,250,249,0.25);
  transition: color var(--transition-smooth);
}

.map-footer-open {
  color: rgba(214,211,209,0.55);
  margin-left: auto;
}

.map-footer-open:hover {
  color: var(--color-highlight);
}

.map-footer-open:hover i {
  color: var(--color-highlight);
}

/* Responsive overrides */
@media (max-width: 48rem) {
  /* 16:9 gives a usable landscape slice on tablets */
  .map-container { aspect-ratio: 16 / 9; }

  .map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .map-directions-btn { width: 100%; text-align: center; }

  .map-footer { gap: 1rem; }
  .map-footer-open { margin-left: 0; }
}

@media (max-width: 30rem) {
  /* Square crop — shows equal north/south/east/west context on narrow phones */
  .map-container { aspect-ratio: 1 / 1; }

  /* Larger, more finger-friendly touch target on the overlay */
  .map-overlay-inner  { padding: 1.5rem; gap: 0.6rem; }
  .map-overlay-pin    { width: 3.5rem; height: 3.5rem; }
  .map-overlay-pin i  { font-size: 1.2rem; }
  .map-overlay-label  { font-size: 0.72rem; letter-spacing: 0.1em; }
  .map-overlay-hint   { font-size: 0.62rem; }

  .map-footer { flex-direction: column; align-items: center; gap: 0.75rem; }
  .map-footer-open { margin-left: 0; }
}

.footer {
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid var(--color-accent);
  font-size: 0.8rem;
}

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

.footer-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28,25,23,0.98);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  transform: translateY(100%);
  transition: transform var(--transition-luxury);
  z-index: 2000;
  border-top: 1px solid var(--color-accent);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

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

.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--color-highlight);
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-luxury) ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.luxury-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.luxury-ornament i {
  font-size: 1.5rem;
  color: var(--color-highlight);
}

.ornament-line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.luxury-divider {
  width: 4rem;
  height: 2px;
  background: var(--color-highlight);
  margin: 0 auto;
}

.luxury-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.policy-date {
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
}

.policy-section {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(28,25,23,0.3);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  transition: all var(--transition-smooth);
}

.policy-section:hover {
  border-left-color: var(--color-highlight);
  background: rgba(28,25,23,0.5);
}

.policy-contact {
  background: rgba(68,64,60,0.3);
  border-left-color: var(--color-highlight);
}

@media (min-width: 20rem) {
  html {
    font-size: 87.5%;
  }
  
  .header {
    padding: var(--space-sm);
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 30rem) {
  html {
    font-size: 93.75%;
  }
  
  .logo {
    font-size: 1.5rem;
  }
}

@media (min-width: 48rem) {
  html {
    font-size: 100%;
  }
}

/* ==========================================================================
   RESPONSIVE — 320 px  (max-width: 30rem / 480px)
   Covers every component so the layout is clean at the smallest breakpoint.
   ========================================================================== */
@media (max-width: 30rem) {

  /* ── Base ── */
  html  { font-size: 87.5%; }         /* 1 rem = 14 px */

  h1 { font-size: clamp(1.8rem, 9vw, 2.8rem);  margin-bottom: 1rem; }
  h2 { font-size: clamp(1.5rem, 7vw, 2.2rem);  margin-bottom: 1rem; }
  h3 { font-size: clamp(1.2rem, 5vw, 1.8rem);  margin-bottom: 0.6rem; }
  p  { font-size: 0.875rem; }

  /* ── Header ── */
  .header         { padding: var(--space-sm); }
  .header.scrolled { padding: 0.6rem var(--space-sm); }
  .logo { font-size: 1.05rem; letter-spacing: 0.05em; }

  /* ── Sections ── */
  .section          { padding: var(--space-lg) var(--space-sm); }
  .section-asymmetric { gap: var(--space-md); }
  .section-visual   { min-height: 12rem; }

  /* ── Cards ── */
  .card-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .card      { padding: var(--space-sm); }

  /* ── Product cards ── */
  .product-image { height: 11rem; }
  .product-info  { padding: var(--space-sm); }

  /* ── Button ── */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    width: 100%;
    text-align: center;
  }

  /* ── HOME HERO ── */
  .hero--home {
    padding: var(--space-lg) var(--space-sm);
    min-height: 100svh;
  }
  .hero-home-watermark { font-size: clamp(4rem, 20vw, 8rem); }
  .hero-home-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }
  .hero-home-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .hero-home-divider   { margin-bottom: 1rem; }
  .hero-home-content p { margin-bottom: 1.5rem; }
  .hero-home-actions   {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .hero-home-actions .btn { width: 100%; text-align: center; }
  .hero-home-link         { justify-content: center; }
  .hero-home-stats {
    gap: var(--space-md);
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .hero-home-stat-value { font-size: 1.6rem; }
  .hero-home-stat-label { font-size: 0.58rem; letter-spacing: 0.1em; }
  .hero-home-scroll     { display: none; }

  /* ── KONSULTERA HERO ── */
  .hero--konsultera {
    padding: calc(var(--space-lg) + 3.5rem) var(--space-sm) var(--space-lg);
  }
  .hero-konsultera-number {
    font-size: clamp(7rem, 38vw, 12rem);
    right: -4%;
  }
  .hero-konsultera-tag {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.7rem;
  }
  .hero-konsultera-content h1 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  /* ── KURERA HERO ── */
  .hero--kurera {
    padding: calc(var(--space-lg) + 3.5rem) var(--space-sm) var(--space-lg);
  }
  .hero-kurera-icon   { width: 3.5rem; height: 3.5rem; margin-bottom: 1.2rem; }
  .hero-kurera-icon i { font-size: 1.1rem; }
  .hero-kurera-content h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-kurera-content p  { margin-bottom: 1.8rem; }
  .hero-kurera-rings .ring--1 { width: 88vw;  height: 88vw; }
  .hero-kurera-rings .ring--2 { width: 66vw;  height: 66vw; }
  .hero-kurera-rings .ring--3 { width: 44vw;  height: 44vw; }
  .hero-kurera-rings .ring--4 { width: 22vw;  height: 22vw; }

  /* ── FÖRFINAD HERO ── */
  .hero--forfinad {
    padding: calc(var(--space-lg) + 3.5rem) var(--space-sm) var(--space-lg);
  }
  .hero-forfinad-oversize { font-size: clamp(3.5rem, 17vw, 7rem); }
  .hero-forfinad-eyebrow  { flex-wrap: wrap; gap: 0.4rem; }
  .hero-forfinad-eyebrow .eyebrow-text {
    white-space: normal;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .hero-forfinad-eyebrow .eyebrow-line { flex: 0 0 1.5rem; }
  .hero-forfinad-content h1 { font-size: clamp(2rem, 9vw, 3rem); }

  /* ── KONTAKT HERO ── */
  .hero--kontakt  { min-height: auto; }
  .hero-kontakt-right {
    padding: calc(var(--space-lg) + 3.5rem) var(--space-sm) var(--space-lg);
  }
  .hero-kontakt-content h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-kontakt-tag {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .hero-kontakt-details {
    gap: 0.8rem;
    font-size: 0.7rem;
  }

  /* ── Contact form ── */
  .form-group           { margin-bottom: var(--space-sm); }
  .form-group input,
  .form-group textarea  { font-size: 1rem; } /* prevents iOS auto-zoom */
  .contact-info         { gap: var(--space-sm); margin-top: var(--space-md); }

  /* ── Map ── */
  .map-container { height: 14rem; }

  /* ── Footer ── */
  .footer       { padding: var(--space-sm); }
  .footer-links { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

  /* ── Privacy popup ── */
  .privacy-popup   { padding: var(--space-sm); }
  .privacy-content { gap: 0.6rem; }
  .privacy-buttons { gap: 0.5rem; }
  .privacy-buttons .btn { flex: 1; min-width: 7rem; width: auto; }

  /* ── Policy pages ── */
  .policy-section { padding: var(--space-sm); }

  /* ── Angled section ── */
  .angled-section         { padding: var(--space-lg) 0; }
  .angled-section > *     { padding: 0 var(--space-sm); }

  /* ── Scroll animations — reduce translate distance on tiny screens ── */
  .slide-in-left  { transform: translateX(-1.5rem); }
  .slide-in-right { transform: translateX(1.5rem); }
  .fade-in        { transform: translateY(1rem); }
}

/* ==========================================================================
   RESPONSIVE — sub-320 px  (max-width: 20rem)
   Extra safety net for very small/narrow viewports.
   ========================================================================== */
@media (max-width: 20rem) {
  html { font-size: 81.25%; }          /* 1 rem = 13 px */

  .logo { font-size: 0.95rem; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  .hero-home-label,
  .hero-konsultera-tag,
  .hero-kontakt-tag { letter-spacing: 0.06em; }

  .hero-home-stats     { flex-direction: column; gap: 1rem; align-items: center; }
  .hero-home-stat-value { font-size: 1.4rem; }

  .hero-forfinad-eyebrow .eyebrow-line { display: none; }
  .hero-kontakt-details { flex-direction: column; align-items: center; gap: 0.5rem; }

  .btn { font-size: 0.68rem; padding: 0.65rem 1rem; }
  .privacy-buttons .btn { min-width: 5rem; }
}

.overlap-section {
  position: relative;
  margin-top: -5rem;
  z-index: 10;
}

.angled-section {
  transform: skewY(-2deg);
  padding: var(--space-xl) 0;
  background: var(--color-hover);
}

.angled-section > * {
  transform: skewY(2deg);
  padding: 0 var(--space-md);
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1rem); }
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: all var(--transition-luxury);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: all var(--transition-luxury);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-luxury);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   HERO VARIANTS
   ========================================================================== */

/* Shared animation keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-2rem); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes orbFloat {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  33%       { transform: scale(1.15) translate(2%, -3%); opacity: 1; }
  66%       { transform: scale(0.95) translate(-2%, 2%); opacity: 0.8; }
}

@keyframes ringRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lineExpand {
  from { width: 0; opacity: 0; }
  to   { width: 3rem; opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* --------------------------------------------------------------------------
   HOME HERO
   -------------------------------------------------------------------------- */
.hero--home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}

.hero-home-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,250,249,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,250,249,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-home-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-home-orb--1 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(250,250,249,0.05) 0%, transparent 70%);
  top: -5%;
  right: -10%;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-home-orb--2 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(68,64,60,0.25) 0%, transparent 70%);
  bottom: 5%;
  left: -8%;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.hero-home-orb--3 {
  width: 20vw;
  height: 20vw;
  background: radial-gradient(circle, rgba(250,250,249,0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 10s ease-in-out infinite 3s;
}

.hero-home-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 26rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(250,250,249,0.022);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-home-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  text-align: center;
}

.hero-home-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(214,211,209,0.45);
  margin-bottom: 2rem;
  animation: fadeInDown 0.9s ease-out 0.2s both;
}

.hero-home-content h1 {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  animation: fadeInUp var(--transition-luxury) ease-out 0.35s both;
}

.hero-home-content h1 em {
  font-style: italic;
  color: rgba(250,250,249,0.6);
}

.hero-home-divider {
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
  margin: 0 auto 2rem;
  animation: fadeIn 0.9s ease-out 0.55s both;
}

.hero-home-content p {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  color: rgba(214,211,209,0.65);
  animation: fadeInUp 0.9s ease-out 0.55s both;
}

.hero-home-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease-out 0.75s both;
}

.hero-home-link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(214,211,209,0.55);
  transition: all var(--transition-smooth);
}

.hero-home-link::after {
  content: '→';
  transition: transform var(--transition-smooth);
}

.hero-home-link:hover {
  color: var(--color-highlight);
}

.hero-home-link:hover::after {
  transform: translateX(0.4rem);
}

.hero-home-stats {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250,250,249,0.07);
  animation: fadeIn 1s ease-out 1s both;
}

.hero-home-stat {
  text-align: center;
}

.hero-home-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-highlight);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-home-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(214,211,209,0.4);
}

.hero-home-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
  animation: fadeIn 1s ease-out 1.2s both;
}

.hero-home-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, transparent, rgba(214,211,209,0.4));
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-home-scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(214,211,209,0.35);
}

/* --------------------------------------------------------------------------
   KONSULTERA HERO
   -------------------------------------------------------------------------- */
.hero--konsultera {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-xl) + 5rem) var(--space-md) var(--space-xl);
}

.hero-konsultera-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}

.hero-konsultera-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(68,64,60,0.18) 0%, transparent 60%);
}

.hero-konsultera-number {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(14rem, 32vw, 32rem);
  font-weight: 300;
  color: rgba(250,250,249,0.025);
  right: -2%;
  top: 50%;
  transform: translateY(-55%);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-konsultera-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.hero-konsultera-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(214,211,209,0.45);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(214,211,209,0.12);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-konsultera-line {
  width: 3rem;
  height: 2px;
  background: var(--color-highlight);
  margin-bottom: 1.5rem;
  animation: lineExpand 0.7s ease-out 0.35s both;
}

.hero-konsultera-content h1 {
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero-konsultera-content p {
  color: rgba(214,211,209,0.65);
  line-height: 1.85;
  max-width: 36rem;
  animation: fadeInLeft 0.8s ease-out 0.55s both;
}

.hero-konsultera-circles {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  display: none;
}

.hero-konsultera-circles .circ {
  border-radius: 50%;
  border: 1px solid rgba(250,250,249,0.07);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-konsultera-circles .circ--1 { width: 18rem; height: 18rem; }
.hero-konsultera-circles .circ--2 { width: 12rem; height: 12rem; border-color: rgba(250,250,249,0.1); }
.hero-konsultera-circles .circ--3 { width: 6rem;  height: 6rem;  border-color: rgba(250,250,249,0.15); background: rgba(250,250,249,0.015); }

@media (min-width: 64rem) {
  .hero-konsultera-circles {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   KURERA HERO
   -------------------------------------------------------------------------- */
.hero--kurera {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-xl) + 5rem) var(--space-md) var(--space-xl);
  text-align: center;
}

.hero-kurera-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}

.hero-kurera-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(28,25,23,0.5) 0%, rgba(18,15,13,0.95) 70%);
}

.hero-kurera-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-kurera-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(250,250,249,0.055);
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.hero-kurera-rings .ring--1 {
  width: min(65vw, 42rem);
  height: min(65vw, 42rem);
  border-style: dashed;
  animation: ringRotate 50s linear infinite;
}

.hero-kurera-rings .ring--2 {
  width: min(48vw, 30rem);
  height: min(48vw, 30rem);
  animation: ringRotate 35s linear infinite reverse;
  border-color: rgba(250,250,249,0.08);
}

.hero-kurera-rings .ring--3 {
  width: min(30vw, 20rem);
  height: min(30vw, 20rem);
  animation: ringRotate 22s linear infinite;
  border-color: rgba(250,250,249,0.1);
}

.hero-kurera-rings .ring--4 {
  width: min(14vw, 9rem);
  height: min(14vw, 9rem);
  background: rgba(250,250,249,0.018);
  border-color: rgba(250,250,249,0.18);
}

.hero-kurera-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero-kurera-icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(250,250,249,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.8s ease-out 0.2s both;
}

.hero-kurera-icon i {
  font-size: 1.5rem;
  color: var(--color-highlight);
}

.hero-kurera-content h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-kurera-content p {
  color: rgba(214,211,209,0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.55s both;
}

.hero-kurera-content .btn {
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* --------------------------------------------------------------------------
   FÖRFINAD HERO
   -------------------------------------------------------------------------- */
.hero--forfinad {
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-xl) + 5rem) var(--space-md) var(--space-xl);
}

.hero-forfinad-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}

.hero-forfinad-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 48px,
    rgba(250,250,249,0.01) 48px,
    rgba(250,250,249,0.01) 49px
  );
}

.hero-forfinad-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(250,250,249,0.04) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-forfinad-oversize {
  position: absolute;
  top: -0.05em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 20rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(250,250,249,0.028);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.hero-forfinad-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  width: 100%;
}

.hero-forfinad-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-forfinad-eyebrow .eyebrow-line {
  flex: 0 0 3rem;
  height: 1px;
  background: rgba(250,250,249,0.18);
}

.hero-forfinad-eyebrow .eyebrow-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(214,211,209,0.45);
  white-space: nowrap;
}

.hero-forfinad-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-forfinad-content p {
  max-width: 36rem;
  color: rgba(214,211,209,0.65);
  line-height: 1.85;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-forfinad-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,250,249,0.08), transparent);
}

/* --------------------------------------------------------------------------
   KONTAKT HERO
   -------------------------------------------------------------------------- */
.hero--kontakt {
  min-height: 65vh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.hero-kontakt-left {
  display: none;
  position: relative;
  background: rgba(22,19,17,0.6);
  border-right: 1px solid rgba(250,250,249,0.05);
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.hero-kontakt-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(250,250,249,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-kontakt-vertical-text {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  letter-spacing: 0.55em;
  color: rgba(250,250,249,0.055);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.hero-kontakt-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-xl) + 5rem) var(--space-md) var(--space-xl);
  background: var(--color-bg);
  position: relative;
}

.hero-kontakt-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(68,64,60,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.hero-kontakt-content {
  position: relative;
  z-index: 1;
  max-width: 35rem;
  text-align: center;
}

.hero-kontakt-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(214,211,209,0.45);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-kontakt-tag i {
  font-size: 0.8rem;
}

.hero-kontakt-content h1 {
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-kontakt-content p {
  color: rgba(214,211,209,0.65);
  line-height: 1.85;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-kontakt-divider {
  width: 3rem;
  height: 1px;
  background: rgba(250,250,249,0.15);
  margin: 0 auto 2rem;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.hero-kontakt-details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(214,211,209,0.38);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-kontakt-details span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-kontakt-details i {
  font-size: 0.72rem;
  color: rgba(250,250,249,0.28);
}

@media (min-width: 48rem) {
  .hero--kontakt {
    grid-template-columns: 1fr 2fr;
  }

  .hero-kontakt-left {
    display: flex;
  }

  .hero-kontakt-right {
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 48rem) {
  .nav-desktop {
    display: flex;
  }
  
  .burger {
    display: none;
  }
  
  .section-asymmetric {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-asymmetric:nth-child(even) .section-content {
    order: 2;
  }
  
  .section-asymmetric:nth-child(even) .section-visual {
    order: 1;
  }
  
  .privacy-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  body {
    font-size: 1rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
