*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: auto;
    line-height: 1.6;
    color: #1a1a2e;
    background: #fff1e3;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 2rem;
    padding-left: 3rem;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: #fff1e3;
    box-shadow: 0px 2px 12px rgb(185 194 158 / 65%);
}

.site-header.scrolled .main-nav a {
    color: #545e46;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: #3d4532;
}

.site-header.scrolled .btn-primary {
    background: #787c69;
    color: #f4f1e8;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.site-header.scrolled .btn-primary::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        #9cae81b0
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.site-header.scrolled .btn-primary:hover {
    background: #253d1e;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 61, 30, 0.4);
}

.site-header.scrolled .btn-primary:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.site-header.scrolled .btn-primary > * {
    position: relative;
    z-index: 1;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    position: relative;
}

.site-header .logo {
    flex-shrink: 0;
}

.site-header .btn-primary {
    flex-shrink: 0;
    min-width: 130px;
    text-align: center;
    background: #35452f;
    color: #faf1e6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-link {
    color: #545e46;
    transition: color 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.lang-link:hover {
    color: #3d4532;
    transform: scale(1.15);
}

.lang-link.active {
    color: #143d5b;
    text-decoration: underline;
}

.lang-separator {
    color: #95a77d;
    font-weight: 300;
}

.site-header.scrolled .lang-link {
    color: #545e46;
}

.site-header.scrolled .lang-link.active {
    color: #143d5b;
}

.site-header.scrolled .lang-separator {
    color: #95a77d;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% + 3.25rem));
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: auto;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #95a77d, #143d5b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-img {
    height: 4rem;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #545e46;
    display: inline-block;
}

.main-nav a:hover,
.main-nav a.active {
    color: #3d4532;
    transform: scale(1.15);
}

/* Mobile header & navigation */
.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu-drawer {
    display: none;
}

@media (max-width: 768px) {
    .site-header {
        --mobile-header-height: 4.25rem;
        padding: 0.4rem 1.25rem;
        background: #fff1e3;
        box-shadow: none;
    }

    .site-header.scrolled {
        background: #fff1e3;
        box-shadow: 0 2px 12px rgb(185 194 158 / 35%);
    }

    .site-header .container {
        gap: 0.75rem;
    }

    .site-header .logo {
        font-size: clamp(1.05rem, 4.2vw, 1.35rem);
        min-width: 0;
    }

    .site-header .logo-img {
        height: 2.75rem;
    }

    .site-header .lang-switcher,
    .site-header .main-nav,
    .site-header .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 2.75rem;
        height: 2.75rem;
        margin-left: auto;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        color: #35452f;
    }

    .mobile-menu-toggle__icon {
        position: relative;
        display: block;
        width: 1.35rem;
        height: 1rem;
    }

    .mobile-menu-toggle__line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 1px;
        background: currentColor;
        transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
    }

    .mobile-menu-toggle__line:nth-child(1) {
        top: 0;
    }

    .mobile-menu-toggle__line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-toggle__line:nth-child(3) {
        top: 100%;
        transform: translateY(-100%);
    }

    .site-header.is-mobile-menu-open .mobile-menu-toggle__line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .site-header.is-mobile-menu-open .mobile-menu-toggle__line:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-mobile-menu-open .mobile-menu-toggle__line:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: var(--mobile-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 110;
        background: rgba(35, 45, 32, 0.52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .site-header.is-mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--mobile-header-height);
        right: 0;
        bottom: 0;
        z-index: 120;
        width: 76vw;
        max-width: 340px;
        padding: 1.75rem 1.5rem 2rem;
        overflow-y: auto;
        background: #35452f;
        color: #f0ebe2;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    .site-header.is-mobile-menu-open .mobile-menu-drawer {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .mobile-menu-nav a {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.85rem 0;
        font-size: 1rem;
        font-weight: 500;
        color: #f0ebe2;
        transition: color 0.2s ease;
    }

    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:focus-visible {
        color: #faf6ef;
    }

    .mobile-menu-nav__icon {
        flex-shrink: 0;
        opacity: 0.92;
    }

    .mobile-menu-divider {
        height: 1px;
        margin: 1.25rem 0;
        background: rgba(240, 235, 226, 0.22);
    }

    .mobile-menu-booking {
        display: flex;
        justify-content: center;
    }

    .mobile-menu-booking__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.7rem 1.6rem;
        border-radius: 9999px;
        background: #f4f1e8;
        color: #35452f;
        font-size: 0.95rem;
        font-weight: 600;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-menu-booking__btn:hover,
    .mobile-menu-booking__btn:focus-visible {
        background: #faf6ef;
        color: #253d1e;
    }

    .mobile-menu-booking__icon {
        flex-shrink: 0;
    }

    .mobile-menu-languages {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .mobile-menu-languages__link {
        color: rgba(240, 235, 226, 0.78);
        transition: color 0.2s ease;
    }

    .mobile-menu-languages__link:hover,
    .mobile-menu-languages__link:focus-visible {
        color: #faf6ef;
    }

    .mobile-menu-languages__link.active {
        color: #faf6ef;
        text-decoration: underline;
    }

    .mobile-menu-languages__separator {
        color: rgba(240, 235, 226, 0.45);
        font-weight: 300;
    }
}

body.is-mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle__line,
    .mobile-menu-overlay,
    .mobile-menu-drawer {
        transition: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #9cae81b5;
    color: #000000;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(37, 61, 30, 0.4)
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover {
    background: #9cae81b5;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 61, 30, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid #1a1a2e;
    color: #1a1a2e;
}

.btn-outline:hover {
    background: #253d1e;
    color: #fff;
}

.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
}

/* Hero — Editorial */
.hero--editorial {
    position: relative;
    min-height: clamp(620px, 72vh, 760px);
    overflow: hidden;
    isolation: isolate;
    background: #e8e1d4;
}

.hero__background {
    position: absolute;
    z-index: -4;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__soft-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: inherit;
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(7rem, 11vw, 10rem);
}

.hero__copy {
    width: min(720px, 54%);
    margin-left: clamp(1rem, 3vw, 3rem);
}

.hero__copy h1 {
    margin: 0;
    color: #35452f;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.7rem, 5.8vw, 6.8rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.hero__copy h1 span {
    display: block;
}

.hero__divider {
    display: block;
    width: clamp(220px, 25vw, 330px);
    max-width: 100%;
    height: auto;
    margin: clamp(2rem, 4vw, 3rem) 0 1.5rem;
}

.hero__description {
    max-width: 570px;
    margin: 0;
    color: #4d514a;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
}

.hero__botanical {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 0;
    width: clamp(170px, 18vw, 330px);
    pointer-events: none;
}

.hero__bottom-curve {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: clamp(65px, 9vw, 125px);
    pointer-events: none;
}

.hero--editorial + .section-breathing-top {
    border-top: none;
}

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

    .hero__background {
        object-position: 60% center;
    }

    .hero__copy {
        width: min(620px, 66%);
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    .hero--editorial {
        min-height: 610px;
    }

    .hero__background {
        object-position: 67% center;
    }

    .hero__soft-overlay {
        width: 135%;
    }

    .hero__inner {
        align-items: flex-start;
        padding-top: 5rem;
        padding-bottom: 8rem;
    }

    .hero__copy {
        width: min(92%, 520px);
    }

    .hero__copy h1 {
        font-size: clamp(3rem, 13vw, 4.7rem);
    }

    .hero__description {
        max-width: 88%;
        font-size: 1rem;
    }

    .hero__botanical {
        width: 150px;
        opacity: .55;
    }
}

/* Section */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* About Section */
.section-breathing {
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.section-breathing-top {
    padding: 5rem 0 2rem;
    border-top: 1px solid #e5e7eb;
}

.section-full-text {
    padding: 0;
}

.container-full {
    max-width: 100%;
    padding: 0 3rem;
}

.about-grid {
    display: flex;
    align-items: flex-start;
    gap: 0rem;
}

.about-image {
    flex-shrink: 0;
    overflow: hidden;
    width: 30%;
    border-radius: 40px;
}

.about-content {
    flex: 1;
    padding-left: 54px;
}

.micro-caption {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #4a4f59;
    margin-bottom: 1.5rem;
}

.heading-editorial {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #4a4f59;
}

.about-description {
    color: #4a4f59;
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    color: #4a4f59;
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #95a77d;
}

.btn-about {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid #1a1a2e;
    color: #1a1a2e;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-about:hover {
    background: #253d1e;
    color: #fff;
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        padding-left: 0;
    }
}

/* Contact Page */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.contact-hero-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-hero-sub {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    font-size: 1.1rem;
    color: #1a1a2e;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: #95a77d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: none;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1px solid #d1d5db;
    border-radius: 1.75rem;
    font-size: 1rem;
    font-family: inherit;
    background: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #95a77d;
    box-shadow: 0 0 0 3px rgba(149, 167, 125, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: #9cae81b5;
    color: #000000;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-send::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(37, 61, 30, 0.4)
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.btn-send:hover {
    background: #9cae81b5;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 61, 30, 0.4);
}

.btn-send:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.btn-send > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.featured-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f9fafb;
    transition: transform 0.2s;
}

.featured-card:hover {
    transform: translateY(-4px);
}

.featured-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.featured-card-body {
    padding: 1.5rem;
}

.rating {
    font-size: 0.9rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.featured-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.featured-card-body .location {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenities li {
    background: #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
}

.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background: #f9fafb;
}

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.experience-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ========== Booking Page ========== */

.booking-page-shell {
    --booking-bg: #fff1e3;
    --booking-card: #fffdf9;
    --booking-heading: #1f2335;
    --booking-text: #535b66;
    --booking-muted: #7b8390;
    --booking-sage: #dfe5d3;
    --booking-sage-strong: #6f8153;
    --booking-sage-border: #a9b88e;
    --booking-accent: #d5b88e;
    --booking-shadow: rgba(77, 62, 42, 0.10);

    position: relative;
    background: var(--booking-bg);
    overflow-x: hidden;
}

.booking-page-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.booking-page-decoration--left {
    left: 0;
    bottom: 0;
    width: clamp(200px, 28vw, 430px);
    opacity: 0.75;
}

.booking-page-decoration--right {
    right: 0;
    top: 0;
    width: clamp(180px, 24vw, 410px);
    opacity: 0.85;
}

.booking-page {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 4rem;
    max-width: 1140px;
    margin: 0 auto;
}

.booking-page-header {
    text-align: center;
    margin-bottom: 1rem;
}

.booking-page-header h1 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--booking-heading);
    margin: 0;
}

.booking-page-subtitle {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 1.35;
    color: var(--booking-muted);
    margin-top: 20px;
    margin-bottom: 20px;
}

.booking-page-header__divider {
    display: block;
    width: clamp(210px, 22vw, 320px);
    margin: 0 auto 28px;
}

.booking-calendar-month {
    margin-bottom: 2rem;
}

.booking-calendar-nav {
    display: grid;
    grid-template-columns: 34px minmax(120px, auto) 34px;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    margin-bottom: 12px;
}

.booking-calendar-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(197, 161, 118, 0.38);
    background: rgba(255, 253, 249, 0.72);
    color: var(--booking-heading);
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
    line-height: 1;
}

