/* ===========================
   beautifulista · more than beauty
   Stylesheet
   =========================== */

/* ===========================
   Custom Brand Font — Girl Boss Slant
   =========================== */
@font-face {
    font-family: 'GirlBossSlant';
    src: url('fonts/GirlBossSlant.ttf') format('truetype'),
         url('fonts/GirlBossSlant.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --ivory:      #FAF7F0;
    --sage:       #6E7B67;
    --gold:       #D4AF37;
    --anthrazit:  #1C1C1C;
    --dark-green: #3E6B58;
    --text-muted: #6B6B6B;
    --white:      #FFFFFF;
    --border:     rgba(28, 28, 28, 0.1);

    --font-brand: 'GirlBossSlant', var(--font-serif);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Raleway', system-ui, sans-serif;

    --radius:          3px;
    --transition:      0.25s ease;
    --max-width:       1120px;
    --section-padding: 100px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--ivory);
    color: var(--anthrazit);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ===========================
   Layout
   =========================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

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

.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-weight: 300;
    margin-bottom: 56px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
}

h1 { font-size: clamp(52px, 8vw, 96px); letter-spacing: -0.02em; }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: clamp(22px, 3vw, 28px); }

p { color: var(--text-muted); line-height: 1.8; }
p strong { color: var(--anthrazit); font-weight: 500; }

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--anthrazit);
    color: var(--ivory);
}
.btn--primary:hover { background: var(--dark-green); }

.btn--outline {
    background: transparent;
    color: var(--anthrazit);
    border: 1px solid var(--border);
}
.btn--outline:hover {
    border-color: var(--anthrazit);
    background: var(--anthrazit);
    color: var(--ivory);
}

.btn--sage {
    background: var(--sage);
    color: var(--white);
}
.btn--sage:hover { background: var(--dark-green); }

.btn--nav {
    background: var(--sage);
    color: var(--white);
    padding: 11px 24px;
    font-size: 11px;
}
.btn--nav:hover { background: var(--dark-green); }

/* ===========================
   Navigation
   =========================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 247, 240, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--anthrazit);
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1;
}

.logo__brand {
    font-family: var(--font-brand);
    font-size: 26px;
    font-weight: normal;
    letter-spacing: 0.01em;
    text-transform: lowercase;
}

.logo__sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: lowercase;
    align-self: center;
}

.nav__links {
    display: flex;
    gap: 36px;
    flex: 1;
}

.nav__links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--anthrazit); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--anthrazit);
    transition: all var(--transition);
}

/* ===========================
   Hero
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 32px 96px;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(122, 176, 142, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 28px;
}

.hero__title {
    color: var(--anthrazit);
    margin-bottom: 28px;
}

.hero__title em {
    font-style: italic;
    color: var(--sage);
}

.hero__claim {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--dark-green);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    text-transform: lowercase;
}

.hero__subtitle {
    font-size: 18px;
    max-width: 520px;
    margin-bottom: 48px;
    line-height: 1.85;
    color: var(--text-muted);
}

.hero__cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__scroll {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero__scroll::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--border);
}

/* ===========================
   About / Story
   =========================== */
.about { background: var(--white); }

.about__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 96px;
    align-items: start;
}

.about__image { position: sticky; top: 100px; }

.about__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 2px;
    display: block;
}

.photo-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(
        160deg,
        rgba(122, 176, 142, 0.12) 0%,
        rgba(212, 175, 55, 0.08) 100%
    );
    border-radius: 2px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    border: 1px dashed rgba(122, 176, 142, 0.3);
}

.photo-placeholder span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    opacity: 0.6;
}

.about__text h2 {
    margin-bottom: 36px;
    color: var(--anthrazit);
}

.story p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.9;
}

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

.story__highlight {
    font-family: var(--font-serif) !important;
    font-size: 24px !important;
    font-style: italic;
    color: var(--anthrazit) !important;
    border-left: 3px solid var(--sage);
    padding: 4px 0 4px 28px;
    margin: 40px 0 !important;
    line-height: 1.55 !important;
}

/* ===========================
   Behandlungen
   =========================== */
.treatments { background: var(--ivory); }

.treatments__header {
    margin-bottom: 56px;
}

/* Treatment Panels */
.treatment-panel {
    border-top: 1px solid var(--border);
    padding: 72px 0;
}

.treatment-panel__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 72px;
    align-items: start;
}

.treatment-panel__icon {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.treatment-panel h3 {
    color: var(--anthrazit);
    margin-bottom: 10px;
}

.treatment-panel__by {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 14px;
}

.treatment-panel__badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.treatment-panel__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 19px;
    color: var(--anthrazit);
    line-height: 1.5;
    margin-bottom: 28px;
}

