:root {
  --bg: #040404;
  --bg-secondary: #0d0d0f;
  --bg-tertiary: #151517;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f0ea;
  --muted: #b8b0a7;
  --soft: #8e8780;
  --accent: #7d0f1f;
  --accent-strong: #c61630;
  --accent-soft: rgba(198, 22, 48, 0.18);
  --gold: #dcc7a2;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(198, 22, 48, 0.18), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(220, 199, 162, 0.08), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 28%),
    linear-gradient(180deg, #050505 0%, #070708 34%, #0d0d0f 72%, #111113 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.page-aura,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-aura {
  filter: blur(24px);
  opacity: 0.9;
}

.aura-left {
  inset: 5% auto auto -12%;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 22, 48, 0.22), transparent 62%);
}

.aura-right {
  inset: auto -10% 8% auto;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 62%);
}

.grain {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px;
  mix-blend-mode: soft-light;
}

.site-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 18px;
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.15)),
    linear-gradient(135deg, var(--accent-strong), var(--gold));
  box-shadow: 0 0 20px rgba(198, 22, 48, 0.8);
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  position: relative;
  border: 1px solid rgba(220, 199, 162, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(220, 199, 162, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(125, 15, 31, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  overflow: hidden;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7ead5, #ffffff, #f7ead5);
  box-shadow: 0 0 10px rgba(220, 199, 162, 0.28);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(220, 199, 162, 0.14);
  border-radius: 999px;
}

.menu-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 199, 162, 0.2), transparent 70%);
  top: 6px;
  right: 6px;
  opacity: 0.6;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.34);
}

.main-nav a {
  position: relative;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 30px rgba(125, 15, 31, 0.35);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(220, 199, 162, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.lang-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(220, 199, 162, 0.24), rgba(125, 15, 31, 0.1));
  font-size: 0.9rem;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lang-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero,
.salon-section,
.feature-band,
.daily-draw {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 42px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 199, 162, 0.24), transparent);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-kicker span,
.frame-badge,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(220, 199, 162, 0.22);
  border-radius: 999px;
  color: #efe4d2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.035);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  padding-bottom: 120px;
  display: grid;
  place-items: center;
}

.hero-ornament {
  position: absolute;
  inset: 5% auto auto 7%;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(220, 199, 162, 0.18);
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.015);
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(220, 199, 162, 0.12);
}

.hero-ornament::after {
  inset: 42px;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 560px);
  min-height: 680px;
  padding: 18px;
  border: 1px solid rgba(220, 199, 162, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(125, 15, 31, 0.22), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-photo-frame img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 24px;
  filter: grayscale(22%) contrast(1.08) brightness(0.82) saturate(0.85);
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 46%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 4, 0.88));
}

.frame-badge {
  position: absolute;
  top: 34px;
  left: 36px;
  z-index: 2;
}

.frame-overlay {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 2;
}

.frame-overlay p {
  margin: 0;
  max-width: 28ch;
  color: #f6efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.04;
}

