:root {
    --peach: #dea18d;
    --peach-deep: #b86f58;
    --peach-pale: #f4dcd2;
    --blush: #f8e9e2;
    --beige: #e9ddce;
    --sand: #d7c5b2;
    --cream: #fbf8f3;
    --paper: #fffdf9;
    --ink: #332a26;
    --brown: #66534a;
    --muted: #85756c;
    --line: rgba(71, 54, 46, .15);
    --shadow: 0 28px 70px rgba(71, 48, 37, .13);
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --site-width: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--peach-pale); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    left: 1rem;
    top: 1rem;
    transform: translateY(-180%);
    background: var(--ink);
    color: #fff;
    padding: .7rem 1rem;
    text-decoration: none;
}
.skip-link:focus { transform: none; }

.eyebrow {
    margin: 0 0 1rem;
    color: var(--peach-deep);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: .85rem 1.45rem;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid rgba(184, 111, 88, .28);
    outline-offset: 3px;
}
.button-primary { background: var(--ink); color: #fff; }
.button-primary:hover { background: var(--peach-deep); }
.button-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: #fff; }
.button-wide { width: 100%; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .35rem 0;
    border-bottom: 1px solid var(--ink);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    width: min(calc(100% - 64px), var(--site-width));
    min-height: 118px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin-inline: auto;
    border-bottom: 1px solid rgba(51, 42, 38, .12);
}
.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}
.brand-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 7px 16px rgba(72, 49, 40, .08));
    transition: transform .25s ease;
}
.brand:hover .brand-logo { transform: rotate(-1deg) scale(1.018); }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
    position: relative;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -.5rem;
    width: 100%;
    height: 1px;
    background: var(--peach-deep);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-book {
    justify-self: end;
    padding: .55rem 0;
    border-bottom: 1px solid var(--ink);
    text-decoration: none;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.menu-toggle { display: none; }

.hero {
    position: relative;
    min-height: 850px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
    overflow: hidden;
    padding: 155px max(32px, calc((100vw - var(--site-width)) / 2)) 95px;
    background:
        radial-gradient(circle at 82% 21%, rgba(244, 220, 210, .82), transparent 27%),
        linear-gradient(115deg, #fbf8f3 0 53%, #efe3d7 53% 100%);
}
.hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 53%;
    width: 1px;
    background: rgba(51, 42, 38, .08);
    content: "";
}
.hero-copy { position: relative; z-index: 2; max-width: 670px; padding: 2rem 0 0; }
.hero h1 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .91; letter-spacing: -.055em; }
.hero h1 span { display: block; font-size: clamp(3.75rem, 6.3vw, 6.45rem); }
.hero h1 em {
    display: block;
    max-width: 620px;
    margin: 1.25rem 0 0 2.6rem;
    color: var(--peach-deep);
    font-size: clamp(1.55rem, 2.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
}
.hero-intro { max-width: 560px; margin: 2rem 0 0 2.8rem; color: var(--brown); font-size: 1.06rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin: 2.2rem 0 0 2.8rem; }
.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin: 4.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.hero-meta div { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.hero-meta span { color: var(--peach-deep); font-family: var(--serif); font-size: .9rem; font-style: italic; }
.hero-meta p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-image-frame {
    position: relative;
    z-index: 3;
    width: min(77%, 470px);
    aspect-ratio: 4 / 5.35;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-image-frame::after {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .55);
    content: "";
    pointer-events: none;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-orbit { position: absolute; border: 1px solid rgba(184, 111, 88, .32); border-radius: 50%; }
.hero-orbit-one { width: 530px; height: 530px; transform: translate(16px, -8px); }
.hero-orbit-two { width: 610px; height: 390px; transform: rotate(-23deg) translate(-5px, -8px); }
.hero-logo-seal {
    position: absolute;
    z-index: 4;
    right: -1%;
    top: 10%;
    width: 148px;
    height: 148px;
    overflow: hidden;
    border: 7px solid rgba(255, 253, 249, .86);
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 18px 42px rgba(51, 42, 38, .2);
    transform: rotate(2deg);
}
.hero-logo-seal img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.hero-caption {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 7%;
    width: 230px;
    padding: 1.2rem 1.3rem;
    background: rgba(255, 253, 249, .92);
    box-shadow: 0 16px 40px rgba(51, 42, 38, .11);
    backdrop-filter: blur(12px);
}
.hero-caption span { display: block; margin-bottom: .45rem; color: var(--peach-deep); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-caption strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; line-height: 1.25; }
.hero-line { position: absolute; z-index: 4; right: -1%; bottom: 4%; width: 160px; fill: none; stroke: var(--peach-deep); stroke-width: 1.1; }
.hero-scroll {
    position: absolute;
    left: max(32px, calc((100vw - var(--site-width)) / 2));
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero-scroll span { display: block; width: 42px; height: 1px; background: var(--muted); }

.availability-ribbon {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    padding: 1.2rem 2rem;
    background: var(--ink);
    color: #f8eee8;
}
.availability-ribbon p { margin: 0; font-family: var(--serif); font-size: .95rem; font-style: italic; letter-spacing: .015em; }
.availability-ribbon span { width: 5px; height: 5px; border-radius: 50%; background: var(--peach); }

.section { width: min(calc(100% - 64px), var(--site-width)); margin: 0 auto; padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px, .55fr); gap: 5rem; align-items: end; }
.section-heading h2, .about-copy h2, .booking-intro h2, .contact-title h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 3.8vw, 4rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .98;
}
.section-heading > p { max-width: 430px; margin: 0 0 .5rem; color: var(--muted); }

.gallery-section { padding-bottom: 155px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: .65rem; margin: 3rem 0 3.5rem; }
.filter-button {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    padding: .62rem 1rem;
    color: var(--brown);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.filter-button:hover, .filter-button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--gallery-card-min, 320px)), 1fr)); gap: 2.4rem 1.35rem; align-items: start; }
