:root {
    --gold: #dbb56b;
    --gold-light: #f4deb4;
    --red-brown-950: #220908;
    --red-brown-900: #3a1210;
    --red-brown-800: #5b1f1b;
    --plum-700: #522d56;
    --cream: #f7efe4;
    --sand: #d8c1a2;
    --shadow-xl: 0 24px 54px rgba(12, 4, 4, 0.42);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Alegreya Sans", sans-serif;
    color: var(--cream);
    background:
        radial-gradient(circle at 8% 10%, rgba(219, 181, 107, 0.15), transparent 38%),
        radial-gradient(circle at 84% 22%, rgba(112, 65, 117, 0.2), transparent 40%),
        radial-gradient(circle at 85% 90%, rgba(219, 181, 107, 0.12), transparent 34%),
        linear-gradient(160deg, var(--red-brown-950) 0%, var(--red-brown-900) 50%, #220f13 100%);
    line-height: 1.65;
}

main,
.site-header,
.site-footer {
    position: relative;
    z-index: 1;
}

.texture-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px),
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 48%);
}

.floating-shape {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.26;
}

.floating-shape-a {
    width: 280px;
    height: 280px;
    border-radius: 56% 44% 58% 42%;
    background: radial-gradient(circle, rgba(219, 181, 107, 0.7), rgba(219, 181, 107, 0));
    top: 10vh;
    right: -60px;
}

.floating-shape-b {
    width: 260px;
    height: 260px;
    border-radius: 44% 56% 42% 58%;
    background: radial-gradient(circle, rgba(112, 65, 117, 0.65), rgba(112, 65, 117, 0));
    bottom: 10vh;
    left: -70px;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    display: block;
    border-radius: calc(var(--radius) - 4px);
}