.treatment-panel__body p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.treatment-panel__body p:last-child { margin-bottom: 0; }

.treatment-panel__benefits {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.treatment-panel__benefits li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.5;
}

.treatment-panel__benefits li::before {
    content: '→';
    color: var(--dark-green);
    font-size: 11px;
    flex-shrink: 0;
}

.treatment-panel__pricing {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    border-radius: var(--radius);
    position: sticky;
    top: 92px;
}

.treatment-panel__pricing .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.treatment-panel__inquiry {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Preisliste in Behandlungskarte */
.price-list {
    list-style: none;
    margin-bottom: 16px;
    border-top: 1px solid var(--border);
}
.treatment-card:hover .price-list {
    border-top-color: rgba(250, 247, 240, 0.12);
}
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    gap: 12px;
}
.treatment-card:hover .price-list li {
    border-bottom-color: rgba(250, 247, 240, 0.12);
}

.price-list__name {
    color: var(--text-muted);
    flex: 1;
}
.treatment-card:hover .price-list__name { color: rgba(250, 247, 240, 0.55); }
.price-list__name small {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 3px;
}

.price-list__values {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.price-list__values s {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.5;
    text-decoration: line-through;
}
.treatment-card:hover .price-list__values s { color: rgba(250, 247, 240, 0.3); }
.price-list__values strong {
    font-weight: 600;
    font-size: 14px;
    color: var(--anthrazit);
}
.treatment-card:hover .price-list__values strong { color: var(--ivory); }

/* Angebot-Hinweis */
.offer-note {
    font-size: 11px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 24px;
}
.treatment-card:hover .offer-note { color: rgba(212, 175, 55, 0.8) !important; }

/* Öffnungszeiten-Tabelle */
.hours-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}
.hours-table td {
    padding: 5px 0;
    color: var(--anthrazit);
    line-height: 1.6;
}
.hours-table td:first-child {
    width: 90px;
    color: var(--text-muted);
}

/* ===========================
   Testimonials / Bewertungen
   =========================== */
.testimonials {
    background: var(--ivory);
    padding: 100px 0;
}
.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials__header .section__title {
    color: var(--anthrazit);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.testimonial:nth-child(4) { grid-column: 1; }
.testimonial:nth-child(5) { grid-column: 2; }
.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial__stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}
.testimonial__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    flex: 1;
    font-style: italic;
    font-family: var(--font-serif);
}
.testimonial__author {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--anthrazit);
    font-family: var(--font-sans);
    font-weight: 500;
}
.testimonials__link {
    text-align: center;
    font-size: 13px;
}
.testimonials__link a {
    color: var(--dark-green);
    letter-spacing: 0.05em;
}

/* ===========================
   Echte Ergebnisse / Videos
   =========================== */
.results {
    background: var(--anthrazit);
    padding: 100px 0;
}
.results .section__eyebrow { color: var(--sage); }
.results__header {
    text-align: center;
    margin-bottom: 60px;
}
.results__header .section__title {
    color: var(--ivory);
    margin-bottom: 20px;
}
.results__intro {
    color: rgba(250, 247, 240, 0.6);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}
.results__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.results__video-wrap {
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/16;
}
.results__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.results__consent {
    text-align: center;
    margin-top: 36px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(250, 247, 240, 0.25);
    text-transform: lowercase;
}

/* ===========================
   Laser / Warteliste
   =========================== */
.laser {
    background: var(--anthrazit);
    position: relative;
    overflow: hidden;
}