.booking-calendar-nav-link:hover {
    border-color: rgba(197, 161, 118, 0.7);
    transform: translateY(-1px);
}

.booking-calendar-nav-link:focus-visible {
    outline: 2px solid var(--booking-sage-strong);
    outline-offset: 3px;
}

.booking-calendar-nav-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.booking-calendar-nav-disabled:hover {
    transform: none;
    border-color: rgba(197, 161, 118, 0.38);
}

.booking-calendar-month-name {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.32rem, 1.8vw, 1.8rem);
    font-weight: 500;
    color: var(--booking-heading);
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.booking-calendar {
    width: min(100%, 370px);
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    background: var(--booking-card);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 10px 24px var(--booking-shadow),
        0 2px 6px rgba(77, 62, 42, 0.04);
}

.booking-calendar thead {
    background: linear-gradient(
        90deg,
        rgba(223, 229, 211, 0.88),
        rgba(229, 232, 216, 0.78)
    );
}

.booking-calendar th {
    padding: 0;
    height: 32px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #43483e;
    letter-spacing: 0.04em;
}

.booking-calendar td {
    padding: 0;
    text-align: center;
    vertical-align: middle;
    height: 40px;
}

.booking-calendar-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.booking-calendar-day-empty {
    color: #9ca3af;
    cursor: default;
}

