:root {
    color-scheme: light;
    --bg: #f4eadb;
    --bg-deep: #e9d7bc;
    --paper: rgba(255, 248, 238, 0.82);
    --paper-strong: #fff9f1;
    --text: #201612;
    --muted: #665449;
    --line: rgba(82, 54, 39, 0.14);
    --accent: #9e4f2d;
    --accent-deep: #7d3920;
    --accent-soft: #d8b587;
    --leaf: #23443d;
    --leaf-soft: #dbe6df;
    --shadow-lg: 0 26px 70px rgba(60, 37, 25, 0.14);
    --shadow-md: 0 14px 34px rgba(60, 37, 25, 0.1);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(
            circle at top left,
            rgba(216, 181, 135, 0.52),
            transparent 24%
        ),
        radial-gradient(
            circle at 80% 10%,
            rgba(35, 68, 61, 0.14),
            transparent 20%
        ),
        linear-gradient(180deg, #fbf5ec 0%, var(--bg) 54%, #f8f0e4 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background:
        linear-gradient(rgba(32, 22, 18, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 22, 18, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 88%);
}

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

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

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

[data-en],
[data-vi] {
    display: inline;
}

html[data-lang='en'] [data-vi],
html[data-lang='vi'] [data-en] {
    display: none !important;
}

.page-shell {
    position: relative;
    width: min(calc(100% - 32px), var(--content-width));
    margin: 0 auto;
    padding: 20px 0 72px;
}

.backdrop {
    position: fixed;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(34px);
    opacity: 0.52;
    pointer-events: none;
    z-index: -1;
}

.backdrop-one {
    top: -150px;
    right: -120px;
    background: radial-gradient(
        circle,
        rgba(158, 79, 45, 0.28),
        transparent 70%
    );
}

.backdrop-two {
    top: 520px;
    left: -170px;
    background: radial-gradient(
        circle,
        rgba(35, 68, 61, 0.14),
        transparent 70%
    );
}

.topbar {
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(82, 54, 39, 0.1);
    border-radius: 999px;
    background: rgba(255, 249, 241, 0.7);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: var(--paper-strong);
    font-weight: 800;
    background:
        linear-gradient(145deg, var(--accent), var(--accent-deep)),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12));
    box-shadow: 0 12px 28px rgba(125, 57, 32, 0.26);
}

.brand-text {
    display: grid;
    line-height: 1.05;
    font-weight: 800;
}

.mini-nav {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mini-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.mini-nav a:hover {
    color: var(--text);
    background: rgba(158, 79, 45, 0.08);
    transform: translateY(-1px);
}

.lang-switch {
    display: inline-flex;
    padding: 4px;
    gap: 4px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 249, 241, 0.86);
}

.lang-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

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

.lang-btn.is-active {
    color: var(--text);
    background: rgba(158, 79, 45, 0.1);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.section-gap {
    margin-top: 34px;
}

.hero {
    padding-top: 26px;
}

.hero-copy {
    grid-column: 1 / span 7;
    padding: 20px 0 0;
}

.hero-card {
    grid-column: 8 / span 5;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.9rem, 6.2vw, 5rem);
    max-width: 11ch;
}

.section-heading h2,
.contact-card h2 {
    font-size: clamp(1.95rem, 3.6vw, 3.35rem);
    max-width: 11ch;
}

.info-card h3,
.details-card h3,
.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.hero-copy .lede,
.content-card p,
.details-card li,
.contact-copy {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

.hero-copy .lede {
    max-width: 60ch;
    margin: 22px 0 0;
}

.hero-actions,
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.button-primary {
    color: var(--paper-strong);
    background: linear-gradient(145deg, var(--accent), var(--accent-deep));
}

.button-secondary {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 249, 241, 0.92);
}

.contact-links .button.is-active {
    border-color: rgba(158, 79, 45, 0.3);
    box-shadow: 0 12px 26px rgba(60, 37, 25, 0.12);
}

.hero-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 26px;
    margin-top: 28px;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid rgba(82, 54, 39, 0.12);
}