.laser::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(62, 107, 88, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.laser .section__eyebrow { color: var(--gold); }

.laser__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.laser h2 {
    color: var(--ivory);
    margin-bottom: 28px;
}

.laser__text {
    color: rgba(250, 247, 240, 0.65) !important;
    font-size: 17px;
    margin-bottom: 48px;
    line-height: 1.85;
}

.laser__promise {
    background: rgba(250, 247, 240, 0.05);
    border: 1px solid rgba(250, 247, 240, 0.1);
    border-radius: var(--radius);
    padding: 36px 44px;
    margin-bottom: 56px;
    text-align: left;
}

.laser__promise p {
    color: rgba(250, 247, 240, 0.75) !important;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.7;
}

.laser__promise strong {
    color: var(--ivory) !important;
    font-style: normal;
    font-weight: 400;
}

.laser__waitlist-intro {
    color: rgba(250, 247, 240, 0.5) !important;
    font-size: 14px;
    margin-bottom: 20px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.waitlist-form input {
    flex: 1;
    min-width: 260px;
    padding: 15px 20px;
    background: rgba(250, 247, 240, 0.06);
    border: 1px solid rgba(250, 247, 240, 0.15);
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 14px;
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition);
}

.waitlist-form input::placeholder {
    color: rgba(250, 247, 240, 0.35);
}

.waitlist-form input:focus {
    border-color: rgba(122, 176, 142, 0.5);
}

.waitlist-note {
    font-size: 12px !important;
    color: rgba(250, 247, 240, 0.3) !important;
    letter-spacing: 0.03em;
}


/* ===========================
   Kontakt
   =========================== */
.contact { background: var(--white); }

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.contact__items { padding-top: 8px; }

.contact__item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.contact__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact__item h4 {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.contact__item p,
.contact__item a {
    font-size: 15px;
    color: var(--anthrazit);
    line-height: 1.7;
}

.contact__item a {
    border-bottom: 1px solid var(--border);
    transition: border-color var(--transition);
    padding-bottom: 1px;
}
.contact__item a:hover { border-color: var(--anthrazit); }

.contact__cta-block h2 { margin-bottom: 24px; }

.contact__cta-block p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 380px;
}

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    margin-top: 12px;
}
.btn--whatsapp::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M11.999 2C6.477 2 2 6.477 2 12c0 1.89.522 3.656 1.432 5.168L2 22l4.975-1.302A9.956 9.956 0 0 0 12 22c5.523 0 10-4.477 10-10S17.523 2 12 2zm0 18c-1.72 0-3.328-.463-4.71-1.27l-.338-.2-3.506.919.935-3.418-.22-.352A7.944 7.944 0 0 1 4 12c0-4.411 3.589-8 8-8s8 3.589 8 8-3.589 8-8 8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.btn--whatsapp:hover { background: #1da851; color: #fff; }

.contact__social-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}
.contact__social-links a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}
.contact__social-links a:hover { color: var(--anthrazit); }

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--anthrazit);
    padding: 56px 0 40px;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 32px;
}

.footer__brand {}

.footer__logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    line-height: 1;
}

.footer__logo .logo__brand {
    font-family: var(--font-brand);
    font-size: 28px;
    color: var(--ivory);
}

.footer__logo__sub {
    color: rgba(250, 247, 240, 0.4) !important;
}

.footer__location {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.25) !important;
    margin-bottom: 8px;
}

.footer__claim {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: rgba(250, 247, 240, 0.35) !important;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.footer__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer__links a {
    font-size: 12px;
    color: rgba(250, 247, 240, 0.4);
    transition: color var(--transition);
    letter-spacing: 0.03em;
}
.footer__links a:hover { color: rgba(250, 247, 240, 0.85); }

.footer__bottom {
    border-top: 1px solid rgba(250, 247, 240, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 12px;
    color: rgba(250, 247, 240, 0.25) !important;
}

.footer__social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__social a {
    font-size: 12px;
    color: rgba(250, 247, 240, 0.35);
    transition: color var(--transition);
}
.footer__social a:hover { color: rgba(250, 247, 240, 0.7); }

/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 960px) {
    :root { --section-padding: 80px; }

    .nav__links { display: none; }
    .nav__toggle { display: flex; }

    .nav__links--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: var(--ivory);
        padding: 28px 32px;
        border-bottom: 1px solid var(--border);
        gap: 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .about__image { position: static; }
    .photo-placeholder { aspect-ratio: 16/9; max-height: 300px; }

    .treatment-panel__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .treatment-panel__pricing { position: static; }

    .contact__grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .contact__col-left { display: contents; }
    .contact__intro { order: 1; }
    .contact__cta-block { order: 2; margin-bottom: 48px; }
    .contact__items { order: 3; }
}

/* ===========================
   Responsive — Mobile
   =========================== */
@media (max-width: 600px) {
    :root { --section-padding: 64px; }

    .hero { padding: 108px 24px 72px; }

    .container { padding: 0 20px; }
    .nav__container { padding: 0 20px; }

    .hero__cta { flex-direction: column; align-items: flex-start; }

    .treatment-panel { padding: 52px 0; }
    .treatment-panel__pricing { padding: 28px 24px; }

    .laser__promise { padding: 28px 24px; }
    .laser__promise p { font-size: 17px; }

    .waitlist-form {
        flex-direction: column;
    }
    .waitlist-form input { min-width: 100%; }

    .footer__grid { flex-direction: column; gap: 28px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }

    .results__grid { grid-template-columns: 1fr; max-width: 400px; }
    .testimonials__grid { grid-template-columns: 1fr; }
}
