:root {
    --site-bg: #000000;
    --site-border: rgba(255, 255, 255, 0.12);
    --site-border-strong: rgba(255, 255, 255, 0.22);
    --site-text: #ffffff;
    --site-text-muted: rgba(255, 255, 255, 0.72);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    background-color: var(--site-bg);
    color: var(--site-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
}

a {
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 100%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 100%),
        linear-gradient(180deg, #000000 0%, #060606 45%, #000000 100%);
    background-size: 220px 220px, 260px 260px, auto;
}

.site-header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--site-border);
    backdrop-filter: blur(10px);
}

nav.navbar.navbar-expand-lg.navbar-dark.py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.brand-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
}

.dropdown-menu-dark {
    background-color: #111111;
    border-color: var(--site-border);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown:hover > .nav-link {
        color: #ffffff;
    }
}

.hero-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.34)),
        url("../img/herobg.jpg") center / cover no-repeat;
    opacity: 1;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45) 112%);
    pointer-events: none;
}

.hero-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(3.25rem, 5vw, 4.75rem) 0;
}

.min-vh-lg-hero {
    min-height: 500px;
}

.hero-eyebrow {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.74);
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.82rem, 1.4vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.7rem, 5.8vw, 5.4rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.hero-strip {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 2.25rem;
}

.hero-strip__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-border-strong);
    color: #fff;
    font-size: 1.15rem;
}

.hero-copy {
    max-width: 620px;
    margin: 1.35rem auto 0;
    text-align: center;
    color: var(--site-text-muted);
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    line-height: 1.8;
}

.hero-actions {
    margin-top: 2rem;
    margin-bottom: 0;
}

.btn-outline-light {
    border-color: var(--site-border-strong);
}

.btn-outline-light:hover {
    color: #000;
}

.section-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--site-border);
    border-radius: 1.25rem;
}

.section-kicker {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.welcome-section {
    background: #ffffff;
    color: #101010;
}

.welcome-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.welcome-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: inherit;
    pointer-events: none;
}

.welcome-image-card img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.welcome-title {
    max-width: 720px;
    margin-bottom: 1.5rem;
    color: #050505;
    font-size: clamp(2.25rem, 4vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.welcome-content {
    display: grid;
    gap: 0.9rem;
    color: #343434;
    font-size: 1.04rem;
    line-height: 1.78;
}

.welcome-content p {
    margin: 0;
}

.appointment-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #050505 0%, #000000 100%);
    color: #ffffff;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.appointment-title {
    max-width: 680px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.appointment-content {
    display: grid;
    gap: 1rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.78;
}

.appointment-content p {
    margin: 0;
}

.appointment-content a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.appointment-image-card {
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--site-border);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.appointment-image-card img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.updates-section {
    background: #ffffff;
    color: #101010;
}

.updates-title {
    max-width: 760px;
    margin-bottom: 1.5rem;
    color: #050505;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.updates-list {
    display: grid;
    gap: 1rem;
}

.update-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.2rem;
    background: #fbfbfb;
}

.update-number {
    width: 2.65rem;
    height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #080808;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.update-item p {
    margin: 0;
    color: #343434;
    font-size: 1rem;
    line-height: 1.72;
}

.update-item a,
.updates-links a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.updates-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.updates-links a {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;
    text-decoration: none;
}

.updates-image-grid {
    display: grid;
    gap: 1rem;
}

.updates-image-grid img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
    border-radius: 1.35rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.updates-keywords {
    margin: 1rem 0 0;
    color: #5b5b5b;
    font-size: 0.92rem;
    line-height: 1.65;
}

.trust-strip {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(255, 255, 255, 0.04)),
        #050505;
    color: #ffffff;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.trust-title {
    max-width: 900px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.trust-content {
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--site-border);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.035);
}

.trust-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.78;
}

.trust-content strong {
    color: #ffffff;
}

.gallery-section {
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
        #050505;
    color: #ffffff;
}