.hero-note-item {
    display: grid;
    gap: 4px;
    align-content: start;
    min-width: 0;
    color: var(--muted);
}

.hero-note-item strong {
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-note-item span {
    line-height: 1.55;
}

.portrait-frame {
    position: sticky;
    top: 104px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: linear-gradient(
        180deg,
        rgba(255, 250, 243, 0.96),
        rgba(255, 246, 235, 0.84)
    );
    border: 1px solid rgba(82, 54, 39, 0.12);
    box-shadow: var(--shadow-lg);
}

.portrait-frame::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: calc(var(--radius-xl) - 10px);
    background:
        linear-gradient(180deg, rgba(35, 68, 61, 0.94), rgba(35, 68, 61, 0.66)),
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.18),
            transparent 32%
        );
    z-index: 0;
}

.portrait-inner {
    position: relative;
    z-index: 1;
    min-height: 540px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: calc(var(--radius-xl) - 12px);
    color: #fff7ee;
    overflow: hidden;
}

.portrait-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(216, 181, 135, 0.24),
            transparent 20%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(16, 12, 10, 0.28)
        );
    pointer-events: none;
}

.portrait-badge,
.stat-label,
.trust-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.portrait-badge {
    margin-bottom: 20px;
    color: #fff7ee;
    border: 1px solid rgba(255, 247, 238, 0.2);
    background: rgba(255, 247, 238, 0.08);
    backdrop-filter: blur(10px);
}

.stat-list {
    display: grid;
    gap: 16px;
}

.stat-item {
    position: relative;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 247, 238, 0.14);
    background: rgba(255, 247, 238, 0.08);
    backdrop-filter: blur(12px);
}

.stat-label {
    margin-bottom: 12px;
    color: rgba(255, 247, 238, 0.82);
    background: rgba(255, 247, 238, 0.08);
}

.stat-item p,
.portrait-caption {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 247, 238, 0.86);
    line-height: 1.65;
}

.portrait-caption {
    margin-top: 18px;
    font-size: 0.95rem;
}

.portrait-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 12px);
}

.content-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(82, 54, 39, 0.1);
    background: var(--paper);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.section-heading {
    grid-column: 1 / span 4;
    padding-top: 10px;
}

.section-heading h2 {
    margin-top: 10px;
}

.story-card,
.process-card {
    grid-column: 5 / span 8;
    padding: 30px;
}

.media-heading,
.photo-stream-shell {
    grid-column: 1 / -1;
}

.media-heading h2 {
    max-width: 18ch;
}

.story-card p + p {
    margin-top: 18px;
}

.cards-grid {
    grid-column: 5 / span 8;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.media-section {
    gap: 20px;
}

.wide-card {
    position: relative;
    left: -10%;
    width: 120%;
}

.photo-stream-shell {
    display: grid;
    gap: 18px;
    /* width: min(calc(100% + 120px), calc(100vw - 24px)); */
    margin-inline: auto;
}

.photo-stream-hint,
.photo-stream-status {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.photo-stream {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    cursor: grab;
}

.photo-stream::-webkit-scrollbar {
    display: none;
}

.photo-stream.is-dragging {
    cursor: grabbing;
}

.photo-stream-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    min-height: 450px;
    padding: 22px;
}

.photo-card,
.photo-more-card {
    flex: 0 0 auto;
    margin: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 249, 241, 0.82);
    border: 1px solid rgba(82, 54, 39, 0.1);
    box-shadow: 0 18px 40px rgba(60, 37, 25, 0.12);
    backdrop-filter: blur(12px);
}

.photo-card img {
    display: block;
    width: auto;
    height: clamp(280px, 30vw, 390px);
    border-radius: 16px;
}

.photo-card {
    cursor: pointer;
}

.photo-card.is-tall img {
    height: clamp(340px, 38vw, 500px);
}

