@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --plum: #061D3B;
    --plum-dark: #040F22;
    --plum-soft: #0D3060;
    --blush: #FAD1D9;
    --rose: #C27987;
    --rose-dark: #a8606d;
    --cream: #FAF8F6;
    --sand: #FDF0F3;
    --navy: #061D3B;
    --ink: #251d22;
    --white: #FFFFFF;
    --muted: #766b70;
    --line: rgba(6, 29, 59, 0.16);
    --shadow: 0 24px 70px rgba(4, 15, 34, 0.15);
    --radius: 1.25rem;
    --header-height: 4.75rem;
    --shell: min(100% - 2rem, 78rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    margin: 0;
    min-width: 20rem;
    background: var(--cream);
    color: var(--ink);
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
}

body.menu-open {
    overflow: hidden;
}

img, svg, video, iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

button, input, select, textarea {
    color: inherit;
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

p, h1, h2, h3, blockquote, figure, ul, ol, dl {
    margin-top: 0;
}

h1, h2, h3 {
    line-height: 0.96;
    text-wrap: balance;
}

h1, h2 {
    letter-spacing: -0.045em;
}

h1 em, h2 em {
    color: var(--rose);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: clamp(4.5rem, 11vw, 9rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    color: var(--plum);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow.light {
    color: var(--blush);
}

.lead {
    font-size: clamp(1.15rem, 2.3vw, 1.48rem);
    line-height: 1.65;
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.82rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover, .button:focus-visible {
    transform: translateY(-2px);
}

.button span {
    font-size: 1rem;
}

.button-blush {
    background: var(--blush);
    color: var(--plum);
}

.button-blush:hover, .button-blush:focus-visible {
    background: var(--white);
}

.button-cream {
    background: var(--cream);
    color: var(--plum);
}

.button-cream:hover, .button-cream:focus-visible {
    background: var(--blush);
}

.button-plum {
    background: var(--plum);
    color: var(--white);
}

.button-plum:hover, .button-plum:focus-visible {
    background: var(--plum-soft);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid currentColor;
    color: var(--plum);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span, .text-link:focus-visible span {
    transform: translateX(0.25rem);
}

.text-link.light {
    color: var(--cream);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.4rem;
    background: var(--white);
    color: var(--plum);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid rgba(250, 209, 217, 0.16);
    background: rgba(4, 15, 34, 0.93);
    backdrop-filter: blur(18px);
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(4, 15, 34, 0.98);
    box-shadow: 0 10px 35px rgba(10, 0, 8, 0.16);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 103;
    display: flex;
    width: 9.25rem;
    height: 3.55rem;
    align-items: center;
}

.brand img {
    width: 100%;
    max-height: 3.2rem;
    object-fit: contain;
    object-position: left center;
}

.menu-toggle {
    position: relative;
    z-index: 103;
    display: grid;
    width: 3.1rem;
    height: 3.1rem;
    place-content: center;
    gap: 0.28rem;
    padding: 0;
    border: 1px solid rgba(250, 209, 217, 0.35);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.29rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.29rem) rotate(-45deg);
}

.primary-nav {
    position: fixed;
    z-index: 102;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.45rem;
    padding: calc(var(--header-height) + 2rem) 1.5rem 6rem;
    background: var(--plum-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.primary-nav > a, .nav-group > a {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 8vw, 3rem);
    line-height: 1.2;
}

.primary-nav a[aria-current="page"] {
    color: var(--blush);
}

.nav-group {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: auto 2.75rem;
    align-items: center;
}

.nav-group > button {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(250, 209, 217, 0.25);
    border-radius: 50%;
    background: transparent;
    color: var(--blush);
    cursor: pointer;
}

.nav-dropdown {
    display: none;
    grid-column: 1 / -1;
    padding: 0.75rem 0 0.75rem 1.25rem;
}

.nav-dropdown.is-open {
    display: grid;
}

.nav-dropdown a {
    padding: 0.26rem 0;
    color: var(--sand);
    font-size: 1rem;
}

.primary-nav .nav-book {
    width: 100%;
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: var(--blush);
    color: var(--plum);
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Home hero */
.hero-home {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: calc(var(--header-height) + 3.5rem) 0 4rem;
    background:
        radial-gradient(circle at 82% 32%, rgba(194, 121, 135, 0.22), transparent 28rem),
        linear-gradient(145deg, var(--plum-dark), var(--plum) 72%);
    color: var(--white);
}

.hero-home::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    z-index: 0;
    width: 28rem;
    height: 28rem;
    top: 16%;
    right: -15rem;
    border: 1px solid rgba(250, 209, 217, 0.2);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3.5rem;
}

.hero-copy {
    align-self: center;
}

.hero-copy h1 {
    max-width: 11ch;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: clamp(3.75rem, 16vw, 7.5rem);
    font-weight: 550;
}

.hero-copy h1 em {
    color: var(--blush);
}

.hero-lede {
    max-width: 38rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 3vw, 1.28rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem 1.5rem;
}

.hero-proof {
    display: grid;
    gap: 1rem;
    margin: 2.25rem 0 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(250, 209, 217, 0.2);
    list-style: none;
}

.hero-proof li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.hero-proof strong {
    color: var(--blush);
    font-size: 0.95rem;
}

.hero-proof span {
    color: rgba(255,255,255,.58);
    font-size: 0.78rem;
}

.portrait-triptych {
    position: relative;
    display: grid;
    min-height: 23rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 0.45rem;
}

.portrait-triptych figure {
    position: relative;
    overflow: hidden;
    height: 80%;
    margin: 0;
    border-radius: 7rem 7rem 0.35rem 0.35rem;
    background: var(--sand);
}

.portrait-triptych figure:nth-child(2) {
    height: 100%;
}

.portrait-triptych img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    filter: saturate(0.88) contrast(1.02);
}

.portrait-triptych figure:nth-child(2) img {
    object-position: 50% 38%;
}

.portrait-note {
    position: absolute;
    right: -0.2rem;
    bottom: -1.4rem;
    display: inline-flex;
    flex-direction: column;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(250, 209, 217, 0.45);
    background: var(--plum-dark);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    transform: rotate(-3deg);
}

.portrait-note i {
    color: var(--blush);
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.scroll-cue {
    display: none;
}

.marquee {
    overflow: hidden;
    padding-block: 0.95rem;
    background: var(--blush);
    color: var(--plum);
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 1.6rem;
    padding-right: 1.6rem;
}

.marquee-track b {
    color: var(--rose-dark);
}


@keyframes marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* Shared section headings */
.section-heading {
    margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.section-heading h2, .founder-copy h2, .story-copy h2, .faq-heading h2 {
    margin-bottom: 1.25rem;
    color: var(--plum);
    font-size: clamp(2.75rem, 8vw, 5.8rem);
    font-weight: 520;
}

.section-heading p {
    max-width: 37rem;
    color: var(--muted);
}

.split-heading {
    display: grid;
    gap: 1.4rem;
}

.centered {
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

/* Services */
.services-showcase {
    overflow: hidden;
}

.service-editorial-grid {
    display: grid;
    gap: 1rem;
}

.service-tile {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 30rem;
    border-radius: var(--radius);
    background: var(--plum);
    color: var(--white);
}

.service-image, .service-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.service-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 15, 34, .94), rgba(4, 15, 34, .08) 70%);
    content: "";
}

.service-image img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.service-tile:hover .service-image img {
    transform: scale(1.04);
}

.service-tile-copy {
    position: relative;
    z-index: 1;
    align-self: end;
    padding: 1.4rem;
}

.service-tile-copy > span {
    color: var(--blush);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.service-tile-copy h3 {
    margin: .35rem 0 .75rem;
    font-family: Georgia, serif;
    font-size: clamp(2.05rem, 8vw, 3.25rem);
    font-weight: 400;
}

.service-tile-copy p {
    max-width: 26rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,.72);
}

.service-tile-copy i {
    color: var(--blush);
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Awards */
.awards-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(250, 209, 217, .15), transparent 28rem),
        var(--plum-dark);
    color: var(--white);
}

.awards-grid {
    display: grid;
    gap: 3.25rem;
    align-items: center;
}

.awards-copy h2 {
    margin-bottom: 1.4rem;
    color: var(--white);
    font-size: clamp(3rem, 9vw, 6.25rem);
    font-weight: 520;
}

.awards-copy h2 em {
    color: var(--blush);
}

.awards-copy p {
    max-width: 37rem;
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,.7);
}

.award-images {
    position: relative;
    display: grid;
    min-height: 30rem;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: .75rem;
}

.award-images figure {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    border: .45rem solid rgba(255,255,255,.96);
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.award-images img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.award-badge {
    transform: rotate(-3deg);
}

.award-certificate {
    transform: rotate(2deg);
}

/* Founder */
.founder-preview {
    background: var(--sand);
}

.founder-grid {
    display: grid;
    gap: 3rem;
}

.founder-image {
    position: relative;
    max-width: 34rem;
}

.founder-image::before {
    position: absolute;
    inset: -1rem 1.5rem 1.5rem -1rem;
    border: 1px solid var(--rose);
    border-radius: 12rem 12rem var(--radius) var(--radius);
    content: "";
}

.founder-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.2;
    border-radius: 12rem 12rem var(--radius) var(--radius);
    object-fit: cover;
    object-position: 50% 38%;
}

.founder-image > span {
    position: absolute;
    right: -1rem;
    bottom: 1.5rem;
    max-width: 10rem;
    padding: .75rem 1rem;
    background: var(--plum);
    color: var(--blush);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.45;
    text-transform: uppercase;
}

.founder-copy {
    align-self: center;
}

.founder-copy > p:not(.lead) {
    color: var(--muted);
}

.founder-copy blockquote {
    margin: 2rem 0;
    padding-left: 1.3rem;
    border-left: 2px solid var(--rose);
    color: var(--plum);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
}

/* Membership */
.membership-card {
    display: grid;
    overflow: hidden;
    border-radius: calc(var(--radius) + .35rem);
    background: var(--plum);
    box-shadow: var(--shadow);
    color: var(--white);
}

.membership-heading, .membership-benefits {
    padding: clamp(1.75rem, 6vw, 4rem);
}

.membership-heading {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, var(--plum), var(--plum-dark));
}

.membership-heading::after {
    position: absolute;
    right: -8rem;
    bottom: -8rem;
    width: 20rem;
    height: 20rem;
    border: 1px solid rgba(250,209,217,.25);
    border-radius: 50%;
    content: "";
}

.membership-heading h2 {
    margin-bottom: 2rem;
    font-size: clamp(2.75rem, 8vw, 5.4rem);
    font-weight: 520;
}

.membership-heading h2 em {
    color: var(--blush);
}

.membership-price {
    display: flex;
    align-items: end;
    gap: .75rem;
}

.membership-price strong {
    color: var(--blush);
    font-family: Georgia, serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1;
}

.membership-price span {
    padding-bottom: .3rem;
    color: rgba(255,255,255,.6);
}

.membership-benefits {
    background: var(--cream);
    color: var(--ink);
}

.membership-benefits h3 {
    color: var(--plum);
    font-size: 1.6rem;
}

.membership-benefits ul {
    margin: 1.4rem 0 2rem;
    padding: 0;
    list-style: none;
}

.membership-benefits li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .8rem;
    padding: 1.1rem 0;
    border-top: 1px solid var(--line);
}