.booking-calendar-day-available {
    background: rgba(213, 224, 202, 0.72);
    color: #355f31;
}

.booking-calendar-day-available:hover {
    background: rgba(195, 211, 180, 0.92);
    transform: translateY(-1px);
}

.booking-calendar-day-available:focus-visible {
    outline: 2px solid var(--booking-sage-strong);
    outline-offset: 2px;
}

.booking-empty {
    text-align: center;
    color: var(--booking-muted);
    font-style: italic;
    font-size: 1rem;
    padding: 3rem 0;
}

.booking-day-group {
    margin-bottom: 2rem;
    text-align: center;
}

.booking-day-heading {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    font-weight: 600;
    color: var(--booking-heading);
    margin: 35px 0 18px;
}

.booking-slots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 16px;
    max-width: 700px;
    margin-inline: auto;
}

.booking-slot-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 22px;
    border: 1.5px solid var(--booking-sage-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--booking-heading);
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.booking-slot-link:hover {
    background: rgba(223, 229, 211, 0.5);
    border-color: var(--booking-sage-strong);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 62, 42, 0.08);
}

.booking-slot-link:focus-visible {
    outline: 2px solid var(--booking-sage-strong);
    outline-offset: 3px;
}

.booking-selected-info {
    margin: 0 auto 2rem;
    padding: 0;
    background: transparent;
    border-radius: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 480px;
    text-align: center;
}

.booking-selected-info p {
    margin: 0;
}

.booking-client-form {
    background: transparent;
    border-radius: 1rem;
    padding: 0 2rem 2rem;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.booking-form-field {
    margin-bottom: 1.25rem;
    text-align: left;
}

.booking-form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--booking-heading);
    padding-left: 0.75rem;
}

.booking-form-field input,
.booking-form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 1.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.booking-form-field input:focus,
.booking-form-field textarea:focus {
    outline: none;
    border-color: #95a77d;
    box-shadow: 0 0 0 3px rgba(149, 167, 125, 0.15);
}

.booking-form-field textarea {
    min-height: 80px;
    resize: vertical;
}

.booking-form-errors {
    color: #991b1b;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.booking-form-errors li {
    list-style: none;
}

.booking-submit-btn,
#public_booking_submit {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
    background: #9cae81b5;
    color: #000000;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.booking-submit-btn::before,
#public_booking_submit::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        #9cae81b0
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.booking-submit-btn:hover,
#public_booking_submit:hover {
    background: #253d1e;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 61, 30, 0.4);
}

.booking-submit-btn:hover::before,
#public_booking_submit:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.booking-submit-btn > *,
#public_booking_submit > * {
    position: relative;
    z-index: 1;
}

.booking-back-link {
    text-align: center;
}

.booking-back-link a {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.booking-back-link a:hover {
    text-decoration: underline;
}

/* ========== Booking Responsive ========== */

@media (max-width: 1100px) {
    .booking-page-decoration--left {
        width: clamp(150px, 20vw, 300px);
        opacity: 0.5;
    }

    .booking-page-decoration--right {
        width: clamp(140px, 18vw, 280px);
        opacity: 0.6;
    }
}

@media (max-width: 900px) {
    .booking-page {
        padding-top: 6rem;
    }
}

@media (max-width: 768px) {
    .booking-calendar-nav-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .booking-page-decoration--right {
        display: none;
    }

    .booking-page-decoration--left {
        width: 100px;
        opacity: 0.35;
    }

    .booking-client-form {
        padding: 1.5rem;
    }
}

@media (max-width: 620px) {
    .booking-page {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .booking-calendar th {
        height: 30px;
        font-size: 0.65rem;
    }

    .booking-calendar td {
        height: 36px;
    }

    .booking-calendar-day {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .booking-slots {
        gap: 10px;
    }

    .booking-page-decoration--left {
        display: none;
    }
}

@media (max-width: 380px) {
    .booking-calendar {
        border-radius: 10px;
    }

    .booking-calendar th {
        font-size: 0.55rem;
        height: 28px;
    }

    .booking-calendar td {
        height: 32px;
    }

    .booking-calendar-day {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
}

/* ========== Booking Form Page ========== */

.booking-page-shell--form {
    --booking-form-bg: #fff1e3;
    --booking-form-card: rgba(255, 253, 249, 0.88);
    --booking-form-heading: #202538;
    --booking-form-text: #343947;
    --booking-form-muted: #737a84;
    --booking-form-border: #d7dce1;
    --booking-form-input: #ffffff;
    --booking-form-sage: #9ba878;
    --booking-form-sage-dark: #718055;
    --booking-form-icon-bg: rgba(236, 235, 225, 0.78);
    --booking-form-gold: #c6a16e;
    --booking-form-error: #b65f55;
    --booking-form-shadow: rgba(78, 64, 45, 0.11);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--booking-form-bg);
}

.booking-form-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.booking-form-decoration--left {
    left: max(-45px, calc(50% - 590px));
    bottom: 120px;
    width: clamp(210px, 19vw, 320px);
    opacity: 0.72;
}

.booking-page-shell--form .booking-page {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 920px);
    margin-inline: auto;
    padding-top: clamp(34px, 5vw, 70px);
    padding-bottom: clamp(70px, 8vw, 120px);
}

.booking-page-shell--form .booking-page-header h1 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--booking-form-heading);
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
    margin-top: 34px;
}

