:root {
    --teal: #078fa0;
    --teal-dark: #057384;
    --teal-soft: #d8f3f5;
    --ink: #1f2427;
    --muted: #667378;
    --line: #d7e6e8;
    --paper: #ffffff;
    --mist: #f5faf9;
    --sage: #7aa99a;
    --rose: #d98678;
    --danger: #bd3b3b;
    --shadow: 0 18px 50px rgba(5, 115, 132, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mist);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body,
button,
input,
select,
textarea {
    letter-spacing: 0;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 18px 5vw;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(7, 143, 160, 0.14);
    backdrop-filter: blur(18px);
}

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

.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 68px;
    background: transparent;
    color: var(--teal);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy span {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

.brand-copy strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.9rem;
    font-weight: 700;
}

.brand-copy em {
    color: var(--teal);
    font-family: "Parisienne", cursive;
    font-size: 2.8rem;
    font-style: normal;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    position: absolute;
    right: 20%;
    bottom: 0;
    left: 20%;
    height: 2px;
    background: var(--teal);
    content: "";
    opacity: 0;
    transform: translateY(4px);
    transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--teal-dark);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    transition: 180ms ease;
    white-space: nowrap;
}

.button svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.button-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 12px 24px rgba(7, 143, 160, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.button-secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--teal-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--teal);
    color: var(--teal);
}

.button-danger {
    background: #fff;
    border-color: rgba(189, 59, 59, 0.35);
    color: var(--danger);
}

.button-danger:hover,
.button-danger:focus-visible {
    background: #fff1f1;
}

.button-small {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.86rem;
}

.section,
.section-band,
.contact-panel,
.article-page {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 34px;
    align-items: center;
    min-height: 680px;
    padding: 44px 0 40px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.script-line,
.signature {
    margin: 0 0 14px;
    color: var(--teal);
    font-family: "Parisienne", cursive;
    font-size: 2.4rem;
    line-height: 1.05;
}

.hero h1,
.page-hero h1,
.article-header h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 4.6rem;
    line-height: 0.95;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong,
.section-heading h2,
.price-value {
    color: var(--teal);
}

.lead {
    max-width: 550px;
    margin: 26px 0 24px;
    color: #2e3639;
    font-size: 1.18rem;
}

.signature {
    margin-top: 8px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 26px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 44px;
}

.trust-row div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.trust-row svg {
    width: 30px;
    height: 30px;
    color: var(--teal);
}

.hero-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-left: 10px solid rgba(7, 143, 160, 0.32);
    border-radius: 150px 0 0 150px;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: 55% center;
}

.hero-stamp {
    position: absolute;
    right: 28px;
    top: 34px;
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    border: 2px solid rgba(7, 143, 160, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    color: var(--teal-dark);
    text-align: center;
    backdrop-filter: blur(8px);
}

.hero-stamp span {
    font-family: "Parisienne", cursive;
    font-size: 2.1rem;
    line-height: 0.9;
}

.hero-stamp small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dev-notice {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 18px;
    padding: 12px 16px;
    border: 1px solid #f0d495;
    border-radius: 8px;
    background: #fff8e6;
    color: #7a5511;
}

.section {
    padding: 68px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
    text-align: center;
}

.section-heading span {
    width: 76px;
    height: 1px;
    background: var(--line);
}

.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.9rem;
    line-height: 1;
}

.section-subtitle {
    max-width: 740px;
    margin: 0 auto 30px;
    color: var(--muted);
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 44px;
    align-items: center;
    margin-top: 34px;
}

.about-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-copy {
    max-width: 620px;
}

.about-copy h3,
.price-note h3,
.contact-panel h2,
.empty-state h2 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.35rem;
    line-height: 1.08;
}

.about-copy p {
    color: #394448;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.service-card,
.post-card,
.stat-card,
.admin-panel,
.login-card,
.empty-state {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 34px rgba(31, 36, 39, 0.06);
}

.service-card {
    min-height: 240px;
    padding: 28px 20px;
    text-align: center;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    color: var(--teal);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    margin-top: 34px;
    align-items: start;
}

.price-panel {
    border-top: 1px solid var(--line);
}

.price-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) minmax(105px, auto);
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed #bddde1;
}

.price-icon {
    color: var(--teal);
}

.price-icon svg {
    width: 34px;
    height: 34px;
}

.price-copy {
    display: grid;
    gap: 2px;
}

.price-copy strong {
    font-size: 1.06rem;
}

.price-copy span {
    color: var(--muted);
    font-size: 0.92rem;
}