.photo-more-card {
    display: grid;
    place-items: end start;
    width: 260px;
    min-height: 320px;
    background:
        linear-gradient(
            160deg,
            rgba(255, 249, 241, 0.96),
            rgba(233, 215, 188, 0.9)
        ),
        repeating-linear-gradient(
            45deg,
            rgba(35, 68, 61, 0.04),
            rgba(35, 68, 61, 0.04) 10px,
            rgba(158, 79, 45, 0.04) 10px,
            rgba(158, 79, 45, 0.04) 20px
        );
}

.photo-more-card strong {
    max-width: 10ch;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.02;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 12, 9, 0.78);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-panel {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1300px);
    max-height: 88vh;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 249, 241, 0.92);
    color: var(--text);
    font: inherit;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.info-card,
.quote-card {
    padding: 24px;
}

.info-card {
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: auto -24px -24px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(158, 79, 45, 0.08),
        transparent 72%
    );
}

.card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(158, 79, 45, 0.08);
    color: var(--accent-deep);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.process-card {
    display: grid;
    gap: 18px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid rgba(82, 54, 39, 0.09);
}

.process-step:first-child {
    padding-top: 0;
    border-top: 0;
}

.process-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--leaf), #162d29);
    color: #f4eadb;
    font-weight: 800;
}

.process-step p {
    margin: 0;
}

.testimonial-stage {
    grid-column: 1 / -1;
    display: grid;
    gap: 16px;
    padding: 6px 0;
    overflow: hidden;
    mask-image: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent
    );
}

.testimonial-heading {
    grid-column: 1 / -1;
}

.testimonial-heading h2 {
    max-width: 16ch;
}