.gallery-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    aspect-ratio: 1 / 1.18;
    cursor: zoom-in;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
    filter: contrast(1.08);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox.is-open {
    display: flex;
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
}

.pricing-section {
    background: #ffffff;
    color: #101010;
}

.pricing-title {
    max-width: 620px;
    margin-bottom: 1rem;
    color: #050505;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-lead {
    max-width: 520px;
    color: #3f3f3f;
    font-size: 1.08rem;
    line-height: 1.75;
}

.pricing-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.5rem;
    background: #fbfbfb;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.price-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 2rem;
    background: #050505;
    color: #ffffff;
}

.price-highlight span,
.price-highlight small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.price-highlight strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 600;
    line-height: 1;
}

.pricing-content {
    display: grid;
    gap: 1rem;
    padding: 2rem;
}

.pricing-content p {
    margin: 0;
    color: #343434;
    font-size: 1rem;
    line-height: 1.72;
}

.pricing-content a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.sterilization-section {
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #060606 0%, #000000 100%);
    color: #ffffff;
}

.sterilization-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.sterilization-lead {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.75;
}

.sterilization-card {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--site-border);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.sterilization-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.sterilization-card i {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
}

.sterilization-card h3 {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1.45rem;
}

.sterilization-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.safety-section {
    background: #ffffff;
    color: #101010;
}

.safety-title {
    max-width: 620px;
    margin-bottom: 1rem;
    color: #050505;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.safety-lead {
    max-width: 520px;
    color: #3f3f3f;
    font-size: 1.08rem;
    line-height: 1.75;
}

.safety-checklist {
    display: grid;
    gap: 0.85rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.5rem;
    background: #fbfbfb;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.safety-checklist p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    margin: 0;
    color: #343434;
    font-size: 1rem;
    line-height: 1.68;
}

.safety-checklist i {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    border-radius: 50%;
    background: #050505;
    color: #ffffff;
    font-size: 1rem;
}

.aftercare-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #050505 0%, #000000 100%);
    color: #ffffff;
}

.aftercare-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.aftercare-lead {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.75;
}

.aftercare-step {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--site-border);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.035);
}

.aftercare-step span {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.aftercare-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.72;
}

.aftercare-note {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--site-border);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.aftercare-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.76;
}

.ai-search-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.65;
}

.policy-section {
    background: #ffffff;
    color: #101010;
}

.policy-card {
    height: 100%;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 1.5rem;
}

.policy-card h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.policy-card ul {
    display: grid;
    gap: 0.9rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.policy-card li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.03rem;
    line-height: 1.65;
}

.policy-card li::before {
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "bootstrap-icons";
    font-size: 0.8rem;
}

.policy-card--no {
    background: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.policy-card--no li::before {
    content: "\f62a";
    background: #101010;
    color: #ffffff;
}

.policy-card--yes {
    background: #050505;
    border: 1px solid #050505;
    color: #ffffff;
}

.policy-card--yes li {
    color: rgba(255, 255, 255, 0.78);
}

.policy-card--yes li::before {
    content: "\f26e";
    background: #ffffff;
    color: #050505;
}

.appointment-cta-strip {
    background: #050505;
    color: #ffffff;
}

.appointment-cta-card {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid var(--site-border);
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.035);
}

.appointment-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.appointment-cta-card p:not(.section-kicker) {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.75;
}

.inking-section {
    background: #ffffff;
    color: #101010;
}

.inking-title {
    max-width: 620px;
    margin-bottom: 1rem;
    color: #050505;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.inking-lead {
    max-width: 520px;
    color: #3f3f3f;
    font-size: 1.08rem;
    line-height: 1.75;
}

.inking-links {
    display: grid;
    gap: 0.9rem;
}

.inking-links a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.1rem;
    background: #fbfbfb;
    color: #050505;
    font-weight: 700;
}

.inking-links a span {
    grid-column: 1 / -1;
    color: #5d5d5d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inking-links a i {
    transition: transform 0.24s ease;
}

.inking-links a:hover i {
    transform: translateX(4px);
}

