/**
 * DERMAMEDIC Landing Luxe — champagne gold first, black used sparingly
 * as a bookend (hero / closing / footer), not as the default section fill.
 */

.dm-body {
    margin: 0;
    background: #050505;
    color: #e8e0d2;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-synthesis: none;
}

.dm-page {
    overflow-x: hidden;
}

.dm-page .dm-btn,
.dm-topbar .dm-btn,
.dm-landing-hero .dm-btn,
.dm-closing .dm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    background: #111;
    color: #f7f2e8;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, filter .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}

.dm-page .dm-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.dm-page .dm-btn-gold {
    background: linear-gradient(105deg, #5c3f28 0%, #F7CB8B 38%, #fff3d6 52%, #D4A574 70%, #7E5A3A 100%);
    color: #120c08;
    border-color: rgba(247, 203, 139, 0.35);
    box-shadow: 0 12px 36px rgba(126, 90, 58, 0.32);
}

.dm-page .dm-btn-gold:hover {
    filter: brightness(1.06);
    color: #0a0705;
}

.dm-page .dm-btn-ghost {
    background: transparent;
    border-color: rgba(247, 203, 139, 0.35);
    color: #F7CB8B;
}

.dm-page .dm-btn-ghost:hover {
    background: rgba(247, 203, 139, 0.06);
    border-color: #F7CB8B;
    color: #fff;
}

.dm-page .dm-script {
    font-family: 'Great Vibes', cursive;
    font-size: 44px;
    background: linear-gradient(105deg, #7E5A3A, #F7CB8B 45%, #fff3d6 55%, #D4A574);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.dm-page .dm-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 52px;
    line-height: 0.95;
    color: #f7f2e8;
    margin: 0;
    text-transform: uppercase;
}

.dm-page .dm-subtitle {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #9a9082;
    max-width: 34em;
    margin: 0;
}

.dm-page .dm-subtitle-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 38em;
}

.dm-page .dm-subtitle-tight {
    margin-top: 12px;
}

.dm-page .dm-em {
    color: #F7CB8B;
    font-weight: 600;
}

.dm-page .dm-rule {
    display: block;
    width: 96px;
    height: 2px;
    background: linear-gradient(105deg, #7E5A3A, #F7CB8B, #fff3d6, #D4A574, #7E5A3A);
    box-shadow: 0 0 14px rgba(247, 203, 139, 0.4);
    border: 0;
    margin: 14px 0 0;
}

.dm-page .dm-rule-center {
    margin-left: auto;
    margin-right: auto;
}

.dm-page .dm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* Topbar */
.dm-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 48px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease, padding .28s ease;
    animation: dm-fade-down 0.9s ease both;
}

.dm-topbar.is-solid {
    background: rgba(8, 6, 4, 0.92);
    border-bottom-color: rgba(247, 203, 139, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding-top: 14px;
    padding-bottom: 14px;
}

.dm-topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.dm-topbar-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(247, 203, 139, 0.2));
}

.dm-topbar-logo-mark {
    width: 48px;
    height: 48px;
    max-width: 48px;
}

.dm-topbar-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 203, 139, 0.88);
    white-space: nowrap;
}

.dm-topbar-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.dm-topbar-nav a {
    color: rgba(247, 203, 139, 0.78);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
}

.dm-topbar-nav a:hover {
    color: #F7CB8B;
    border-bottom-color: rgba(247, 203, 139, 0.7);
}

.dm-topbar-nav .dm-lang-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(247, 203, 139, 0.7);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
}

.dm-topbar-nav .dm-lang-link:hover {
    color: #F7CB8B;
    border-bottom-color: rgba(247, 203, 139, 0.7);
}

/* Compact topbar menu (native details) for narrow viewports */
.dm-topbar-menu {
    position: relative;
    display: none;
}

.dm-topbar-menu > summary {
    list-style: none;
    cursor: pointer;
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(247, 203, 139, 0.35);
    color: #F7CB8B;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dm-topbar-menu > summary::-webkit-details-marker {
    display: none;
}

