/* =========================================================
   Ästhetik Wunder — Design Tokens
========================================================= */
:root {
  --color-background: #faf9f6;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f1ea;

  --color-primary: #54595f;
  --color-primary-hover: #40444a;

  --color-accent: #c9ae7a;
  --color-accent-hover: #bb9c62;
  --color-accent-soft: #ecdfc4;

  --color-text: #292a27;
  --color-text-muted: #7a7a7a;
  --color-border: #dedbd4;

  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 40px rgba(31, 35, 29, 0.06);

  --container-width: 1200px;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Quicksand", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

address {
  font-style: normal;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-primary);
  margin: 0;
}

p {
  margin: 0;
}

/* Focus states — sichtbar & barrierefrei */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-small);
}

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

/* =========================================================
   Layout helpers
========================================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading.center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.section-subline {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
}

.btn-small {
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
}

.btn-block {
  width: 100%;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.nav-list a:hover {
  border-bottom-color: var(--color-accent);
}

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

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.burger-icon,
.burger-icon::before,
.burger-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary);
  position: relative;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger-icon::before {
  top: -6px;
}

.burger-icon::after {
  top: 6px;
}

.burger[aria-expanded="true"] .burger-icon {
  background-color: transparent;
}

.burger[aria-expanded="true"] .burger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] .burger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 5.75rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hero-benefits li {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-benefits .icon {
  color: var(--color-accent);
  width: 26px;
  height: 26px;
}

.hero-benefits span.label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-background) 0%,
    rgba(250, 249, 246, 0.88) 34%,
    rgba(250, 249, 246, 0.42) 58%,
    rgba(250, 249, 246, 0) 78%
  );
}

.hero-badge {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 2.5rem;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero-badge span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.25;
}

/* =========================================================
   Needs section
========================================================= */
.needs {
  background-color: var(--color-surface);
  border-top-left-radius: var(--radius-large);
  border-top-right-radius: var(--radius-large);
  padding-block: 5rem;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.needs-grid li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.needs-grid .icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
}

.needs-grid p {
  font-size: 0.92rem;
  max-width: 24ch;
}

.needs-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.needs-footer p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-primary);
}

/* =========================================================
   Treatment
========================================================= */
.treatment {
  padding-block: 4rem;
}

.treatment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.treatment-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.treatment-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.1rem;
}

.treatment-content .btn {
  margin-top: 0.75rem;
}

.treatment-media {
  height: 100%;
}

.treatment-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

/* =========================================================
   Includes
========================================================= */
.includes {
  background-color: var(--color-surface);
  padding-block: 5rem;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.includes-grid li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.includes-grid .icon {
  width: 34px;
  height: 34px;
  color: var(--color-accent);
}

.includes-grid span.label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

/* =========================================================
   Studio & pricing
========================================================= */
.studio-pricing {
  padding-block: 5rem;
}

.studio-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.check-list .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-primary);
}

.studio-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  flex: 1;
  min-height: 220px;
}

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


.price-cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}



.price-amount {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 600;
}

/* =========================================================
   Results
========================================================= */
.results {
  background-color: var(--color-surface);
  padding-block: 5rem;
}

.results-frame {
  border-radius: var(--radius-large);
  padding-inline: clamp(1.75rem, 4vw, 3.5rem);
}

.results-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ornament-line {
  width: 64px;
  height: 1px;
  background-color: var(--color-border);
}

.ornament-icon {
  display: flex;
  color: var(--color-accent);
}

.ornament-icon .icon {
  width: 18px;
  height: 18px;
}

.results-heading-block {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.results-heading-block .eyebrow {
  margin-bottom: 0.75rem;
}

.results-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  text-transform: uppercase;
}

.results-title .accent {
  color: var(--color-accent);
}

.results-subtext {
  color: var(--color-text-muted);
}

.before-after {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.before-after-photo {
  position: relative;
  flex: 1;
  margin: 0;
  aspect-ratio: 1500 / 1492;
}

.before-after-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-medium);
}

.before-after-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-small);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-before {
  background-color: var(--color-primary);
  color: #fff;
}

.tag-after {
  background-color: var(--color-accent);
  color: #fff;
}

.before-after-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-accent-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.before-after-badge .icon {
  width: 22px;
  height: 22px;
}

.results-features {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.results-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-inline: 2rem;
  border-left: 1px solid var(--color-border);
}

.results-features li:first-child {
  border-left: none;
  padding-left: 0;
}

.results-features li:last-child {
  padding-right: 0;
}

.results-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.results-feature-icon .icon {
  width: 22px;
  height: 22px;
}

.results-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.results-feature-text strong {
  font-size: 0.95rem;
  color: var(--color-text);
}