.membership-benefits li span {
    color: var(--rose-dark);
    font-size: .7rem;
    font-weight: 700;
}

.membership-benefits li p {
    margin: 0;
    color: var(--muted);
}

.membership-benefits li strong {
    color: var(--plum);
}

.fine-print {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.55;
}

/* Reviews */
.review-section {
    overflow: hidden;
    background: var(--plum);
    color: var(--white);
}

.review-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.review-heading h2 {
    margin: 0;
    color: var(--white);
}

.review-heading h2 em {
    color: var(--blush);
}

.review-controls {
    display: flex;
    gap: .5rem;
}

.review-controls button {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(250,209,217,.35);
    border-radius: 50%;
    background: transparent;
    color: var(--blush);
    cursor: pointer;
}

.review-controls button:hover, .review-controls button:focus-visible {
    background: var(--blush);
    color: var(--plum);
}

.review-track {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    margin-inline: calc((100vw - var(--shell)) / -2);
    padding-inline: calc((100vw - var(--shell)) / 2);
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    display: flex;
    width: min(84vw, 25rem);
    min-height: 24rem;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.4rem;
    border: 1px solid rgba(250,209,217,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.055);
    scroll-snap-align: start;
}

.review-stars {
    color: var(--blush);
    font-size: .9rem;
    letter-spacing: .15em;
}

.review-card blockquote {
    margin: 1.5rem 0;
    color: rgba(255,255,255,.9);
    font-family: Georgia, serif;
    font-size: 1.18rem;
    line-height: 1.5;
}

.review-card footer {
    display: grid;
    grid-template-columns: 3rem 1fr 2rem;
    align-items: center;
    gap: .75rem;
}

.review-card footer img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-card footer strong, .review-card footer span {
    display: block;
}

.review-card footer strong {
    font-size: .86rem;
}

.review-card footer span {
    color: rgba(255,255,255,.5);
    font-size: .7rem;
}

.review-card footer > a {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: #4285f4;
    font-weight: 800;
}

.review-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.review-cta p {
    max-width: 34rem;
    margin: 0;
    color: rgba(255,255,255,.6);
}

/* Social */
.social-section {
    background: var(--cream);
}

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

.instagram-grid a {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--sand);
}

.instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.instagram-grid a:hover img {
    transform: scale(1.04);
}

