:root {
    color-scheme: light;
    --ink: #261d29;
    --ink-soft: #4e4551;
    --muted: #746b75;
    --plum-950: #2d1830;
    --plum-900: #39223b;
    --plum-800: #4a2b49;
    --plum-700: #603958;
    --plum-200: #d8c5d4;
    --plum-100: #f2eaf0;
    --gold-800: #7e5f2d;
    --gold-600: #a37c3c;
    --gold-500: #bd9350;
    --gold-300: #ddbf8c;
    --gold-100: #f5ecdc;
    --ivory: #f8f4ed;
    --ivory-deep: #efe7dc;
    --paper: #fffefd;
    --line: #e5ddd3;
    --line-dark: rgba(255, 255, 255, 0.13);
    --success: #37735e;
    --danger: #a4444c;
    --shadow-soft: 0 1.4rem 4rem rgba(49, 31, 46, 0.08);
    --shadow-card: 0 1rem 2.8rem rgba(45, 24, 48, 0.07);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.65rem;
    --container: 75rem;
    --header-height: 5rem;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--ivory);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: white;
    background: var(--plum-700);
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

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

button,
select {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(189, 147, 80, 0.45);
    outline-offset: 3px;
}

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

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

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    color: white;
    background: var(--plum-950);
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

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

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(5rem, 9vw, 8rem);
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-announcement {
    position: relative;
    z-index: 61;
    color: #f9f2f5;
    background: var(--plum-950);
}

.announcement-inner {
    display: flex;
    min-height: 2.35rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.71rem;
    letter-spacing: 0.025em;
}

.announcement-inner p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.77);
}

.announcement-inner p span {
    color: var(--gold-300);
}

.announcement-inner a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.site-header {
    position: sticky;
    z-index: 60;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(248, 244, 237, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 0.5rem 1.8rem rgba(45, 24, 48, 0.05);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.72rem;
    color: var(--plum-900);
    text-decoration: none;
}

.brand-emblem {
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(163, 124, 60, 0.42);
    border-radius: 50%;
    color: var(--gold-600);
    font-size: 1rem;
}

.brand-copy {
    min-width: 0;
}

.brand-copy strong,
.brand-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-copy strong {
    max-width: 14rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.15;
}

.brand-copy small {
    margin-top: 0.18rem;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.4vw, 1.3rem);
}

