:root {
    --navy: #172636;
    --charcoal: #25313c;
    --teal: #5f9f95;
    --teal-dark: #3f7d75;
    --sage: #dce8df;
    --ivory: #fbf7ef;
    --beige: #efe7d8;
    --pale-blue: #edf5f6;
    --muted: #6e7b83;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(23, 38, 54, 0.12);
    --shadow-soft: 0 14px 36px rgba(23, 38, 54, 0.09);
    --radius-lg: 32px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
}

.section-pad {
    padding: 110px 0;
}

.section-pad-sm {
    padding: 82px 0;
}

.bg-ivory {
    background: var(--ivory);
}

.bg-muted {
    background: linear-gradient(135deg, var(--pale-blue), #f7f1e8);
}

.section-heading {
    max-width: 760px;
}

.section-heading p {
    font-size: 1.08rem;
    margin-top: 1rem;
}

.lead {
    font-size: 1.12rem;
    color: #53616b;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--teal-dark);
    background: rgba(95, 159, 149, 0.13);
    border: 1px solid rgba(95, 159, 149, 0.18);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.1rem;
}

.navbar {
    padding: 1rem 0;
    background: rgba(251, 247, 239, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 38, 54, 0.08);
    transition: all 0.25s ease;
}

.navbar.scrolled {
    padding: 0.55rem 0;
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    color: var(--navy);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--navy));
    font-size: 0.88rem;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 999px;
    padding: 0.55rem 0.78rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal-dark);
    background: rgba(95, 159, 149, 0.1);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 0.86rem 1.45rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border: 0;
    box-shadow: 0 16px 34px rgba(63, 125, 117, 0.26);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-dark), var(--navy));
    box-shadow: 0 18px 40px rgba(23, 38, 54, 0.22);
}

.btn-outline-dark {
    border-color: rgba(23, 38, 54, 0.18);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.45);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-primary-soft {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.65rem 1rem;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 155px;
    background:
        radial-gradient(circle at 8% 12%, rgba(95, 159, 149, 0.2), transparent 30%),
        linear-gradient(135deg, var(--ivory) 0%, #fffdf8 48%, #eaf4f2 100%);
}

.hero-copy {
    font-size: 1.18rem;
    max-width: 640px;
}

.jung-quote {
    max-width: 610px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(23, 38, 54, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(23, 38, 54, 0.07);
}

.jung-quote i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-size: 1.2rem;
}

.jung-quote p {
    margin: 0;
    color: var(--navy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.35;
}

.jung-quote span {
    display: block;
    color: var(--teal-dark);
    font-weight: 900;
    margin-top: 0.35rem;
}

.quote-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    max-width: 650px;
    margin-top: 0.85rem;
}

.quote-chips span {
    flex: 1 1 240px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    color: var(--charcoal);
    background: rgba(220, 232, 223, 0.72);
    border: 1px solid rgba(95, 159, 149, 0.18);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.72;
    pointer-events: none;
}

.hero-glow-one {
    width: 280px;
    height: 280px;
    background: rgba(95, 159, 149, 0.16);
    top: 14%;
    right: 8%;
}

.hero-glow-two {
    width: 210px;
    height: 210px;
    background: rgba(239, 231, 216, 0.8);
    bottom: 6%;
    left: 5%;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 680px;
}

.trust-strip div {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(23, 38, 54, 0.08);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 12px 28px rgba(23, 38, 54, 0.06);
}

.trust-strip strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
}

.trust-strip span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 42% 42% var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    border-radius: 42% 42% var(--radius-lg) var(--radius-lg);
    background: linear-gradient(180deg, transparent 54%, rgba(23, 38, 54, 0.22));
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    color: var(--navy);
    font-weight: 800;
    animation: floaty 5s ease-in-out infinite;
}

.floating-card i {
    color: var(--teal-dark);
}

.fc-one {
    top: 15%;
    left: -7%;
}

.fc-two {
    right: -5%;
    top: 48%;
    animation-delay: 1s;
}

.fc-three {
    left: 4%;
    bottom: 8%;
    animation-delay: 2s;
}