.dm-topbar-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(10, 8, 5, 0.96);
    border: 1px solid rgba(247, 203, 139, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.dm-topbar-menu-panel a {
    color: rgba(247, 203, 139, 0.85);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.dm-topbar-menu-panel a:hover {
    color: #F7CB8B;
}

/* Hero */
.dm-landing-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: 0 48px 72px;
    background:
        radial-gradient(900px 520px at 78% 16%, rgba(247, 203, 139, 0.18), transparent 55%),
        radial-gradient(700px 420px at 10% 80%, rgba(25, 94, 95, 0.2), transparent 50%),
        linear-gradient(145deg, #050505 0%, #0a0f0f 42%, #050505 100%);
    color: #fff;
    overflow: hidden;
}

.dm-landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(247, 203, 139, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 203, 139, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.35;
    pointer-events: none;
}

.dm-landing-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F7CB8B, transparent);
    opacity: 0.55;
}

.dm-landing-hero-mark {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-48%);
    width: min(42vw, 480px);
    animation: dm-rise 1.2s ease 0.15s both;
    pointer-events: none;
}

.dm-landing-hero-mark img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 70px rgba(247, 203, 139, 0.22));
}

/* Editorial photo plane for hero (right-weighted on desktop) */
.dm-landing-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.dm-landing-hero-media picture,
.dm-landing-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
}

.dm-landing-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.45) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, transparent 28%, rgba(5, 5, 5, 0.72) 100%);
}

/* Light / clinical hero photos — keep subject visible, protect copy on the left */
.dm-landing-hero-light {
    background:
        radial-gradient(900px 520px at 78% 16%, rgba(247, 203, 139, 0.12), transparent 55%),
        linear-gradient(145deg, #0c0a08 0%, #12100c 50%, #0a0907 100%);
}

.dm-landing-hero-light::before {
    opacity: 0.12;
}

.dm-landing-hero-light .dm-landing-hero-media img,
.dm-landing-hero-light .dm-landing-hero-media picture {
    object-position: 78% center;
}

.dm-landing-hero-light .dm-landing-hero-media::after {
    /* Single coffee veil with a long horizontal mask — avoids a hard mid seam */
    background:
        linear-gradient(180deg, rgba(10, 8, 5, 0.22) 0%, transparent 38%, rgba(10, 8, 5, 0.38) 100%),
        rgba(10, 8, 5, 0.9);
    -webkit-mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 20%,
        rgba(0, 0, 0, 0.92) 32%,
        rgba(0, 0, 0, 0.7) 44%,
        rgba(0, 0, 0, 0.4) 56%,
        rgba(0, 0, 0, 0.16) 68%,
        rgba(0, 0, 0, 0.04) 80%,
        transparent 92%
    );
    mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 20%,
        rgba(0, 0, 0, 0.92) 32%,
        rgba(0, 0, 0, 0.7) 44%,
        rgba(0, 0, 0, 0.4) 56%,
        rgba(0, 0, 0, 0.16) 68%,
        rgba(0, 0, 0, 0.04) 80%,
        transparent 92%
    );
}

.dm-landing-hero-light .dm-landing-hero-title {
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.dm-landing-hero-light .dm-landing-hero-lead,
.dm-landing-hero-light .dm-note {
    color: rgba(247, 242, 232, 0.86);
}

.dm-landing-hero-light .dm-pill {
    background: rgba(8, 6, 4, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.dm-landing-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 580px;
    animation: dm-rise 1s ease both;
}

.dm-landing-hero-brand {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #F7CB8B;
}

.dm-landing-hero-title {
    margin: 0 0 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(54px, 8.4vw, 90px);
    line-height: 0.9;
    text-transform: uppercase;
    color: #f7f2e8;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.dm-landing-hero-lead {
    margin: 0 0 28px;
    max-width: 28em;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(232, 224, 210, 0.72);
}

.dm-landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dm-landing-scroll {
    position: absolute;
    left: 48px;
    bottom: 28px;
    z-index: 2;
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(247, 203, 139, 0.45);
    animation: dm-pulse 2.4s ease-in-out infinite;
}

/* Compact indicators / chips */
.dm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.dm-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(247, 203, 139, 0.28);
    background: rgba(5, 5, 5, 0.35);
    color: rgba(247, 203, 139, 0.88);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Soft note under a block */
.dm-note {
    margin: 22px 0 0;
    max-width: 40em;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(232, 224, 210, 0.58);
}

.dm-note-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Simple prose list */
.dm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.dm-subtitle + .dm-list {
    margin-top: 18px;
}

.dm-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(232, 224, 210, 0.78);
}

.dm-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 1px;
    background: #F7CB8B;
}