.instagram-grid span {
    position: absolute;
    inset: auto .5rem .5rem;
    padding: .42rem .55rem;
    background: rgba(4,15,34,.8);
    color: var(--white);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .06em;
    opacity: 0;
    transform: translateY(.5rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.instagram-grid a:hover span, .instagram-grid a:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

.legacy-widget {
    margin-top: 2rem;
}

/* Location and footer */
.location-band {
    padding-block: clamp(4rem, 9vw, 7rem);
    background: var(--plum-dark);
    color: var(--white);
}

.location-grid {
    display: grid;
    gap: 2.5rem;
}

.location-grid h2 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 520;
}

.location-grid h2 em {
    color: var(--blush);
}

.location-address, .location-hours {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(250,209,217,.25);
}

.location-address > span, .location-hours > span {
    color: var(--blush);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.location-address p, .location-hours p {
    margin: .8rem 0 1.25rem;
    color: rgba(255,255,255,.68);
}

.site-footer {
    padding: 4rem 0 calc(1.5rem + env(safe-area-inset-bottom));
    background: #040F22;
    color: var(--white);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

.footer-brand img {
    width: 12rem;
    max-height: 8rem;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 20rem;
    color: rgba(255,255,255,.5);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
}

.footer-col h2 {
    margin-bottom: .65rem;
    color: var(--blush);
    font-family: "Outfit", sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-col a, .footer-col p {
    color: rgba(255,255,255,.65);
    font-size: .88rem;
}

.footer-col a:hover {
    color: var(--blush);
}

.footer-visit p {
    margin-bottom: .4rem;
}

.footer-social {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
}

.footer-social a {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border: 1px solid rgba(250,209,217,.3);
    border-radius: 50%;
    color: var(--blush);
    font-size: .7rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(250,209,217,.12);
    color: rgba(255,255,255,.38);
    font-size: .68rem;
}

.footer-bottom p {
    margin: 0;
}

/* Floating contact actions */
.floating-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(4.25rem + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--plum-dark);
    box-shadow: 0 -8px 26px rgba(4,15,34,.18);
}

.floating-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .12rem;
    border-right: 1px solid rgba(255,255,255,.1);
    color: var(--white);
}

.floating-actions a:last-child {
    border: 0;
}

.floating-actions span {
    display: grid;
    width: 1.75rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: var(--blush);
    font-size: .65rem;
    font-weight: 800;
}

.floating-actions b {
    font-size: .58rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.float-whatsapp span {
    background: #49E670;
    color: #073b1b;
}

.float-book {
    background: var(--blush);
    color: var(--plum) !important;
}

.float-book span {
    background: var(--plum);
    color: var(--blush);
}

/* Interior page heroes */
.page-hero, .service-hero, .about-hero, .contact-hero {
    padding-top: var(--header-height);
    background: var(--plum);
    color: var(--white);
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 37rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(250,209,217,.2), transparent 28rem),
        var(--plum);
}

.page-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -15rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(250,209,217,.2);
    border-radius: 50%;
    content: "";
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(5rem, 15vw, 9rem);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(3.8rem, 13vw, 8rem);
    font-weight: 520;
}

.page-hero h1 em {
    color: var(--blush);
}

.page-hero p {
    max-width: 42rem;
    color: rgba(255,255,255,.68);
    font-size: clamp(1.08rem, 2.4vw, 1.4rem);
}

/* Services index */
.service-list {
    display: grid;
    gap: 4rem;
}

.service-row {
    display: grid;
    gap: 1.8rem;
}

.service-row-image {
    overflow: hidden;
    border-radius: 10rem 10rem var(--radius) var(--radius);
    background: var(--sand);
}

.service-row-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 500ms ease;
}

.service-row-image:hover img {
    transform: scale(1.03);
}

.service-row-copy {
    align-self: center;
}

.service-row-copy > span {
    color: var(--rose-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-row-copy h2 {
    margin: .7rem 0 1rem;
    color: var(--plum);
    font-family: Georgia, serif;
    font-size: clamp(2.8rem, 8vw, 5.25rem);
    font-weight: 400;
}

.service-row-copy p {
    color: var(--muted);
}

.service-row-copy ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .45rem 1rem;
    margin: 1.4rem 0 1.75rem;
    padding: 0;
    list-style: none;
}

.service-row-copy li {
    position: relative;
    padding-left: .9rem;
    color: var(--plum);
    font-size: .82rem;
}

.service-row-copy li::before {
    position: absolute;
    left: 0;
    color: var(--rose);
    content: "•";
}

/* Service detail */
.service-hero {
    position: relative;
    overflow: hidden;
    min-height: 46rem;
    background:
        radial-gradient(circle at 16% 80%, rgba(250,209,217,.14), transparent 25rem),
        var(--plum-dark);
}

.service-hero-grid {
    display: grid;
    gap: 2.5rem;
    padding-top: clamp(3.5rem, 9vw, 6rem);
    padding-bottom: 4rem;
}

.service-hero-copy {
    align-self: center;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,.45);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--blush);
}

.service-hero h1 {
    margin-bottom: 1.3rem;
    font-size: clamp(3.6rem, 13vw, 7.4rem);
    font-weight: 520;
}

.service-hero h1 em {
    color: var(--blush);
}

.service-hero-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 12rem 12rem var(--radius) var(--radius);
}

.service-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.service-hero-image figcaption {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    padding: .5rem .7rem;
    background: rgba(4,15,34,.82);
    color: var(--blush);
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.intro-grid {
    display: grid;
    gap: 2rem;
}

.intro-grid h2 {
    color: var(--plum);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 520;
}

.intro-grid p:last-child {
    color: var(--muted);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 2.75rem;
}

.highlight-grid > div {
    min-height: 8.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: .85rem;
    background: rgba(255,255,255,.42);
}

.highlight-grid span {
    color: var(--rose-dark);
    font-size: .66rem;
    font-weight: 700;
}

.highlight-grid p {
    margin: 1.5rem 0 0;
    color: var(--plum);
    font-weight: 600;
    line-height: 1.3;
}

.process-section {
    background: var(--sand);
}

.process-grid {
    display: grid;
    gap: .75rem;
}

.process-card {
    min-height: 16rem;
    padding: 1.4rem;
    border-radius: var(--radius);
    background: var(--cream);
}

.process-card > span {
    color: var(--rose-dark);
    font-size: .7rem;
    font-weight: 700;
}

.process-card h3 {
    margin: 3rem 0 .8rem;
    color: var(--plum);
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
}

.process-card p {
    margin: 0;
    color: var(--muted);
}

.treatment-media {
    background: var(--cream);
}

.video-grid {
    display: grid;
    gap: .75rem;
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--plum), var(--plum-dark));
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 200ms ease;
}

.video-frame.is-playing iframe {
    opacity: 1;
}

.video-frame button {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(250,209,217,.12), transparent 12rem),
        transparent;
    color: var(--white);
    cursor: pointer;
}

.video-frame button::before {
    position: absolute;
    width: 15rem;
    height: 15rem;
    border: 1px solid rgba(250,209,217,.25);
    border-radius: 50%;
    content: "";
}