.hero-mini-gallery {
    position: absolute;
    right: 22px;
    bottom: -42px;
    display: flex;
    gap: 0.65rem;
    padding: 0.65rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.hero-mini-gallery img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 18px;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.process-card,
.service-card,
.pricing-card,
.step-card,
.testimonial-card,
.appointment-form,
.contact-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 38, 54, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.process-card,
.service-card,
.step-card {
    height: 100%;
    padding: 1.55rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover,
.service-card:hover,
.step-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.process-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--teal-dark);
    background: var(--sage);
    font-weight: 900;
}

.image-stack {
    position: relative;
    padding: 0 0 38px 38px;
}

.image-stack::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 78%;
    height: 78%;
    border-radius: var(--radius-lg);
    background: var(--sage);
    z-index: -1;
}

.rounded-main,
.rounded-support,
.contact-img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.rounded-main {
    width: 100%;
    height: 620px;
}

.rounded-support {
    width: 100%;
    height: 330px;
}

.contact-img {
    width: 100%;
    height: 230px;
}

.experience-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 190px;
    padding: 1.2rem;
    border-radius: 24px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}

.experience-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.experience-badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-grid div {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(23, 38, 54, 0.07);
    font-weight: 800;
}

.highlight-grid i,
.service-card i,
.step-card i {
    color: var(--teal-dark);
    font-size: 1.55rem;
}

.service-card i,
.step-card i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: rgba(95, 159, 149, 0.13);
}

.concerns-section {
    background: var(--navy);
}

.concerns-section h2,
.concerns-section p {
    color: var(--white);
}

.concerns-section p {
    color: rgba(255, 255, 255, 0.72);
}

.concern-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.concern-pills span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.8rem 1.05rem;
    font-weight: 800;
}

.approach-section {
    background: linear-gradient(180deg, #fffdf8, var(--ivory));
}

.timeline {
    position: relative;
    display: grid;
    gap: 1rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(95, 159, 149, 0.25);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
}

.timeline-item>span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    border: 8px solid #e6f0ed;
    z-index: 1;
}

.timeline-item div {
    background: #fff;
    border: 1px solid rgba(23, 38, 54, 0.07);
    border-radius: 20px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 10px 28px rgba(23, 38, 54, 0.06);
}

.timeline-item p {
    margin: 0;
}

.pricing-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.featured {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.03);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.8);
}

.popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--teal);
    color: var(--white);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 900;
}

.price {
    font-size: 2.15rem;
    color: var(--navy);
    font-weight: 900;
    margin: 1rem 0;
}

.price span {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 700;
}

.pricing-card ul {
    padding: 0;
    margin: 0 0 1.7rem;
    list-style: none;
}

.pricing-card li {
    margin-bottom: 0.65rem;
    color: var(--muted);
}

.pricing-card li::before {
    content: "✓";
    color: var(--teal-dark);
    font-weight: 900;
    margin-right: 0.55rem;
}

.pricing-note {
    color: var(--charcoal);
    font-weight: 700;
}

.process-section {
    background: #fffdf8;
}

.testimonial-card {
    padding: 1.7rem;
    height: 100%;
}