.tattoo-artist-note {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: #050505;
    color: #ffffff;
}

.tattoo-artist-note h3 {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1.8rem;
}

.tattoo-artist-note p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.72;
}

.tattoo-artist-note a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.testimonials-section {
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.08), transparent 24%),
        #050505;
    color: #ffffff;
}

.testimonials-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.testimonial-card {
    height: 100%;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--site-border);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.035);
}

.testimonial-card--featured {
    background: rgba(255, 255, 255, 0.07);
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.76;
}

.testimonial-card p:last-of-type {
    margin-bottom: 1.25rem;
}

.testimonial-card h3 {
    margin: 0 0 0.25rem;
    color: #ffffff;
    font-size: 1.55rem;
}

.testimonial-card span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.appointment-form-section {
    background: #ffffff;
    color: #101010;
}

.appointment-form-section .consultation-card {
    background: #050505;
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.text-strip-section {
    background: #ffffff;
    color: #101010;
}

.text-strip-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.5rem;
    background: #fbfbfb;
}

.text-strip-card h2 {
    margin-bottom: 1rem;
    color: #050505;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.text-strip-card p:not(.section-kicker) {
    margin: 0 0 1rem;
    color: #3d3d3d;
    font-size: 1rem;
    line-height: 1.75;
}

.text-strip-card p:last-child {
    margin-bottom: 0;
}

.map-section {
    width: 100%;
    background: #000000;
}

.map-section iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

@media (max-width: 575.98px) {
    .map-section iframe {
        min-height: 360px;
    }
}

.consultation-card label {
    color: var(--site-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.consultation-card .form-control,
.consultation-card .form-select {
    background: #090909;
    border-color: var(--site-border);
    color: #fff;
}

.consultation-card .form-control:focus,
.consultation-card .form-select:focus {
    background: #090909;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
    color: #fff;
}

.consultation-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.site-footer {
    background: #050505;
    border-top: 1px solid var(--site-border);
}

.premium-footer {
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.05), transparent 26%),
        #050505;
}

.premium-footer__top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid var(--site-border);
}

.premium-footer__logo {
    width: 132px;
    height: auto;
    object-fit: contain;
}

.premium-footer__top h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.premium-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.premium-footer__grid--detailed {
    grid-template-columns: 1.2fr 1.2fr 1.35fr 1fr;
    gap: clamp(2rem, 4vw, 3.25rem);
}

.premium-footer__grid h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.premium-footer__grid p {
    max-width: 420px;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.premium-footer__blog-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.premium-footer__intro {
    margin-top: 0.5rem;
}

.working-days {
    display: grid;
    gap: 0.7rem;
    margin: 0;
}

.working-days div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.working-days dt,
.working-days dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.working-days dd {
    color: #ffffff;
    font-weight: 700;
}

.footer-link {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--site-text-muted);
}

.footer-link--strong {
    color: #ffffff;
    font-weight: 700;
    word-break: break-word;
}

.footer-link:hover {
    color: #fff;
}

.footer-icon {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    color: #fff;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.footer-icon:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.premium-footer__social {
    display: flex;
    gap: 0.65rem;
}

.premium-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--site-border);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-section::before {
        background-position: center;
    }

    .hero-frame {
        padding: 5rem 0 6.5rem;
    }

    .min-vh-lg-hero {
        min-height: auto;
    }

    .hero-strip {
        display: inline-flex;
    }

    .welcome-image-card img {
        min-height: 360px;
    }

    .appointment-image-card img {
        min-height: 360px;
    }

    .updates-image-grid img {
        min-height: 320px;
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .premium-footer__top,
    .premium-footer__grid {
        grid-template-columns: 1fr;
    }

    .premium-footer__top {
        align-items: start;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 120px;
        height: auto;
    }

    .hero-strip {
        gap: 0.75rem;
        font-size: 0.78rem;
        width: 100%;
        justify-content: center;
    }

    .hero-strip__icon {
        width: 34px;
        height: 34px;
    }

    .premium-footer__bottom {
        flex-direction: column;
    }
}