.video-frame button span {
    display: grid;
    z-index: 1;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--blush);
    color: var(--plum);
}

.video-frame button b {
    z-index: 1;
    color: var(--blush);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.video-frame.is-playing button {
    display: none;
}

.result-gallery {
    display: grid;
    gap: .75rem;
    margin-top: 1rem;
}

.result-gallery figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: var(--sand);
}

.result-gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.result-count-1 img {
    aspect-ratio: 1;
}

.result-gallery figcaption {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    padding: .45rem .65rem;
    background: rgba(4,15,34,.82);
    color: var(--white);
    font-size: .6rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.faq-section {
    background: var(--sand);
}

.faq-grid {
    display: grid;
    gap: 2.5rem;
}

.faq-heading p {
    color: var(--muted);
}

.accordion details {
    border-bottom: 1px solid rgba(6,29,59,.22);
}

.accordion summary {
    display: grid;
    grid-template-columns: 2rem 1fr 1.5rem;
    gap: .6rem;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--plum);
    font-weight: 650;
    list-style: none;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary span {
    color: var(--rose-dark);
    font-size: .66rem;
}

.accordion summary i {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    transition: transform 180ms ease;
}

.accordion details[open] summary i {
    transform: rotate(45deg);
}

.accordion details p {
    padding: 0 0 1.5rem 2.6rem;
    color: var(--muted);
}

.related-grid {
    display: grid;
    gap: .75rem;
}

.related-card {
    position: relative;
    overflow: hidden;
    min-height: 26rem;
    border-radius: var(--radius);
    color: var(--white);
}

.related-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,15,34,.92), transparent 70%);
    content: "";
}

.related-card > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.related-card:hover > img {
    transform: scale(1.04);
}

.related-card > div {
    position: absolute;
    z-index: 1;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
}

.related-card span, .related-card i {
    color: var(--blush);
    font-size: .67rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.related-card h3 {
    margin: .25rem 0 .7rem;
    font-family: Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
}

/* About */
.about-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 78%, rgba(250,209,217,.14), transparent 24rem),
        var(--plum-dark);
}

.about-hero-grid {
    display: grid;
    gap: 2.75rem;
    padding-top: clamp(4rem, 11vw, 7rem);
    padding-bottom: 4rem;
}

.about-hero-copy {
    align-self: center;
}

.about-hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(4rem, 14vw, 8.25rem);
    font-weight: 520;
}

.about-hero h1 em {
    color: var(--blush);
}

.about-hero-copy > p {
    max-width: 36rem;
    color: rgba(255,255,255,.68);
    font-size: 1.15rem;
}

.signature {
    margin-top: 2rem;
    color: var(--blush);
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-style: italic;
    transform: rotate(-3deg);
    transform-origin: left;
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 14rem 14rem var(--radius) var(--radius);
}

.about-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5.35;
    object-fit: cover;
    object-position: center 38%;
}

.about-hero-image figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: .55rem .75rem;
    background: var(--blush);
    color: var(--plum);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.story-grid {
    display: grid;
    gap: 2.5rem;
}

.story-aside {
    align-self: start;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.story-aside span {
    color: var(--rose-dark);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.story-aside strong {
    display: block;
    margin: 1.5rem 0 .7rem;
    color: var(--plum);
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
}

.story-aside p {
    margin: 0;
    color: var(--muted);
}

.story-copy > p {
    color: var(--muted);
    font-size: 1.06rem;
}

.story-copy blockquote {
    margin: 2.25rem 0;
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--blush);
    color: var(--plum);
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
}

.timeline-section {
    overflow: hidden;
    background: var(--plum);
    color: var(--white);
}

.timeline-section .section-heading h2 {
    color: var(--white);
}

.timeline-section .section-heading h2 em {
    color: var(--blush);
}

.timeline {
    display: flex;
    overflow-x: auto;
    gap: .75rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.timeline::-webkit-scrollbar {
    display: none;
}

.timeline article {
    width: min(78vw, 19rem);
    min-height: 20rem;
    flex: 0 0 auto;
    padding: 1.4rem;
    border: 1px solid rgba(250,209,217,.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,.045);
    scroll-snap-align: start;
}

.timeline strong {
    display: block;
    margin-bottom: 4rem;
    color: var(--blush);
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
}

.timeline h3 {
    margin-bottom: .75rem;
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
}

.timeline p {
    color: rgba(255,255,255,.58);
}

.expertise-section {
    background: var(--sand);
}

.expertise-grid {
    display: grid;
    gap: 2.5rem;
}

.expertise-grid h2 {
    color: var(--plum);
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 520;
}

.expertise-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.expertise-grid li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .8rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--plum);
    font-family: Georgia, serif;
    font-size: 1.25rem;
}

.expertise-grid li span {
    color: var(--rose-dark);
    font-family: "Outfit", sans-serif;
    font-size: .64rem;
    font-weight: 700;
}

/* Reviews page */
.results-section {
    background: var(--sand);
}

.masonry-gallery {
    columns: 2;
    column-gap: .6rem;
}

.masonry-gallery figure {
    position: relative;
    overflow: hidden;
    margin: 0 0 .6rem;
    break-inside: avoid;
    border-radius: .75rem;
    background: var(--cream);
}

.masonry-gallery img {
    width: 100%;
}

.masonry-gallery figcaption {
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    padding: .35rem .5rem;
    background: rgba(4,15,34,.78);
    color: var(--white);
    font-size: .55rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* Contact */
.contact-hero {
    min-height: 42rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(250,209,217,.16), transparent 25rem),
        var(--plum-dark);
}

.contact-hero-grid {
    display: grid;
    gap: 3rem;
    padding-top: clamp(4rem, 12vw, 7rem);
    padding-bottom: 4rem;
}

.contact-intro h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(3.8rem, 13vw, 7.5rem);
    font-weight: 520;
}

.contact-intro h1 em {
    color: var(--blush);
}

.contact-intro p {
    max-width: 35rem;
    color: rgba(255,255,255,.68);
    font-size: 1.12rem;
}

.contact-details {
    align-self: end;
}

.contact-details > a {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(250,209,217,.22);
}

.contact-details span, .contact-details strong {
    display: block;
}

.contact-details span {
    color: var(--blush);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-details strong {
    grid-column: 1;
    margin-top: .35rem;
    font-family: Georgia, serif;
    font-size: 1.12rem;
    font-weight: 400;
}

.contact-details i {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--blush);
    font-style: normal;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.visit-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--plum);
    color: var(--white);
}

.map-wrap {
    height: 22rem;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(.9) sepia(.18);
}

.hours {
    padding: 1.5rem;
}

.hours dl {
    margin: .5rem 0 1.5rem;
}

.hours dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(250,209,217,.16);
}

.hours dt, .hours dd {
    color: rgba(255,255,255,.66);
    font-size: .78rem;
}

.hours dd {
    margin: 0;
    text-align: right;
}

.not-found .button {
    margin-top: 1rem;
}