.floating-panel {
  position: absolute;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.panel-top {
  top: 12%;
  right: -2%;
}

.panel-bottom {
  left: 0;
  bottom: 0;
  max-width: 320px;
  z-index: 3;
}

.floating-panel p {
  margin: 10px 0 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #dbc2c6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 7vw, 7rem);
  letter-spacing: -0.03em;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  letter-spacing: -0.02em;
}

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

p {
  color: var(--muted);
  line-height: 1.8;
}

.lede {
  max-width: 64ch;
  margin: 24px 0 28px;
  color: #d6cec4;
  font-size: 1.05rem;
}

.narrow {
  max-width: 56ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 40px rgba(125, 15, 31, 0.36);
}

.button-secondary {
  border: 1px solid rgba(220, 199, 162, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(220, 199, 162, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 8px;
  color: #f5ece0;
  font-size: 0.92rem;
}

.metric span {
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section {
  padding: 72px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.ritual-grid,
.intro-grid,
.article-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.info-card,
.slide-card,
.article-card,
.large-card,
.feature-box,
.cta-panel,
.ritual-card,
.quote-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(125, 15, 31, 0.12), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.info-card::before,
.slide-card::before,
.article-card::before,
.large-card::before,
.cta-panel::before,
.ritual-card::before,
.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 199, 162, 0.08), transparent 28%, transparent 72%, rgba(220, 199, 162, 0.04));
  pointer-events: none;
}

.info-card,
.article-card,
.large-card,
.cta-panel,
.ritual-card,
.quote-panel {
  padding: 30px;
}

.card-visual {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(220, 199, 162, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.card-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: contrast(1.03) brightness(0.9);
}

.card-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(220, 199, 162, 0.18);
  border-radius: 999px;
  color: #f1ddc0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(198, 22, 48, 0.12);
}

.ritual-card {
  min-height: 230px;
}

.ritual-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.salon-stack {
  display: grid;
  gap: 20px;
}

.elevated-card {
  transform: perspective(1200px) rotateX(4deg);
}

.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide-card {
  min-height: 340px;
  padding: 28px;
  scroll-snap-align: start;
}

.luxe-card {
  background:
    radial-gradient(circle at top right, rgba(220, 199, 162, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(125, 15, 31, 0.18), rgba(255, 255, 255, 0.01));
}

.slide-card a,
.article-card a,
.draw-side a {
  color: #fff;
  font-weight: 700;
}

.slider-control {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(220, 199, 162, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-control:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.quote {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.quote-panel {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.cta-shell {
  display: grid;
  gap: 26px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.grand-cta {
  border-color: rgba(220, 199, 162, 0.18);
  background:
    radial-gradient(circle at top left, rgba(198, 22, 48, 0.2), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(125, 15, 31, 0.16), rgba(255, 255, 255, 0.02));
}

.page-content {
  padding-bottom: 28px;
}

.page-hero {
  padding-top: 96px;
}

.legal-content .prose-block {
  max-width: 860px;
}

.prose-block h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 2rem;
}

.draw-side {
  display: grid;
  gap: 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.article-cover {
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(220, 199, 162, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.article-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-sidebar {
  display: grid;
  gap: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1360px) and (min-width: 641px) {
  .hero {
    align-items: start;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .hero-photo-frame {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .floating-panel {
    position: static;
    max-width: 100%;
    width: 100%;
  }

  .panel-top,
  .panel-bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .panel-bottom {
    order: 3;
  }
}

@media (max-width: 1080px) {
  .hero,
  .salon-section,
  .feature-band,
  .daily-draw,
  .article-layout,
  .ritual-grid,
  .intro-grid,
  .article-grid,
  .testimonial-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .salon-stack {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 54px;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-panel {
    position: static;
    max-width: none;
  }

  .hero-visual {
    gap: 18px;
  }
}

@media (max-width: 1080px) {
  .site-header,
  .cta-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    position: relative;
    padding-right: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 18px;
    right: 0;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px;
    border: 1px solid rgba(220, 199, 162, 0.16);
    border-radius: 24px;
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
  }

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

  .main-nav a,
  .lang-switch {
    width: 100%;
  }

  .main-nav .nav-cta,
  .main-nav .lang-switch {
    justify-content: center;
  }

  .main-nav a {
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .hero-photo-frame {
    min-height: 560px;
  }

  .hero-photo-frame img {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1220px);
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  p {
    line-height: 1.7;
  }

  .brand {
    font-size: 1.55rem;
    gap: 10px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero {
    gap: 22px;
    padding: 12px 0 40px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    gap: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-kicker {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-kicker span,
  .frame-badge,
  .panel-label {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 0.66rem;
  }

  .hero-ornament {
    width: 108px;
    inset: 2% auto auto 4%;
  }

  .slider {
    grid-template-columns: 1fr;
  }

  .slider-control {
    display: none;
  }

  .hero-photo-frame,
  .hero-photo-frame img {
    min-height: 360px;
  }

  .info-card,
  .slide-card,
  .article-card,
  .large-card,
  .cta-panel,
  .ritual-card,
  .quote-panel {
    padding: 22px;
  }

  .hero-photo-frame {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .hero-photo-frame::before {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-photo-frame::after {
    inset: auto 12px 12px;
    border-radius: 0 0 18px 18px;
  }

  .hero-photo-frame img {
    border-radius: 18px;
  }

  .frame-badge {
    position: static;
    top: auto;
    left: auto;
    align-self: flex-start;
  }

  .frame-overlay {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    padding: 6px 4px 2px;
  }

  .frame-overlay p {
    max-width: 100%;
    font-size: clamp(1.35rem, 6.2vw, 1.8rem);
    line-height: 1.08;
  }

  .floating-panel {
    position: static;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .panel-top,
  .panel-bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .panel-bottom {
    order: 3;
  }

  .lede,
  .micro-copy,
  .narrow {
    max-width: 100%;
  }

  .lede {
    margin: 18px 0 22px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .footer-links {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .button,
  .cta-panel .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
    width: 100%;
  }

  .hero-metrics {
    gap: 12px;
    margin-top: 20px;
  }

  .metric {
    padding: 16px;
    border-radius: 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 20px;
  }

  .section-heading.centered {
    justify-items: start;
    text-align: left;
  }

  .ritual-grid,
  .intro-grid,
  .article-grid,
  .testimonial-grid,
  .salon-stack,
  .article-layout,
  .cta-shell {
    gap: 16px;
  }

  .ritual-card {
    min-height: auto;
  }

  .card-visual {
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .card-visual img {
    height: 180px;
  }

  .slider-track {
    grid-auto-columns: 84%;
    gap: 14px;
    padding: 4px 2px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .slide-card {
    min-height: 280px;
    padding: 22px;
  }

  .quote {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    line-height: 1.04;
  }

  .cta-shell {
    gap: 18px;
  }

  .cta-panel {
    align-items: stretch;
    gap: 18px;
  }

  .page-content {
    padding-bottom: 18px;
  }

  .page-hero {
    padding-top: 44px;
  }

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

  .article-cover {
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .article-cover img {
    max-height: 280px;
  }

  .article-sidebar {
    gap: 16px;
  }

  .site-footer {
    padding: 22px 0 34px;
    gap: 14px;
  }

  .site-footer p {
    margin: 0;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: calc(100% - 16px);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .site-header {
    padding-right: 58px;
  }

  .main-nav {
    padding: 14px;
    border-radius: 18px;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .lang-switch {
    gap: 4px;
    padding: 3px;
  }

  .lang-link {
    min-width: 38px;
    min-height: 30px;
    padding: 0 8px;
  }

  .hero-photo-frame,
  .hero-photo-frame img {
    min-height: 320px;
  }

  .frame-overlay p {
    font-size: 1.16rem;
  }

  .slider-track {
    grid-auto-columns: 90%;
  }

  .quote {
    font-size: 1.45rem;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: auto !important;
  }

  .hero-ornament {
    display: none !important;
  }

  .hero-photo-frame {
    overflow: visible !important;
  }

  .hero-photo-frame::after {
    display: none !important;
  }

  .frame-badge,
  .frame-overlay,
  .floating-panel,
  .panel-top,
  .panel-bottom {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .frame-overlay {
    padding: 10px 4px 0 !important;
  }

  .frame-overlay p {
    max-width: 100% !important;
    font-size: 1.22rem !important;
    line-height: 1.12 !important;
  }

  .floating-panel {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 12px !important;
  }
}