.primary-navigation > a:not(.nav-book-button) {
    position: relative;
    padding-block: 0.5rem;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-navigation > a:not(.nav-book-button)::after {
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold-600);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.primary-navigation > a:hover::after,
.primary-navigation > a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-book-button {
    display: inline-flex;
    min-height: 2.7rem;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    color: white;
    background: var(--plum-800);
    font-size: 0.72rem;
    font-weight: 750;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

.nav-book-button:hover {
    background: var(--plum-700);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.62rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin-block: 0.27rem;
    background: var(--plum-900);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(0.28rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-0.28rem) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    padding: 0.72rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 780;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
    border-color: var(--plum-800);
    color: white;
    background: var(--plum-800);
    box-shadow: 0 0.8rem 1.8rem rgba(57, 34, 59, 0.15);
}

.button-primary:hover {
    border-color: var(--plum-700);
    background: var(--plum-700);
    box-shadow: 0 1rem 2rem rgba(57, 34, 59, 0.19);
}

.button-quiet {
    border-color: var(--line);
    color: var(--plum-800);
    background: rgba(255, 255, 255, 0.58);
}

.button-quiet:hover,
.button-outline:hover {
    border-color: var(--gold-500);
    background: var(--paper);
}

.button-outline {
    border-color: var(--line);
    color: var(--plum-800);
    background: transparent;
}

.button-text {
    color: var(--plum-700);
    background: transparent;
}

.button-large {
    min-height: 3.4rem;
    padding-inline: 1.35rem;
}

.button-full {
    width: 100%;
}

.button:disabled {
    opacity: 0.5;
    transform: none;
    cursor: not-allowed;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(163, 124, 60, 0.48);
    color: var(--plum-800);
    font-size: 0.8rem;
    font-weight: 760;
    text-decoration: none;
}

.text-link .icon {
    transition: transform 160ms ease;
}

.text-link:hover .icon {
    transform: translateX(0.25rem);
}

.text-link-light {
    border-bottom-color: rgba(221, 191, 140, 0.48);
    color: #f4dfbc;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
    color: var(--gold-800);
    font-size: 0.7rem;
    font-weight: 820;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 1.65rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.hero-copy .section-kicker::before {
    display: none;
}

.section-kicker-light {
    color: var(--gold-300);
}

.section-title {
    max-width: 46rem;
    margin-bottom: 0;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -0.035em;
}

.section-title em {
    color: var(--gold-600);
    font-weight: 400;
}

.section-title-light {
    color: #fffafc;
}

.section-title-light em {
    color: var(--gold-300);
}

.section-lead {
    max-width: 42rem;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    line-height: 1.8;
}

.section-heading {
    margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.65fr);
    align-items: end;
    gap: 3rem;
}

.heading-split > p {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

.heading-centred {
    display: grid;
    justify-items: center;
    text-align: center;
}

.heading-centred .section-kicker::before {
    display: none;
}

.heading-centred .section-lead {
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-section {
    position: relative;
    min-height: min(50rem, calc(100vh - 7.35rem));
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(189, 147, 80, 0.12), transparent 28rem),
        linear-gradient(140deg, #fbf8f2 0%, #f5eee7 55%, #eee1e1 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.78fr);
    min-height: min(50rem, calc(100vh - 7.35rem));
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
    padding-block: clamp(4rem, 8vw, 6rem);
}

.hero-copy h1 {
    max-width: 44rem;
    margin: 0;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 7.5vw, 6.7rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.hero-copy h1 em {
    color: var(--gold-600);
    font-weight: 400;
}

.hero-introduction {
    max-width: 38rem;
    margin: 1.5rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.8;
}

.hero-practitioner {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.hero-practitioner strong {
    color: var(--plum-800);
}

.hero-practitioner span::before {
    margin-right: 0.55rem;
    color: var(--gold-600);
    content: "•";
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 1.8rem 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.hero-assurances li {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.73rem;
    font-weight: 680;
}

.hero-assurances .icon {
    color: var(--gold-600);
}

.hero-portrait-wrap {
    position: relative;
    width: min(100%, 30rem);
    justify-self: center;
}

.portrait-arch {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 0.5rem solid rgba(255, 255, 255, 0.74);
    border-radius: 15rem 15rem 1.5rem 1.5rem;
    box-shadow: 0 2rem 5rem rgba(57, 34, 59, 0.17);
}

.portrait-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-portrait-wrap::before {
    position: absolute;
    z-index: 0;
    inset: -2rem -2rem 3rem 2rem;
    border: 1px solid rgba(163, 124, 60, 0.32);
    border-radius: 50% 50% 1.5rem 1.5rem;
    content: "";
}

.portrait-note {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 12rem;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 0.85rem;
    background: rgba(255, 254, 253, 0.89);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.portrait-note-top {
    top: 14%;
    left: -4.5rem;
}

.portrait-note-bottom {
    right: -3.2rem;
    bottom: 12%;
}

.mini-icon {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-800);
    background: var(--gold-100);
}

.portrait-note p,
.portrait-note small,
.portrait-note strong {
    display: block;
    margin: 0;
}

.portrait-note small {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portrait-note strong {
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(163, 124, 60, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-one {
    width: 42rem;
    height: 18rem;
    right: -8rem;
    bottom: 8rem;
    transform: rotate(-18deg);
}

.hero-orbit-two {
    width: 23rem;
    height: 23rem;
    top: -14rem;
    left: 36%;
}

.trust-ribbon {
    position: relative;
    z-index: 4;
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.trust-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-ribbon-grid > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.8rem;
    padding: 1.35rem 1rem;
    border-right: 1px solid var(--line);
}

.trust-ribbon-grid > div:first-child {
    padding-left: 0;
}

.trust-ribbon-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-ribbon-grid > div > span {
    color: var(--gold-600);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.trust-ribbon-grid p,
.trust-ribbon-grid strong,
.trust-ribbon-grid small {
    display: block;
    margin: 0;
}

.trust-ribbon-grid strong {
    color: var(--plum-900);
    font-size: 0.78rem;
}

.trust-ribbon-grid small {
    margin-top: 0.1rem;
    color: var(--muted);
    font-size: 0.66rem;
}

.about-section {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 8rem);
}

.about-visual {
    position: relative;
    width: min(100%, 28rem);
    justify-self: center;
}

.about-photo-frame {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-frame::after {
    position: absolute;
    inset: 1rem -1rem -1rem 1rem;
    z-index: -1;
    border: 1px solid rgba(163, 124, 60, 0.38);
    border-radius: 1.2rem;
    content: "";
}

.about-signature-card {
    position: absolute;
    right: -3.2rem;
    bottom: 2.2rem;
    display: flex;
    width: min(18rem, 70%);
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: rgba(255, 254, 253, 0.94);
    box-shadow: var(--shadow-card);
}

.about-signature-card > span {
    color: var(--gold-600);
}

.about-signature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.86rem;
    line-height: 1.55;
}

.about-copy > p:not(.section-kicker, .section-lead) {
    max-width: 42rem;
    color: var(--muted);
    line-height: 1.85;
}

.about-copy .section-lead {
    margin: 1.35rem 0 1rem;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
    margin-block: 1.5rem;
}

.expertise-list span {
    padding: 0.42rem 0.68rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--plum-800);
    background: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    font-weight: 720;
}

.certification-list {
    margin: -0.35rem 0 1.5rem;
    padding: 0.85rem 1rem;
    border-left: 2px solid var(--gold-500);
    background: rgba(245, 236, 220, 0.55);
}

.certification-list > strong {
    color: var(--plum-800);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.certification-list ul {
    margin: 0.35rem 0 0;
    padding-left: 1rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(4rem, 8vw, 7rem);
    border-block: 1px solid var(--line);
}

.profile-stat-grid article {
    display: grid;
    gap: 0.25rem;
    padding: 1.5rem;
    border-right: 1px solid var(--line);
    text-align: center;
}

.profile-stat-grid article:first-child {
    padding-left: 0;
}

.profile-stat-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.profile-stat-grid strong {
    color: var(--plum-800);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1;
}

.profile-stat-grid span {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 720;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.additional-profile-section {
    overflow: hidden;
    background: linear-gradient(135deg, var(--ivory-50), var(--plum-50));
}

.additional-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 8rem);
}

.additional-profile-copy {
    max-width: 44rem;
}

.additional-profile-copy .section-lead {
    max-width: 42rem;
    line-height: 1.85;
}

.additional-profile-photo {
    position: relative;
    width: min(100%, 28rem);
    justify-self: center;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 1.2rem;
    background: var(--ivory-100);
    box-shadow: var(--shadow-soft);
}

.additional-profile-photo::after {
    position: absolute;
    inset: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 0.8rem;
    content: "";
    pointer-events: none;
}

.additional-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section {
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 92% 8%, rgba(189, 147, 80, 0.16), transparent 25rem),
        radial-gradient(circle at 8% 92%, rgba(119, 74, 108, 0.24), transparent 27rem),
        var(--plum-950);
}

.services-section::before {
    position: absolute;
    top: 7rem;
    right: -9rem;
    width: 25rem;
    height: 25rem;
    border: 1px solid rgba(221, 191, 140, 0.1);
    border-radius: 50%;
    content: "";
}

.service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-card {
    display: flex;
    min-height: 24rem;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid var(--line-dark);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.045);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover {
    border-color: rgba(221, 191, 140, 0.42);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-4px);
}

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

.service-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(221, 191, 140, 0.26);
    border-radius: 50%;
    color: var(--gold-300);
    background: rgba(189, 147, 80, 0.08);
}

.service-icon .icon {
    width: 1.35rem;
    height: 1.35rem;
}

.service-number {
    color: rgba(255, 255, 255, 0.29);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
}

.service-card h3 {
    margin: 1.5rem 0 0;
    color: #fffafc;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.2;
}

.service-card > p {
    margin: 0.85rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.59);
    font-size: 0.86rem;
    line-height: 1.75;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
}

.service-meta strong {
    color: var(--gold-300);
    font-size: 0.9rem;
}

.service-book-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.73rem;
    font-weight: 740;
    text-decoration: none;
}

.service-book-link .icon {
    color: var(--gold-300);
    transition: transform 160ms ease;
}

.service-book-link:hover .icon {
    transform: translateX(0.25rem);
}

.why-section {
    background: var(--paper);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--line);
}

.benefit-grid article {
    min-height: 16rem;
    padding: clamp(1.3rem, 3vw, 2rem);
    background: var(--paper);
    transition: background 160ms ease;
}

.benefit-grid article:hover {
    background: #fbf8f3;
}

.benefit-grid article > span {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-800);
    background: var(--gold-100);
}

.benefit-grid h3 {
    margin: 1.3rem 0 0.55rem;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.benefit-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.process-section {
    overflow: hidden;
    background: var(--ivory);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-grid::before {
    position: absolute;
    z-index: 0;
    top: 3.75rem;
    right: 11%;
    left: 11%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(163, 124, 60, 0.4) 15%, rgba(163, 124, 60, 0.4) 85%, transparent);
}

.process-grid li {
    position: relative;
    z-index: 1;
    padding: 1.2rem;
    text-align: center;
}

.process-number {
    position: absolute;
    top: 0;
    right: 1rem;
    color: rgba(96, 57, 88, 0.25);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}

.process-icon {
    display: grid;
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    place-items: center;
    border: 1px solid rgba(163, 124, 60, 0.35);
    border-radius: 50%;
    color: var(--gold-800);
    background: var(--ivory);
    box-shadow: 0 0 0 0.7rem var(--ivory);
}

.process-icon .icon {
    width: 1.55rem;
    height: 1.55rem;
}

.process-grid h3 {
    margin: 1.4rem 0 0.5rem;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 500;
}

.process-grid p {
    max-width: 15rem;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.78rem;
}

.reviews-section {
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.review-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(19rem, 1fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 8rem);
}

.review-heading .section-lead {
    margin: 1.2rem 0 0;
}

.review-rating-placeholder {
    display: grid;
    width: max-content;
    gap: 0.2rem;
    margin-top: 1.4rem;
}

.stars {
    color: var(--gold-500);
    font-size: 1.25rem;
    letter-spacing: 0.12em;
}

.review-rating-placeholder small {
    color: var(--muted);
    font-size: 0.68rem;
}

.review-empty-card {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(189, 147, 80, 0.12), transparent 17rem),
        #fbf8f3;
    box-shadow: var(--shadow-card);
}

.review-quote {
    width: 2.6rem;
    height: 2.6rem;
    color: var(--gold-500);
    opacity: 0.75;
}

.review-empty-card h3 {
    margin: 1.4rem 0 0.7rem;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 400;
}

.review-empty-card p {
    color: var(--muted);
    line-height: 1.8;
}

.review-empty-card .text-link {
    margin-top: 0.5rem;
}

.review-carousel {
    min-width: 0;
}

.review-track {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
}

.review-slide {
    min-width: 100%;
    scroll-snap-align: start;
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-controls button {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--plum-800);
    background: white;
}

.review-content {
    min-width: 0;
}

.review-rating-placeholder strong {
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 500;
}

.review-all-link {
    width: max-content;
    margin-top: 1.25rem;
}

.review-loading {
    display: grid;
    min-height: 22rem;
    place-items: center;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fbf8f3;
    text-align: center;
}

.review-loading > span {
    width: 2.4rem;
    height: 2.4rem;
    border: 2px solid var(--line);
    border-top-color: var(--gold-600);
    border-radius: 50%;
    animation: review-spin 800ms linear infinite;
}

.review-loading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

@keyframes review-spin {
    to { transform: rotate(360deg); }
}

.review-track {
    border-radius: var(--radius-lg);
}

.review-slide {
    min-width: 100%;
    min-height: 23rem;
    padding: clamp(1.6rem, 5vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(189, 147, 80, 0.12), transparent 17rem),
        #fbf8f3;
    scroll-snap-align: start;
}

.review-card-stars {
    color: var(--gold-600);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

.review-card-stars span {
    color: #cfc6bc;
}

.review-slide blockquote {
    margin: 1.25rem 0 1.5rem;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    line-height: 1.55;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author img,
.review-initial {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border-radius: 50%;
}

.review-author img {
    object-fit: cover;
    background: var(--ivory-deep);
}

.review-initial {
    display: grid;
    place-items: center;
    color: white;
    background: var(--plum-700);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.review-author p,
.review-author strong,
.review-author small,
.review-author-link {
    display: block;
    margin: 0;
}

.review-author strong,
.review-author-link {
    color: var(--plum-900);
    font-size: 0.8rem;
    font-weight: 760;
    text-decoration: none;
}

.review-author-link:hover {
    color: var(--gold-800);
}

.review-author small {
    margin-top: 0.12rem;
    color: var(--muted);
    font-size: 0.66rem;
}

.review-source-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
}

.review-source-links a,
.review-source-links span,
.review-attribution {
    color: var(--muted);
    font-size: 0.62rem;
}

.review-source-links a:hover {
    color: var(--plum-700);
}

.carousel-controls {
    align-items: center;
}

.carousel-controls > span {
    min-width: 2.6rem;
    color: var(--muted);
    font-size: 0.66rem;
    text-align: center;
}

.review-attribution {
    margin: 0.8rem 0 0;
}

.review-attribution strong {
    color: var(--ink-soft);
}

.review-attribution a {
    color: var(--plum-700);
}

.section-empty {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--muted);
    background: #fbf8f3;
}

.section-empty h3,
.section-empty p {
    margin: 0;
}

.section-empty h3 {
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.section-empty p {
    margin-top: 0.35rem;
}

.section-empty-dark {
    border-color: var(--line-dark);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.section-empty-dark h3 {
    color: white;
}

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

.faq-layout {
    display: grid;
    grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(3rem, 9vw, 8rem);
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.faq-heading > p:not(.section-kicker) {
    margin: 1.2rem 0 1.5rem;
    color: var(--muted);
    line-height: 1.8;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    border: 0;
    color: var(--plum-900);
    background: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    text-align: left;
}

.faq-item button i {
    position: relative;
    width: 1.7rem;
    height: 1.7rem;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.65rem;
    height: 1px;
    content: "";
    background: var(--plum-700);
    transform: translate(-50%, -50%);
    transition: transform 160ms ease;
}

.faq-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer p {
    max-width: 42rem;
    margin: -0.2rem 0 1.5rem;
    padding-right: 3rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.8;
}

.booking-section {
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 8% 10%, rgba(189, 147, 80, 0.16), transparent 24rem),
        radial-gradient(circle at 94% 90%, rgba(119, 74, 108, 0.22), transparent 28rem),
        var(--plum-950);
}

.booking-heading > p:last-child {
    max-width: 44rem;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.61);
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.38fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
}

.booking-main {
    color: var(--ink);
    background: var(--paper);
}

.booking-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 1.15rem clamp(1.1rem, 4vw, 2rem);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.booking-progress li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #9b929c;
}

.booking-progress li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    width: 28%;
    height: 1px;
    content: "";
    background: var(--line);
}

.booking-progress li > span {
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 780;
}

.booking-progress li small {
    font-size: 0.68rem;
    font-weight: 700;
}

.booking-progress li.is-active {
    color: var(--plum-800);
}

.booking-progress li.is-active > span {
    border-color: var(--plum-800);
    color: white;
    background: var(--plum-800);
}

.booking-panel {
    width: min(100%, 43rem);
    min-height: 28rem;
    margin: 0 auto;
    padding: clamp(1.5rem, 5vw, 3.2rem);
}

.booking-form {
    min-height: 31rem;
}

.booking-help,
.booking-timezone {
    margin: 0.6rem 0 1.2rem;
    color: var(--muted);
    font-size: 0.69rem;
}

.booking-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.3rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.booking-progress li.is-complete {
    color: var(--success);
}

.booking-progress li.is-complete > span {
    border-color: var(--success);
    color: white;
    background: var(--success);
}

.booking-progress li.is-complete > span::before {
    content: "✓";
}

.booking-progress li.is-complete > span {
    font-size: 0;
}

.booking-progress li.is-complete > span::before {
    font-size: 0.65rem;
}

.availability-status {
    margin-bottom: 1rem;
    padding: 0.72rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--muted);
    background: #f9f6f1;
    font-size: 0.72rem;
}

.slot-fieldset {
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
}

.slot-fieldset legend {
    margin-bottom: 0.55rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 760;
}

.date-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    max-height: 14rem;
    overflow-y: auto;
    padding: 0.1rem;
    scrollbar-width: thin;
}

