/* =========================================================
   Gogroth / Solei — design system
   ========================================================= */

:root {
    --color-text: #3b2b23;
    --color-accent: #ff5a00;
    --color-muted: #8b7e74;
    --color-cream: #f2eae3;
    --color-cream-soft: #f7f1ea;
    --color-white: #ffffff;

    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-accent: "Poppins", var(--font-sans);

    --divider: #e2d6ca;

    --container: 1440px;
    --gutter: clamp(1.25rem, 5vw, 6.1875rem);
}

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

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

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

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

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    margin: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    min-height: 50px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

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

.btn--primary:hover {
    background: #e85100;
    transform: translateY(-1px);
}

.btn--arrow {
    gap: 1rem;
    font-family: var(--font-accent);
    letter-spacing: 1.82px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: relative;
    z-index: 20;
    width: 100%;
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 1.5rem;
}

.site-header__logo img {
    width: auto;
    height: 72px;
}

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

.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__menu a {
    font-size: 15px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.site-nav__menu a:hover {
    color: var(--color-accent);
}

.site-nav__cta {
    min-height: 50px;
    padding: 0.75rem 2rem;
}

/* Transparent header overlaying the hero on the front page + hero pages */
.home .site-header,
.has-hero .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* =========================================================
   Page hero (interior page title band)
   ========================================================= */
.page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 447px;
    overflow: hidden;
    background: var(--color-cream);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-cream) 8%, rgba(242, 234, 227, 0) 50%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter) clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 82px);
    line-height: 0.9;
    letter-spacing: clamp(-1.5px, -0.22vw, -3.28px);
    color: var(--color-text);
    margin: 0;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f3f4f5;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center right;
    opacity: 0.9;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--color-cream) 0%, rgba(242, 234, 227, 0.85) 32%, rgba(242, 234, 227, 0) 60%),
        linear-gradient(180deg, var(--color-cream) 4%, rgba(242, 234, 227, 0) 28%);
}

.hero__decor {
    position: absolute;
    top: 61px;
    right: 0;
    width: min(51%, 735px);
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 6rem var(--gutter) 4rem;
}

.hero__title {
    color: var(--color-text);
    font-size: clamp(4rem, 11.4vw, 164px);
    line-height: 0.8;
    letter-spacing: clamp(-2px, -0.45vw, -6.56px);
    margin-bottom: 1.75rem;
}

.hero__title span {
    display: block;
}

.hero__lead {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.2vw, 60px);
    line-height: 0.9;
    letter-spacing: -2.4px;
    margin: 0 0 1.75rem;
}

.hero__lead-line {
    display: block;
    color: var(--color-text);
}

.hero__lead-line--accent {
    font-style: italic;
    color: var(--color-accent);
}

.hero__subtitle {
    max-width: 565px;
    font-size: clamp(1rem, 1.4vw, 20px);
    line-height: 1.4;
    letter-spacing: 0.4px;
    color: var(--color-muted);
    margin: 0 0 2.25rem;
}

/* =========================================================
   Reusable: arrow link ("Learn More", "View All", etc.)
   ========================================================= */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.link-arrow__line {
    display: inline-block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: width 0.2s ease;
}

.link-arrow:hover .link-arrow__line {
    width: 30px;
}

/* =========================================================
   Services strip
   ========================================================= */
.services-strip {
    background: var(--color-cream-soft);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.services-strip__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
}

.service-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 clamp(1rem, 2vw, 2.5rem);
}

.service-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--divider);
}

.service-item__icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-item__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    color: var(--color-text);
}