.testimonial-card blockquote {
    color: var(--navy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.testimonial-card figcaption {
    color: var(--teal-dark);
    font-weight: 800;
}

.testimonial-wide {
    background: var(--navy);
}

.testimonial-wide blockquote {
    color: var(--white);
}

.testimonial-wide figcaption {
    color: var(--sage);
}

.faq-accordion {
    max-width: 900px;
}

.accordion-item {
    border: 1px solid rgba(23, 38, 54, 0.08);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 26px rgba(23, 38, 54, 0.05);
}

.accordion-button {
    font-weight: 900;
    color: var(--navy);
    padding: 1.25rem 1.4rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(95, 159, 149, 0.13);
    color: var(--navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.18rem rgba(95, 159, 149, 0.22);
}

.contact-section {
    background: linear-gradient(135deg, #e8f2f0, #fbf7ef);
}

.contact-panel,
.appointment-form {
    padding: 2rem;
}

.contact-list {
    display: grid;
    gap: 0.85rem;
}

.contact-list a,
.contact-list span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal);
    font-weight: 800;
}

.contact-list i {
    color: var(--teal-dark);
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(23, 38, 54, 0.12);
    padding: 0.85rem 1rem;
    background-color: rgba(255, 255, 255, 0.82);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.18rem rgba(95, 159, 149, 0.18);
}

.form-label {
    font-weight: 800;
    color: var(--navy);
}

.form-note {
    font-size: 0.88rem;
    color: var(--muted);
}

.site-footer {
    background: #111d29;
    color: rgba(255, 255, 255, 0.78);
    padding: 72px 0 28px;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
    font-family: "Inter", sans-serif;
    letter-spacing: -0.02em;
}

.footer-brand {
    font-size: 1.45rem;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
    color: var(--sage);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.4rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--teal-dark);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.booking-modal .modal-content {
    border: 0;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #fffdf8, #edf5f6);
    box-shadow: var(--shadow);
}

.booking-modal .modal-header {
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 2rem 1.2rem;
    border-bottom: 1px solid rgba(23, 38, 54, 0.08);
}

.booking-modal .modal-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.booking-modal .modal-body {
    padding: 1.5rem 2rem 2rem;
}

.booking-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.booking-progress span {
    padding: 0.75rem;
    border-radius: 999px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 38, 54, 0.08);
}

.booking-progress span.active {
    color: var(--white);
    background: var(--navy);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: stepIn 0.28s ease;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.booking-options {
    display: grid;
    gap: 0.9rem;
}

.booking-options label,
.slot-grid label {
    cursor: pointer;
}

.booking-options input,
.slot-grid input {
    position: absolute;
    opacity: 0;
}

.booking-options span {
    display: block;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(23, 38, 54, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    transition: all 0.2s ease;
}

.booking-options small {
    display: block;
    color: var(--muted);
    margin-top: 0.25rem;
}

.booking-options input:checked+span,
.slot-grid input:checked+span {
    color: var(--white);
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    box-shadow: 0 14px 28px rgba(63, 125, 117, 0.22);
}

.booking-options input:checked+span small {
    color: rgba(255, 255, 255, 0.82);
}

.booking-side-card {
    height: 100%;
    padding: 1rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.booking-side-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.slot-grid span {
    display: block;
    padding: 1rem;
    text-align: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 38, 54, 0.1);
    font-weight: 900;
    transition: all 0.2s ease;
}

.availability-note,
.crisis-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(23, 38, 54, 0.06);
    color: var(--charcoal);
}

.booking-review {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.booking-review div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 38, 54, 0.08);
}

.booking-review span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.booking-review strong {
    color: var(--navy);
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.8rem;
}

.booking-success {
    text-align: center;
    padding: 3rem 1rem;
}

.booking-success i {
    color: var(--teal-dark);
    font-size: 4rem;
}

@media (max-width: 1199px) {
    .nav-link {
        font-size: 0.86rem;
        padding-inline: 0.55rem !important;
    }

    .hero-img {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 22px;
        box-shadow: var(--shadow-soft);
    }

    .hero-section {
        padding-top: 135px;
        text-align: center;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-inline: auto;
    }

    .hero-img {
        height: 540px;
    }

    .jung-quote {
        margin-inline: auto;
        text-align: left;
    }

    .quote-chips {
        margin-inline: auto;
    }

    .fc-one {
        left: 2%;
    }

    .fc-two {
        right: 2%;
    }

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

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 76px 0;
    }

    .section-pad-sm {
        padding: 62px 0;
    }

    .hero-section {
        min-height: auto;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-img,
    .rounded-main {
        height: 430px;
    }

    .floating-card {
        position: static;
        margin: 0.55rem auto 0;
        width: fit-content;
        animation: none;
    }

    .hero-mini-gallery {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }

    .booking-progress,
    .booking-review {
        grid-template-columns: 1fr;
    }

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

    .booking-actions {
        flex-direction: column;
    }

    .visual-overlay {
        display: none;
    }

    .image-stack {
        padding: 0 0 28px 18px;
    }

    .experience-badge {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: -44px;
    }

    .rounded-support {
        height: 250px;
    }

    .contact-panel,
    .appointment-form,
    .pricing-card {
        padding: 1.35rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 2.65rem;
    }

    .btn-lg {
        font-size: 0.98rem;
        padding-inline: 1rem;
    }

    .hero-img,
    .rounded-main {
        height: 360px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .navbar-brand {
        font-size: 0.98rem;
    }

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