.time-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.date-choice,
.time-choice {
    min-height: 3rem;
    padding: 0.55rem 0.62rem;
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    color: var(--plum-800);
    background: white;
    font-size: 0.72rem;
    text-align: center;
}

.date-choice {
    display: grid;
    gap: 0.08rem;
}

.date-choice strong {
    font-size: 0.72rem;
}

.date-choice small {
    color: var(--muted);
    font-size: 0.58rem;
}

.date-choice:hover,
.time-choice:hover,
.date-choice.is-selected,
.time-choice.is-selected {
    border-color: var(--plum-700);
    color: white;
    background: var(--plum-700);
}

.date-choice.is-selected small {
    color: rgba(255, 255, 255, 0.72);
}

.booking-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.booking-field {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.booking-field-full {
    grid-column: 1 / -1;
}

.booking-field > span {
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 740;
}

.booking-field em {
    color: var(--muted);
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 500;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: white;
}

.booking-field input,
.booking-field select {
    min-height: 2.9rem;
    padding: 0.65rem 0.75rem;
}

.booking-field textarea {
    padding: 0.68rem 0.75rem;
    resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(189, 147, 80, 0.12);
    outline: 0;
}

.booking-field input:disabled {
    color: var(--muted);
    background: #f3efea;
}

.booking-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.55;
}