.service-item__desc {
    max-width: 227px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.service-item .link-arrow {
    margin-top: auto;
    padding-top: 0.25rem;
}

@media (max-width: 1024px) {
    .services-strip__inner {
        flex-wrap: wrap;
        gap: 2.5rem 0;
    }

    .service-item {
        flex: 0 0 50%;
        padding: 1.5rem;
    }

    .service-item:not(:first-child)::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .service-item {
        flex: 0 0 100%;
    }
}

/* =========================================================
   Reusable: eyebrow label
   ========================================================= */
.eyebrow {
    margin: 0;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* =========================================================
   About Solei
   ========================================================= */
.about {
    display: flex;
    align-items: stretch;
    gap: clamp(2rem, 6vw, 88px);
    background: #f3ede6;
}

.about--reversed {
    flex-direction: row-reverse;
}

.about--reversed .about__content {
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5.5rem) var(--gutter);
}

.about__media {
    flex: 1 1 50%;
}

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

.about__content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    padding: clamp(3rem, 6vw, 5.5rem) var(--gutter) clamp(3rem, 6vw, 5.5rem) 0;
}

.about__title {
    font-size: clamp(2.5rem, 4.2vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.16px;
    color: var(--color-text);
}

.about__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.about__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about__list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    letter-spacing: 0.4px;
    color: var(--color-muted);
}

.about__check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about {
        flex-direction: column;
        gap: 0;
    }

    .about__media {
        flex: none;
        width: 100%;
    }

    .about__media img {
        height: auto;
        max-height: 420px;
    }

    .about__content {
        padding: 2.5rem var(--gutter);
    }
}

/* =========================================================
   Reusable: centered section title
   ========================================================= */
.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 4.2vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.16px;
    text-align: center;
    color: var(--color-text);
    margin: 0;
}

/* =========================================================
   Treatments Tailored To You
   ========================================================= */
.treatments {
    background: var(--color-white);
    padding: clamp(3.5rem, 7vw, 6.25rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.625rem);
}

.treatments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    width: 100%;
    max-width: 1332px;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1875rem;
}

.treatment-card__media {
    width: 100%;
    aspect-ratio: 311 / 223;
    border-radius: 14px;
    overflow: hidden;
}

.treatment-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card__media img {
    transform: scale(1.05);
}

.treatment-card__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    color: var(--color-text);
}

.treatment-card__desc {
    max-width: 250px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.treatment-card .link-arrow {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .treatments__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 680px;
    }
}

@media (max-width: 560px) {
    .treatments__grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

/* =========================================================
   Real Results, Real Confidence (before / after)
   ========================================================= */
.results {
    background: #f5f3ef;
    padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 2.625rem);
}

.results__track {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
    justify-content: center;
    width: 100%;
    max-width: 1332px;
}

.ba-pair {
    display: flex;
    gap: 13px;
}

.ba-cell {
    position: relative;
    width: 212px;
    height: 273px;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
}

.ba-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-cell--left img {
    object-position: left center;
}

.ba-cell--right img {
    object-position: right center;
}

.ba-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56%, rgba(0, 0, 0, 0.35) 94%);
}

.ba-cell__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 1;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
}

@media (max-width: 480px) {
    .ba-pair {
        gap: 8px;
    }

    .ba-cell {
        width: 44vw;
        height: 56vw;
    }
}

/* =========================================================
   Combined Aesthetics grid
   ========================================================= */
.aesthetics {
    position: relative;
    background: #f3ede6;
    padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.1875rem);
    overflow: hidden;
}

.aesthetics::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--aesthetics-texture);
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
}

.aesthetics__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 982px;
    text-align: center;
}

.aesthetics__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1042px;
}

.aesthetics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.25rem, 2.5vw, 2.5rem);
}

.aesthetics-item:not(:nth-child(3n)) {
    border-right: 1px solid var(--divider);
}

.aesthetics-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--divider);
}

.aesthetics-item__icon {
    width: 50px;
    height: 52px;
    object-fit: contain;
}

.aesthetics-item__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    color: var(--color-text);
}

.aesthetics-item__desc {
    max-width: 240px;
    margin: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    color: var(--color-muted);
}

@media (max-width: 900px) {
    .aesthetics__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 620px;
    }

    .aesthetics-item {
        border: none !important;
        border-bottom: 1px solid var(--divider) !important;
    }

    .aesthetics-item:nth-child(odd) {
        border-right: 1px solid var(--divider) !important;
    }
}