.container {
    width: min(1140px, 100%);
    padding: 0 max(1.2rem, 4vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(11px);
    background: rgba(29, 10, 10, 0.94);
    border-bottom: 1px solid rgba(219, 181, 107, 0.22);
    z-index: 40;
    transform: translateY(-14px);
    opacity: 0;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-mounted {
    animation: header-enter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes header-enter {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-header.is-scrolled {
    background: rgba(22, 8, 8, 0.98);
    border-bottom-color: rgba(219, 181, 107, 0.34);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
}

.brand-text {
    display: grid;
    gap: 0.1rem;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(219, 181, 107, 0.45);
}

.brand-title {
    font-family: "Cinzel Decorative", serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-tagline {
    color: #e4c9ac;
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    gap: 0.88rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.site-nav > a {
    color: #f7eee3;
    font-size: 0.88rem;
    pointer-events: auto;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav > a:hover {
    transform: translateY(-1px);
}

.site-nav > a.btn-booking,
.site-nav > a.btn-booking:hover {
    color: #2d130f;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(219, 181, 107, 0.15);
}

.menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--gold-light);
}

.hero,
.page-hero {
    padding: 4.8rem 0 2.8rem;
}

.hero.hero-rich {
    position: relative;
    min-height: 95vh;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: flex-end;
}

.hero-cover-media,
.hero-cover-shade {
    position: absolute;
    inset: 0;
}

.hero-cover-media {
    z-index: -3;
}

.hero-cover-media img,
.hero-cover-media .hero-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-cover-media .hero-pattern {
    min-height: 100%;
}

.hero-cover-shade {
    z-index: -2;
    background:
        linear-gradient(120deg, rgba(15, 4, 4, 0.84) 8%, rgba(28, 9, 9, 0.7) 45%, rgba(17, 5, 5, 0.76) 100%),
        radial-gradient(circle at 82% 8%, rgba(219, 181, 107, 0.25), rgba(219, 181, 107, 0));
}

.hero-cover-content {
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 30vh;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-copy {
    max-width: 980px;
    width: min(980px, 100%);
    text-align: center;
}

.hero-copy .hero-actions {
    justify-content: center;
}

.hero-copy .hero-stats {
    width: calc(100vw - 2rem);
    max-width: 1140px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
}

.hero-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.7rem;
    align-items: center;
}

.hero h1,
.page-hero h1,
.section-head h2,
.site-footer h2,
.site-footer h3,
.card h3,
.service-card h3,
.page-card h3,
.care-card h3 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
    margin: 0;
}

.hero h1,
.page-hero h1 {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.25rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin: 0.35rem 0 1rem;
    color: #fff6ea;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.eyebrow {
    margin: 0;
    display: inline-flex;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    border: 1px solid rgba(219, 181, 107, 0.35);
    border-radius: 999px;
    padding: 0.24rem 0.76rem;
}

.lead {
    margin: 0 0 1.2rem;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: #f6e5d0;
}

.price-lead {
    color: var(--gold-light);
}

.hero-pattern {
    min-height: 360px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    background:
        radial-gradient(circle at 18% 22%, rgba(219, 181, 107, 0.5), transparent 46%),
        radial-gradient(circle at 72% 75%, rgba(112, 65, 117, 0.52), transparent 40%),
        linear-gradient(130deg, #6c3127 0%, #3e1816 48%, #2f1739 100%);
}

.hero-badge {
    position: absolute;
    right: 2rem;
    bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(219, 181, 107, 0.4);
    color: var(--gold-light);
    background: rgba(49, 17, 16, 0.82);
    backdrop-filter: blur(4px);
    max-width: 250px;
    text-align: center;
    z-index: 10;
}

.hero-badge-title {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
    word-break: normal;
}

.hero-badge-sub {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #f0dcc0;
    word-break: normal;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.hero-stats article {
    background: rgba(246, 234, 217, 0.08);
    border: 1px solid rgba(219, 181, 107, 0.25);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    width: 100%;
}

.hero-stats strong {
    display: block;
    font-size: 1.25rem;
    color: #fff2de;
}

.hero-stats span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d8bea0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(219, 181, 107, 0.54);
    color: #2d130f;
    background: linear-gradient(120deg, #f4d39a 0%, #dbb56b 100%);
    font-weight: 700;
    padding: 0.72rem 1rem;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    color: #2d130f;
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.btn-outline {
    color: var(--gold-light);
    background: rgba(247, 239, 228, 0.06);
    border-color: rgba(244, 222, 180, 0.55);
}

.btn-outline:hover {
    color: #fff1da;
    background: rgba(247, 239, 228, 0.14);
}

.btn-nav {
    margin-left: 0.3rem;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.icon-calendar {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.icon-calendar::before,
.icon-calendar::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 3px;
    height: 5px;
    background: currentColor;
    border-radius: 2px;
}

.icon-calendar::before {
    left: 3px;
}

.icon-calendar::after {
    right: 3px;
}

.section {
    padding: 1rem 0 3.2rem;
}

.section-alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(75, 27, 24, 0.46), rgba(67, 30, 72, 0.32));
}

.section-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.09;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        -32deg,
        rgba(244, 222, 180, 0.18) 0 1px,
        transparent 1px 15px
    );
}

.section-head {
    margin-bottom: 1rem;
}

.section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.ritual-flow {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.ritual-flow::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 50%;
    width: 1px;
    background: linear-gradient(rgba(219, 181, 107, 0), rgba(219, 181, 107, 0.45), rgba(219, 181, 107, 0));
}

.ritual-line {
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.2rem;
    padding: 1.25rem 1.75rem;
    background: rgba(30, 10, 9, 0.75);
    border-radius: 12px;
    box-shadow: 0 16px 28px rgba(8, 2, 2, 0.32);
}

.ritual-line.left {
    justify-self: start;
    margin-right: auto;
}

.ritual-line.right {
    justify-self: end;
    margin-left: auto;
    text-align: right;
    grid-template-columns: 1fr 48px;
}

.ritual-line i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2d130f;
    background: linear-gradient(120deg, #f4d39a 0%, #dbb56b 100%);
    font-size: 1.15rem;
}

.ritual-line.right i {
    grid-column: 2;
}

.ritual-line.right div {
    grid-column: 1;
    grid-row: 1;
}

.ritual-line h3 {
    margin: 0;
    font-size: 1.52rem;
}

.ritual-line p {
    margin: 0.2rem 0 0;
}

.cards-grid,
.services-grid,
.page-grid {
    display: grid;
    gap: 1rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.service-card,
.page-card,
.care-card,
.pricing-table-wrap,
.cta-block {
    background: linear-gradient(150deg, rgba(40, 15, 14, 0.86), rgba(33, 12, 13, 0.82));
    border: 1px solid rgba(219, 181, 107, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 16px 30px rgba(8, 3, 3, 0.28);
    transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.card:hover,
.service-card:hover,
.page-card:hover,
.care-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 222, 180, 0.5);
}

.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.page-card-link {
    display: block;
    color: inherit;
}

.card-image-wrap {
    min-height: 178px;
}

.card-image-fallback {
    min-height: 178px;
    border-radius: calc(var(--radius) - 4px) calc(var(--radius) - 4px) 0 0;
    background: linear-gradient(130deg, rgba(219, 181, 107, 0.55), rgba(112, 65, 117, 0.5));
}

.card-body,
.service-card,
.page-card,
.care-card {
    padding: 1rem;
}

.card h3,
.service-card h3,
.page-card h3,
.care-card h3 {
    margin-bottom: 0.36rem;
    color: #fff6ea;
    font-size: 1.3rem;
}

.service-preview,
.tariff-list {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.44rem;
}

.service-preview li,
.tariff-list li,
.service-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: baseline;
}

.service-preview strong,
.tariff-list strong,
.care-price {
    color: var(--gold-light);
}

.price-old {
    text-decoration: line-through;
    opacity: 0.65;
    margin-right: 0.35rem;
    font-size: 0.9em;
}

.price-new {
    color: #ffd894;
}

.service-category {
    margin: 0 0 0.2rem;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d9bc9a;
}

.service-card-rich,
.page-card-rich,
.card-luxury {
    border-color: rgba(219, 181, 107, 0.2);
}

.service-card-rich,
.page-card-rich {
    border-left: 3px solid rgba(219, 181, 107, 0.35);
}

.care-stack {
    display: grid;
    gap: 1rem;
}

.tariff-blocks {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.tariff-chip-card {
    border: 1px solid rgba(219, 181, 107, 0.28);
    border-radius: 12px;
    padding: 0.95rem;
    background: rgba(27, 9, 10, 0.84);
}

.tariff-chip-card-accent {
    background: linear-gradient(130deg, rgba(37, 12, 13, 0.9), rgba(75, 31, 81, 0.52));
}

.tariff-chip-card h4 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
}

.tariff-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
}

.tariff-head strong {
    color: var(--gold-light);
    font-size: 1.08rem;
}

.tariff-duration {
    margin: 0.2rem 0 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #e0c9ac;
}

.tariff-rich p {
    margin: 0.45rem 0;
}

.tariff-rich img {
    max-width: min(420px, 100%);
}

.tariff-chip-card p {
    margin: 0.25rem 0;
    font-size: 0.86rem;
    color: #d9bea1;
}

.tariff-chip-card strong {
    color: var(--gold-light);
}

.certification-grid,
.practical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.certification-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.7rem;
}

.cert-showcase {
    display: grid;
    grid-template-columns: 1fr 126px;
    gap: 0.9rem;
    align-items: start;
}

.cert-feature {
    border: 1px solid rgba(219, 181, 107, 0.28);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(24, 8, 8, 0.68);
}

.cert-feature-link {
    display: block;
}

.cert-feature-link img,
.cert-feature-empty {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 0;
    transition: opacity 0.3s ease;
}

.cert-feature-link img.is-fading {
    opacity: 0.5;
}

.cert-feature-empty {
    display: grid;
    place-items: center;
    color: #f2d7b3;
    background: repeating-linear-gradient(145deg, rgba(219, 181, 107, 0.16) 0 12px, rgba(112, 65, 117, 0.08) 12px 24px);
}

.cert-feature-meta {
    padding: 0.8rem 0.9rem;
}

.cert-feature-meta h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.42rem;
}

.cert-feature-meta p {
    margin: 0.3rem 0 0;
    color: #e2c7a8;
}

.cert-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 428px;
    overflow-y: auto;
}