.booking-form-heading-ornament {
    display: block;
    width: clamp(80px, 12vw, 130px);
    height: auto;
    margin: 10px auto 10px;
}

.booking-page-shell--form .booking-selected-info {
    display: grid;
    gap: 4px;
    margin: 0 auto clamp(16px, 2.5vw, 22px);
    text-align: center;
    color: var(--booking-form-text);
    max-width: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: inherit;
    line-height: inherit;
}

.booking-page-shell--form .booking-selected-info p {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.35;
}

.booking-page-shell--form .booking-selected-info strong {
    font-weight: 700;
}

.booking-page-shell--form .booking-client-form {
    width: min(100%, 760px);
    margin-inline: auto;
    padding: clamp(14px, 2vw, 22px) clamp(14px, 2.5vw, 24px);
    background: var(--booking-form-card);
    border: 1px solid rgba(199, 183, 158, 0.32);
    border-radius: 18px;
    box-shadow:
        0 14px 30px var(--booking-form-shadow),
        0 3px 10px rgba(78, 64, 45, 0.04);
    backdrop-filter: blur(2px);
}

.booking-page-shell--form .booking-form-field {
    margin-bottom: 12px;
    text-align: left;
}

.booking-form-field--with-icon {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.booking-form-field__icon {
    width: 44px;
    height: 44px;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--booking-form-icon-bg);
    flex-shrink: 0;
}

.booking-form-field__icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.booking-form-field__content {
    min-width: 0;
}

.booking-page-shell--form .booking-form-field label {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--booking-form-heading);
    margin-bottom: 5px;
    padding-left: 0;
}

label.required::after {
    content: " *";
    color: var(--booking-form-error);
}

.booking-page-shell--form .booking-form-field input,
.booking-page-shell--form .booking-form-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 8px 14px;
    border: 1.5px solid var(--booking-form-border);
    border-radius: 999px;
    background: var(--booking-form-input);
    color: var(--booking-form-text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(48, 52, 59, 0.025);
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-page-shell--form .booking-form-field input:focus,
.booking-page-shell--form .booking-form-field textarea:focus {
    border-color: var(--booking-form-sage);
    box-shadow:
        0 0 0 3px rgba(155, 168, 120, 0.17),
        inset 0 1px 2px rgba(48, 52, 59, 0.025);
}

.booking-page-shell--form .booking-form-field input.error,
.booking-page-shell--form .booking-form-field textarea.error {
    border-color: var(--booking-form-error);
}

.booking-page-shell--form .booking-form-field input::placeholder,
.booking-page-shell--form .booking-form-field textarea::placeholder {
    color: #969ca3;
    opacity: 1;
}

.booking-page-shell--form .booking-form-field textarea {
    min-height: 90px;
    padding: 10px 14px;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    resize: vertical;
}

.booking-page-shell--form .booking-form-errors {
    margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    line-height: 1.3;
    color: var(--booking-form-error);
}

.booking-page-shell--form .booking-form-errors ul,
.booking-page-shell--form .booking-form-errors li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-page-shell--form .booking-submit-btn,
.booking-page-shell--form #public_booking_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 300px);
    min-height: 46px;
    margin: 2px auto 0;
    padding: 9px 22px;
    border: 0;
    border-radius: 999px;
    background: #787c69;
    color: #f4f1e8;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.booking-page-shell--form .booking-submit-btn::before,
.booking-page-shell--form #public_booking_submit::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        #9cae81b0
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.booking-page-shell--form .booking-submit-btn:hover,
.booking-page-shell--form #public_booking_submit:hover {
    background: #253d1e;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 61, 30, 0.4);
}

.booking-page-shell--form .booking-submit-btn:hover::before,
.booking-page-shell--form #public_booking_submit:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.booking-page-shell--form .booking-submit-btn:active,
.booking-page-shell--form #public_booking_submit:active {
    transform: translateY(0);
}

.booking-page-shell--form .booking-submit-btn:focus-visible,
.booking-page-shell--form #public_booking_submit:focus-visible {
    outline: 3px solid rgba(113, 128, 85, 0.38);
    outline-offset: 3px;
}

.booking-page-shell--form .booking-submit-btn > *,
.booking-page-shell--form #public_booking_submit > * {
    position: relative;
    z-index: 1;
}

.booking-page-shell--form .booking-back-link {
    margin: 14px 0 0;
    text-align: center;
}