/* Cards */
.dm-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

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

.dm-card {
    padding: 28px 24px;
    border: 1px solid rgba(247, 203, 139, 0.2);
    background:
        linear-gradient(160deg, rgba(247, 203, 139, 0.08), transparent 55%),
        rgba(8, 6, 4, 0.45);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dm-card:hover {
    transform: translateY(-2px);
    border-color: rgba(247, 203, 139, 0.4);
}

.dm-card-title {
    margin: 0 0 10px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    color: #f7f2e8;
}

.dm-card-text {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #9a9082;
}

/* Highlight quote / pull statement */
.dm-pull {
    margin: 40px 0 0;
    max-width: 34em;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(247, 203, 139, 0.9);
    border-left: 2px solid rgba(247, 203, 139, 0.55);
    padding-left: 18px;
}

.dm-pull-center {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* FAQ accordion (native details) */
.dm-faq {
    border-top: 1px solid rgba(247, 203, 139, 0.24);
}

.dm-faq-item {
    border-bottom: 1px solid rgba(247, 203, 139, 0.2);
}

.dm-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #f7f2e8;
}

.dm-faq-item summary::-webkit-details-marker {
    display: none;
}

.dm-faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #F7CB8B;
    line-height: 1;
}

.dm-faq-item[open] summary::after {
    content: '–';
}

.dm-faq-a {
    margin: 0 0 22px;
    max-width: 42em;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #9a9082;
}

/* Institutional / contact meta */
.dm-info {
    margin: 28px auto 0;
    max-width: 36em;
    text-align: left;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(232, 224, 210, 0.68);
}

.dm-info p {
    margin: 0 0 14px;
}

.dm-info strong {
    color: #F7CB8B;
    font-weight: 600;
}

.dm-info a {
    color: rgba(247, 203, 139, 0.85);
    text-decoration: none;
}

.dm-info a:hover {
    color: #F7CB8B;
}

/* Lazy map frame */
.dm-map {
    margin-top: 28px;
    border: 1px solid rgba(247, 203, 139, 0.22);
    overflow: hidden;
    background: #0a0704;
    aspect-ratio: 16 / 9;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.dm-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.25) contrast(1.05);
}

/* Persistent floating action */
.dm-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
}