.price-value {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.price-note {
    padding: 28px;
    border-left: 4px solid var(--sage);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.price-note p:last-child {
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(31, 36, 39, 0), rgba(31, 36, 39, 0.72));
    color: #fff;
    font-weight: 800;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

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

.post-card {
    overflow: hidden;
}

.post-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.post-card div {
    padding: 22px;
}

.post-card time,
.article-header time {
    color: var(--rose);
    font-size: 0.86rem;
    font-weight: 800;
}

.post-card h2,
.post-card h3 {
    margin: 8px 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.8rem;
    line-height: 1.08;
}

.post-card p {
    color: var(--muted);
}

.post-card a,
.panel-title a,
.admin-list-row a,
.stat-card a {
    color: var(--teal-dark);
    font-weight: 800;
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 58px;
    padding: 36px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-panel p {
    max-width: 620px;
    color: var(--muted);
}

.site-footer {
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 24px 0;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    font-weight: 600;
}

.footer-item svg {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.page-hero,
.article-header {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
    padding: 74px 0 34px;
    text-align: center;
}

.page-hero p:not(.script-line),
.article-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.empty-state {
    padding: 34px;
    text-align: center;
}

.empty-state p {
    color: var(--muted);
}

.article-page {
    padding-bottom: 70px;
}

.article-cover {
    width: min(900px, 100%);
    max-height: 520px;
    margin: 0 auto 34px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.article-content {
    width: min(760px, 100%);
    margin: 0 auto;
    color: #343f43;
    font-size: 1.05rem;
}

.booking-hero {
    padding-bottom: 18px;
}

.booking-section {
    padding-top: 26px;
}

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

.booking-panel {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(31, 36, 39, 0.06);
}

.booking-panel h2 {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.booking-form label,
.filter-bar label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(7, 143, 160, 0.12);
}

.booking-location {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.booking-location label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
}

.booking-location input {
    width: 18px;
    height: 18px;
}

.booking-location input:disabled + span {
    color: #a2aeb2;
}

.service-choice-list {
    display: grid;
    gap: 10px;
}

.service-choice {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 12px !important;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink) !important;
    cursor: pointer;
}

.service-choice:has(input:checked) {
    border-color: var(--teal);
    background: #eefafb;
}

.service-choice input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.service-choice span {
    display: grid;
    gap: 3px;
}

.service-choice small {
    color: var(--muted);
    font-weight: 600;
}

.home-fields {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background: var(--mist);
}

.home-fields[hidden] {
    display: none;
}

.home-fields p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.booking-calendar {
    display: grid;
    gap: 12px;
}

.booking-calendar-head,
.admin-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.calendar-nav-button {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--teal-dark);
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 900;
}

.booking-calendar-weekdays,
.admin-calendar-weekdays,
.booking-calendar-grid,
.admin-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.booking-calendar-weekdays span,
.admin-calendar-weekdays span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
}

.booking-calendar-day,
.booking-calendar-empty {
    min-height: 58px;
}

.booking-calendar-day {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
}

.booking-calendar-day small {
    font-size: 0.7rem;
    font-weight: 700;
}

.booking-calendar-day.is-available {
    border-color: rgba(7, 143, 160, 0.4);
    background: #e9f8fa;
    color: var(--teal-dark);
}

.booking-calendar-day.is-selected,
.booking-calendar-day.is-available:hover,
.booking-calendar-day.is-available:focus-visible {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
}

.booking-calendar-day.is-unavailable {
    background: #f4f6f6;
    color: #9ba8ac;
    cursor: not-allowed;
}

.booking-calendar-day.is-outside-range {
    opacity: 0.55;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
    gap: 10px;
    min-height: 56px;
    margin-top: 18px;
}

.slot-button {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--teal-dark);
    cursor: pointer;
    font-weight: 800;
}

.slot-button:hover,
.slot-button:focus-visible,
.slot-button.is-selected {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
}

.booking-summary,
.booking-success {
    margin-top: 20px;
    padding: 18px;
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    background: var(--mist);
}

.booking-summary {
    display: grid;
    gap: 6px;
}

.booking-summary span,
.booking-success p {
    color: var(--muted);
}

.booking-success h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.2rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
}

.filter-bar label {
    width: min(260px, 100%);
}

.filter-bar input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
    outline: none;
}

.admin-search-bar {
    justify-content: flex-start;
}

.admin-search-bar label:first-child {
    width: min(420px, 100%);
}

.inline-status-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.inline-status-form select {
    min-width: 140px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px 10px;
}

.admin-calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.admin-calendar-toolbar strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.8rem;
}

.admin-calendar {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
}

.admin-calendar-grid {
    align-items: stretch;
}