.gallery-grid-medium { gap: 2rem 1.1rem; }
.gallery-grid-dense { gap: 1.6rem .85rem; }
.gallery-grid-compact { gap: 1.25rem .65rem; }
.gallery-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.gallery-card[aria-hidden="true"] { display: none; }
.gallery-image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--beige); }
.gallery-image-wrap::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 26, 22, .16), transparent 42%);
    content: "";
    opacity: .45;
    transition: opacity .35s ease;
}
.gallery-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-watermark {
    position: absolute;
    z-index: 3;
    right: .7rem;
    bottom: .7rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background: rgba(255,253,249,.78);
    padding: .25rem .48rem .25rem .25rem;
    opacity: .88;
    box-shadow: 0 5px 18px rgba(20,12,9,.22);
    pointer-events: none;
    user-select: none;
    backdrop-filter: blur(5px);
}
.gallery-watermark img { width: clamp(38px, 4.5vw, 56px); height: clamp(38px, 4.5vw, 56px); flex: 0 0 auto; border-radius: 50%; object-fit: contain; }
.gallery-watermark span { color: #4b3b34; font-size: clamp(.48rem, .65vw, .59rem); font-weight: 800; letter-spacing: .055em; line-height: 1; text-transform: lowercase; white-space: nowrap; }
.gallery-card:hover .gallery-photo { transform: scale(1.035); }
.gallery-card:hover .gallery-image-wrap::after { opacity: .8; }
.gallery-index {
    position: absolute;
    z-index: 4;
    right: 1rem;
    top: .8rem;
    color: #fff;
    font-family: var(--serif);
    font-size: .9rem;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.gallery-card-copy { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid transparent; }
.gallery-card-copy-titleless { justify-content: flex-end; }
.gallery-card-copy h3 { margin: 0; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.gallery-card-copy p { margin: 0; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.gallery-grid-medium .gallery-card-copy h3 { font-size: 1.2rem; }
.gallery-grid-dense .gallery-card-copy,
.gallery-grid-compact .gallery-card-copy { align-items: flex-start; flex-direction: column; gap: .22rem; padding-top: .7rem; }
.gallery-grid-dense .gallery-card-copy h3 { font-size: 1.02rem; }
.gallery-grid-dense .gallery-card-copy p { font-size: .56rem; }
.gallery-grid-compact .gallery-card-copy h3 { font-size: .92rem; }
.gallery-grid-compact .gallery-card-copy p { font-size: .52rem; }
.gallery-grid-medium .gallery-watermark { right: .55rem; bottom: .55rem; }
.gallery-grid-medium .gallery-watermark img { width: 44px; height: 44px; }
.gallery-grid-dense .gallery-watermark,
.gallery-grid-compact .gallery-watermark { right: .42rem; bottom: .42rem; padding: .2rem; }
.gallery-grid-dense .gallery-watermark img { width: 38px; height: 38px; }
.gallery-grid-compact .gallery-watermark img { width: 34px; height: 34px; }
.gallery-grid-dense .gallery-watermark span,
.gallery-grid-compact .gallery-watermark span { display: none; }
.gallery-grid-dense .gallery-index,
.gallery-grid-compact .gallery-index { right: .65rem; top: .55rem; font-size: .72rem; }
.empty-gallery { padding: 4rem; background: var(--beige); text-align: center; color: var(--muted); }

.about-section {
    position: relative;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 9vw, 10rem);
    align-items: center;
    padding: 145px max(32px, calc((100vw - var(--site-width)) / 2));
    background: #eaded1;
}
.about-art { position: relative; min-height: 690px; }
.about-backdrop { position: absolute; left: -12%; top: 8%; width: 82%; height: 84%; border: 1px solid rgba(51, 42, 38, .15); }
.about-art img { position: absolute; right: 0; top: 0; width: 80%; height: 88%; object-fit: cover; box-shadow: var(--shadow); }
.about-art::after { position: absolute; right: -5%; bottom: 2%; width: 44%; height: 48%; background: var(--peach-pale); content: ""; opacity: .65; }
.about-signature {
    position: absolute;
    z-index: 2;
    left: 1%;
    bottom: 4%;
    transform: rotate(-7deg);
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-style: italic;
    line-height: .9;
}
.about-signature span { display: block; margin-left: 2.5rem; color: var(--peach-deep); }
.about-copy { max-width: 650px; }
.about-copy h2 { max-width: 600px; }
.about-lead { max-width: 590px; margin: 2rem 0 0; color: var(--brown); font-size: 1.05rem; }
.about-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin: 3.2rem 0 2.5rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-principles span { color: var(--peach-deep); font-family: var(--serif); font-style: italic; }
.about-principles h3 { margin: .4rem 0 .35rem; font-family: var(--serif); font-size: 1.22rem; font-weight: 400; }
.about-principles p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }

.booking-section { display: grid; grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); gap: clamp(4rem, 8vw, 9rem); align-items: start; }
.booking-intro { position: sticky; top: 3rem; padding-top: 2rem; }
.booking-intro h2 { max-width: 600px; }
.booking-intro > p:not(.eyebrow):not(.booking-note) { max-width: 500px; margin: 2rem 0; color: var(--muted); }
.booking-steps { display: grid; gap: 0; margin: 2.4rem 0; border-top: 1px solid var(--line); }
.booking-steps div { display: grid; grid-template-columns: 45px 1fr; align-items: center; min-height: 64px; border-bottom: 1px solid var(--line); }
.booking-steps span { color: var(--peach-deep); font-family: var(--serif); font-style: italic; }
.booking-steps p { margin: 0; font-size: .83rem; }
.booking-note { max-width: 450px; padding-left: 1rem; border-left: 2px solid var(--peach); color: var(--muted); font-size: .74rem; }
.booking-card { min-height: 640px; padding: clamp(1.5rem, 4vw, 3.4rem); background: var(--paper); box-shadow: var(--shadow); }
.calendar-toolbar { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.calendar-toolbar h3 { margin: 0; text-align: center; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.calendar-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.calendar-arrow:hover:not(:disabled) { background: var(--ink); color: #fff; }
.calendar-arrow:disabled { opacity: .25; cursor: not-allowed; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .45rem; }
.calendar-weekdays { margin-bottom: .55rem; }
.calendar-weekdays span { padding: .35rem 0; color: var(--muted); text-align: center; font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.calendar-day {
    position: relative;
    min-height: 66px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    background: transparent;
    color: #c3b7b0;
    font-size: .82rem;
}
button.calendar-day { color: var(--ink); cursor: pointer; }
button.calendar-day::after { position: absolute; bottom: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--peach-deep); content: ""; }
button.calendar-day:hover, button.calendar-day.is-selected { border-color: var(--ink); background: var(--blush); }
.calendar-blank { min-height: 66px; }
.booking-loading { padding: 6rem 1rem; text-align: center; color: var(--muted); }
.calendar-key { display: flex; justify-content: flex-end; align-items: center; gap: .5rem; margin-top: 1.3rem; color: var(--muted); font-size: .7rem; }
.calendar-key span { width: 5px; height: 5px; border-radius: 50%; background: var(--peach-deep); }
.calendar-empty { grid-column: 1 / -1; padding: 5rem 1rem; color: var(--muted); text-align: center; }
.back-button, .change-time {
    border: 0;
    border-bottom: 1px solid var(--ink);
    background: transparent;
    padding: .25rem 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}
.time-panel h3 { margin: 0 0 2rem; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.time-panel .back-button { margin-bottom: 2.5rem; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.time-button { min-height: 54px; border: 1px solid var(--line); background: transparent; cursor: pointer; transition: background .2s, color .2s, border .2s; }
.time-button:hover, .time-button.is-selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.booking-form { animation: fadeUp .35s ease both; }
.selected-appointment { margin-bottom: 2rem; padding: 1.4rem; border-left: 3px solid var(--peach); background: var(--blush); font-family: var(--serif); font-size: 1.25rem; }
.selected-appointment strong { display: block; font-weight: 400; }
.selected-appointment span { color: var(--peach-deep); font-size: .8rem; font-family: var(--sans); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field > span { color: var(--brown); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    padding: .85rem .95rem;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.field input { min-height: 50px; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--peach-deep); outline: 0; box-shadow: 0 0 0 3px rgba(222, 161, 141, .15); }
.form-hint { margin: 1rem 0; color: var(--muted); font-size: .7rem; }
.form-hint a { color: var(--ink); }
.form-error { margin: 1rem 0; padding: .9rem 1rem; border-left: 3px solid #9c3d35; background: #fff0ed; color: #7e302a; font-size: .8rem; }
.booking-form .change-time { display: block; margin: 1.1rem auto 0; }
.honeypot { position: absolute !important; left: -9999px !important; }
.booking-success { min-height: 510px; display: grid; align-content: center; justify-items: center; text-align: center; animation: fadeUp .35s ease both; }
.success-mark { display: grid; width: 68px; height: 68px; place-items: center; margin-bottom: 1.5rem; border-radius: 50%; background: var(--peach-pale); color: var(--peach-deep); font-size: 1.6rem; }
.booking-success h3 { margin: 0; font-family: var(--serif); font-size: 3rem; font-weight: 400; }
.booking-success > p:not(.eyebrow) { max-width: 430px; color: var(--muted); }
.booking-reference { padding: .55rem .85rem; background: var(--beige); color: var(--ink) !important; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.booking-success .button { margin: 1rem 0; }

.contact-section {
    display: grid;
    grid-template-columns: 1.3fr .8fr .65fr;
    gap: 4rem;
    align-items: end;
    padding: 110px max(32px, calc((100vw - var(--site-width)) / 2));
    background: var(--ink);
    color: #f8efe9;
}
.contact-title h2 { max-width: 680px; font-size: clamp(2.4rem, 3.8vw, 4rem); }
.contact-details, .contact-social { display: grid; gap: .75rem; align-content: end; }
.contact-details a, .contact-social a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); width: max-content; max-width: 100%; }
.contact-details p, .contact-social span { margin: 0; color: #cdbdb4; }
.contact-social { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    min-height: 120px;
    padding: 1.5rem max(32px, calc((100vw - var(--site-width)) / 2));
    background: #251f1c;
    color: #c9bbb3;
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.site-footer p { margin: 0; }
.footer-links { display: flex; justify-self: end; gap: 1.25rem; }
.footer-links a { text-decoration: none; }
.footer-brand .brand-logo { width: 84px; height: 84px; }

.notice { margin: 1rem 0; padding: .9rem 1rem; border-left: 3px solid var(--peach-deep); background: var(--blush); font-size: .82rem; }
.notice p { margin: .15rem 0; }
.notice-error { border-color: #9c3d35; background: #fff0ed; color: #7e302a; }

.setup-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; background: radial-gradient(circle at 76% 20%, var(--peach-pale), transparent 30%), var(--beige); }
.setup-shell { width: min(100%, 720px); }
.setup-card { padding: clamp(2rem, 6vw, 4.5rem); background: var(--paper); box-shadow: var(--shadow); }
.setup-logo { width: 132px; height: 132px; object-fit: contain; margin-bottom: 2rem; border-radius: 50%; filter: drop-shadow(0 12px 24px rgba(64,43,34,.12)); }
.setup-card h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 400; letter-spacing: -.05em; line-height: .95; }
.setup-intro { max-width: 540px; margin: 1.5rem 0 2rem; color: var(--muted); }
.setup-form { display: grid; gap: 1.15rem; }
.setup-form label { display: grid; gap: .4rem; }
.setup-form label > span { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.setup-form input { min-height: 50px; border: 1px solid var(--line); padding: .75rem .9rem; }
.setup-form small { color: var(--muted); font-size: .72rem; }
.setup-passwords { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }


.legal-page { min-height: 100vh; background: var(--cream); }
.legal-header { width: min(calc(100% - 64px), 1040px); min-height: 118px; display: flex; align-items: center; justify-content: space-between; margin: 0 auto; border-bottom: 1px solid var(--line); }
.legal-header .brand-logo { width: 92px; height: 92px; }
.legal-content { width: min(calc(100% - 64px), 850px); margin: 0 auto; padding: 100px 0 120px; }
.legal-content h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 5.8rem); font-weight: 400; letter-spacing: -.06em; line-height: .92; }
.legal-updated { margin: 1.5rem 0 4rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legal-content section { display: grid; grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr); gap: 3rem; padding: 2.2rem 0; border-top: 1px solid var(--line); }
.legal-content section h2 { margin: 0; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.15; }
.legal-content section p { margin: 0 0 .8rem; color: var(--brown); }
.legal-content section p:last-child { margin-bottom: 0; }
.legal-footer { padding: 2rem; background: var(--ink); color: #c9bbb3; text-align: center; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
    .site-header { width: min(calc(100% - 40px), var(--site-width)); grid-template-columns: 1fr auto; }
    .site-nav { position: fixed; inset: 0 0 auto auto; width: min(86vw, 390px); min-height: 100vh; display: grid; align-content: center; justify-items: center; gap: 2rem; background: var(--paper); box-shadow: -20px 0 60px rgba(51,42,38,.12); transform: translateX(110%); transition: transform .3s ease; }
    .site-nav.is-open { transform: none; }
    .site-nav a { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
    .header-book { display: none; }
    .menu-toggle { position: relative; z-index: 2; display: grid; gap: 4px; justify-self: end; width: 44px; height: 44px; place-content: center; border: 0; background: transparent; cursor: pointer; }
    .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
    .hero { grid-template-columns: 1fr 430px; gap: 3rem; padding-left: 32px; padding-right: 32px; }
    .hero h1 span { font-size: clamp(3.45rem, 6.4vw, 5rem); }
    .hero-meta { grid-template-columns: 1fr; gap: .7rem; }
    .hero-meta div { grid-template-columns: 30px 1fr; }
    .hero-orbit-one { width: 430px; height: 430px; }
    .hero-orbit-two { width: 480px; height: 330px; }
    .about-section { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
    .about-principles { grid-template-columns: 1fr; gap: 1rem; }
    .about-principles div { display: grid; grid-template-columns: 35px 90px 1fr; align-items: baseline; }
    .booking-section { grid-template-columns: .78fr 1.22fr; gap: 4rem; }
    .contact-section { grid-template-columns: 1.2fr .8fr; }
    .contact-social { grid-column: 2; }
}

@media (max-width: 820px) {
    .site-header { min-height: 96px; }
    .site-header .brand-logo { width: 78px; height: 78px; }
    .hero { min-height: auto; grid-template-columns: 1fr; gap: 4rem; padding: 130px 24px 80px; background: linear-gradient(145deg, #fbf8f3 0 59%, #efe3d7 59% 100%); }
    .hero::before { display: none; }
    .hero-copy { max-width: none; }
    .hero h1 span { font-size: clamp(3.25rem, 12vw, 4.9rem); }
    .hero h1 em, .hero-intro, .hero-actions { margin-left: 0; }
    .hero-meta { grid-template-columns: repeat(3, 1fr); margin-top: 3.5rem; }
    .hero-visual { min-height: 600px; }
    .hero-image-frame { width: min(72%, 430px); }
    .hero-caption { left: 6%; }
    .hero-scroll { display: none; }
    .availability-ribbon { flex-wrap: wrap; gap: .8rem 1.3rem; }
    .availability-ribbon p { font-size: .8rem; }
    .section { width: min(calc(100% - 40px), var(--site-width)); padding: 95px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
    .gallery-grid-spacious { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid-medium { grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); }
    .gallery-grid-dense { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); }
    .gallery-grid-compact { grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); }
    .about-section { grid-template-columns: 1fr; padding: 100px 24px; }
    .about-art { min-height: 620px; max-width: 620px; width: 100%; }
    .about-art img { width: 76%; }
    .about-copy { max-width: none; }
    .booking-section { grid-template-columns: 1fr; }
    .booking-intro { position: static; }
    .contact-section { grid-template-columns: 1fr; padding: 90px 24px; }
    .contact-social { grid-column: auto; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .site-footer p { grid-column: 1 / -1; grid-row: 2; }
    .footer-links { justify-self: end; }
}

@media (max-width: 560px) {
    .site-header { width: calc(100% - 32px); }
    .site-header .brand-logo { width: 72px; height: 72px; }
    .hero { padding-left: 20px; padding-right: 20px; }
    .hero h1 span { font-size: clamp(2.95rem, 15vw, 4.2rem); }
    .hero h1 em { font-size: 1.5rem; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
    .hero-meta { grid-template-columns: 1fr; }
    .hero-visual { min-height: 480px; }
    .hero-image-frame { width: 76%; }
    .hero-orbit-one { width: 340px; height: 340px; }
    .hero-orbit-two { width: 380px; height: 260px; }
    .hero-logo-seal { width: 108px; height: 108px; right: 0; top: 7%; border-width: 5px; }
    .hero-caption { left: 0; bottom: 2%; width: 205px; }
    .hero-line { display: none; }
    .availability-ribbon { padding: 1.3rem 1rem; }
    .availability-ribbon p:nth-of-type(2), .availability-ribbon span:nth-of-type(2) { display: none; }
    .section { width: calc(100% - 32px); padding: 78px 0; }
    .section-heading h2, .about-copy h2, .booking-intro h2, .contact-title h2 { font-size: clamp(2.05rem, 9.5vw, 2.9rem); }
    .gallery-filters { flex-wrap: nowrap; overflow-x: auto; margin-right: -16px; padding-right: 16px; scrollbar-width: none; }
    .gallery-filters::-webkit-scrollbar { display: none; }
    .filter-button { white-space: nowrap; }
    .gallery-grid-spacious { grid-template-columns: 1fr; gap: 2.2rem; }
    .gallery-grid-medium, .gallery-grid-dense, .gallery-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem .7rem; }
    .gallery-grid-medium .gallery-card-copy, .gallery-grid-dense .gallery-card-copy, .gallery-grid-compact .gallery-card-copy { align-items: flex-start; flex-direction: column; gap: .18rem; }
    .gallery-grid-medium .gallery-watermark, .gallery-grid-dense .gallery-watermark, .gallery-grid-compact .gallery-watermark { right: .35rem; bottom: .35rem; padding: .16rem; }
    .gallery-grid-medium .gallery-watermark img, .gallery-grid-dense .gallery-watermark img, .gallery-grid-compact .gallery-watermark img { width: 34px; height: 34px; }
    .gallery-grid-medium .gallery-watermark span, .gallery-grid-dense .gallery-watermark span, .gallery-grid-compact .gallery-watermark span { display: none; }
    .about-section { padding: 80px 20px; }
    .about-art { min-height: 470px; }
    .about-backdrop { left: -5%; }
    .about-signature { font-size: 3.2rem; }
    .about-principles div { grid-template-columns: 28px 1fr; }
    .about-principles p { grid-column: 2; }
    .booking-card { min-height: 580px; padding: 1.25rem; }
    .calendar-toolbar h3 { font-size: 1.45rem; }
    .calendar-weekdays, .calendar-grid { gap: .2rem; }
    .calendar-day, .calendar-blank { min-height: 48px; }
    button.calendar-day::after { bottom: 5px; }
    .time-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .contact-section { padding: 78px 20px; }
    .site-footer { padding: 1.5rem 20px; }
    .footer-links { gap: .75rem; }
    .legal-header, .legal-content { width: calc(100% - 40px); }
    .legal-header { min-height: 92px; }
    .legal-header .brand-logo { width: 72px; height: 72px; }
    .legal-content { padding: 70px 0 90px; }
    .legal-content section { grid-template-columns: 1fr; gap: .8rem; }
    .setup-page { padding: 1rem; }
    .setup-passwords { grid-template-columns: 1fr; }
}

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

/* Service catalogue, booking choices and private booking management */
.services-section { padding-top: 110px; }
.services-heading { align-items: end; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 3.2rem;
    border: 1px solid var(--line);
    background: var(--line);
}
.service-showcase-card {
    position: relative;
    min-height: 310px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 1.4rem;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    background: var(--paper);
    overflow: hidden;
}
.service-showcase-card::after {
    position: absolute;
    inset: auto -50px -100px auto;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(184, 111, 88, .16);
    border-radius: 50%;
    content: "";
}
.service-number {
    color: var(--peach-deep);
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
}
.service-showcase-card h3 {
    margin: 0 0 .8rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1;
}
.service-showcase-card p { max-width: 470px; margin: 0; color: var(--muted); }
.service-meta { display: grid; align-content: start; justify-items: end; gap: .15rem; }
.service-meta strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.service-meta span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-showcase-card > a {
    grid-column: 2 / -1;
    width: max-content;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--ink);
    padding-bottom: .2rem;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.services-payment-note {
    max-width: 720px;
    margin: 1.5rem 0 0 auto;
    padding-left: 1rem;
    border-left: 2px solid var(--peach);
    color: var(--muted);
    font-size: .75rem;
}

.service-panel { animation: fadeUp .35s ease both; }
.service-panel h3 { margin: 0; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; letter-spacing: -.04em; }
.booking-panel-intro { max-width: 520px; margin: .7rem 0 1.6rem; color: var(--muted); font-size: .82rem; }
.booking-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
.booking-service-option {
    position: relative;
    min-height: 145px;
    display: grid;
    align-content: space-between;
    justify-items: start;
    gap: .4rem;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.2rem;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .2s;
}
.booking-service-option:hover,
.booking-service-option.is-selected { border-color: var(--ink); background: var(--blush); transform: translateY(-2px); }
.booking-service-option span { font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; }
.booking-service-option strong { font-size: .9rem; }
.booking-service-option small { color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.service-option-check { position: absolute; right: .75rem; top: .75rem; display: grid !important; width: 25px; height: 25px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: transparent; font-family: var(--sans) !important; font-size: .72rem !important; font-weight: 900; transition: background .2s, color .2s, border-color .2s; }
.booking-service-option.is-selected .service-option-check { border-color: var(--ink); background: var(--ink); color: #fff; }
.multi-service-summary { position: sticky; z-index: 4; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; margin-top: 1.2rem; border: 1px solid var(--line); background: rgba(255,253,249,.96); padding: 1rem; box-shadow: 0 -12px 32px rgba(51,42,38,.08); backdrop-filter: blur(12px); }
.multi-service-summary > div { min-width: 0; display: grid; gap: .15rem; }
.multi-service-summary span { color: var(--peach-deep); font-size: .59rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.multi-service-summary strong { overflow: hidden; font-family: var(--serif); font-size: 1.08rem; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.multi-service-summary small { color: var(--muted); font-size: .68rem; }
.multi-service-summary .button { flex: 0 0 auto; }
.booking-selection-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
    padding: .9rem 1rem;
    border-left: 3px solid var(--peach);
    background: var(--blush);
}
.booking-selection-banner span { color: var(--peach-deep); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-selection-banner strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; text-align: right; }
.booking-selection-banner small { grid-column: 2; color: var(--muted); font-size: .66rem; text-align: right; }
.payment-choice { margin: 0; border: 0; padding: 0; }
.payment-choice legend { margin-bottom: .45rem; color: var(--brown); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.payment-choice > label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .75rem;
    min-height: 72px;
    margin-top: .6rem;
    border: 1px solid var(--line);
    background: #fff;
    padding: .8rem 1rem;
    cursor: pointer;
}
.payment-choice input { width: 19px; height: 19px; margin: 0; accent-color: var(--peach-deep); }
.payment-choice label:has(input:checked) { border-color: var(--ink); background: var(--blush); }
.payment-choice label span { display: grid; gap: .12rem; }
.payment-choice label strong { font-size: .85rem; }
.payment-choice label small { color: var(--muted); font-size: .7rem; }
.success-payment {
    width: min(100%, 460px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .45rem 1rem;
    margin: .6rem 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    background: #fff;
    text-align: left;
}
.success-payment span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.success-payment strong { font-size: .78rem; text-align: right; }
.success-bank-details {
    width: min(100%, 500px);
    margin: .6rem 0;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--peach-deep);
    background: var(--blush);
    color: var(--brown);
    text-align: left;
    white-space: pre-line;
    overflow-wrap: anywhere;
}
.success-policy, .success-reminder { margin: .35rem 0 !important; font-size: .72rem; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: .3rem; }
.success-actions .button { margin: .5rem 0; }
.button-light { border-color: var(--line); background: #fff; color: var(--ink); }
.button-light:hover { border-color: var(--ink); background: var(--blush); }

.manage-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 12%, rgba(244, 220, 210, .8), transparent 30%),
        linear-gradient(125deg, var(--cream), var(--beige));
}
.manage-shell { width: min(calc(100% - 32px), 880px); margin: 0 auto; padding: clamp(1rem, 5vw, 4rem) 0; }
.manage-card { padding: clamp(1.4rem, 5vw, 4rem); background: var(--paper); box-shadow: var(--shadow); }
.manage-logo { display: inline-flex; margin-bottom: 2.2rem; }
.manage-logo img { width: 126px; height: 126px; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 10px 22px rgba(64,43,34,.11)); }
.manage-card h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 7vw, 4.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.manage-intro { max-width: 620px; margin: 1.35rem 0 2rem; color: var(--muted); }
.manage-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 2rem 0 1.2rem;
    border: 1px solid var(--line);
    background: var(--line);
}
.manage-details div { min-height: 105px; display: grid; align-content: space-between; gap: .8rem; padding: 1rem; background: #fff; }
.manage-details span { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.manage-details strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; overflow-wrap: anywhere; }
.manage-status { display: inline-flex; align-items: center; gap: .55rem; margin: .2rem 0 1.5rem; padding: .42rem .7rem; background: #e7f1eb; color: #3f765e; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.manage-status > span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.manage-status-cancelled { background: #f7e4e1; color: #a4483f; }
.manage-status-completed { background: #ecebf0; color: #626473; }
.manage-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.manage-reminder { color: var(--muted); font-size: .72rem; }
.manage-information, .cancellation-panel {
    margin-top: 1.5rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    background: #fff;
}
.manage-information h2, .cancellation-panel h2 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.manage-information p, .cancellation-panel p { margin: 0 0 1rem; color: var(--muted); overflow-wrap: anywhere; }
.cancellation-panel { border-left: 4px solid var(--peach-deep); }
.cancellation-panel.is-closed { border-left-color: var(--sand); background: #f6f1eb; }
.button-danger { background: #a4483f; color: #fff; }
.button-danger:hover { background: #823830; }
.manage-contact-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.manage-contact-links a { border-bottom: 1px solid var(--ink); text-decoration: none; }
.manage-home-link { display: inline-block; margin-top: 2rem; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-showcase-card { min-height: 260px; }
}

@media (max-width: 640px) {
    .service-showcase-card { grid-template-columns: 40px 1fr; }
    .service-meta { grid-column: 2; justify-items: start; }
    .service-showcase-card > a { grid-column: 2; }
    .booking-service-grid { grid-template-columns: 1fr; }
    .booking-service-option { min-height: 118px; }
    .booking-selection-banner { grid-template-columns: 1fr; }
    .booking-selection-banner strong, .booking-selection-banner small { grid-column: auto; text-align: left; }
    .multi-service-summary { position: static; align-items: stretch; flex-direction: column; }
    .multi-service-summary strong { white-space: normal; }
    .multi-service-summary .button { width: 100%; }
    .success-actions { width: 100%; flex-direction: column; }
    .success-actions .button { width: 100%; }
    .manage-details { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 440px) {
    .manage-details { grid-template-columns: 1fr; }
    .success-payment { grid-template-columns: 1fr; }
    .success-payment strong { margin-bottom: .4rem; text-align: left; }
}

.manage-card h1 {
    max-width: 760px;
    font-size: clamp(2.25rem, 5.3vw, 4rem);
    overflow-wrap: anywhere;
}
.manage-service-list {
    display: grid;
    gap: 1px;
    margin: 1.4rem 0;
    border: 1px solid var(--line);
    background: var(--line);
}
.manage-service-list > span {
    background: var(--blush);
    padding: .7rem 1rem;
    color: var(--peach-deep);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.manage-service-list > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    padding: .85rem 1rem;
}
.manage-service-list strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.manage-service-list small { color: var(--muted); font-size: .67rem; font-weight: 700; white-space: nowrap; }
@media (max-width: 520px) {
    .manage-service-list > div { align-items: flex-start; flex-direction: column; gap: .2rem; }
}