.cert-thumb {
    border: 1px solid rgba(219, 181, 107, 0.28);
    border-radius: 10px;
    padding: 0;
    background: rgba(24, 8, 8, 0.72);
    overflow: hidden;
    cursor: pointer;
    min-height: 72px;
    width: 100%;
}

.cert-thumb.is-active {
    border-color: rgba(244, 222, 180, 0.74);
    box-shadow: 0 0 0 2px rgba(244, 222, 180, 0.2);
}

.cert-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 0;
}

.cert-thumb span {
    display: grid;
    place-items: center;
    min-height: 72px;
    color: #f0d7b7;
    font-size: 0.78rem;
    text-align: center;
    padding: 0.3rem;
}

.cert-node {
    min-height: 94px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(219, 181, 107, 0.32);
    background: rgba(24, 8, 8, 0.72);
    display: grid;
    place-items: center;
}

.cert-node img {
    width: 100%;
    height: 100%;
    min-height: 94px;
    object-fit: cover;
    border-radius: 0;
}

.cert-node span {
    padding: 0.5rem;
    font-size: 0.84rem;
    text-align: center;
    color: #f0d7b7;
}

.cert-note {
    margin-top: 0.8rem;
}

.certification-visual {
    min-height: 300px;
}

.certification-visual img,
.map-frame-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: calc(var(--radius) - 4px);
}