/* Reveal enhancement */
.reveal {
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal.reveal-pending {
    opacity: 0;
    transform: translateY(1.25rem);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .reveal.reveal-pending { opacity: 1; transform: none; }
}

@media (min-width: 36rem) {
    :root { --shell: min(100% - 3rem, 78rem); }
    .hero-proof { grid-template-columns: repeat(3, auto); justify-content: start; gap: 1.8rem; }
    .hero-proof li { display: grid; gap: 0; }
    .portrait-triptych { min-height: 34rem; gap: .75rem; }
    .service-editorial-grid { grid-template-columns: repeat(2, 1fr); }
    .service-tile-1 { grid-column: 1 / -1; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-count-3 > :first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
    .result-gallery { grid-template-columns: repeat(2, 1fr); }
    .result-count-1 { grid-template-columns: minmax(0, 42rem); justify-content: center; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
    .footer-visit { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 52rem) {
    :root { --header-height: 5.6rem; --shell: min(100% - 4rem, 78rem); }
    body { padding-bottom: 0; }
    .brand { width: 11.5rem; height: 4.5rem; }
    .brand img { max-height: 4rem; }
    .menu-toggle { display: none; }
    .primary-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 1.3rem;
        padding: 0;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .primary-nav > a, .nav-group > a {
        padding: 1.5rem 0;
        font-family: "Outfit", sans-serif;
        font-size: .72rem;
        font-weight: 650;
        letter-spacing: .035em;
        white-space: nowrap;
    }
    .primary-nav > a:not(.nav-book), .nav-group > a { color: rgba(255,255,255,.8); }
    .primary-nav > a:hover, .nav-group > a:hover { color: var(--blush); }
    .nav-group { display: block; width: auto; }
    .nav-group > button { display: none; }
    .nav-dropdown {
        position: absolute;
        top: calc(100% - .5rem);
        left: 50%;
        display: grid;
        width: 14rem;
        padding: .65rem;
        border: 1px solid rgba(250,209,217,.15);
        border-radius: .75rem;
        background: var(--plum-dark);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, .5rem);
        transition: opacity 160ms ease, transform 160ms ease;
    }
    .nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
    .nav-dropdown a { padding: .55rem .65rem; border-radius: .35rem; color: rgba(255,255,255,.72); font-size: .75rem; }
    .nav-dropdown a:hover { background: rgba(250,209,217,.1); color: var(--blush); }
    .primary-nav .nav-book { display: inline-flex; width: auto; min-height: 2.8rem; margin: 0; padding: .7rem 1.2rem; color: var(--plum); font-size: .7rem; }
    .floating-actions {
        top: 50%;
        right: 1.1rem;
        bottom: auto;
        left: auto;
        display: flex;
        width: auto;
        height: auto;
        flex-direction: column;
        gap: .45rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
        transform: translateY(-50%);
    }
    .floating-actions a {
        position: relative;
        display: grid;
        width: 3.25rem;
        height: 3.25rem;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: var(--plum-dark);
        box-shadow: 0 10px 26px rgba(4,15,34,.22);
        color: var(--white);
        transition: transform 180ms ease;
    }
    .floating-actions a:hover { transform: translateX(-.2rem); }
    .floating-actions span { width: 2.2rem; height: 2.2rem; }
    .floating-actions b {
        position: absolute;
        right: calc(100% + .6rem);
        width: max-content;
        padding: .5rem .7rem;
        border-radius: .35rem;
        background: var(--plum-dark);
        color: var(--white);
        opacity: 0;
        pointer-events: none;
        transform: translateX(.35rem);
        transition: opacity 160ms ease, transform 160ms ease;
    }
    .floating-actions a:hover b, .floating-actions a:focus-visible b { opacity: 1; transform: translateX(0); }
    .float-book { background: var(--blush) !important; }
    .hero-home { padding-bottom: 5rem; }
    .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(27rem, 1.1fr); gap: 3rem; align-items: center; }
    .portrait-triptych { min-height: min(67vh, 42rem); }
    .hero-copy h1 { font-size: clamp(4.3rem, 7vw, 7.6rem); }
    .scroll-cue { position: absolute; z-index: 2; bottom: 1.4rem; left: 50%; display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.42); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
    .scroll-cue span { width: 2.2rem; height: 1px; background: currentColor; }
    .split-heading { grid-template-columns: 1.35fr .65fr; align-items: end; }
    .split-heading > p, .split-heading > div:last-child { justify-self: end; }
    .service-editorial-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 16rem; gap: 1rem; }
    .service-tile { min-height: 0; }
    .service-tile-1 { grid-column: 1 / 8; grid-row: span 2; }
    .service-tile-2 { grid-column: 8 / 13; grid-row: span 2; }
    .service-tile-3 { grid-column: 1 / 6; grid-row: span 2; }
    .service-tile-4 { grid-column: 6 / 10; grid-row: span 2; }
    .service-tile-5 { grid-column: 10 / 13; grid-row: span 2; }
    .awards-grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; }
    .award-images { min-height: 42rem; }
    .founder-grid { grid-template-columns: .82fr 1.18fr; gap: clamp(4rem, 8vw, 8rem); }
    .membership-card { grid-template-columns: 1fr 1fr; }
    .review-cta { flex-direction: row; align-items: center; justify-content: space-between; }
    .location-grid { grid-template-columns: 1.2fr .7fr .9fr; align-items: end; }
    .location-address, .location-hours { padding-top: 0; padding-left: 1.5rem; border-top: 0; border-left: 1px solid rgba(250,209,217,.25); }
    .footer-grid { grid-template-columns: 1.8fr repeat(3, 1fr); }
    .footer-visit { grid-column: auto; }
    .service-row { grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 7rem); }
    .service-row:nth-child(even) .service-row-image { order: 2; }
    .service-row:nth-child(even) .service-row-copy { order: 1; }
    .service-hero-grid { grid-template-columns: 1.05fr .8fr; min-height: calc(100svh - var(--header-height)); align-items: center; padding-bottom: 5rem; }
    .service-hero-image { max-height: min(71vh, 48rem); }
    .intro-grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; }
    .highlight-grid { grid-template-columns: repeat(4, 1fr); }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .video-grid, .video-count-3 { grid-template-columns: repeat(3, 1fr); }
    .video-count-3 > :first-child { grid-column: auto; aspect-ratio: 9 / 16; }
    .result-gallery { grid-template-columns: repeat(5, 1fr); }
    .result-count-1 { grid-template-columns: minmax(0, 42rem); }
    .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 6rem; }
    .faq-heading { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; }
    .related-grid { grid-template-columns: repeat(3, 1fr); }
    .about-hero-grid { grid-template-columns: 1.05fr .7fr; min-height: calc(100svh - var(--header-height)); align-items: center; padding-bottom: 5rem; }
    .about-hero-image { max-height: min(74vh, 50rem); }
    .story-grid { grid-template-columns: .42fr 1.58fr; gap: 5rem; }
    .story-aside { position: sticky; top: calc(var(--header-height) + 2rem); }
    .story-copy { max-width: 52rem; }
    .timeline { display: grid; overflow: visible; grid-template-columns: repeat(5, 1fr); }
    .timeline article { width: auto; }
    .expertise-grid { grid-template-columns: 1.05fr .95fr; gap: 6rem; }
    .masonry-gallery { columns: 4; column-gap: .9rem; }
    .masonry-gallery figure { margin-bottom: .9rem; }
    .contact-hero-grid { grid-template-columns: 1.1fr .9fr; min-height: calc(100svh - var(--header-height)); align-items: center; }
    .contact-grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
    .visit-card { align-self: stretch; }
    .map-wrap { height: 60%; min-height: 28rem; }
}