.admin-calendar-day {
    min-height: 132px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.admin-calendar-day.is-empty {
    border: 0;
    background: transparent;
}

.admin-calendar-day.is-quiet {
    background: #f7fafa;
}

.admin-calendar-day.is-bookable {
    border-color: #b7dfc6;
    background: #f0fbf5;
}

.admin-calendar-day.is-not-bookable {
    border-color: #efc6bf;
    background: #fff3f1;
}

.admin-calendar-day.is-bookable .admin-calendar-date small {
    color: #217357;
}

.admin-calendar-day.is-not-bookable .admin-calendar-date small {
    color: #9a3b32;
}

.admin-calendar-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-calendar-date small {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.admin-calendar-date a {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.admin-calendar-items {
    display: grid;
    gap: 6px;
}

.booking-chip,
.availability-chip {
    display: block;
    overflow: hidden;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-chip {
    background: #e9f8fa;
    color: var(--teal-dark);
    text-decoration: none;
}

.booking-chip:hover,
.booking-chip:focus-visible {
    background: var(--teal);
    color: #fff;
}

.booking-chip.is-cancelled {
    background: #fae8e5;
    color: #9a3b32;
    text-decoration: line-through;
}

.booking-chip.is-completed {
    background: #eef1f2;
    color: var(--muted);
}

.availability-chip {
    text-decoration: none;
}

.availability-chip.is-live {
    background: #e6f6ef;
    color: #217357;
}

.availability-chip.is-draft {
    background: #f8eee4;
    color: #935c2d;
}

.calendar-copy-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.calendar-copy-panel form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7fafa;
}

.calendar-copy-panel form strong,
.calendar-copy-panel form button {
    grid-column: 1 / -1;
}

.calendar-copy-panel input {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 10px;
}

.admin-booking-summary {
    margin-top: 0;
    margin-bottom: 20px;
}

.email-error {
    margin-top: 6px;
    color: #9a3b32 !important;
    white-space: pre-wrap;
}

.login-body,
.admin-body {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(216, 243, 245, 0.58), rgba(245, 250, 249, 0.92)),
        var(--mist);
}

.login-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px 20px;
}

.login-card {
    width: min(440px, 100%);
    padding: 34px;
}

.login-brand {
    margin-bottom: 22px;
}

.login-card h1 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.7rem;
}

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

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 14px 4vw;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.admin-brand {
    min-width: 190px;
}

.admin-brand .brand-mark {
    width: 42px;
    height: 52px;
}

.admin-brand .brand-copy strong,
.login-brand .brand-copy strong {
    font-size: 2.2rem;
}

.admin-brand .brand-copy em,
.login-brand .brand-copy em {
    font-size: 2.1rem;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-nav a {
    padding: 8px 11px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
}

.admin-nav a:hover,
.admin-nav a:focus-visible {
    border-color: var(--line);
    color: var(--teal-dark);
    background: var(--mist);
}

.logout-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logout-form span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 64px;
}

.admin-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-heading h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3rem;
    line-height: 1;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.stat-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 24px;
}

.stat-card span {
    color: var(--muted);
    font-weight: 800;
}