.map-frame-wrap {
    border: 1px solid rgba(219, 181, 107, 0.24);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.care-card-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
}

.care-card-main {
    display: grid;
    grid-template-columns: minmax(130px, 180px) 1fr;
    gap: 0.9rem;
    align-items: start;
}

.care-card-thumb img,
.care-card-thumb .card-image-fallback {
    min-height: 130px;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.legacy-gallery {
    columns: 3 250px;
    column-gap: 1rem;
}

.legacy-gallery img {
    width: 100%;
    margin-bottom: 1rem;
    display: block;
    break-inside: avoid;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(219, 181, 107, 0.3);
    transition: transform 0.25s ease, filter 0.25s ease;
    cursor: zoom-in;
}

.legacy-gallery img:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
}

.partner-cloud {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.partner-node {
    position: absolute;
    display: block;
    width: var(--node-size, 120px);
    transform: translate(-50%, -50%) rotate(var(--spin, 0deg));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(219, 181, 107, 0.32);
    transition: transform 0.22s ease;
}

.partner-node:hover {
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg) !important;
}

.partner-node img {
    width: 100%;
    height: auto;
    display: block;
}

.partner-node span {
    display: block;
    padding: 0.65rem;
    font-size: 0.84rem;
    text-align: center;
    color: var(--gold-light);
    background: rgba(24, 8, 8, 0.9);
}

.flex-lab {
    display: grid;
    gap: 1.15rem;
}

.flex-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    align-items: stretch;
}

.flex-block.right {
    grid-template-columns: 0.9fr 1.1fr;
}

.flex-block.right .flex-block-copy {
    order: 2;
}

.flex-block.right .flex-block-media {
    order: 1;
}

.flex-block-copy {
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(27, 9, 9, 0.68);
}

.flex-block-copy h3 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.flex-block-media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(219, 181, 107, 0.22);
    background: rgba(24, 8, 8, 0.72);
    min-height: 260px;
}