@media (min-width: 72rem) {
    .primary-nav { gap: 2rem; }
    .hero-grid { grid-template-columns: minmax(0, .85fr) minmax(34rem, 1.15fr); gap: 4rem; }
    .portrait-triptych { gap: 1rem; }
    .review-card { width: 27rem; min-height: 26rem; padding: 1.7rem; }
    .instagram-grid { grid-template-columns: repeat(6, 1fr); }
    .service-tile-copy { padding: 1.8rem; }
}


/* =========================================================
   Current brand refresh — navy, blush and rose
   ========================================================= */
@font-face {
    font-family: "Font Awesome 6 Free";
    src: url("../fonts/fa-solid-900.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: block;
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    src: url("../fonts/fa-brands-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: block;
}

:root {
    --navy: #061D3B;
    --navy-deep: #040F22;
    --navy-light: #0D3060;
    --rose: #C27987;
    --rose-dark: #A8606D;
    --blush: #FAD1D9;
    --blush-soft: #FDF0F3;
    --off-white: #FAF8F6;
    --plum: var(--navy);
    --plum-dark: var(--navy-deep);
    --plum-soft: var(--navy-light);
    --cream: var(--off-white);
    --sand: var(--blush-soft);
    --ink: var(--navy);
    --muted: #627086;
    --line: rgba(6, 29, 59, 0.16);
    --shadow: 0 24px 70px rgba(4, 15, 34, 0.14);
    --header-height: 6.9rem;
    --shell: min(100% - 2rem, 90rem);
}

body {
    background: var(--off-white);
    color: var(--navy);
}

.icon {
    display: inline-grid;
    width: 1em;
    height: 1em;
    place-items: center;
    font-style: normal;
    line-height: 1;
}

.icon::before {
    display: block;
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    text-rendering: auto;
}

.icon-instagram::before,
.icon-whatsapp::before,
.icon-tiktok::before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.icon-instagram::before { content: "\f16d"; }
.icon-whatsapp::before { content: "\f232"; }
.icon-tiktok::before { content: "\e07b"; }
.icon-phone::before { content: "\f095"; }
.icon-calendar::before { content: "\f274"; }
.icon-location::before { content: "\f3c5"; }

/* Two-tier branded header */
.site-header,
.site-header.is-scrolled {
    height: var(--header-height);
    border: 0;
    background: transparent;
    box-shadow: 0 10px 35px rgba(4, 15, 34, 0.18);
    backdrop-filter: none;
    color: var(--white);
}

.utility-bar {
    height: 1.9rem;
    border-bottom: 1px solid rgba(250, 209, 217, 0.14);
    background: var(--navy-deep);
    color: var(--blush);
}

.utility-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-social a {
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    border-radius: 50%;
    color: var(--blush);
    font-size: 0.82rem;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-social a:hover,
.header-social a:focus-visible {
    background: rgba(250, 209, 217, 0.12);
    color: var(--white);
    transform: translateY(-1px);
}

.utility-book {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--blush);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1;
    white-space: nowrap;
}

.utility-book .icon {
    color: var(--rose);
    font-size: 0.72rem;
}

.nav-bar {
    height: calc(var(--header-height) - 1.9rem);
    border-bottom: 2px solid rgba(194, 121, 135, 0.34);
    background: var(--navy);
}

.header-inner {
    gap: 1rem;
}

.brand {
    width: 9.5rem;
    height: 4.75rem;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: left center;
}

.menu-toggle {
    width: 2.85rem;
    height: 2.85rem;
    flex: 0 0 auto;
    border-color: rgba(250, 209, 217, 0.45);
    border-radius: 0.7rem;
    background: rgba(250, 209, 217, 0.06);
    color: var(--white);
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
    border-color: var(--rose);
    background: rgba(250, 209, 217, 0.12);
    color: var(--blush);
}

.primary-nav {
    inset: var(--header-height) 0 0;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 1.25rem 1.25rem calc(6rem + env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 85% 12%, rgba(194, 121, 135, 0.18), transparent 18rem),
        var(--navy-deep);
    transform: translateX(100%);
}

.primary-nav.is-open {
    transform: translateX(0);
}

.primary-nav > a,
.nav-group > a {
    display: flex;
    width: 100%;
    min-height: 3.5rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(250, 209, 217, 0.12);
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.12rem, 5.5vw, 1.45rem);
    font-weight: 540;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.primary-nav a[aria-current="page"] {
    color: var(--blush);
}

.nav-group {
    grid-template-columns: minmax(0, 1fr) 2.75rem;
}

.nav-group > button {
    border-color: rgba(250, 209, 217, 0.32);
    color: var(--blush);
    font-size: 1.2rem;
}

.nav-dropdown {
    padding: 0.55rem 0 0.8rem 1rem;
    border-bottom: 1px solid rgba(250, 209, 217, 0.12);
}

.nav-dropdown a {
    padding: 0.48rem 0;
    color: rgba(250, 209, 217, 0.86);
    font-size: 0.95rem;
}

.primary-nav .nav-book {
    width: 100%;
    min-height: 3.35rem;
    margin-top: 1.15rem;
    border: 1px solid var(--rose);
    border-radius: 0.5rem;
    background: var(--rose);
    color: var(--white);
    font-size: 0.78rem;
}

.primary-nav .nav-book:hover,
.primary-nav .nav-book:focus-visible {
    background: var(--rose-dark);
    color: var(--white);
}

/* Current brand colour direction */
.hero-home {
    background:
        radial-gradient(circle at 82% 32%, rgba(194, 121, 135, 0.25), transparent 31rem),
        linear-gradient(145deg, var(--navy-deep), var(--navy) 70%, var(--navy-light));
}

.marquee {
    background: var(--blush);
    color: var(--navy);
}

.portrait-triptych {
    min-height: 31rem;
    margin-inline: -0.5rem;
    gap: 0.55rem;
}

.portrait-triptych figure {
    height: 88%;
    border-radius: 8rem 8rem 0.4rem 0.4rem;
}

.portrait-triptych figure:nth-child(2) {
    height: 100%;
}

.portrait-note {
    background: var(--navy-deep);
}

/* Direct-contact presentation */
.contact-information {
    align-self: start;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 55px rgba(4, 15, 34, 0.08);
}

.contact-information .section-heading {
    margin-bottom: 1.5rem;
}

.contact-information .section-heading h2 {
    font-size: clamp(2.8rem, 8vw, 5rem);
}

.contact-methods {
    display: grid;
}

.contact-methods > a {
    display: grid;
    min-width: 0;
    grid-template-columns: 2.8rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-methods > a > .icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.75rem;
    background: var(--blush-soft);
    color: var(--rose-dark);
    font-size: 1rem;
}

.contact-methods span,
.contact-methods small,
.contact-methods strong {
    display: block;
    min-width: 0;
}

.contact-methods small {
    margin-bottom: 0.18rem;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-methods strong {
    overflow-wrap: anywhere;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1.25;
}

.contact-methods b {
    color: var(--rose-dark);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-methods > a:hover .icon,
.contact-methods > a:focus-visible .icon {
    background: var(--navy);
    color: var(--blush);
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-socials a {
    display: inline-flex;
    min-height: 2.8rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(194, 121, 135, 0.35);
    border-radius: 999px;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
}

.contact-socials .icon {
    color: var(--rose-dark);
    font-size: 1rem;
}

.visit-card {
    background: var(--navy);
}

/* Proper icon treatment for mobile action bar and footer */
.floating-actions {
    background: var(--navy-deep);
    box-shadow: 0 -8px 26px rgba(4, 15, 34, 0.2);
}

.floating-actions span {
    background: rgba(250, 209, 217, 0.12);
    color: var(--blush);
    font-size: 0.9rem;
}

.float-whatsapp span {
    background: #49E670;
    color: #073B1B;
}

.float-book {
    background: var(--rose);
    color: var(--white) !important;
}

.float-book span {
    background: rgba(4, 15, 34, 0.38);
    color: var(--white);
    font-size: 0.85rem;
}

.footer-social a {
    font-size: 1rem;
}

@media (min-width: 36rem) {
    .portrait-triptych {
        min-height: 40rem;
        margin-inline: 0;
        gap: 0.8rem;
    }
}

@media (min-width: 52rem) {
    :root {
        --header-height: 9.4rem;
        --shell: min(100% - 4rem, 90rem);
    }

    .utility-bar {
        height: 2rem;
    }

    .utility-inner {
        padding-inline: 0.25rem;
    }

    .header-social {
        gap: 0.35rem;
    }

    .header-social a {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.9rem;
    }

    .utility-book {
        font-size: 0.72rem;
    }

    .nav-bar {
        height: calc(var(--header-height) - 2rem);
    }

    .header-inner {
        gap: clamp(1rem, 2.2vw, 2.4rem);
    }

    .brand {
        width: clamp(11.75rem, 18vw, 14rem);
        height: 7rem;
    }

    .primary-nav {
        position: static;
        display: flex;
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(0.65rem, 1.15vw, 1.3rem);
        overflow: visible;
        padding: 0;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .primary-nav > a,
    .nav-group > a {
        display: inline-flex;
        width: auto;
        min-height: 3rem;
        align-items: center;
        padding: 0.25rem 0;
        border: 0;
        color: rgba(255, 255, 255, 0.9);
        font-family: "Outfit", sans-serif;
        font-size: clamp(0.76rem, 1vw, 0.86rem);
        font-weight: 560;
        letter-spacing: 0.02em;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-group {
        display: flex;
        width: auto;
        height: 3rem;
        align-items: center;
    }

    .nav-group > button {
        display: none;
    }

    .nav-dropdown {
        top: calc(100% - 0.1rem);
        border-color: rgba(250, 209, 217, 0.16);
        border-top: 2px solid var(--rose);
        background: var(--navy);
    }

    .primary-nav .nav-book {
        display: inline-flex;
        width: auto;
        min-height: 3rem;
        align-items: center;
        margin: 0 0 0 0.35rem;
        padding: 0.75rem clamp(0.9rem, 1.5vw, 1.35rem);
        border-radius: 0.25rem;
        background: var(--rose);
        color: var(--white);
        font-size: clamp(0.68rem, 0.85vw, 0.76rem);
        white-space: nowrap;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.78fr) minmax(31rem, 1.22fr);
        gap: 2.25rem;
    }

    .portrait-triptych {
        min-height: min(74vh, 48rem);
    }

    .floating-actions a {
        width: 3.6rem;
        height: 3.6rem;
        border: 1px solid rgba(194, 121, 135, 0.28);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 12px 32px rgba(4, 15, 34, 0.2);
        color: var(--navy);
    }

    .floating-actions span {
        width: 2.35rem;
        height: 2.35rem;
        background: var(--blush-soft);
        color: var(--rose-dark);
        font-size: 1rem;
    }

    .floating-actions b {
        background: var(--navy-deep);
    }

    .float-whatsapp span {
        background: #49E670;
        color: #073B1B;
    }

    .float-book {
        border-color: var(--rose) !important;
        background: var(--rose) !important;
    }

    .float-book span {
        background: rgba(4, 15, 34, 0.28);
        color: var(--white);
    }

    .contact-information {
        padding: 2.5rem;
    }
}

@media (min-width: 72rem) {
    :root {
        --header-height: 10rem;
    }

    .brand {
        width: 15.5rem;
        height: 7.6rem;
    }

    .primary-nav {
        gap: clamp(1.1rem, 1.65vw, 1.85rem);
    }

    .primary-nav > a,
    .nav-group > a {
        font-size: 0.9rem;
    }

    .primary-nav .nav-book {
        padding-inline: 1.65rem;
        font-size: 0.77rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.68fr) minmax(38rem, 1.32fr);
        gap: 2.5rem;
    }

    .portrait-triptych {
        min-height: min(79vh, 53rem);
        gap: 1rem;
    }
}


/* =========================================================
   v1.2 polish — blue gloss, faster reveals and clean controls
   ========================================================= */
.hero-copy,
.portrait-triptych {
    min-width: 0;
}

.hero-home {
    background:
        radial-gradient(ellipse at 18% -12%, rgba(255, 255, 255, 0.14), transparent 27rem),
        radial-gradient(circle at 86% 28%, rgba(13, 48, 96, 0.9), transparent 35rem),
        radial-gradient(circle at 72% 76%, rgba(194, 121, 135, 0.16), transparent 27rem),
        linear-gradient(145deg, var(--navy-deep), var(--navy) 58%, var(--navy-light));
}

.hero-glow {
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.08), transparent 55%);
    box-shadow:
        inset 0 0 80px rgba(255, 255, 255, 0.035),
        0 0 80px rgba(13, 48, 96, 0.35);
}

.awards-section,
.review-section {
    position: relative;
    background:
        radial-gradient(ellipse at 18% -18%, rgba(255, 255, 255, 0.1), transparent 30rem),
        radial-gradient(circle at 88% 25%, rgba(13, 48, 96, 0.95), transparent 32rem),
        radial-gradient(circle at 70% 100%, rgba(194, 121, 135, 0.12), transparent 26rem),
        linear-gradient(145deg, var(--navy-deep), var(--navy) 64%, var(--navy-light));
}

.membership-heading {
    background:
        radial-gradient(ellipse at 12% 0%, rgba(255, 255, 255, 0.13), transparent 22rem),
        linear-gradient(150deg, var(--navy-light), var(--navy) 48%, var(--navy-deep));
}

.page-hero,
.service-hero,
.about-hero,
.contact-hero {
    background:
        radial-gradient(ellipse at 15% -10%, rgba(255, 255, 255, 0.1), transparent 25rem),
        radial-gradient(circle at 84% 20%, rgba(13, 48, 96, 0.9), transparent 31rem),
        radial-gradient(circle at 70% 90%, rgba(194, 121, 135, 0.12), transparent 24rem),
        linear-gradient(145deg, var(--navy-deep), var(--navy) 68%, var(--navy-light));
}

.site-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse at 18% -25%, rgba(13, 48, 96, 0.98), transparent 38rem),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.065), transparent 22rem),
        linear-gradient(155deg, var(--navy), var(--navy-deep) 68%, #020A17);
}