.booking-page-shell--form .booking-back-link a {
    color: var(--booking-form-heading);
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.booking-page-shell--form .booking-back-link a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Form Page Responsive */

@media (max-width: 768px) {
    .booking-form-field--with-icon {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
    }

    .booking-form-field__icon {
        width: 36px;
        height: 36px;
        margin-top: 26px;
    }

    .booking-form-field__icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 620px) {
    .booking-form-decoration--left {
        opacity: 0.35;
        width: 100px;
        bottom: 50px;
    }
}

@media (max-width: 480px) {
    .booking-page-shell--form .booking-page-header h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .booking-form-field--with-icon {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 8px;
    }

    .booking-form-field__icon {
        width: 32px;
        height: 32px;
        margin-top: 22px;
    }

    .booking-form-field__icon img {
        width: 16px;
        height: 16px;
    }

    .booking-page-shell--form .booking-client-form {
        padding: 12px 12px;
        border-radius: 14px;
    }

    .booking-form-decoration--left {
        display: none;
    }
}

/* ========== Booking Success Page ========== */

.booking-page-shell--success {
    --booking-success-bg: #fff1e3;
    --booking-success-heading: #202538;
    --booking-success-subtitle: #71808c;
    --booking-success-sage: #89976d;
    --booking-success-sage-dark: #6e7d58;
    --booking-success-cream: #fff8ed;
    --booking-success-gold: #c8a15a;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--booking-success-bg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-success-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.booking-success-decoration--watercolor-top-left {
    top: -40px;
    left: -45px;
    width: clamp(175px, 19vw, 285px);
}

.booking-success-decoration--watercolor-bottom-right {
    right: -50px;
    bottom: -50px;
    width: clamp(215px, 22.5vw, 350px);
}

.booking-success-decoration--botanical-left {
    left: -19px;
    bottom: -22px;
    width: clamp(115px, 12vw, 185px);
}

.booking-success-decoration--botanical-right {
    right: -14px;
    top: -23px;
    width: clamp(125px, 13.5vw, 200px);
}

.booking-page-shell--success .booking-success {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(9px, 1vw, 14px);
}

.booking-page-shell--success .booking-page.booking-success {
    padding-bottom: 8rem;
    padding-top: 10rem;
}

.booking-success__content {
    width: min(100%, 540px);
    margin-inline: auto;
    text-align: center;
}

.booking-success__emblem {
    display: block;
    width: clamp(170px, 18.7vw, 260px);
    height: auto;
    margin: 0 auto clamp(10px, 1.5vw, 18px);
}

.booking-page-shell--success .booking-page-header h1 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3vw, 2.85rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--booking-success-heading);
    text-align: center;
    max-width: 575px;
    margin-inline: auto;
    margin: 0;
    text-wrap: balance;
}

.booking-success__divider {
    display: block;
    width: clamp(105px, 11.5vw, 160px);
    height: auto;
    margin: clamp(12px, 1.5vw, 19px) auto clamp(9px, 1.25vw, 15px);
}

.booking-page-shell--success .booking-page-subtitle {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(0.8rem, 1.35vw, 1.175rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--booking-success-subtitle);
    margin: 0;
    text-align: center;
}

.booking-success__actions {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: clamp(20px, 2.5vw, 32px);
}

.booking-success__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 300px);
    min-height: 46px;
    padding: 9px 22px;
    border-radius: 999px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.booking-success__button--primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fffdf8;
    background: linear-gradient(90deg, #89976d, #99a57d);
    border: 1.5px solid transparent;
    box-shadow: 0 5px 12px rgba(110, 125, 88, 0.18);
}

.booking-success__button--primary::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(37, 61, 30, 0.4)
    );
    transform: rotate(-45deg);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.booking-success__button--primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(110, 125, 88, 0.4);
}

.booking-success__button--primary:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.booking-success__button--primary > * {
    position: relative;
    z-index: 1;
}

.booking-success__button--secondary {
    color: var(--booking-success-sage);
    background: rgba(255, 248, 237, 0.55);
    border: 1.5px solid var(--booking-success-sage);
    box-shadow: none;
}

.booking-success__button--secondary:hover {
    background: rgba(137, 151, 109, 0.08);
    transform: translateY(-1px);
}

.booking-success__button:focus-visible {
    outline: 3px solid rgba(110, 125, 88, 0.35);
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .booking-success-decoration--botanical-right {
        width: clamp(90px, 10vw, 140px);
    }

    .booking-success-decoration--botanical-left {
        width: clamp(80px, 9vw, 130px);
    }
}

@media (max-width: 720px) {
    .booking-page-shell--success .booking-page-header h1 {
        font-size: clamp(1.4rem, 3.5vw, 1.75rem);
    }

    .booking-success__emblem {
        width: clamp(120px, 17.3vw, 150px);
    }

    .booking-page-shell--success .booking-page-subtitle {
        font-size: clamp(0.7rem, 1.5vw, 0.875rem);
    }

    .booking-success-decoration--botanical-right {
        display: none;
    }

    .booking-success-decoration--botanical-left {
        width: 70px;
        opacity: 0.6;
    }

    .booking-success-decoration--watercolor-top-left {
        width: clamp(125px, 15vw, 200px);
        top: -30px;
        left: -30px;
    }

    .booking-success-decoration--watercolor-bottom-right {
        width: clamp(150px, 17.5vw, 250px);
        right: -35px;
        bottom: -35px;
    }
}