.dm-float .dm-btn {
    min-height: 48px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

/* Stack helper for reordering sections on narrow screens */
.dm-stack {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .dm-order-m-1 { order: 1; }
    .dm-order-m-2 { order: 2; }
    .dm-order-m-3 { order: 3; }
    .dm-order-m-4 { order: 4; }
    .dm-order-m-5 { order: 5; }
    .dm-order-m-6 { order: 6; }
    .dm-order-m-7 { order: 7; }
    .dm-order-m-8 { order: 8; }
}

/* Sections */
.dm-section {
    padding: 96px 48px;
}

.dm-section-narrow {
    max-width: 1120px;
    margin: 0 auto;
}

.dm-section-head {
    max-width: 540px;
    margin-bottom: 48px;
}

.dm-section-head-spaced {
    margin-top: 48px;
}

.dm-section-head .dm-title {
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 12px;
}

.dm-section-head .dm-subtitle {
    margin-top: 14px;
}

.dm-section-head .dm-subtitle + .dm-subtitle {
    margin-top: 12px;
}

.dm-actions-spaced {
    margin-top: 28px;
}

.dm-actions-center {
    justify-content: center;
}

.dm-section-white,
.dm-section-ivory {
    background:
        radial-gradient(760px 420px at 14% 0%, rgba(247, 203, 139, 0.13), transparent 55%),
        linear-gradient(165deg, #181109 0%, #0f0a05 55%, #070502 100%);
}

.dm-section-emerald {
    background:
        radial-gradient(900px 420px at 50% 0%, rgba(247, 203, 139, 0.16), transparent 55%),
        linear-gradient(150deg, #12100a 0%, #0a1414 55%, #070707 100%);
}

.dm-section-emerald .dm-subtitle {
    color: rgba(232, 224, 210, 0.65);
}

/* Gold-forward section — for the moments that should read as the
 * centerpiece of the page rather than another dark panel. */
.dm-section-gold {
    background:
        radial-gradient(1000px 480px at 50% -10%, rgba(247, 203, 139, 0.22), transparent 60%),
        linear-gradient(160deg, #2a1c0f 0%, #150e07 55%, #0a0705 100%);
}

.dm-section-gold .dm-subtitle {
    color: rgba(232, 224, 210, 0.75);
}

/*
 * Champagne / light-gold section — warm, luminous contrast against the
 * dark bookends. Does NOT alter .dm-btn-gold (buttons stay as-is).
 */
.dm-section-champagne {
    color: #2a2118;
    background:
        radial-gradient(920px 480px at 12% -8%, rgba(247, 203, 139, 0.55), transparent 58%),
        radial-gradient(760px 420px at 88% 110%, rgba(212, 165, 116, 0.28), transparent 55%),
        linear-gradient(165deg, #fff8ec 0%, #f3e4c8 42%, #ead4b0 100%);
}

.dm-section-champagne .dm-title {
    color: #1a120a;
}

/* Script on light surfaces: keep gold character, darker stop so it stays readable */
.dm-section-champagne .dm-script,
.dm-band-champagne .dm-script {
    background: linear-gradient(105deg, #5c3f28 0%, #8a6238 38%, #a67c4a 55%, #7E5A3A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Fallback if background-clip fails */
    text-shadow: none;
    filter: none;
}

.dm-section-champagne .dm-subtitle,
.dm-section-champagne .dm-note,
.dm-section-champagne .dm-card-text,
.dm-section-champagne .dm-ritual-text,
.dm-section-champagne .dm-faq-a,
.dm-section-champagne .dm-list li,
.dm-section-champagne .dm-treatment-text {
    color: #6b5846;
}

.dm-section-champagne .dm-card-title,
.dm-section-champagne .dm-ritual-title,
.dm-section-champagne .dm-treatment-name,
.dm-section-champagne .dm-faq-item summary {
    color: #1a120a;
}

.dm-section-champagne .dm-ritual-num,
.dm-section-champagne .dm-treatment-code,
.dm-section-champagne .dm-treatment-link,
.dm-section-champagne .dm-kicker,
.dm-section-champagne .dm-em {
    color: #8a6238;
}

.dm-section-champagne .dm-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 236, 0.55)),
        rgba(255, 255, 255, 0.55);
    border-color: rgba(126, 90, 58, 0.22);
    box-shadow: 0 14px 36px rgba(90, 60, 30, 0.08);
}

.dm-section-champagne .dm-card:hover {
    border-color: rgba(126, 90, 58, 0.4);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 243, 220, 0.7)),
        #fffaf1;
}

.dm-section-champagne .dm-pill {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(126, 90, 58, 0.28);
    color: #7a5530;
}

.dm-section-champagne .dm-ritual {
    border-top-color: rgba(126, 90, 58, 0.22);
    border-bottom-color: rgba(126, 90, 58, 0.22);
}

.dm-section-champagne .dm-ritual-item {
    border-right-color: rgba(126, 90, 58, 0.18);
}

.dm-section-champagne .dm-faq {
    border-top-color: rgba(126, 90, 58, 0.22);
}

.dm-section-champagne .dm-faq-item {
    border-bottom-color: rgba(126, 90, 58, 0.18);
}

.dm-section-champagne .dm-faq-item summary::after {
    color: #8a6238;
}

.dm-section-champagne .dm-list li::before {
    background: #8a6238;
}

.dm-section-champagne .dm-pull {
    color: #7a5530;
    border-left-color: rgba(126, 90, 58, 0.45);
}

.dm-section-champagne .dm-trust-list li {
    color: #7a5530;
    border-bottom-color: rgba(126, 90, 58, 0.22);
}

.dm-section-champagne .dm-btn-ghost {
    color: #7a5530;
    border-color: rgba(126, 90, 58, 0.4);
}

.dm-section-champagne .dm-btn-ghost:hover {
    background: rgba(247, 203, 139, 0.28);
    border-color: #8a6238;
    color: #1a120a;
}

@media (max-width: 900px) {
    .dm-section-champagne .dm-ritual-item {
        border-bottom-color: rgba(126, 90, 58, 0.14);
    }
}

/* Treatments */
.dm-treatments {
    display: grid;
    border-top: 1px solid rgba(247, 203, 139, 0.24);
}

.dm-treatment {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(247, 203, 139, 0.2);
    text-decoration: none;
    color: inherit;
    transition: padding-left .25s ease, background .25s ease;
}

.dm-treatment:hover {
    padding-left: 14px;
    background: linear-gradient(90deg, rgba(247, 203, 139, 0.16), transparent 60%);
}

.dm-treatment-code {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #F7CB8B;
}

.dm-treatment-name {
    margin: 0 0 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    color: #f7f2e8;
}

.dm-treatment-text {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #9a9082;
    max-width: 42em;
}

.dm-treatment-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #D4A574;
    white-space: nowrap;
}