.flex-block-media img,
.flex-block-media iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    object-fit: cover;
}

.flex-placeholder {
    min-height: 260px;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    color: #e6d0b3;
    background: repeating-linear-gradient(
        -45deg,
        rgba(219, 181, 107, 0.12) 0 10px,
        rgba(112, 65, 117, 0.08) 10px 20px
    );
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}

.testimonial-bubble {
    position: relative;
    margin: 0;
    padding: 1rem 1rem 1.15rem;
    border-radius: 16px;
    background: linear-gradient(130deg, #f1cb83, #ddb063);
    border: 1px solid rgba(244, 222, 180, 0.55);
    box-shadow: 0 16px 28px rgba(8, 3, 3, 0.28);
    color: #4f2019;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(8, 3, 3, 0.45);
}

.testimonial-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 32px;
    width: 22px;
    height: 22px;
    transform: rotate(45deg);
    background: #e2b86f;
    border-right: 1px solid rgba(244, 222, 180, 0.55);
    border-bottom: 1px solid rgba(244, 222, 180, 0.55);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: rgba(88, 37, 28, 0.42);
    font-size: 1rem;
}

.testimonial-stars .is-filled {
    color: #6e2d1f;
}

.testimonial-bubble p {
    margin: 0.55rem 0 0.65rem;
}

.testimonial-bubble footer {
    font-weight: 700;
    color: #572117;
}

.content-narrow {
    width: min(860px, 100%);
}

.rich-text {
    color: #f7e7d5;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
    color: #fff5e4;
    font-family: "Cormorant Garamond", serif;
}

.rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.rich-text th,
.rich-text td,
.pricing-table th,
.pricing-table td {
    border: 1px solid rgba(219, 181, 107, 0.28);
    padding: 0.7rem;
    text-align: left;
}

.pricing-table-wrap {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.site-footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(219, 181, 107, 0.24);
    background: rgba(20, 8, 8, 0.65);
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 1rem;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(219, 181, 107, 0.4));
}

.social-icons {
    display: flex;
    gap: 0.45rem;
    margin: 0.3rem 0 0.7rem;
}

.social-icons a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(219, 181, 107, 0.35);
    background: rgba(247, 239, 228, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 222, 180, 0.8);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-light);
}

.social-icons i {
    font-size: 1.04rem;
    color: var(--gold-light);
}