@media (max-width: 560px) {
    .aesthetics__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .aesthetics-item {
        border-right: none !important;
    }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
    background: #f5f3ef;
    padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(2.5rem, 7vw, 106px);
}

.testimonials__intro {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 419px;
    max-width: 100%;
}

.testimonials__title {
    text-align: left;
}

.testimonials__rule {
    display: block;
    width: 100%;
    max-width: 426px;
    height: 1px;
    background: var(--divider);
}

.testimonials__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.testimonials__arrow {
    font-size: 1rem;
    line-height: 1;
}

.testimonials__quote {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 601px;
    max-width: 100%;
    margin: 0;
}

.testimonials__stars {
    width: 132px;
    height: auto;
}

.testimonials__quote blockquote {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.testimonials__quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-text);
}

.testimonials__google {
    width: 170px;
    height: auto;
}

/* =========================================================
   Premium Membership banner
   ========================================================= */
.membership {
    position: relative;
    display: flex;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5.8125rem) var(--gutter);
    background-image: var(--membership-bg);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.membership::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #957870;
    mix-blend-mode: hard-light;
    z-index: -1;
}

.membership__card {
    width: 932px;
    max-width: 100%;
    background: rgba(243, 237, 230, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 456px;
}

.membership__ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 8px 24px;
    border-top: 1px solid var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    overflow: hidden;
}

.membership__ticker span {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    color: var(--color-text);
    white-space: nowrap;
}

.membership__mark {
    width: 36px;
    height: 37px;
    object-fit: contain;
}

.membership__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.1875rem;
    padding: 2.5rem 1.5rem;
}

.membership__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 2.08px;
    text-transform: uppercase;
    color: var(--color-text);
}

.membership__body .section-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* =========================================================
   Featured Treatment Videos
   ========================================================= */
.videos {
    background: #f8f5f2;
    padding: clamp(3.5rem, 8vw, 7.5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 4vw, 4rem);
}

.videos__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    max-width: 720px;
    text-align: center;
}

.videos__intro {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1384px;
}

.video-card {
    background: var(--color-white);
    box-shadow: 0 12px 32px rgba(45, 45, 42, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.video-card__media {
    position: relative;
    height: 251px;
}

.video-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 42, 0.1);
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-card__play:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.06);
}

.video-card__play img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.video-card__duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
}

.video-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 28px;
}

.video-card__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    color: var(--color-text);
}

.video-card__desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
}

@media (max-width: 900px) {
    .videos__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
}

/* =========================================================
   Why Choose Solei
   ========================================================= */
.why-choose {
    display: flex;
    align-items: stretch;
    gap: clamp(2rem, 6vw, 88px);
    background: #f3ede6;
}

.why-choose__content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1.9375rem;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5.5rem) var(--gutter);
}