/* Ritual */
.dm-ritual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border-top: 1px solid rgba(247, 203, 139, 0.24);
    border-bottom: 1px solid rgba(247, 203, 139, 0.24);
}

.dm-ritual-item {
    padding: 36px 28px;
    border-right: 1px solid rgba(247, 203, 139, 0.2);
}

.dm-ritual-item:last-child {
    border-right: 0;
}

.dm-ritual-num {
    display: block;
    margin-bottom: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: #F7CB8B;
}

.dm-ritual-title {
    margin: 0 0 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #f7f2e8;
}

.dm-ritual-text {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(232, 224, 210, 0.65);
}

/* Closing */
.dm-closing {
    text-align: center;
    padding: 120px 48px;
    background:
        radial-gradient(900px 420px at 50% 0%, rgba(247, 203, 139, 0.22), transparent 62%),
        linear-gradient(180deg, #0d0905 0%, #050505 100%);
}

.dm-closing .dm-script {
    font-size: 52px;
}

.dm-closing .dm-title {
    font-size: clamp(44px, 6vw, 72px);
    margin-bottom: 10px;
}

.dm-closing .dm-subtitle {
    margin: 16px auto 28px;
}

.dm-closing .dm-rule {
    margin: 0 auto 18px;
}

/* Footer */
.dm-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 48px;
    background: linear-gradient(180deg, #0a0704 0%, #060402 100%);
    border-top: 1px solid rgba(247, 203, 139, 0.28);
    color: rgba(232, 224, 210, 0.55);
    font-size: 11px;
    text-transform: uppercase;
}

.dm-footer strong {
    color: #F7CB8B;
    font-weight: 600;
}

.dm-footer a {
    color: rgba(247, 203, 139, 0.75);
    text-decoration: none;
}

.dm-footer a:hover {
    color: #F7CB8B;
}

@keyframes dm-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dm-fade-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dm-pulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.85;
    }
}

.dm-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