@media (max-width: 480px) {
    .booking-success__actions {
        gap: 8px;
        margin-top: 16px;
    }

    .booking-success__button {
        min-height: 46px;
        padding: 9px 22px;
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .booking-success-decoration--botanical-left {
        display: none;
    }

    .booking-success-decoration--watercolor-top-left {
        opacity: 0.5;
    }

    .booking-success-decoration--watercolor-bottom-right {
        opacity: 0.5;
    }
}

/* Footer */
.site-footer {
    --footer-bg: #787c69;
    --footer-text: #f4f1e8;
    --footer-muted: rgba(244, 241, 232, 0.82);
    --footer-divider: rgba(244, 241, 232, 0.28);

    position: relative;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: clamp(16px, 2vw, 28px) 0;
}

.footer-layout {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(280px, 0.95fr)
        1px
        minmax(240px, 0.85fr);
    gap: 0;
    align-items: center;
}

.footer-brand__name {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.3rem, 3vw, 3.6rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--footer-text);
    text-decoration: none;
}

.footer-brand__subtitle {
    margin: 0.5rem 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--footer-muted);
}

.footer-brand__statement {
    margin: 1.2rem 0 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--footer-muted);
}

.footer-heading {
    margin: 0 0 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--footer-muted);
    text-transform: uppercase;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--footer-text);
    text-decoration: none;
}

.footer-contact-row:last-child {
    margin-bottom: 0;
}

.footer-contact-row img {
    display: block;
    width: 28px;
    height: 28px;
    margin-top: 1px;
}

.footer-contact-row a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-contact-row a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.footer-contact-row a:focus-visible {
    outline: 2px solid var(--footer-text);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-contact-row span {
    display: inline;
}

.footer-divider {
    width: 1px;
    height: 150px;
    background: var(--footer-divider);
    justify-self: center;
}

.footer-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--footer-text);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-instagram-link:hover {
    opacity: 0.75;
}

.footer-instagram-link:focus-visible {
    outline: 2px solid var(--footer-text);
    outline-offset: 2px;
    border-radius: 4px;
}

.footer-instagram-link img {
    display: block;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-instagram-copy {
    display: flex;
    flex-direction: column;
}

.footer-instagram-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.footer-instagram-handle {
    font-size: 0.82rem;
    color: var(--footer-muted);
    line-height: 1.3;
}

.footer-social {
    padding-left: 2rem;
}

.footer-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    width: clamp(150px, 16vw, 220px);
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
}

.footer-decoration img {
    display: block;
    width: 100%;
    height: 120%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.5;
}

@media (max-width: 1100px) {
    .footer-layout {
        grid-template-columns:
            minmax(240px, 1.2fr)
            minmax(240px, 1fr)
            1px
            minmax(200px, 0.8fr);
    }

    .footer-decoration img {
        width: clamp(100px, 12vw, 160px);
    }
}

@media (max-width: 900px) {
    .footer-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
    }

    .footer-divider {
        display: none;
    }

    .footer-decoration img {
        width: 130px;
    }
}

@media (max-width: 620px) {
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-decoration {
        display: none;
    }
}



.flash {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.flash-success {
    background: #f0fdf4;
    color: #166534;
}

.flash-error {
    background: #fef2f2;
    color: #991b1b;
}

.flash-info {
    background: #eff6ff;
    color: #1e40af;
}

/* Consultation Topics */
.consultation-topics {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.72), transparent 52%),
        #f7f2e9;
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 8vw, 7.5rem);
}

.consultation-topics__inner {
    position: relative;
    z-index: 1;
}

.consultation-topics__header {
    max-width: 850px;
    margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
    text-align: center;
}

.consultation-topics__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1rem;
    color: #737b67;
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
}

.consultation-topics__eyebrow img {
    width: 70px;
    height: auto;
}

.consultation-topics__header h2 {
    margin: 0;
    color: #35452f;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.7rem, 5.8vw, 6.8rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.035em;
}

.consultation-topics__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}

.consultation-topic {
    position: relative;
    padding: 0 clamp(1rem, 2vw, 2rem);
    text-align: center;
}

.consultation-topic:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 0;
    bottom: .5rem;
    border-right: 1px dashed rgba(157, 143, 111, .34);
}

.consultation-topic__icon {
    display: block;
    width: clamp(3.3rem, 4vw, 4.7rem);
    height: clamp(3.3rem, 4vw, 4.7rem);
    margin: 0 auto 1.6rem;
}

.consultation-topic h3 {
    margin: 0 0 .8rem;
    color: #31352d;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.08rem, 1.35vw, 1.35rem);
    font-weight: 400;
    line-height: 1.2;
}

.consultation-topic p {
    max-width: 220px;
    margin: 0 auto;
    color: #62655d;
    font-size: .95rem;
    line-height: 1.65;
}

.consultation-topics__decoration {
    position: absolute;
    z-index: 10;
    top: -3rem;
    right: -1rem;
    width: clamp(180px, 18vw, 330px);
    height: auto;
    pointer-events: none;
    opacity: .65;
}

@media (max-width: 1100px) {
    .consultation-topics__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }

    .consultation-topic::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .consultation-topics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .consultation-topics__decoration {
        width: 100px;
        opacity: .4;
    }
}

@media (max-width: 520px) {
    .consultation-topics__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consultation-topic {
        padding: 1.5rem 1rem;
    }

    .consultation-topic:not(:last-child) {
        border-bottom: 1px dashed rgba(157, 143, 111, .34);
    }

    .consultation-topic::after {
        display: none;
    }

    .consultation-topics__decoration {
        display: none;
    }

    .consultation-topic p {
        max-width: none;
    }
}

/* About Section — Editorial Redesign */
.about-editorial {
    --about-bg: #fff1e3;
    --about-heading: #414953;
    --about-text: #4f5661;
    --about-accent: #c5a176;
    --about-divider: #d0ae83;
    --about-badge: #c7a27a;

    background: var(--about-bg);
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 8vw, 7rem);
    border-top: none;
}