.why-choose__head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-choose__title {
    font-family: var(--font-serif);
    font-weight: 400;
    text-transform: capitalize;
    font-size: clamp(2.5rem, 4.2vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.16px;
    color: var(--color-text);
    margin: 0;
}

.why-choose__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.why-choose__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.why-choose__item {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.why-choose__icon {
    width: 34px;
    height: 40px;
    flex-shrink: 0;
}

.why-choose__media {
    flex: 1 1 50%;
    position: relative;
}

.why-choose__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(149, 120, 112, 0.2);
}

@media (max-width: 900px) {
    .why-choose {
        flex-direction: column-reverse;
        gap: 0;
    }

    .why-choose__content {
        padding: 2.5rem var(--gutter);
    }

    .why-choose__media {
        width: 100%;
    }

    .why-choose__media img {
        height: auto;
        max-height: 420px;
    }
}

/* =========================================================
   Contact — Begin Your Aesthetic Journey
   ========================================================= */
.contact {
    background: var(--color-white);
    padding: clamp(3.5rem, 8vw, 8.3125rem) var(--gutter);
}

.contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.contact__card {
    flex: 1 1 58%;
    background: #f3ede6;
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.contact__mark {
    width: 60px;
    height: auto;
}

.contact__title {
    margin: 0;
}

.contact__intro {
    max-width: 521px;
    margin: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    color: var(--color-muted);
}

.contact__form {
    width: 100%;
    max-width: 521px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0.5rem;
}

.contact__row {
    display: flex;
    gap: 14px;
}

.contact__form input,
.contact__form textarea {
    flex: 1;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(59, 43, 35, 0.6);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text);
    border-radius: 0;
}

.contact__form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: rgba(59, 43, 35, 0.6);
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact__submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

.contact__photo {
    flex: 1 1 42%;
    align-self: stretch;
    margin-left: -3rem;
}

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

@media (max-width: 900px) {
    .contact__inner {
        flex-direction: column;
    }

    .contact__photo {
        margin-left: 0;
        width: 100%;
        max-height: 360px;
        order: -1;
    }
}

@media (max-width: 520px) {
    .contact__row {
        flex-direction: column;
    }
}

/* =========================================================
   Solei Skin CTA banner
   ========================================================= */
.cta-banner {
    display: flex;
    justify-content: center;
    padding: clamp(3rem, 9vw, 8.875rem) var(--gutter);
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center bottom;
}

.cta-banner__card {
    width: 932px;
    max-width: 100%;
    min-height: 374px;
    background: rgba(243, 237, 230, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.1875rem;
    padding: clamp(2rem, 5vw, 3.5rem);
}

.cta-banner__lead {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.92px;
    color: var(--color-text);
}

.cta-banner__lead--accent {
    font-style: italic;
    color: var(--color-accent);
}

.cta-banner__text {
    max-width: 655px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-text);
}

/* =========================================================
   Instagram
   ========================================================= */
.instagram {
    background: var(--color-white);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.instagram__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 var(--gutter);
}

.instagram__label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: var(--color-text);
}

.instagram__icon {
    width: 24px;
    height: 24px;
}

.instagram__handle {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    color: var(--color-accent);
    text-decoration: underline;
}

.instagram__head .link-arrow__line {
    color: var(--color-accent);
}

.instagram__strip {
    display: flex;
    gap: 23px;
    width: 100%;
    padding: 0 var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
}

.instagram__strip::-webkit-scrollbar {
    display: none;
}

.instagram__tile {
    flex: 0 0 auto;
    width: 300px;
    height: 402px;
}

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

@media (max-width: 560px) {
    .instagram__tile {
        width: 240px;
        height: 322px;
    }
}

/* =========================================================
   Page intro (centered heading + text + CTA)
   ========================================================= */
.page-intro {
    background: var(--color-white);
    padding: clamp(3rem, 6vw, 5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
}

.page-intro__text {
    max-width: 1098px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

/* =========================================================
   Connect with us (contact page)
   ========================================================= */
.connect {
    display: flex;
    align-items: stretch;
    gap: clamp(2rem, 4vw, 48px);
    background: #f3ede6;
}

.connect__content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem) var(--gutter);
}

.connect__head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.connect__title {
    text-align: left;
}

.connect__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 580px;
}

.connect__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--divider);
}

.connect__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.connect__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    color: var(--color-text);
}

.connect__value {
    margin: 0;
    padding-left: 33px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.connect__media {
    flex: 1 1 50%;
}

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

@media (max-width: 900px) {
    .connect {
        flex-direction: column;
        gap: 0;
    }

    .connect__content {
        padding: 2.5rem var(--gutter);
    }

    .connect__media img {
        height: auto;
        max-height: 420px;
    }
}

/* =========================================================
   Reusable: feature list (icon + text rows)
   ========================================================= */
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    flex: 1;
}