.dm-reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {

    .dm-topbar,
    .dm-landing-hero,
    .dm-section,
    .dm-closing,
    .dm-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .dm-topbar-nav a:not(.dm-btn) {
        display: none;
    }

    .dm-topbar-menu {
        display: block;
    }

    .dm-topbar:has(.dm-topbar-menu) .dm-topbar-nav {
        display: none;
    }

    .dm-topbar-tag {
        display: none;
    }

    .dm-landing-hero {
        align-items: flex-end;
        padding-top: 110px;
        padding-bottom: 72px;
        min-height: 92vh;
        min-height: 92dvh;
    }

    .dm-landing-hero-mark {
        right: -8%;
        top: 16%;
        width: 72vw;
        opacity: 0.2;
        transform: none;
    }

    .dm-landing-hero-media picture,
    .dm-landing-hero-media img {
        object-position: 60% center;
    }

    .dm-landing-hero-media::after {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.55) 40%, rgba(5, 5, 5, 0.92) 100%),
            linear-gradient(90deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.2));
    }

    .dm-landing-hero-light .dm-landing-hero-media img,
    .dm-landing-hero-light .dm-landing-hero-media picture {
        object-position: 70% center;
    }

    .dm-landing-hero-light .dm-landing-hero-media::after {
        background:
            linear-gradient(180deg, rgba(10, 8, 5, 0.18) 0%, rgba(10, 8, 5, 0.35) 45%, rgba(10, 8, 5, 0.9) 100%),
            rgba(10, 8, 5, 0.72);
        -webkit-mask-image: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            #000 78%,
            #000 100%
        );
        mask-image: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            #000 78%,
            #000 100%
        );
    }

    .dm-landing-scroll {
        display: none;
    }

    .dm-treatment {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dm-ritual {
        grid-template-columns: 1fr;
    }

    .dm-ritual-item {
        border-right: 0;
        border-bottom: 1px solid rgba(247, 203, 139, 0.14);
    }

    .dm-cards,
    .dm-cards-3,
    .dm-cards-4 {
        grid-template-columns: 1fr;
    }

    .dm-footer {
        flex-direction: column;
        text-align: center;
    }

    .dm-float {
        right: 16px;
        bottom: 16px;
    }

    .dm-info {
        text-align: center;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .dm-cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dm-topbar-nav {
        gap: 14px;
    }
}

/* Uppercase eyebrow (non-script) */
.dm-page .dm-kicker {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 203, 139, 0.82);
}

/* Compact horizontal band / strip */
.dm-band {
    padding: 56px 48px;
    background:
        radial-gradient(700px 280px at 50% 0%, rgba(247, 203, 139, 0.16), transparent 60%),
        linear-gradient(160deg, #1a120a 0%, #0a0705 100%);
    border-top: 1px solid rgba(247, 203, 139, 0.18);
    border-bottom: 1px solid rgba(247, 203, 139, 0.18);
}

/* Light champagne band — luminous strip without touching gold CTAs */
.dm-band-champagne {
    color: #2a2118;
    background:
        radial-gradient(820px 320px at 20% 0%, rgba(247, 203, 139, 0.5), transparent 60%),
        radial-gradient(640px 280px at 90% 100%, rgba(212, 165, 116, 0.32), transparent 55%),
        linear-gradient(165deg, #fff6e6 0%, #f0d9b0 55%, #e6c89a 100%);
    border-top: 1px solid rgba(126, 90, 58, 0.18);
    border-bottom: 1px solid rgba(126, 90, 58, 0.18);
}

.dm-band-champagne .dm-title {
    color: #1a120a;
}

.dm-band-champagne .dm-subtitle,
.dm-band-champagne .dm-note {
    color: #6b5846;
}

.dm-band-champagne .dm-btn-ghost {
    color: #7a5530;
    border-color: rgba(126, 90, 58, 0.4);
}

.dm-band-champagne .dm-btn-ghost:hover {
    background: rgba(247, 203, 139, 0.28);
    border-color: #8a6238;
    color: #1a120a;
}

.dm-band .dm-section-narrow {
    display: grid;
    gap: 18px;
    align-items: center;
}

.dm-band .dm-title {
    font-size: clamp(28px, 4vw, 40px);
}

.dm-band .dm-subtitle {
    max-width: 40em;
}

@media (min-width: 901px) {
    .dm-band .dm-section-narrow {
        grid-template-columns: 1.4fr auto;
        gap: 32px;
    }
}

/* Institutional trust chips */
.dm-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin: 22px 0 0;
    padding: 0;
}

.dm-trust-list li {
    list-style: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247, 203, 139, 0.85);
    padding: 8px 0;
    border-bottom: 1px solid rgba(247, 203, 139, 0.22);
}