.site-footer::before {
    position: absolute;
    z-index: -1;
    top: -22rem;
    left: 8%;
    width: 62rem;
    height: 34rem;
    border-radius: 50%;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06), transparent 65%);
    content: "";
    transform: rotate(-10deg);
    pointer-events: none;
}

.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
}

.developer-credit {
    width: 100%;
}

.developer-credit a {
    color: var(--blush);
    font-weight: 700;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
    color: var(--white);
}

/* Faster, earlier content reveal */
.reveal {
    transition: opacity 240ms ease-out, transform 240ms cubic-bezier(.2,.7,.2,1);
}

.reveal.reveal-pending {
    transform: translateY(0.45rem);
}

/* Keep hero copy and photography in distinct desktop columns */
@media (min-width: 52rem) {
    .hero-grid {
        grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.08fr);
        gap: clamp(1.35rem, 2vw, 2rem);
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.9rem, 5vw, 4.75rem);
    }

    /* Background-free desktop quick actions */
    .floating-actions {
        right: clamp(0.35rem, 0.8vw, 0.9rem);
        gap: 0.65rem;
    }

    .floating-actions a,
    .floating-actions .float-book {
        width: 2.9rem;
        height: 2.9rem;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none;
        color: var(--rose-dark);
    }

    .floating-actions span,
    .floating-actions .float-book span,
    .floating-actions .float-whatsapp span {
        width: 2.9rem;
        height: 2.9rem;
        background: transparent !important;
        color: var(--rose-dark);
        font-size: 1.28rem;
        filter:
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
            drop-shadow(0 2px 3px rgba(4, 15, 34, 0.28));
    }

    .floating-actions .float-whatsapp span {
        color: #229E50;
    }

    .floating-actions a:hover,
    .floating-actions a:focus-visible {
        transform: translateX(-0.18rem) scale(1.08);
    }

    .floating-actions b {
        background: rgba(4, 15, 34, 0.94);
        box-shadow: 0 8px 24px rgba(4, 15, 34, 0.2);
    }
}