.booking-consent input {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    margin-top: 0.12rem;
    accent-color: var(--plum-700);
}

.booking-consent a {
    color: var(--plum-700);
}

.booking-review-list,
.booking-summary-details {
    display: grid;
    margin: 0;
}

.booking-review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: var(--line);
}

.booking-review-list > div {
    padding: 0.78rem;
    background: #fbf8f3;
}

.booking-review-list dt,
.booking-summary-details dt {
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 740;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.booking-review-list dd,
.booking-summary-details dd {
    margin: 0.18rem 0 0;
    overflow-wrap: anywhere;
    color: var(--plum-900);
    font-size: 0.77rem;
    font-weight: 680;
}

.booking-hold-note,
.booking-payment-placeholder {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    padding: 0.8rem;
    border: 1px solid #dfd0ae;
    border-radius: 0.65rem;
    color: var(--gold-800);
    background: #fff8e9;
}

.booking-hold-note p,
.booking-hold-note strong,
.booking-hold-note span,
.booking-payment-placeholder p,
.booking-payment-placeholder strong,
.booking-payment-placeholder span {
    display: block;
    margin: 0;
}

.booking-hold-note strong,
.booking-payment-placeholder strong {
    font-size: 0.72rem;
}

.booking-hold-note span,
.booking-payment-placeholder span {
    margin-top: 0.1rem;
    color: var(--muted);
    font-size: 0.64rem;
}

.booking-reserved {
    display: grid;
    min-height: 31rem;
    place-items: center;
    align-content: center;
    text-align: center;
}

.booking-success-icon {
    display: grid;
    width: 3.8rem;
    height: 3.8rem;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--success);
    box-shadow: 0 0 0 0.5rem #e4f1ec;
}