/* Brand presentation stage */
.dm-brand-stage {
    position: relative;
    text-align: center;
    padding: 28px 12px 8px;
    isolation: isolate;
}

.dm-brand-stage-orbit {
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(520px, 86vw);
    height: min(520px, 86vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(247, 203, 139, 0.18), transparent 58%),
        radial-gradient(circle at 50% 50%, rgba(25, 94, 95, 0.12), transparent 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.dm-brand-stage-orbit::before,
.dm-brand-stage-orbit::after {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(247, 203, 139, 0.12);
}

.dm-brand-stage-orbit::after {
    inset: 24%;
    border-color: rgba(247, 203, 139, 0.08);
}

.dm-brand-stage-mark {
    position: relative;
    z-index: 1;
    width: min(168px, 42vw);
    height: auto;
    margin: 0 auto 18px;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(247, 203, 139, 0.22));
    opacity: 0;
    transform: translateY(16px) scale(0.96);
}

.dm-brand-stage-logo {
    position: relative;
    z-index: 1;
    width: min(260px, 64vw);
    height: auto;
    margin: 0 auto 14px;
    display: block;
    opacity: 0;
    transform: translateY(14px);
}

.dm-brand-stage-logo.dm-brand-stage-mark {
    width: min(280px, 68vw);
    filter: drop-shadow(0 22px 48px rgba(247, 203, 139, 0.24));
}

.dm-brand-stage-tag {
    position: relative;
    z-index: 1;
    margin: 4px 0 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 242, 232, 0.78);
    opacity: 0;
}

.dm-brand-stage .dm-rule,
.dm-brand-stage .dm-subtitle,
.dm-brand-stage .dm-note,
.dm-brand-stage .dm-pull {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
}

.dm-brand-stage.is-in .dm-brand-stage-mark {
    animation: dm-brand-mark 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dm-brand-stage.is-in .dm-brand-stage-logo:not(.dm-brand-stage-mark) {
    animation: dm-brand-fade 0.9s ease 0.28s both;
}

.dm-brand-stage.is-in .dm-brand-stage-tag {
    animation: dm-brand-fade 0.8s ease 0.45s both;
}

.dm-brand-stage.is-in .dm-rule {
    animation: dm-brand-fade 0.8s ease 0.55s both;
}

.dm-brand-stage.is-in .dm-subtitle,
.dm-brand-stage.is-in .dm-note,
.dm-brand-stage.is-in .dm-pull {
    animation: dm-brand-fade 0.85s ease 0.65s both;
}

.dm-brand-stage.is-in .dm-brand-stage-orbit {
    animation: dm-brand-glow 5.5s ease-in-out 0.4s infinite;
}

@keyframes dm-brand-mark {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
        filter: drop-shadow(0 8px 16px rgba(247, 203, 139, 0));
    }

    to {
        opacity: 1;
        transform: none;
        filter: drop-shadow(0 18px 40px rgba(247, 203, 139, 0.28));
    }
}

@keyframes dm-brand-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes dm-brand-glow {

    0%,
    100% {
        opacity: 0.42;
        transform: translate(-50%, -50%) scale(0.96);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {

    .dm-brand-stage-mark,
    .dm-brand-stage-logo,
    .dm-brand-stage-tag,
    .dm-brand-stage .dm-rule,
    .dm-brand-stage .dm-subtitle,
    .dm-brand-stage .dm-note,
    .dm-brand-stage .dm-pull {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .dm-brand-stage-orbit {
        animation: none !important;
        opacity: 0.5;
    }
}

.dm-card .dm-pills {
    margin-top: 18px;
}

.dm-card .dm-pill {
    min-height: 28px;
    font-size: 9px;
    background: rgba(5, 5, 5, 0.28);
}

@media (max-width: 900px) {
    .dm-band {
        padding: 44px 22px;
    }
}