.social-link:hover svg,
.social-link:hover i {
    fill: #ffffff;
    color: #ffffff;
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-facebook:hover {
    background: #1877f2;
}

.social-tiktok:hover {
    background: #010101;
}

.social-youtube:hover {
    background: #ff0000;
}

.social-linkedin:hover {
    background: #0a66c2;
}

.social-tripadvisor:hover {
    background: #34e0a1;
}

.social-gmaps:hover {
    background: #34a853;
}

.footer-legal {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(219, 181, 107, 0.17);
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-legal a {
    font-size: 0.84rem;
    color: #ddc7a8;
}

.floating-booking,
.floating-top {
    position: fixed;
    right: 18px;
    border: 0;
    border-radius: 999px;
    z-index: 70;
    box-shadow: var(--shadow-xl);
}

.floating-booking {
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    padding: 0.74rem 0.95rem;
    font-weight: 700;
    color: #2d130f !important;
    background: linear-gradient(120deg, #f4d39a, #dbb56b);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

a.floating-booking:hover,
.floating-booking:hover {
    color: #2d130f !important;
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.floating-top {
    bottom: 72px;
    width: 44px;
    height: 44px;
    color: #2d130f;
    background: linear-gradient(120deg, #f2d9ab, #ddb874);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-top:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.08);
}

.floating-top svg {
    width: 20px;
    height: 20px;
    fill: #2d130f;
}

.floating-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-top.is-visible:hover {
    transform: translateY(-2px) scale(1.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.muted {
    color: #d1b697;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 5, 5, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--gold-light);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media (max-width: 980px) {
    .menu-button {
        display: inline-block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 83px;
        left: 4vw;
        right: 4vw;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid rgba(219, 181, 107, 0.3);
        border-radius: 12px;
        background: rgba(38, 14, 14, 0.97);
        padding: 0.9rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: flex;
        animation: mobile-menu-open 0.28s ease both;
    }

    .site-nav.is-open > a {
        animation: menu-link-fade 0.3s ease both;
        padding: 1rem 0.5rem;
        width: 100%;
        display: flex;
        border-bottom: 1px solid rgba(219, 181, 107, 0.1);
    }

    .site-nav.is-open > a.btn-booking {
        margin-top: 0.5rem;
        justify-content: center;
        border-bottom: none;
    }

    .site-nav.is-open > a:last-child {
        border-bottom: none;
    }

    .site-nav.is-open > a:nth-child(1) { animation-delay: 0.04s; }
    .site-nav.is-open > a:nth-child(2) { animation-delay: 0.08s; }
    .site-nav.is-open > a:nth-child(3) { animation-delay: 0.12s; }
    .site-nav.is-open > a:nth-child(4) { animation-delay: 0.16s; }
    .site-nav.is-open > a:nth-child(5) { animation-delay: 0.20s; }
    .site-nav.is-open > a:nth-child(6) { animation-delay: 0.24s; }
    .site-nav.is-open > a:nth-child(7) { animation-delay: 0.28s; }
    .site-nav.is-open > a:nth-child(8) { animation-delay: 0.32s; }
    .site-nav.is-open > a:nth-child(9) { animation-delay: 0.36s; }
    .site-nav.is-open > a:nth-child(n+10) { animation-delay: 0.4s; }

    .hero,
    .page-hero {
        padding-top: 3.4rem;
    }

    .hero.hero-rich {
        min-height: 95vh;
    }

    .hero-badge {
        right: 1rem;
        bottom: 9rem;
        max-width: 200px;
        padding: 0.6rem;
    }

    .hero-badge-title {
        font-size: 0.75rem;
    }

    .hero-badge-sub {
        font-size: 0.65rem;
    }

    .hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cta-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .certification-grid,
    .practical-grid {
        grid-template-columns: 1fr;
    }

    .cert-showcase {
        grid-template-columns: 1fr;
    }

    .cert-thumbs {
        flex-direction: row;
        flex-wrap: wrap;
        overflow-x: visible;
        max-height: none;
        padding-bottom: 0.2rem;
    }

    .cert-thumb {
        flex: 0 0 calc(33.333% - 0.5rem);
        min-width: 80px;
    }

    .legacy-gallery {
        columns: 2 150px;
    }

    .ritual-line,
    .ritual-line.right {
        width: 100%;
        justify-self: stretch;
        margin: 0;
    }

    .ritual-line.left {
        text-align: left;
        grid-template-columns: 48px 1fr;
    }

    .ritual-line.right {
        text-align: right;
        grid-template-columns: 1fr 48px;
    }

    .ritual-line.right i {
        grid-column: 2;
    }

    .ritual-line.right div {
        grid-column: 1;
        grid-row: 1;
    }

    .ritual-flow::before {
        display: none;
    }

    .flex-block,
    .flex-block.right {
        grid-template-columns: 1fr;
    }

    .flex-block.right .flex-block-copy,
    .flex-block.right .flex-block-media {
        order: initial;
    }

    .care-card-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pricing-table {
        min-width: 480px;
    }

    .brand-tagline {
        display: none;
    }

    .floating-shape {
        display: none;
    }

    .legacy-gallery {
        columns: 1;
    }

    .partner-cloud {
        min-height: 520px;
    }

    .hero.hero-rich {
        min-height: 95vh;
    }
}

@keyframes mobile-menu-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menu-link-fade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