.booking-reserved .booking-step-label {
    margin-top: 1.2rem;
}

.booking-reserved > p:not(.booking-step-label, .hold-countdown) {
    color: var(--muted);
}

.hold-countdown {
    color: var(--muted);
}

.hold-countdown strong {
    color: var(--plum-800);
    font-variant-numeric: tabular-nums;
}

.booking-payment-placeholder {
    width: min(100%, 31rem);
    margin-block: 1rem;
    text-align: left;
}

.payment-status-message {
    min-height: 1.4rem;
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
    text-align: center;
}

.payment-status-message.is-error {
    color: var(--danger);
}

.payment-status-message.is-success {
    color: var(--success);
}

.payment-status-message.is-pending {
    color: var(--gold-800);
}

.payment-confirmed {
    display: grid;
    min-height: 31rem;
    place-items: center;
    align-content: center;
    text-align: center;
}

.payment-confirmed > p {
    color: var(--muted);
}

.payment-mode-badge {
    margin-bottom: 1rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    color: #7b5316;
    background: #fff1d5;
    font-size: 0.62rem;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.confirmation-summary {
    width: min(100%, 34rem);
    margin-block: 0.5rem 1rem;
    text-align: left;
}

.confirmation-note {
    max-width: 32rem;
    font-size: 0.7rem;
}

.booking-step-label,
.contact-card-kicker {
    margin-bottom: 0.45rem;
    color: var(--gold-800);
    font-size: 0.65rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-panel h3,
.booking-summary h3,
.contact-card h3 {
    margin-bottom: 1.4rem;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 400;
}

.field-label,
.contact-form label > span,
.booking-preview-fields label > span {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 740;
}

.site-select,
.contact-form input,
.contact-form textarea,
.booking-preview-fields input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: white;
}

.site-select,
.contact-form input,
.booking-preview-fields input {
    min-height: 3rem;
    padding: 0.68rem 0.8rem;
}

.contact-form textarea {
    min-height: 8rem;
    padding: 0.72rem 0.8rem;
    resize: vertical;
}

.site-select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(189, 147, 80, 0.12);
    outline: 0;
}