.review-lane {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

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

.review-lane.is-dragging {
    cursor: grabbing;
}

.review-track {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.review-lane.is-interacting .review-track {
    cursor: ew-resize;
}

.review-card {
    margin: 0;
    flex: 0 0 auto;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 249, 241, 0.82);
    border: 1px solid rgba(82, 54, 39, 0.1);
    box-shadow: 0 18px 40px rgba(60, 37, 25, 0.12);
    backdrop-filter: blur(12px);
}

.review-card img {
    display: block;
    width: auto;
    height: clamp(180px, 22vw, 260px);
    border-radius: 16px;
}

.media-grid {
    grid-column: 5 / span 8;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.media-card {
    position: relative;
    min-height: 210px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(82, 54, 39, 0.2);
    background:
        linear-gradient(
            160deg,
            rgba(255, 249, 241, 0.92),
            rgba(233, 215, 188, 0.84)
        ),
        repeating-linear-gradient(
            45deg,
            rgba(35, 68, 61, 0.04),
            rgba(35, 68, 61, 0.04) 10px,
            rgba(158, 79, 45, 0.04) 10px,
            rgba(158, 79, 45, 0.04) 20px
        );
    color: var(--muted);
    display: flex;
    align-items: flex-end;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.media-card::before {
    content: '';
    position: absolute;
    inset: 18px 18px auto auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(35, 68, 61, 0.16),
        transparent 72%
    );
}

.media-large {
    grid-column: span 2;
    min-height: 320px;
    color: var(--text);
}

.contact-section .content-card {
    padding: 30px;
}

.contact-card {
    grid-column: 1 / -1;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.contact-main {
    min-width: 0;
}

.booking-card {
    display: grid;
    gap: 30px;
}

.booking-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 26px;
    align-items: end;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(82, 54, 39, 0.12);
}

.booking-type-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.booking-type-card {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(255, 249, 241, 0.94),
        rgba(245, 232, 215, 0.86)
    );
    border: 1px solid rgba(82, 54, 39, 0.12);
    box-shadow: 0 14px 30px rgba(60, 37, 25, 0.08);
}

.booking-type-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.booking-type-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.booking-type-kicker {
    margin-bottom: 12px !important;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.booking-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: start;
}

.booking-browser,
.booking-panel {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(82, 54, 39, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(255, 251, 245, 0.96),
            rgba(249, 241, 230, 0.88)
        ),
        rgba(255, 248, 238, 0.92);
    box-shadow: var(--shadow-md);
}

.booking-browser-header,
.booking-panel-header,
.slot-card-header,
.slot-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.booking-browser-header,
.booking-panel-header {
    align-items: flex-start;
}

.booking-browser h3,
.booking-panel h3,
.booking-support-copy h3 {
    font-size: 1.55rem;
    margin: 0;
}

.booking-refresh-button {
    min-width: 116px;
    flex-shrink: 0;
}

.booking-inline-status {
    min-height: 1.5em;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.booking-inline-status.is-error,
.booking-result.is-error {
    color: var(--accent-deep);
}

.booking-inline-status.is-success,
.booking-result.is-success {
    color: var(--leaf);
}

.slot-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.slot-card {
    width: 100%;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(82, 54, 39, 0.12);
    background: rgba(255, 249, 241, 0.92);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.slot-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.slot-card.is-selected {
    border-color: rgba(158, 79, 45, 0.42);
    background:
        linear-gradient(
            180deg,
            rgba(255, 245, 237, 0.98),
            rgba(252, 236, 224, 0.92)
        ),
        rgba(255, 248, 238, 0.94);
    box-shadow: 0 18px 38px rgba(125, 57, 32, 0.12);
}

.slot-card.is-joinable {
    border-color: rgba(35, 68, 61, 0.18);
    background:
        linear-gradient(
            180deg,
            rgba(243, 248, 245, 0.98),
            rgba(227, 239, 233, 0.9)
        ),
        rgba(255, 248, 238, 0.92);
}

.slot-card.is-locked {
    cursor: default;
    opacity: 0.78;
}

.slot-card time {
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.35;
}

.slot-card-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.slot-card-status[data-tone='available'] {
    color: var(--accent-deep);
    background: rgba(158, 79, 45, 0.12);
}

.slot-card-status[data-tone='joinable'] {
    color: var(--leaf);
    background: rgba(35, 68, 61, 0.12);
}

.slot-card-status[data-tone='locked'] {
    color: var(--muted);
    background: rgba(82, 54, 39, 0.08);
}

.slot-card-note,
.slot-card-summary,
.booking-summary-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.slot-card-footer {
    margin-top: 12px;
    align-items: center;
}

.slot-card-action {
    font-weight: 800;
}

.booking-summary {
    min-height: 92px;
    padding: 18px;
    margin-top: 18px;
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(255, 248, 239, 0.96),
        rgba(244, 232, 215, 0.9)
    );
    border: 1px solid rgba(82, 54, 39, 0.12);
    display: grid;
    gap: 6px;
}

.booking-summary.is-muted {
    color: var(--muted);
}

.booking-summary-kicker {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-summary-title {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.4;
}

.booking-class-picker {
    margin-top: 18px;
}

.booking-class-picker[hidden] {
    display: none;
}

.class-choice-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.class-choice {
    width: 100%;
    min-height: 100%;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(82, 54, 39, 0.12);
    background: rgba(255, 249, 241, 0.9);
    color: var(--text);
    text-align: left;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.class-choice:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(60, 37, 25, 0.08);
}

.class-choice.is-active {
    border-color: rgba(158, 79, 45, 0.42);
    background:
        linear-gradient(
            180deg,
            rgba(255, 243, 233, 0.98),
            rgba(249, 228, 209, 0.94)
        ),
        rgba(255, 248, 238, 0.94);
    box-shadow: 0 16px 28px rgba(125, 57, 32, 0.12);
}

.class-choice strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.class-choice span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.booking-form {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.booking-form[hidden] {
    display: none;
}

.booking-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.booking-field[hidden] {
    display: none;
}

.booking-field-label {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(82, 54, 39, 0.14);
    background: rgba(255, 250, 244, 0.96);
    color: var(--text);
    font: inherit;
}

.booking-field input:focus-visible,
.booking-field select:focus-visible {
    outline: 2px solid rgba(158, 79, 45, 0.24);
    outline-offset: 2px;
    border-color: rgba(158, 79, 45, 0.34);
}

.booking-field input:disabled,
.booking-field select:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    background: rgba(239, 227, 211, 0.64);
}

.booking-field-note,
.booking-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.booking-submit-button {
    min-width: 220px;
}

.booking-result {
    min-height: 1.5em;
    margin: 0;
    line-height: 1.5;
}

.booking-support {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(82, 54, 39, 0.12);
}

.booking-support .contact-links {
    margin-top: 22px;
}

.booking-support-copy {
    min-width: 0;
}

.details-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.details-card li + li {
    margin-top: 12px;
}

.contact-copy {
    max-width: 58ch;
    margin-top: 18px;
}

.fineprint {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.contact-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 249, 241, 0.82);
    border: 1px solid rgba(82, 54, 39, 0.1);
    box-shadow: 0 14px 34px rgba(60, 37, 25, 0.1);
}

.contact-qr-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.contact-qr-link:focus-visible {
    outline: 3px solid rgba(158, 79, 45, 0.28);
    outline-offset: 4px;
}

.contact-qr-image {
    display: block;
    width: 360px;
    border-radius: 16px;
}

.contact-qr-copy {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1080px) {
    .topbar {
        grid-template-columns: 1fr auto;
        border-radius: 28px;
    }

    .mini-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        order: 3;
    }
}

@media (max-width: 980px) {
    .hero-copy,
    .hero-card,
    .section-heading,
    .photo-stream-shell,
    .testimonial-stage,
    .story-card,
    .cards-grid,
    .media-grid,
    .contact-card,
    .details-card,
    .process-card {
        grid-column: 1 / -1;
    }

    .hero {
        padding-top: 6px;
    }

    .portrait-frame {
        position: relative;
        top: 0;
    }

    .cards-grid,
    .testimonials,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-stage {
        mask-image: none;
    }

    .media-large {
        grid-column: span 1;
        min-height: 240px;
    }

    .booking-intro,
    .booking-workspace,
    .booking-support {
        grid-template-columns: 1fr;
    }

    .booking-type-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(calc(100% - 20px), var(--content-width));
        padding-top: 10px;
    }

    .topbar {
        position: static;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 26px;
    }

    .brand {
        justify-content: space-between;
    }

    .mini-nav,
    .lang-switch {
        width: max-content;
    }

    h1 {
        font-size: clamp(2.5rem, 13vw, 3.9rem);
    }

    .section-heading h2,
    .contact-card h2 {
        font-size: clamp(1.7rem, 9vw, 2.45rem);
    }

    .hero-notes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .portrait-inner,
    .photo-stream-shell,
    .story-card,
    .process-card,
    .contact-section .content-card,
    .booking-browser,
    .booking-panel {
        padding: 22px;
    }

    .media-heading h2 {
        max-width: 14ch;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-number {
        margin-bottom: 2px;
    }

    .review-card img {
        height: clamp(170px, 46vw, 240px);
    }

    .wide-card {
        left: 0;
        width: 100%;
    }

    .photo-stream-shell {
        padding: 18px;
        width: 100%;
    }

    .photo-stream-track {
        min-height: 340px;
    }

    .photo-stream {
        padding-inline: 4px;
    }

    .photo-card img {
        height: clamp(220px, 58vw, 300px);
    }

    .photo-card.is-tall img {
        height: clamp(280px, 70vw, 380px);
    }

    .photo-more-card {
        width: 200px;
        min-height: 260px;
    }

    .testimonial-stage {
        gap: 0;
    }

    .testimonial-stage .review-lane:not(:first-child) {
        display: none;
    }

    .contact-qr {
        align-items: center;
        width: 100%;
        padding: 18px;
    }

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

    .booking-type-list,
    .class-choice-list,
    .booking-field-grid {
        grid-template-columns: 1fr;
    }

    .booking-browser-header,
    .booking-panel-header,
    .slot-card-header,
    .slot-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-refresh-button,
    .booking-submit-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-lane.is-interacting .review-track {
        cursor: default;
    }
}