.results-feature-text span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.results-disclaimer {
  text-align: center;
  padding: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* =========================================================
   Bewertungs-Slider
========================================================= */
.reviews-showcase {
  padding-block: 5rem;
}

.reviews-showcase-heading {
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.25rem;
}

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

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.review-source-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--color-accent);
}

.review-stars .icon {
  width: 15px;
  height: 15px;
}

.review-stars .star-empty {
  color: var(--color-border);
}

.review-verified {
  width: 15px;
  height: 15px;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-readmore {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-readmore:hover {
  color: var(--color-primary);
}

.slider-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.slider-nav:hover {
  background-color: var(--color-surface-soft);
}

.slider-nav .icon {
  width: 18px;
  height: 18px;
}

.slider-nav-prev .slider-nav-icon {
  display: flex;
  transform: rotate(180deg);
}

/* =========================================================
   FAQ & CTA
========================================================= */
.faq-cta {
  padding-block: 5rem;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.faq h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--color-text);
}

.accordion-trigger .icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.accordion-trigger[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease;
}

.accordion-panel p {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  max-width: 60ch;
}

.cta-card {
  background-color: var(--color-primary);
  background-image: linear-gradient(120deg, rgba(30, 31, 33, 0.8), rgba(84, 89, 95, 0.6)), url("../assets/img/green_background.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: var(--radius-medium);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.cta-card p {
  color: var(--color-accent-soft);
  max-width: 42ch;
}

.cta-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.icon-whatsapp {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* =========================================================
   Final CTA bar
========================================================= */
.final-cta {
  background-color: var(--color-accent-soft);
  padding-block: 2.5rem;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.final-cta-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354595f' stroke-width='1.5'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.final-cta-text {
  flex-grow: 1;
}

.final-cta-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.final-cta-text p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-accent-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 4rem;
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.footer-nav ul,
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-nav a,
.footer-contact a {
  color: var(--color-accent-soft);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.social-list {
  display: flex;
  gap: 0.75rem;
}

.social-list a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.social-list .icon {
  width: 16px;
  height: 16px;
}

.social-list a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: 0.82rem;
  color: rgba(231, 215, 196, 0.7);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: #fff;
}

/* =========================================================
   Responsive — Tablet
========================================================= */
@media (max-width: 1024px) {
  .nav-list {
    gap: 1.25rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .btn-small {
    padding-inline: 1rem;
  }

  .treatment-inner {
    grid-template-columns: 1fr;
  }

  .treatment-media {
    order: -1;
    height: auto;
  }

  .treatment-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media::after {
    background: linear-gradient(
      90deg,
      var(--color-background) 0%,
      rgba(250, 249, 246, 0.92) 48%,
      rgba(250, 249, 246, 0.55) 72%,
      rgba(250, 249, 246, 0.1) 100%
    );
  }

  .hero-badge {
    width: 110px;
    height: 110px;
    bottom: 1.75rem;
  }

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

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

  .studio-pricing-grid,
  .faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .studio-figure {
    flex: none;
    min-height: 0;
  }

  .studio-figure img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .review-card {
    flex-basis: 260px;
  }

  .results-features {
    padding-inline: 0;
  }

  .results-features li {
    padding-inline: 1.25rem;
  }

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

/* =========================================================
   Responsive — Smartphone
========================================================= */
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    top: 73px;
    background-color: var(--color-background);
    padding: 2rem 20px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav-list a {
    font-size: 1.1rem;
  }

  .header-actions .btn-small {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding-block: 3rem;
  }

  .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(250, 249, 246, 0.9) 0%,
      rgba(250, 249, 246, 0.96) 100%
    );
  }

  .hero-badge {
    width: 96px;
    height: 96px;
    bottom: 1.25rem;
  }

  .hero-badge span {
    font-size: 0.72rem;
  }

  .hero-actions .btn,
  .cta-card-actions .btn {
    width: 100%;
  }

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

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

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

  .review-card {
    flex-basis: 82vw;
  }

  .slider-nav {
    width: 38px;
    height: 38px;
  }

  .results-ornament {
    gap: 0.6rem;
  }

  .ornament-line {
    width: 32px;
  }

  .before-after {
    gap: 0.5rem;
  }

  .before-after-badge {
    width: 44px;
    height: 44px;
  }

  .before-after-badge .icon {
    width: 16px;
    height: 16px;
  }

  .before-after-tag {
    left: 0.5rem;
    bottom: 0.5rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
  }

  .results-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .results-features li {
    border-left: none;
    padding-inline: 0;
  }

  .card {
    padding: 1.75rem;
  }

  .cta-card {
    padding: 2rem;
  }

  .final-cta-inner {
    flex-wrap: wrap;
    text-align: left;
  }

  .final-cta-inner .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