.booking-preview-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-block: 1rem 1.2rem;
}

.booking-preview-fields input:disabled {
    color: #9e969f;
    background: #f8f5f1;
    cursor: not-allowed;
}

.booking-summary {
    padding: clamp(1.5rem, 4vw, 2rem);
    color: white;
    background:
        radial-gradient(circle at 100% 0%, rgba(189, 147, 80, 0.16), transparent 15rem),
        var(--plum-900);
}

.booking-summary .booking-step-label,
.booking-summary h3 {
    color: white;
}

.booking-summary-empty {
    padding-block: 1.5rem;
    text-align: center;
}

.booking-summary-empty > span {
    display: grid;
    width: 3.7rem;
    height: 3.7rem;
    margin: 0 auto 1rem;
    place-items: center;
    border: 1px solid rgba(221, 191, 140, 0.35);
    border-radius: 50%;
    color: var(--gold-300);
}

.booking-summary-empty h3 {
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
}

.booking-summary-empty p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
}

.booking-summary-details {
    gap: 0;
}

.booking-summary-details > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-summary-details dt {
    color: rgba(255, 255, 255, 0.48);
}

.booking-summary-details dd {
    max-width: 65%;
    color: white;
    text-align: right;
}

.booking-summary > ul {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0 0;
    padding: 1.3rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    list-style: none;
}

.booking-summary > ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.69rem;
}

.booking-summary > ul .icon {
    color: var(--gold-300);
}

.inline-message {
    margin: 0.8rem 0 0;
    padding: 0.7rem 0.8rem;
    border: 1px solid #dacda9;
    border-radius: var(--radius-sm);
    color: #71531e;
    background: #fff8e9;
    font-size: 0.74rem;
}

.inline-message.is-error {
    border-color: #ecc4c8;
    color: var(--danger);
    background: #fdf0f1;
}

.inline-message.is-success {
    border-color: #bddbce;
    color: var(--success);
    background: #edf7f3;
}

.contact-section {
    background: var(--paper);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 0.68fr);
    align-items: start;
    gap: clamp(3rem, 9vw, 8rem);
}

.contact-details .section-lead {
    margin: 1.2rem 0 1.8rem;
}

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

.contact-methods article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.72rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: #fcfaf7;
}

.contact-methods article > span {
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-800);
    background: var(--gold-100);
}

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

.contact-methods small {
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-methods strong {
    overflow-wrap: anywhere;
    color: var(--plum-900);
    font-size: 0.75rem;
}

.contact-methods a {
    text-decoration: none;
}

.contact-methods a:hover strong {
    color: var(--gold-800);
}

.contact-map {
    aspect-ratio: 16 / 9;
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--ivory-deep);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-panel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--gold-800);
    background: #fcfaf7;
}

.location-panel .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.location-panel p,
.location-panel small,
.location-panel strong {
    display: block;
    margin: 0;
}

.location-panel small {
    color: var(--muted);
    font-size: 0.62rem;
    text-transform: uppercase;
}

.location-panel strong {
    color: var(--plum-900);
    font-size: 0.8rem;
}

.contact-card {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fbf8f3;
    box-shadow: var(--shadow-card);
}