@media (min-width: 72rem) {
    .hero-grid {
        grid-template-columns: minmax(24rem, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(1.75rem, 2.4vw, 2.75rem);
    }

    .hero-copy h1 {
        font-size: clamp(4rem, 4.8vw, 5.5rem);
    }

    .developer-credit {
        width: auto;
        margin-left: auto;
    }
}

@media (max-width: 51.999rem) {
    .reveal {
        transition-duration: 180ms;
    }
}


/* Reviews page light editorial hero */
.reviews-hero {
    min-height: 34rem;
    border-bottom: 1px solid rgba(194, 121, 135, 0.24);
    background:
        radial-gradient(ellipse at 15% -5%, rgba(255, 255, 255, 0.92), transparent 26rem),
        radial-gradient(circle at 86% 24%, rgba(250, 209, 217, 0.82), transparent 28rem),
        linear-gradient(145deg, var(--off-white), var(--blush-soft));
    color: var(--navy);
}

.reviews-hero::after {
    border-color: rgba(194, 121, 135, 0.28);
}

.reviews-hero .eyebrow.light {
    color: var(--rose-dark);
}

.reviews-hero h1 {
    color: var(--navy);
}

.reviews-hero h1 em {
    color: var(--rose-dark);
}

.reviews-hero p {
    color: rgba(6, 29, 59, 0.68);
}


/* =========================================================
   v1.3 factual and widget corrections
   ========================================================= */
:root {
    --gold: #D6B76A;
}

.brand,
.footer-brand img {
    will-change: auto;
}

.brand img,
.footer-brand img {
    filter:
        brightness(0)
        saturate(100%)
        invert(77%)
        sepia(44%)
        saturate(544%)
        hue-rotate(2deg)
        brightness(92%)
        contrast(88%)
        drop-shadow(0 2px 8px rgba(214, 183, 106, 0.16));
}

.brand {
    width: 10rem;
    height: 4.95rem;
}

.footer-brand img {
    width: 13rem;
}

.elfsight-widget-shell {
    min-height: clamp(26rem, 54vw, 39rem);
    margin-top: clamp(2rem, 5vw, 3.5rem);
    overflow: hidden;
    border: 1px solid rgba(194, 121, 135, 0.2);
    border-radius: clamp(1rem, 2vw, 1.6rem);
    background:
        radial-gradient(circle at 10% 0%, rgba(250, 209, 217, 0.38), transparent 20rem),
        var(--blush-soft);
    box-shadow: 0 24px 70px rgba(4, 15, 34, 0.12);
}

.google-reviews-widget-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 18% -18%, rgba(255, 255, 255, 0.1), transparent 30rem),
        radial-gradient(circle at 88% 25%, rgba(13, 48, 96, 0.95), transparent 32rem),
        radial-gradient(circle at 70% 100%, rgba(194, 121, 135, 0.12), transparent 26rem),
        linear-gradient(145deg, var(--navy-deep), var(--navy) 64%, var(--navy-light));
    color: var(--white);
}

.google-reviews-widget-section h2 {
    color: var(--white);
}

.google-reviews-widget-section h2 em {
    color: var(--blush);
}

.google-reviews-widget-section .split-heading > p {
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.7);
}

.google-reviews-widget {
    min-height: 25rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
}

.google-reviews-widget .wp-gr {
    color: var(--navy);
}

.google-reviews-widget .grw-review-inner {
    border: 1px solid rgba(250, 209, 217, 0.35);
    border-radius: 1rem;
    box-shadow: 0 18px 48px rgba(4, 15, 34, 0.18);
}

@media (min-width: 52rem) {
    .brand {
        width: clamp(12rem, 19vw, 14.75rem);
        height: 7.25rem;
    }
}

@media (min-width: 72rem) {
    .brand {
        width: 16.25rem;
        height: 8rem;
    }
}