.about-editorial .about-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: clamp(48px, 5vw, 100px);
    align-items: start;
}

.about-editorial .about-image {
    position: relative;
    width: 100%;
    overflow: visible;
    flex-shrink: 0;
    border-radius: 0;
}

.about-editorial .about-image__frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 4rem;
    border-radius: clamp(50px, 5vw, 70px);
    border: 2px solid rgba(197, 161, 118, .35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.about-editorial .about-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 46% 30%;
    aspect-ratio: 4 / 5;
}

.about-editorial .about-image__botanical {
    position: absolute;
    z-index: 2;
    left: -10%;
    bottom: 0;
    height: 115%;
    width: auto;
    pointer-events: none;
}

.about-editorial .about-content {
    flex: none;
    padding-left: 0;
}

.about-editorial .about-content__heading {
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.about-editorial .micro-caption {
    margin-bottom: 1rem;
    color: var(--about-accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.about-editorial .about-content__eyebrow-ornament {
    display: block;
    width: clamp(130px, 14vw, 170px);
    height: auto;
    margin-bottom: 1.25rem;
}

.about-editorial .heading-editorial {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(3.1rem, 5vw, 5.8rem);
    line-height: .98;
    letter-spacing: -.03em;
    color: var(--about-heading);
}

.about-editorial .about-introduction {
    display: flex;
    gap: clamp(1rem, 1.8vw, 2rem);
    align-items: flex-start;
}

.about-editorial .about-introduction__quote {
    flex-shrink: 0;
    width: clamp(28px, 3vw, 44px);
    height: auto;
    margin-top: .25rem;
}

.about-editorial .about-introduction .about-description {
    flex: 1;
    max-width: 70ch;
    margin: 0;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.75;
    color: var(--about-text);
}

.about-editorial .about-content__divider {
    display: block;
    width: 100%;
    height: auto;
    margin: clamp(1.2rem, 0.5vw, 0.5rem) 0;
}

.about-editorial .about-competence {
    display: flex;
    gap: clamp(1rem, 2vw, 2.2rem);
    align-items: flex-start;
}

.about-editorial .about-competence .about-description {
    flex: 1;
    max-width: 82ch;
    margin: 0;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.75;
    color: var(--about-text);
}

.about-editorial .about-competence .about-description strong {
    font-weight: 700;
    color: var(--about-heading);
}

@media (max-width: 820px) {
    .about-editorial .about-grid {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 5vw, 4rem);
    }

    .about-editorial .about-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-editorial .about-content__heading {
        text-align: center;
    }

    .about-editorial .about-content__eyebrow-ornament {
        margin-left: auto;
        margin-right: auto;
    }

    .about-editorial .about-introduction {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-editorial .about-introduction__quote {
        margin-bottom: .5rem;
    }

    .about-editorial .about-introduction .about-description {
        max-width: none;
    }

    .about-editorial .about-competence {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-editorial .about-competence .about-description {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .about-editorial .about-image__botanical {
        width: 110px;
    }

    .about-editorial .heading-editorial {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

}

.consultation-info-page {
    --consultation-page-bg: #fff8ed;
    --consultation-panel-bg: rgba(255, 253, 248, 0.96);
    --consultation-heading: #304126;
    --consultation-text: #30343b;
    --consultation-body-font: 'Cormorant Garamond', serif;
    --consultation-body-size: clamp(1.1rem, 1.5vw, 1.35rem);
    --consultation-body-weight: 400;
    --consultation-body-line-height: 1.3;
    --consultation-body-color: var(--consultation-text);
    --consultation-muted: #60666b;
    --consultation-gold: #c7a05b;
    --consultation-sage: #758267;
    --consultation-soft-sage: #eef0e5;
    --consultation-soft-gold: #f6eedf;
    --consultation-border: rgba(199, 160, 91, 0.72);
    --consultation-inner-border: rgba(181, 172, 144, 0.42);
    --consultation-shadow: rgba(73, 61, 43, 0.12);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--consultation-page-bg);
    padding:
        clamp(80px, 9vw, 130px)
        0
        clamp(38px, 4.2vw, 66px);
}

.consultation-info-page__botanical {
    position: absolute;
    z-index: 1;
    width: clamp(114px, 12vw, 186px);
    height: auto;
    pointer-events: none;
    user-select: none;
}

.consultation-info-page__botanical--left {
    left: -27px;
    top: 114px;
}

.consultation-info-page__botanical--right {
    right: -27px;
    bottom: 138px;
}

.consultation-info-stack {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 24px), 810px);
    margin-inline: auto;
}

.consultation-info-header {
    text-align: center;
    margin-bottom: clamp(14px, 2vw, 22px);
}

.consultation-info {
    position: relative;
    padding:
        clamp(18px, 2.4vw, 32px)
        clamp(14px, 3vw, 40px)
        clamp(22px, 2.4vw, 34px);
    background: var(--consultation-panel-bg);
    border: 1px solid var(--consultation-border);
    border-radius: 58px;
    box-shadow:
        0 12px 30px var(--consultation-shadow),
        0 2px 6px rgba(73, 61, 43, 0.04);
}

.consultation-info__heading {
    margin: 0;
    color: var(--consultation-heading);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 4.8vw, 4.25rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-align: center;
}

.consultation-info__heading-divider {
    display: block;
    width: clamp(140px, 17vw, 200px);
    margin: 12px auto 0;
    height: auto;
}

.consultation-intro {
    display: grid;
    gap: clamp(6px, 0.8vw, 10px);
    margin-bottom: clamp(18px, 2.5vw, 28px);
    padding-top: clamp(12px, 2vw, 22px);
}

.consultation-intro__row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.consultation-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(238, 240, 229, 0.92);
    border: 1px solid rgba(117, 130, 103, 0.25);
    border-radius: 162px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-icon-badge__icon {
    width: clamp(22px, 2.4vw, 26px);
    height: auto;
}

.consultation-info__body {
    font-family: var(--consultation-body-font);
    font-size: var(--consultation-body-size);
    font-weight: var(--consultation-body-weight);
    font-style: normal;
    line-height: var(--consultation-body-line-height);
    color: var(--consultation-body-color);
    letter-spacing: 0;
}

.consultation-intro__text {
    margin: 0;
}

.consultation-info-panel {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    background: linear-gradient(
        90deg,
        rgba(248, 243, 233, 0.76),
        rgba(255, 253, 248, 0.92)
    );
    border: 1px solid var(--consultation-inner-border);
    border-radius: 162px;
    padding: clamp(12px, 1.5vw, 18px);
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

.consultation-info-panel__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-info-panel__cell {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
}

.consultation-info-panel__icon {
    width: clamp(30px, 3.2vw, 38px);
    height: auto;
    flex-shrink: 0;
}

.consultation-info-panel__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.consultation-info-panel__separator {
    width: 1px;
    height: clamp(36px, 4vw, 48px);
    background: var(--consultation-inner-border);
    margin-inline: auto;
}

.consultation-policy {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

.consultation-policy__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.consultation-policy__icon img {
    width: clamp(30px, 3vw, 36px);
    height: auto;
}

.consultation-policy__content {
    min-width: 0;
}

.consultation-policy__heading {
    margin: 0 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--consultation-heading);
}

.consultation-policy__divider {
    display: block;
    width: clamp(50px, 8vw, 100px);
    height: auto;
    margin: 6px 0 6px;
}

.consultation-policy__text {
    margin: 0;
}

.consultation-package {
    display: grid;
    grid-template-columns: minmax(100px, 130px) 1px minmax(0, 1fr);
    gap: 0;
    background: linear-gradient(
        120deg,
        rgba(250, 247, 238, 0.96),
        rgba(245, 240, 227, 0.84)
    );
    border: 1px solid var(--consultation-inner-border);
    border-radius: 58px;
    padding: clamp(14px, 2vw, 24px);
    box-shadow: 0 4px 12px rgba(73, 61, 43, 0.045);
}

.consultation-package__illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-package__botanical-img {
    width: clamp(72px, 8vw, 100px);
    height: auto;
}

.consultation-package__separator {
    width: 1px;
    height: 100%;
    min-height: 100px;
    background: var(--consultation-gold);
    margin-inline: auto;
    opacity: 0.5;
}

.consultation-package__content {
    padding-left: clamp(12px, 1.5vw, 20px);
    min-width: 0;
}

.consultation-package__text {
    margin: 6px 0 0;
}

.consultation-package__prices {
    margin-top: 8px;
    background: rgba(246, 238, 223, 0.68);
    border-radius: 162px;
    padding: 8px 14px;
    display: grid;
    gap: 4px;
}

.consultation-package__price-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.consultation-package__check {
    width: 18px;
    height: auto;
}

.consultation-package__payment-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.consultation-package__payment-icon {
    width: clamp(26px, 3vw, 32px);
    height: auto;
}

.consultation-package__bottom-line {
    width: 100%;
    height: 1px;
    background: var(--consultation-gold);
    opacity: 0.35;
    margin: 12px 0 10px;
}

.consultation-package__conclusion {
    margin: 0;
}

.consultation-info-page__bottom-flourish {
    display: block;
    width: clamp(160px, 20vw, 260px);
    margin: 14px auto 0;
    position: relative;
    z-index: 2;
    height: auto;
}

@media (max-width: 900px) {
    .consultation-info-page__botanical--left {
        width: clamp(60px, 9vw, 96px);
        left: -18px;
        top: 80px;
    }

    .consultation-info-page__botanical--right {
        width: clamp(60px, 9vw, 96px);
        right: -18px;
        bottom: 100px;
    }
}

@media (max-width: 720px) {
    .consultation-info-stack {
        width: calc(100% - 16px);
    }

    .consultation-info {
        padding: 16px 12px 20px;
    }

    .consultation-info__heading {
        font-size: clamp(2.25rem, 7vw, 3rem);
    }

    .consultation-intro__row {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
    }

    .consultation-icon-badge {
        width: 36px;
        height: 36px;
    }

    .consultation-icon-badge__icon {
        width: 20px;
    }

    .consultation-info-panel {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .consultation-info-panel__separator {
        width: clamp(28px, 12vw, 50px);
        height: 1px;
    }

    .consultation-policy {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 12px;
    }

    .consultation-policy__icon {
        width: 32px;
        height: 32px;
    }

    .consultation-policy__icon img {
        width: 24px;
    }

    .consultation-package {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .consultation-package__separator {
        width: clamp(36px, 12vw, 60px);
        height: 1px;
        min-height: auto;
    }

    .consultation-package__content {
        padding-left: 0;
    }

    .consultation-package__botanical-img {
        width: clamp(60px, 15vw, 80px);
    }

    .consultation-info-page__botanical--left,
    .consultation-info-page__botanical--right {
        width: clamp(40px, 7vw, 60px);
    }

    .consultation-info-page__botanical--left {
        left: -12px;
        top: 60px;
    }

    .consultation-info-page__botanical--right {
        right: -12px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .consultation-info-page__botanical--left,
    .consultation-info-page__botanical--right {
        display: none;
    }

    .consultation-info__heading-divider {
        width: 100%;
    }

    .consultation-policy__divider {
        width: 100%;
    }
}