.contact-card h3 {
    margin-bottom: 1.4rem;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 0.85rem;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form label {
    display: grid;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-form > small {
    color: var(--muted);
    font-size: 0.65rem;
    text-align: center;
}

.contact-form > small a {
    color: var(--plum-700);
}

.site-footer {
    position: relative;
    padding-top: clamp(4rem, 8vw, 6rem);
    color: rgba(255, 255, 255, 0.68);
    background:
        radial-gradient(circle at 10% 0%, rgba(189, 147, 80, 0.12), transparent 22rem),
        #241428;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(15rem, 1.35fr) repeat(3, minmax(9rem, 0.62fr));
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: 3rem;
}

.footer-brand {
    color: white;
}

.footer-brand .brand-emblem {
    color: var(--gold-300);
}

.footer-brand .brand-copy small {
    color: rgba(255, 255, 255, 0.5);
}

.footer-intro > p {
    max-width: 22rem;
    margin: 1.2rem 0 1.3rem;
    font-size: 0.78rem;
    line-height: 1.75;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.6rem;
}

.footer-column h2 {
    margin-bottom: 0.5rem;
    color: white;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    width: max-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--gold-300);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
    margin-top: 0.3rem;
}

.footer-socials a {
    color: var(--gold-300);
    font-weight: 720;
}

.footer-lower {
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-lower p {
    margin: 0;
    font-size: 0.67rem;
}

.footer-lower nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem 1.2rem;
}

.footer-lower a {
    font-size: 0.67rem;
    text-decoration: none;
}

.footer-lower a:hover {
    color: var(--gold-300);
}

.footer-disclaimer {
    padding-block: 0.9rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-disclaimer p {
    max-width: 60rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.61rem;
    line-height: 1.6;
}

/* Legal pages */
.legal-hero {
    padding-block: clamp(4.5rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 85% 0%, rgba(189, 147, 80, 0.13), transparent 24rem),
        linear-gradient(140deg, #fbf8f2, #f2e8e6);
}

.legal-hero .container {
    max-width: 62rem;
}

.legal-hero h1 {
    max-width: 50rem;
    margin: 0;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
}

.legal-hero > .container > p:not(.section-kicker, .legal-updated) {
    max-width: 42rem;
    margin: 1.2rem 0 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-updated {
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 680;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.legal-section {
    background: var(--paper);
}

.legal-layout {
    display: grid;
    grid-template-columns: 14rem minmax(0, 45rem);
    justify-content: center;
    gap: clamp(2rem, 7vw, 6rem);
}

.legal-aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fbf8f3;
}

.legal-aside strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--plum-900);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-aside a {
    display: block;
    padding-block: 0.35rem;
    color: var(--muted);
    font-size: 0.7rem;
    text-decoration: none;
}

.legal-aside a:hover {
    color: var(--plum-700);
}

.legal-content article {
    padding-bottom: 2.2rem;
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-content article + article {
    padding-top: 2.2rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 0.8rem;
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

.legal-content h3 {
    margin: 1.4rem 0 0.5rem;
    color: var(--plum-800);
    font-size: 0.92rem;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.2rem;
}

.legal-callout {
    margin-bottom: 2rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--gold-500);
    color: var(--ink-soft);
    background: var(--gold-100);
    font-size: 0.8rem;
}

@media (max-width: 68rem) {
    .primary-navigation {
        gap: 0.65rem;
    }

    .primary-navigation > a:not(.nav-book-button) {
        font-size: 0.7rem;
    }

    .hero-grid {
        gap: 3rem;
    }

    .portrait-note-top {
        left: -2rem;
    }

    .portrait-note-bottom {
        right: -1.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, 0.7fr);
    }

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 58rem) {
    :root {
        --header-height: 4.4rem;
    }

    .site-announcement {
        display: none;
    }

    /* Backdrop filters create a containing block for fixed descendants in mobile
       Chromium. Disable it so the full-screen navigation is viewport-fixed. */
    .site-header {
        z-index: 100;
        overflow: visible;
        background: var(--ivory);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-inner {
        position: relative;
        z-index: 101;
    }

    .menu-toggle {
        position: relative;
        z-index: 103;
        display: block;
        touch-action: manipulation;
    }

    .primary-navigation {
        position: fixed;
        z-index: 102;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 1.2rem max(1.25rem, calc((100vw - var(--container)) / 2)) calc(2rem + env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain;
        border-top: 1px solid var(--line);
        background: var(--ivory);
        opacity: 0;
        pointer-events: none;
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        -webkit-overflow-scrolling: touch;
        transition: transform 220ms ease, opacity 180ms ease, visibility 220ms ease;
    }

    .primary-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    .primary-navigation > a:not(.nav-book-button) {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--line);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.25rem;
        font-weight: 500;
    }

    .primary-navigation > a:not(.nav-book-button)::after {
        display: none;
    }

    .nav-book-button {
        min-height: 3.2rem;
        margin-top: 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 4rem;
        padding-block: 4rem 5rem;
    }

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

    .hero-copy .section-kicker,
    .hero-practitioner,
    .hero-actions,
    .hero-assurances {
        justify-content: center;
    }

    .hero-copy h1,
    .hero-introduction {
        margin-inline: auto;
    }

    .hero-portrait-wrap {
        width: min(75vw, 28rem);
    }

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

    .trust-ribbon-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-ribbon-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .trust-ribbon-grid > div:first-child,
    .trust-ribbon-grid > div:nth-child(3) {
        padding-left: 0;
    }

    .about-grid,
    .additional-profile-grid,
    .review-layout,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .additional-profile-copy {
        max-width: 45rem;
    }

    .additional-profile-photo {
        width: min(72vw, 27rem);
    }

    .about-visual {
        width: min(72vw, 27rem);
    }

    .about-copy {
        max-width: 45rem;
    }

    .heading-split {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

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

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

    .process-grid::before {
        display: none;
    }

    .faq-heading {
        position: static;
    }

    .booking-shell {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        min-height: auto;
    }

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

    .footer-intro {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-aside {
        position: static;
        display: flex;
        gap: 0.35rem 1rem;
        overflow-x: auto;
        padding: 0.7rem;
    }

    .legal-aside strong {
        display: none;
    }

    .legal-aside a {
        flex: 0 0 auto;
    }
}

@media (max-width: 42rem) {
    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .site-announcement {
        display: none;
    }

    .brand-copy strong {
        max-width: 10.5rem;
    }

    .section {
        padding-block: 4.5rem;
    }

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

    .hero-grid {
        padding-top: 3.2rem;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-assurances {
        gap: 0.65rem 0.9rem;
    }

    .hero-portrait-wrap {
        width: min(82vw, 25rem);
    }

    .portrait-note {
        min-width: 10.5rem;
        padding: 0.58rem 0.7rem;
    }

    .portrait-note-top {
        top: 12%;
        left: -1.2rem;
    }

    .portrait-note-bottom {
        right: -1rem;
        bottom: 9%;
    }

    .mini-icon {
        width: 2rem;
        height: 2rem;
    }

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

    .trust-ribbon-grid > div,
    .trust-ribbon-grid > div:nth-child(2) {
        padding: 0.85rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-ribbon-grid > div:last-child {
        border-bottom: 0;
    }

    .about-visual {
        width: calc(100% - 1.4rem);
        margin-right: 1.4rem;
    }

    .additional-profile-photo {
        width: min(82vw, 25rem);
    }

    .about-signature-card {
        right: -1.4rem;
        bottom: 1rem;
    }

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

    .profile-stat-grid article:nth-child(2) {
        border-right: 0;
    }

    .profile-stat-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .service-grid,
    .benefit-grid,
    .process-grid,
    .contact-methods,
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 22rem;
    }

    .benefit-grid article {
        min-height: auto;
    }

    .process-grid li {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 1rem;
        text-align: left;
    }

    .process-icon {
        grid-row: 1 / span 3;
        width: 4rem;
        height: 4rem;
        margin: 0;
        box-shadow: none;
    }

    .process-number {
        display: none;
    }

    .process-grid h3 {
        margin-top: 0.25rem;
    }

    .process-grid p {
        max-width: none;
        margin: 0;
    }

    .booking-progress {
        padding-inline: 0.75rem;
    }

    .booking-progress li {
        justify-content: center;
    }

    .booking-progress li small,
    .booking-progress li::after {
        display: none;
    }

    .booking-preview-fields,
    .booking-detail-grid,
    .booking-review-list {
        grid-template-columns: 1fr;
    }

    .booking-field-full {
        grid-column: auto;
    }

    .date-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .time-choice-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .booking-form-actions .button {
        width: 100%;
    }

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

    .footer-intro,
    .footer-contact {
        grid-column: auto;
    }

    .footer-lower {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 1.2rem;
    }

    .footer-lower nav {
        justify-content: flex-start;
    }
}

/* Graceful application and web-server errors */
.error-page { min-height: 100vh; background: radial-gradient(circle at 75% 10%, rgba(173,131,66,.2), transparent 24rem), #f5f1e9; }
.error-shell { display: grid; min-height: 100vh; place-items: center; padding: 1.5rem; }
.error-card { width: min(100%, 42rem); padding: clamp(2rem, 7vw, 4.5rem); border: 1px solid rgba(78,43,77,.14); border-radius: 1.5rem; background: rgba(255,255,255,.9); box-shadow: 0 2rem 5rem rgba(48,29,48,.1); text-align: center; }
.error-emblem { display: grid; width: 4rem; height: 4rem; margin: 0 auto 1.3rem; place-items: center; border: 1px solid rgba(173,131,66,.4); border-radius: 50%; color: #ad8342; font-size: 1.4rem; }
.error-card h1 { margin: .35rem 0 .8rem; color: #39223b; font-family: Georgia,serif; font-size: clamp(2rem,7vw,3.8rem); font-weight: 400; line-height: 1.08; }
.error-card > p:not(.section-kicker) { max-width: 32rem; margin: 0 auto; color: #756c77; line-height: 1.75; }
.error-reference { margin-top: 1rem !important; font-size: .78rem; }
.error-reference code { padding: .2rem .4rem; border-radius: .35rem; background: #f1e9ef; }
.error-card .button { margin-top: 1.6rem; }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-announcement,
    .site-header,
    .site-footer,
    .legal-aside {
        display: none !important;
    }

    body {
        padding: 0;
        color: #000;
        background: #fff;
    }

    .section,
    .legal-hero {
        padding-block: 2rem;
    }

    .legal-layout {
        display: block;
    }
}