.feature-list__item {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.feature-list__item img {
    width: 34px;
    height: 40px;
    flex-shrink: 0;
}

/* =========================================================
   Understanding Your Options (service)
   ========================================================= */
.options {
    background: var(--color-white);
    padding: clamp(3rem, 6vw, 6.25rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.options--alt {
    background: #faf7f3;
}

.options__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    max-width: 1066px;
    text-align: center;
}

.options__intro {
    max-width: 946px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.options__grid {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 1232px;
}

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

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

.option-card {
    background: #f3ede6;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.option-card__head {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--divider);
}

.option-card__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    color: var(--color-text);
    margin: 0;
}

.option-card__price {
    margin: 0;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.option-card__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.32px;
    color: var(--color-muted);
}

.option-card .btn {
    margin-top: auto;
}

/* =========================================================
   Why Should You Consider (service)
   ========================================================= */
.why-consider {
    background: #f8f5f2;
    padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.why-consider__intro {
    max-width: 1272px;
    margin: 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.36px;
    color: var(--color-muted);
}

.why-consider__cols {
    display: flex;
    gap: 72px;
    width: 100%;
    max-width: 1272px;
    margin-top: 1rem;
}

.why-consider__cols .feature-list {
    position: relative;
}

.why-consider__cols .feature-list:first-child::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--divider);
}

/* =========================================================
   Before & After Care (service)
   ========================================================= */
.care {
    background: #faf7f3;
    padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.care__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    max-width: 1066px;
    text-align: center;
}

.care__intro {
    max-width: 946px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-muted);
}

.care__cols {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1232px;
}

.care__col {
    flex: 1;
    background: var(--color-white);
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.care__col-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    margin: 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--divider);
}

/* =========================================================
   FAQ accordion (service)
   ========================================================= */
.faq {
    background: var(--color-white);
    padding: clamp(3rem, 6vw, 5rem) var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.faq__list {
    width: 100%;
    max-width: 1232px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: #faf7f3;
    padding: 1.5rem;
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--color-text);
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__toggle {
    position: relative;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
}

.faq__toggle::before,
.faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-accent);
}

.faq__toggle::before {
    width: 15px;
    height: 2px;
}

.faq__toggle::after {
    width: 2px;
    height: 15px;
}

.faq__item[open] .faq__toggle::after {
    display: none;
}

.faq__a {
    margin: 1rem 0 0;
    max-width: 764px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-muted);
}

@media (max-width: 900px) {
    .options__grid--2,
    .options__grid--3 {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .why-consider__cols,
    .care__cols {
        flex-direction: column;
        gap: 2.5rem;
    }

    .why-consider__cols .feature-list:first-child::after {
        display: none;
    }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: #f2eae3;
}

.site-footer__main {
    max-width: 1476px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    padding: clamp(2.5rem, 5vw, 3.75rem) var(--gutter);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand__logo {
    width: auto;
    height: 80px;
}

.footer-brand__social {
    display: flex;
    gap: 8px;
}

.footer-brand__social a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}

.footer-brand__social a:hover {
    opacity: 0.65;
}

.footer-brand__social img {
    width: 24px;
    height: 24px;
}

.footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 72px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.01;
    letter-spacing: -0.44px;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0;
}

.footer-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col__list a {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.28px;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.footer-col__list a:hover {
    color: var(--color-accent);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 245px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.28px;
    color: var(--color-muted);
}

.footer-contact img {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-col--newsletter {
    width: 287px;
    max-width: 100%;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.625rem 0.5rem;
    border: none;
    border-bottom: 2px solid #c0b6a9;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text);
}

.footer-newsletter input::placeholder {
    color: var(--color-muted);
}

.footer-newsletter input:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

.footer-newsletter .btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

.site-footer__bottom {
    border-top: 1px solid var(--color-accent);
    padding: 1rem var(--gutter);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.28px;
    color: var(--color-muted);
}

.site-footer__credit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-muted);
}

.site-footer__credit img {
    height: 19px;
    width: auto;
}

@media (max-width: 768px) {
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .site-nav__menu {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 90vh;
    }

    .hero::after {
        background:
            linear-gradient(180deg, var(--color-cream) 10%, rgba(242, 234, 227, 0.4) 60%, rgba(242, 234, 227, 0.1) 100%);
    }
}