.stat-card strong {
    color: var(--teal-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3rem;
    line-height: 1;
}

.admin-panel {
    padding: 26px;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.panel-title h2 {
    margin: 0;
    font-size: 1.25rem;
}

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

.admin-list {
    display: grid;
    gap: 10px;
}

.admin-list-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px 120px;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.admin-list-row:last-child {
    border-bottom: 0;
}

.admin-list-row span,
.admin-list-row time {
    color: var(--muted);
    font-size: 0.9rem;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.admin-table td strong {
    display: block;
}

.admin-table td small {
    display: block;
    max-width: 420px;
    color: var(--muted);
}

.admin-thumb {
    width: 92px;
    height: 66px;
    border-radius: 8px;
    object-fit: cover;
}

.actions-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.actions-cell form {
    margin: 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.status-pill.is-live {
    background: #e6f6ef;
    color: #217357;
}

.status-pill.is-draft {
    background: #f8eee4;
    color: #935c2d;
}

.admin-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.admin-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
    outline: none;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(7, 143, 160, 0.12);
}

.span-2 {
    grid-column: span 2;
}

.checkbox-field {
    display: flex !important;
    grid-column: span 2;
    align-items: center;
    gap: 10px;
}

.checkbox-field input {
    width: 20px;
    height: 20px;
}

.admin-service-choice-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.admin-form .admin-service-choice-list .service-choice {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    gap: 12px !important;
    padding: 14px 16px;
    border-color: #cfe2e5;
    background: linear-gradient(180deg, #fff, #f9fcfc);
    box-shadow: 0 8px 22px rgba(31, 36, 39, 0.04);
}

.admin-form .admin-service-choice-list .service-choice:hover,
.admin-form .admin-service-choice-list .service-choice:focus-within {
    border-color: rgba(7, 143, 160, 0.45);
    background: #f4fcfd;
}

.admin-form .admin-service-choice-list .service-choice:has(input:checked) {
    border-color: var(--teal);
    background: #e9f8fa;
    box-shadow: 0 10px 24px rgba(7, 143, 160, 0.1);
}

.admin-form .admin-service-choice-list .service-choice input {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    accent-color: var(--teal);
    justify-self: start;
}

.admin-form .admin-service-choice-list .service-choice span {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.admin-form .admin-service-choice-list .service-choice strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.25;
}

.admin-form .admin-service-choice-list .service-choice small {
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.form-errors,
.flash {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.form-errors {
    border: 1px solid rgba(189, 59, 59, 0.22);
    background: #fff2f2;
    color: var(--danger);
}

.form-errors p {
    margin: 0;
}

.form-errors p + p {
    margin-top: 6px;
}

.flash {
    margin-bottom: 18px;
}

.flash-success {
    border: 1px solid rgba(33, 115, 87, 0.22);
    background: #ecf8f2;
    color: #217357;
}

.flash-error {
    border: 1px solid rgba(189, 59, 59, 0.22);
    background: #fff2f2;
    color: var(--danger);
}

.current-cover {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-weight: 800;
}

.current-cover img {
    width: 120px;
    height: 76px;
    border-radius: 8px;
    object-fit: cover;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    box-shadow: 0 14px 28px rgba(7, 143, 160, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 180ms ease;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
    background: var(--teal-dark);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 24px;
        left: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-toggle {
        display: inline-grid;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 30px;
    }

    .hero-media {
        order: -1;
        min-height: 440px;
        border-left-width: 7px;
    }

    .hero-media img {
        min-height: 440px;
    }

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

    .price-layout,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        grid-template-columns: 1fr;
    }

    .logout-form {
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 78px;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 18px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 40px;
        height: 52px;
    }

    .brand-copy strong {
        font-size: 2.1rem;
    }

    .brand-copy em {
        font-size: 2rem;
    }

    .brand-copy small {
        font-size: 0.66rem;
    }

    .header-cta {
        position: fixed;
        right: 16px;
        bottom: 14px;
        left: 16px;
        z-index: 45;
        min-height: 52px;
    }

    .section,
    .section-band,
    .contact-panel,
    .article-page,
    .footer-inner {
        width: min(100% - 30px, 1180px);
    }

    .hero {
        gap: 24px;
        padding-bottom: 34px;
    }

    .hero h1,
    .page-hero h1,
    .article-header h1 {
        font-size: 3rem;
    }

    .script-line,
    .signature {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-media,
    .hero-media img {
        min-height: 340px;
    }

    .hero-media {
        border-radius: 90px 0 0 90px;
    }

    .hero-stamp {
        right: 14px;
        top: 16px;
        width: 108px;
        height: 108px;
    }

    .hero-stamp span {
        font-size: 1.6rem;
    }

    .trust-row,
    .service-grid,
    .gallery-grid,
    .post-grid,
    .post-grid-large,
    .stat-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .scroll-top {
        bottom: 84px;
    }

    .trust-row {
        margin-top: 30px;
    }

    .section {
        padding: 46px 0;
    }

    .section-heading h2 {
        font-size: 2.35rem;
    }

    .section-heading span {
        width: 38px;
    }

    .price-row {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .price-value {
        grid-column: 2;
        font-size: 1.55rem;
        text-align: left;
    }

    .contact-panel,
    .admin-heading,
    .panel-title {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-panel {
        padding: 24px;
    }

    .admin-main {
        width: min(100% - 28px, 1180px);
        padding-top: 24px;
    }

    .admin-heading h1 {
        font-size: 2.35rem;
    }

    .admin-panel,
    .login-card {
        padding: 20px;
    }

    .booking-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-calendar-day,
    .booking-calendar-empty {
        min-height: 50px;
    }

    .booking-calendar-day small {
        font-size: 0.64rem;
    }

    .admin-calendar {
        overflow-x: auto;
    }

    .admin-calendar-weekdays,
    .admin-calendar-grid {
        min-width: 760px;
    }

    .calendar-copy-panel {
        grid-template-columns: 1fr;
    }

    .calendar-copy-panel form {
        grid-template-columns: 1fr;
    }

    .admin-calendar-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .span-2,
    .checkbox-field {
        grid-column: auto;
    }

    .admin-list-row {
        grid-template-columns: 1fr;
    }
}
