:root {
    --bg: #08090b;
    --bg-soft: #111318;
    --panel: rgba(16, 18, 23, 0.78);
    --panel-strong: rgba(14, 15, 19, 0.96);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --text: #f4efe6;
    --muted: #bbb2a4;
    --muted-strong: rgba(244, 239, 230, 0.72);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(214, 182, 112, 0.32);
    --gold: #d6b670;
    --gold-bright: #f0d9a6;
    --accent: #16d9ff;
    --silver: #c9d0d8;
    --success: #8fc6a2;
    --error: #f1b0aa;
    --shadow-xl: 0 36px 90px rgba(0, 0, 0, 0.46);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.32);
    --shadow-md: 0 18px 34px rgba(0, 0, 0, 0.22);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1200px, calc(100vw - 48px));
    --transition: 240ms ease;
    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 132px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(214, 182, 112, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(201, 208, 216, 0.08), transparent 18%),
        linear-gradient(180deg, #060709 0%, #0b0d11 28%, #090a0d 100%);
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.92), rgba(8, 9, 11, 0.68));
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    padding: 10px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    background: rgba(14, 16, 20, 0.78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

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

.brand > .brand-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 170px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(145deg, rgba(214, 182, 112, 0.18), rgba(255, 255, 255, 0.03));
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.14em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark.has-image {
    border: 0;
    background: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    border-radius: 0;
    overflow: visible;
}

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

.cookie-notice {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 120;
    width: min(360px, calc(100vw - 36px));
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(13, 15, 19, 0.92);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 10px;
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.cookie-notice-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.brand-copy strong,
.footer-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu a {
    position: relative;
    color: rgba(244, 239, 230, 0.85);
    font-size: 0.96rem;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--text);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: clip;
    min-height: 100vh;
}

.hero-media,
.hero-overlay,
.hero-noise {
    position: absolute;
    inset: 0;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) brightness(0.42);
    transform: scale(1.03);
}

.hero-overlay {
    background:
        radial-gradient(circle at 72% 18%, rgba(214, 182, 112, 0.24), transparent 18%),
        linear-gradient(98deg, rgba(6, 7, 9, 0.94) 0%, rgba(8, 9, 11, 0.8) 48%, rgba(8, 9, 11, 0.42) 100%),
        linear-gradient(180deg, rgba(7, 8, 10, 0.08), rgba(7, 8, 10, 0.68));
}

.hero-noise {
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
    gap: 36px;
    align-items: end;
    padding: 170px 0 110px;
}

.hero-grid-editorial {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 700;
}

.hero-kicker {
    margin: 0 0 18px;
    color: rgba(244, 239, 230, 0.86);
    font-size: 1rem;
    max-width: 44ch;
}

.offer-banner {
    display: inline-grid;
    gap: 8px;
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(214, 182, 112, 0.26);
    background:
        linear-gradient(135deg, rgba(214, 182, 112, 0.18), rgba(255, 255, 255, 0.04)),
        rgba(15, 16, 20, 0.6);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    display: inline-flex;
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.offer-banner strong {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    letter-spacing: -0.03em;
}

.offer-banner small {
    color: var(--muted-strong);
    font-size: 0.92rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-sans);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 700;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.1rem);
    max-width: 13.2ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

h2 {
    font-size: clamp(2.5rem, 4.8vw, 4.3rem);
    max-width: 13ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

h3 {
    font-size: 1.7rem;
    line-height: 1.04;
}

.hero-text,
.section-heading p,
.about-copy p,
.pricing-card p,
.contact-panel p,
.form-card p,
.site-footer p,
.benefit-card p,
.service-card p {
    color: var(--muted-strong);
}

.hero-text {
    margin: 26px 0 0;
    max-width: 56ch;
    font-size: 1.08rem;
}

.hero-editorial-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    max-width: 900px;
}

.hero-editorial-chip {
    display: grid;
    gap: 10px;
    padding: 18px 18px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(12, 14, 18, 0.62);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.hero-editorial-chip span {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-editorial-chip strong {
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}

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

.button-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: #0c0d10;
    box-shadow: 0 20px 50px rgba(214, 182, 112, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 24px 60px rgba(214, 182, 112, 0.32);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--line-strong);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 182, 112, 0.56);
}

.button-block {
    width: 100%;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-proof-strip article {
    display: grid;
    align-content: space-between;
    min-height: 144px;
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
        rgba(13, 15, 19, 0.56);
    backdrop-filter: blur(16px);
}

.hero-proof-strip strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    letter-spacing: -0.055em;
}

.hero-proof-strip span {
    color: rgba(244, 239, 230, 0.68);
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-highlights span,
.service-tag,
.pricing-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(244, 239, 230, 0.86);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel,
.about-badge,
.about-copy,
.contact-panel,
.form-card,
.service-card,
.benefit-card,
.gallery-card,
.pricing-card,
.stat-card,
.hero-band-grid > div {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
        rgba(14, 16, 20, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-stage {
    position: relative;
    min-height: 760px;
    padding: 34px 0 34px 42px;
}

.hero-stage-surface {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    min-height: 100%;
    padding: 34px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 42%, rgba(9, 12, 16, 0.95) 100%),
        rgba(10, 12, 16, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 34px 70px rgba(0, 0, 0, 0.28);
}

.hero-stage-visual {
    position: relative;
    min-height: 220px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 20% 22%, rgba(214, 182, 112, 0.24), transparent 22%),
        radial-gradient(circle at 78% 34%, rgba(22, 217, 255, 0.16), transparent 20%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(7, 9, 12, 0.96) 58%);
}

.hero-stage-visual-orbit {
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-stage-visual-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    gap: 8px;
    width: min(280px, calc(100% - 48px));
    padding: 18px 18px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(12, 14, 18, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-stage-visual-card.is-secondary {
    top: 24px;
    right: 24px;
    left: auto;
    bottom: auto;
    width: 220px;
}

.hero-stage-visual-card span {
    color: rgba(244, 239, 230, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-stage-visual-card strong {
    font-size: 1.18rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-stage-visual-card small {
    color: rgba(244, 239, 230, 0.66);
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero-stage-surface::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.hero-stage-header {
    display: grid;
    gap: 12px;
}

.hero-stage-header strong {
    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    max-width: 9ch;
}

.hero-stage-header p {
    max-width: 30ch;
    color: rgba(244, 239, 230, 0.68);
    font-size: 1rem;
    line-height: 1.55;
}

.hero-stage-stat {
    display: grid;
    gap: 8px;
    padding: 24px 24px 22px;
    border-radius: 28px;
    border: 1px solid rgba(214, 182, 112, 0.16);
    background:
        linear-gradient(180deg, rgba(214, 182, 112, 0.12), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.02);
}

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

.hero-stage-stat span {
    color: rgba(244, 239, 230, 0.5);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-stage-stat strong {
    font-size: 2rem;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-stage-stat small {
    color: rgba(244, 239, 230, 0.66);
    font-size: 0.92rem;
}

.hero-stage-quote {
    display: grid;
    gap: 10px;
    padding: 24px 24px 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(14, 16, 20, 0.58);
}

.hero-stage-quote p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: rgba(244, 239, 230, 0.9);
}

.hero-stage-quote span {
    color: rgba(244, 239, 230, 0.58);
    font-size: 0.88rem;
}

.hero-stage-list {
    display: grid;
    gap: 14px;
    margin-top: auto;
}

.hero-stage-list article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stage-list article:first-child {
    border-top: 0;
    padding-top: 0;
}

.hero-stage-list span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-bright);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.hero-stage-list p {
    margin: 0;
    color: rgba(244, 239, 230, 0.78);
    font-size: 0.98rem;
    line-height: 1.55;
}

.hero-stage-float {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 6px;
    width: 230px;
    padding: 18px 18px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(14, 16, 20, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.hero-stage-float span {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-stage-float strong {
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-stage-float-top {
    top: 0;
    right: 18px;
}

.hero-stage-float-bottom {
    bottom: 0;
    left: 0;
}

.hero-panel,
.about-copy,
.contact-panel,
.form-card {
    border-radius: var(--radius-xl);
    backdrop-filter: blur(18px);
}

.hero-panel {
    align-self: center;
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012) 30%, rgba(14, 16, 20, 0.82) 100%),
        rgba(14, 16, 20, 0.8);
    box-shadow: var(--shadow-xl);
}

.hero-panel-header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-panel-label {
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-panel-header strong {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

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

.glass-card {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.glass-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.88rem;
}

.glass-card p {
    margin: 0;
    color: rgba(244, 239, 230, 0.76);
    font-size: 0.94rem;
}

.glass-card-wide {
    grid-column: 1 / -1;
}

.hero-band {
    position: relative;
    z-index: 1;
    margin-top: -54px;
}

.hero-band-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-band-grid > div {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border-radius: 24px;
    backdrop-filter: blur(18px);
}

.hero-band-intro {
    justify-content: end;
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.09), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 20, 0.76);
}

.hero-band-intro .eyebrow {
    margin-bottom: 4px;
}

.hero-band-grid strong {
    font-family: var(--font-sans);
    font-size: 1.22rem;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-band-grid span {
    color: var(--muted-strong);
    font-size: 0.95rem;
}

.section {
    position: relative;
    padding: 118px 0;
}

.section-about {
    padding-top: 124px;
}

.section-heading,
.section-intro {
    margin-bottom: 34px;
}

.section-heading,
.section-intro {
    max-width: 820px;
}

.section-heading h2,
.section-intro h2 {
    max-width: 16ch;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.section-heading p {
    max-width: 58ch;
    margin: 14px 0 0;
    color: rgba(244, 239, 230, 0.72);
    font-size: 1.02rem;
}

.about-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.about-media {
    position: relative;
}

.about-media img {
    min-height: 640px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 6px;
    padding: 22px 24px;
    border-radius: 24px;
    backdrop-filter: blur(18px);
}

.about-badge strong {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-badge span {
    color: var(--muted-strong);
}

.about-copy,
.contact-panel,
.form-card {
    padding: 42px;
}

.about-copy p + p {
    margin-top: 16px;
}

.stat-grid,
.service-grid,
.benefit-grid,
.gallery-grid,
.pricing-grid,
.form-grid {
    display: grid;
    gap: 22px;
}

.stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
}

.stat-card {
    padding: 22px;
    border-radius: 22px;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1.46rem;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 230px;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-grid > * {
    min-width: 0;
}

.pricing-showcase {
    display: grid;
    grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
    gap: 36px;
    align-items: start;
}

.pricing-lead {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.section-pricing .section-heading h2 {
    max-width: 9ch;
}

.section-pricing .section-heading p {
    max-width: 42ch;
}

.pricing-lead-card {
    display: grid;
    gap: 10px;
    padding: 28px 28px 26px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
        rgba(12, 14, 18, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.024),
        0 18px 42px rgba(0, 0, 0, 0.2);
}

.pricing-lead-card strong {
    font-size: 1.65rem;
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 11ch;
}

.pricing-lead-card p {
    margin: 0;
    color: rgba(244, 239, 230, 0.68);
}

.pricing-lead-stack {
    display: grid;
    gap: 14px;
}

.pricing-lead-mini {
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
        rgba(12, 14, 18, 0.74);
}

.pricing-lead-mini span {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.pricing-lead-mini strong {
    font-size: 1.04rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.pricing-content {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.pricing-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        rgba(11, 13, 17, 0.86);
}

.pricing-toolbar-copy {
    display: grid;
    gap: 10px;
    max-width: 520px;
}

.pricing-toolbar-copy strong {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.pricing-toolbar-copy p {
    margin: 0;
    color: rgba(244, 239, 230, 0.72);
}

.service-card,
.benefit-card,
.pricing-card,
.gallery-card,
.contact-panel,
.form-card {
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.service-card::before,
.benefit-card::before,
.pricing-card::before,
.contact-panel::before,
.form-card::before,
.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
        radial-gradient(circle at top right, rgba(22, 217, 255, 0.08), transparent 34%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-card:hover,
.benefit-card:hover,
.pricing-card:hover,
.gallery-card:hover,
.contact-panel:hover,
.form-card:hover,
.hero-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.26);
}

.service-card:hover::before,
.benefit-card:hover::before,
.pricing-card:hover::before,
.contact-panel:hover::before,
.form-card:hover::before,
.hero-panel:hover::before {
    opacity: 1;
}

.service-card,
.benefit-card,
.pricing-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
        rgba(14, 16, 20, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 14px 32px rgba(0, 0, 0, 0.18);
}

.service-card {
    min-height: 100%;
}

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.service-index,
.benefit-number {
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.service-link {
    margin-top: 26px;
    display: inline-flex;
    color: rgba(244, 239, 230, 0.58);
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card h3,
.benefit-card h3,
.pricing-card h3 {
    margin-bottom: 12px;
}

.benefit-card {
    display: grid;
    align-content: end;
    min-height: 236px;
}

.benefit-number {
    margin-bottom: 18px;
}

.gallery-card {
    position: relative;
    min-height: 100%;
    border-radius: var(--radius-xl);
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(9, 10, 13, 0.78) 100%);
}

.gallery-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card figcaption {
    position: absolute;
    inset: auto 20px 20px 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(10, 11, 14, 0.7);
    backdrop-filter: blur(14px);
}

.badge,
.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gold);
}

.section-benefits {
    background:
        radial-gradient(circle at center, rgba(214, 182, 112, 0.06), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-pricing {
    background:
        radial-gradient(circle at 50% 18%, rgba(214, 182, 112, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.pricing-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.pricing-category-tab {
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(18, 20, 24, 0.76);
    color: rgba(244, 239, 230, 0.86);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.pricing-category-tab:hover,
.pricing-category-tab:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(214, 182, 112, 0.5);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.pricing-category-tab.is-active {
    border-color: rgba(22, 217, 255, 0.4);
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.12), rgba(255, 255, 255, 0.018)),
        rgba(14, 18, 23, 0.86);
    color: var(--text);
}

.pricing-card {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 20px;
    align-content: start;
    min-width: 0;
    min-height: 100%;
    height: 100%;
    padding-top: 78px;
}

.pricing-card-topline {
    display: grid;
    gap: 14px;
    align-items: start;
    justify-items: start;
}

.pricing-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.pricing-card-head {
    display: grid;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card h3 {
    max-width: 8ch;
    font-size: clamp(1.8rem, 2vw, 2.45rem);
    line-height: 0.95;
}

.pricing-b2b-cta {
    margin-top: 28px;
    padding: 30px 32px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
        rgba(14, 16, 20, 0.72);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.pricing-b2b-cta h3 {
    margin: 0;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.pricing-b2b-cta p {
    margin: 12px 0 0;
    color: rgba(244, 239, 230, 0.76);
}

.pricing-b2b-copy {
    display: grid;
    gap: 12px;
    max-width: 50ch;
}

.pricing-b2b-actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.pricing-b2b-meta {
    display: grid;
    gap: 6px;
    min-width: 240px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.08), rgba(255, 255, 255, 0.015)),
        rgba(12, 15, 20, 0.66);
}

.pricing-b2b-meta span {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.pricing-b2b-meta strong {
    font-size: 1rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.package-price-stack {
    display: grid;
    gap: 8px;
}

.package-price-old {
    color: var(--muted);
    font-size: 0.95rem;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(244, 239, 230, 0.35);
}

.package-price {
    color: var(--text);
    font-size: clamp(2rem, 2.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
}

.package-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(214, 182, 112, 0.15);
    border: 1px solid rgba(214, 182, 112, 0.3);
    color: var(--gold-bright);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    align-content: start;
}

.pricing-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(244, 239, 230, 0.85);
    line-height: 1.55;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(214, 182, 112, 0.5);
}

.pricing-card.featured {
    border-color: rgba(214, 182, 112, 0.22);
    background:
        linear-gradient(180deg, rgba(214, 182, 112, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(16, 18, 23, 0.78);
}

.pricing-badge {
    position: absolute;
    top: 28px;
    right: 30px;
    background: rgba(214, 182, 112, 0.15);
    color: var(--gold);
    border: 1px solid rgba(214, 182, 112, 0.3);
}

.pricing-note {
    min-height: 56px;
    padding: 12px 14px;
    border-radius: 18px;
    justify-content: flex-start;
    color: rgba(244, 239, 230, 0.82);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
    line-height: 1.3;
    max-width: none;
    width: 100%;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.02);
}

.pricing-card-footer {
    display: grid;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    align-self: end;
}

.pricing-card > p {
    margin: 0;
    min-height: 4.8em;
}

.pricing-card-footer span {
    display: none;
}

.pricing-card-footer .button {
    width: 100%;
    justify-content: center;
}

.section-addons {
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 208, 216, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

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

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
        rgba(14, 16, 20, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 14px 30px rgba(0, 0, 0, 0.18);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 182, 112, 0.22);
    box-shadow: var(--shadow-xl);
}

.addon-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

.addon-price {
    white-space: nowrap;
    color: var(--gold-bright);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0;
}

.contact-layout-editorial {
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: 40px;
    align-items: stretch;
}

.contact-panel-intro {
    display: grid;
    align-content: start;
    gap: 0;
}

.contact-points-rail {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-points-rail div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-points-rail div:last-child {
    border-bottom: 0;
}

.booking-card-widget-editorial {
    padding: 46px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(22, 217, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
        rgba(12, 14, 18, 0.86);
}

.booking-card-widget-editorial .form-card-head h3 {
    max-width: 14ch;
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.booking-card-widget-editorial .booking-grid label {
    max-width: 340px;
}

.booking-widget-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
    gap: 26px;
    align-items: start;
}

.booking-widget-main {
    min-width: 0;
}

.booking-widget-aside {
    display: grid;
    gap: 16px;
}

.booking-widget-badge,
.booking-widget-flow article,
.booking-widget-contact {
    padding: 22px 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(16, 18, 22, 0.74);
}

.booking-widget-badge {
    display: grid;
    gap: 10px;
}

.booking-widget-badge span,
.booking-widget-contact span {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.booking-widget-badge strong,
.booking-widget-contact strong {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

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

.booking-widget-flow article {
    display: grid;
    gap: 10px;
}

.booking-widget-flow strong {
    color: var(--gold-bright);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}

.booking-widget-flow span {
    color: rgba(244, 239, 230, 0.82);
    line-height: 1.5;
}

.booking-widget-contact {
    display: grid;
    gap: 8px;
}

.booking-widget-contact small {
    color: rgba(244, 239, 230, 0.64);
    font-size: 0.92rem;
}

.contact-steps article,
.contact-step {
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
        rgba(14, 16, 20, 0.64);
}

.contact-steps strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    letter-spacing: 0.14em;
}

.contact-steps span {
    color: rgba(244, 239, 230, 0.85);
}

.faq-list {
    display: grid;
    gap: 14px;
    align-content: start;
    align-items: start;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    align-self: start;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 17px 20px;
    padding-right: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    position: relative;
}

.faq-question {
    display: grid;
    gap: 6px;
}

.faq-question-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(22, 217, 255, 0.1);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 18px;
    color: rgba(244, 239, 230, 0.78);
}

.faq-answer p {
    margin: 0;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.88fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 34px;
}

.page-hero-main {
    display: flex;
    align-items: flex-end;
    min-width: 0;
    max-width: 700px;
}

.page-hero-copy {
    display: grid;
    gap: 18px;
    max-width: 680px;
    min-height: 100%;
    padding: 34px 36px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 48%, rgba(9, 12, 16, 0.95) 100%),
        rgba(10, 12, 16, 0.92);
    box-shadow: var(--shadow-lg);
}

.page-hero-main h1 {
    font-size: clamp(2.9rem, 5.5vw, 4.95rem);
    max-width: 8.6ch;
    line-height: 0.94;
    text-wrap: balance;
}

.page-hero-b2b {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.page-hero-b2b .page-hero-main h1 {
    max-width: 11.8ch;
    font-size: clamp(2.85rem, 5vw, 4.65rem);
    line-height: 0.92;
}

.page-hero-b2b .page-lead {
    max-width: 46ch;
}

.page-hero-b2b .page-hero-side {
    gap: 18px;
}

.page-hero-b2b .page-mini-card {
    padding: 24px 26px;
}

.page-hero-b2b .page-mini-card h2 {
    font-size: 1.55rem;
    line-height: 1.08;
}

.page-lead {
    margin-top: 0;
    max-width: 58ch;
    font-size: 1.02rem;
    color: rgba(244, 239, 230, 0.8);
}

.page-hero-side {
    display: grid;
    gap: 16px;
    align-content: start;
}

.page-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.page-hero-metric {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 20, 0.6);
}

.page-hero-metric span {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.page-hero-metric strong {
    font-size: 1.32rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.page-mini-card {
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(14, 16, 20, 0.56);
    box-shadow: var(--shadow-md);
}

.page-mini-card h2 {
    max-width: none;
    font-size: 1.4rem;
    line-height: 1.06;
}

.page-mini-card p:not(.eyebrow) {
    margin: 12px 0 0;
    color: rgba(244, 239, 230, 0.78);
}

.page-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.page-panel {
    padding-top: 28px;
    padding-bottom: 30px;
}

.page-panel-accent {
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(14, 16, 20, 0.58);
}

.page-stack-block {
    margin-top: 24px;
}

.page-panel-header {
    display: grid;
    gap: 10px;
}

.page-panel-body {
    display: grid;
    gap: 18px;
}

.page-editorial-grid,
.page-showcase-grid,
.page-story-points,
.page-contact-utility {
    display: grid;
    gap: 20px;
}

.page-editorial-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    margin-top: 24px;
}

.page-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.page-story-card,
.page-showcase-card,
.page-link-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 52%, rgba(8, 11, 15, 0.96) 100%),
        rgba(11, 13, 17, 0.88);
    box-shadow: var(--shadow-lg);
}

.page-story-card::before,
.page-showcase-card::before,
.page-link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(22, 217, 255, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(214, 182, 112, 0.08), transparent 28%);
    pointer-events: none;
}

.page-story-card > *,
.page-showcase-card > *,
.page-link-card > * {
    position: relative;
    z-index: 1;
}

.page-story-card {
    display: grid;
    gap: 20px;
}

.page-story-card h2,
.page-showcase-card h2,
.page-link-card h2 {
    max-width: none;
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.page-story-card p,
.page-showcase-card p,
.page-link-card p {
    margin: 0;
    color: rgba(244, 239, 230, 0.78);
}

.page-story-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-story-point {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 20, 0.54);
}

.page-story-point span,
.page-showcase-card span,
.page-link-card span {
    display: block;
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.page-story-point strong,
.page-showcase-card strong,
.page-link-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.05rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.page-link-stack {
    display: grid;
    gap: 14px;
}

.page-link-card .button,
.page-showcase-card .button {
    margin-top: 18px;
}

.page-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    margin-top: 24px;
    align-items: start;
}

.page-faq-aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.page-faq-aside .page-link-card {
    padding: 24px;
}

.page-faq-cluster {
    display: grid;
    gap: 24px;
    align-content: start;
    align-items: start;
}

.page-faq-cluster .faq-list {
    margin-top: 0;
    width: 100%;
    align-self: start;
}

.page-faq-summary {
    display: grid;
    gap: 12px;
}

.page-faq-summary article {
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        rgba(14, 16, 20, 0.52);
}

.page-faq-summary strong {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.page-faq-summary p {
    margin: 10px 0 0;
}

.page-faq-aside .page-link-card {
    padding: 22px;
}

.page-process-grid,
.page-contact-strip {
    display: grid;
    gap: 18px;
}

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

.page-process-step,
.page-contact-card {
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 20, 0.58);
}

.page-process-step span,
.page-contact-card span,
.faq-question-index {
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.page-process-step strong,
.page-contact-card strong {
    display: block;
    margin: 10px 0 0;
    font-size: 1.06rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.page-contact-strip {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.78fr)) auto;
    align-items: stretch;
}

.page-contact-card.is-action {
    display: grid;
    align-content: center;
    justify-items: start;
}

.page-contact-card.is-action .button {
    margin-top: 14px;
}

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

.page-process-grid.page-process-grid-wide .page-process-step {
    min-height: 100%;
}

.page-compact-list {
    display: grid;
    gap: 12px;
}

.page-compact-list article {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 20, 0.56);
}

.page-compact-list span {
    display: block;
    color: rgba(244, 239, 230, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.page-compact-list strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.45;
}

.page-table-wrap {
    overflow: hidden;
    border-radius: 24px;
}

.page-data-list {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}

.page-data-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.025);
}

.page-data-label {
    color: rgba(244, 239, 230, 0.9);
    font-size: 1rem;
}

.page-data-value {
    color: var(--gold-bright);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: right;
}

.section-heading-compact {
    max-width: 780px;
    margin-bottom: 18px;
}

.section-heading-compact h2 {
    max-width: 18ch;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.section-heading-compact p,
.section-copy {
    max-width: 62ch;
    color: rgba(244, 239, 230, 0.78);
}

.seo-info-grid,
.seo-topic-grid {
    display: grid;
    gap: 20px;
}

.seo-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.seo-info-card,
.seo-topic-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(14, 16, 20, 0.56);
}

.seo-info-card h2 {
    font-size: 1.45rem;
    max-width: none;
    line-height: 1.1;
}

.seo-info-card p,
.seo-topic-card p {
    margin: 12px 0 0;
    color: rgba(244, 239, 230, 0.78);
}

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

.seo-topic-card strong {
    display: block;
    color: var(--gold-bright);
    font-size: 1.02rem;
    line-height: 1.35;
}

.seo-step-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: rgba(244, 239, 230, 0.78);
}

.seo-step-list li + li {
    margin-top: 10px;
}

.seo-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.page-note-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.page-note-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(244, 239, 230, 0.82);
}

.page-note-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    box-shadow: 0 0 12px rgba(214, 182, 112, 0.28);
}

.contact-points {
    display: grid;
    gap: 18px;
}

.contact-points span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-panel-intro .page-showcase-grid {
    margin-top: 6px;
    grid-template-columns: 1fr;
    gap: 14px;
}

.contact-panel-intro .page-showcase-card {
    padding: 20px 22px;
    border-radius: 24px;
}

.contact-panel-intro .page-showcase-card strong {
    margin-top: 8px;
    font-size: 1rem;
}

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

.contact-step span {
    display: block;
    overflow-wrap: anywhere;
}

.form-card {
    padding-top: 30px;
}

.form-card-head {
    margin-bottom: 24px;
}

.form-card-head .eyebrow {
    margin-bottom: 10px;
}

.form-card-head p {
    margin: 0;
}

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

.form-grid label {
    display: grid;
    gap: 8px;
}

.form-grid span {
    font-size: 0.92rem;
    color: rgba(244, 239, 230, 0.9);
}

.full-width {
    grid-column: 1 / -1;
}

input,
textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    outline: none;
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

input:focus,
textarea:focus {
    border-color: rgba(214, 182, 112, 0.55);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(214, 182, 112, 0.09);
    transform: translateY(-1px);
}

textarea {
    min-height: 168px;
    resize: vertical;
}

.form-alert {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid transparent;
}

.form-alert.success {
    color: #d7f1e0;
    border-color: rgba(143, 198, 162, 0.26);
    background: rgba(143, 198, 162, 0.1);
}

.form-alert.error {
    color: #ffd9d4;
    border-color: rgba(241, 176, 170, 0.25);
    background: rgba(241, 176, 170, 0.1);
}

.form-alert ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

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

.site-footer {
    padding: 26px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(6, 7, 9, 0.96);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 24px;
    padding: 30px 0 24px;
}

.site-footer a {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(244, 239, 230, 0.82);
    transition: color var(--transition);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(244, 239, 230, 0.56);
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 620ms ease,
        transform 620ms ease;
}

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

@media (max-width: 1120px) {
    .hero-grid,
    .about-layout,
    .contact-layout,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 560px;
    }

    .admin-sidebar {
        position: static;
        top: auto;
    }

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

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

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

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

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

    .about-media img {
        min-height: 500px;
    }

    .pricing-showcase,
    .booking-widget-layout {
        grid-template-columns: 1fr;
    }

    .pricing-lead {
        position: static;
        top: auto;
    }

    .pricing-grid-editorial .pricing-card:nth-child(2),
    .pricing-grid-editorial .pricing-card:nth-child(3) {
        transform: none;
    }

    .page-hero-metrics,
    .page-editorial-grid,
    .page-process-grid,
    .page-contact-strip,
    .page-faq-layout,
    .page-showcase-grid,
    .page-story-points,
    .page-process-grid.page-process-grid-wide {
        grid-template-columns: 1fr 1fr;
    }

    .page-faq-layout {
        align-items: start;
    }
}

@media (max-width: 860px) {
    :root {
        --container: min(1200px, calc(100vw - 32px));
    }

    .site-header {
        padding: 12px 0;
    }

    .admin-dashboard {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav {
        min-height: 72px;
    }

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 14px;
        padding: 18px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(12, 13, 17, 0.96);
        box-shadow: var(--shadow-xl);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 150px 0 86px;
    }

    .hero-band {
        margin-top: 0;
    }

    .hero-editorial-meta,
    .hero-proof-strip,
    .hero-stage-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading h2,
    .section-intro h2 {
        max-width: 15ch;
    }

    .hero-band-grid,
    .stat-grid,
    .form-grid,
    .contact-steps,
    .booking-summary,
    .admin-summary-grid,
    .admin-two-column {
        grid-template-columns: 1fr 1fr;
    }

    .service-grid,
    .benefit-grid,
    .gallery-grid,
    .pricing-grid,
    .addons-grid,
    .booking-slots,
    .admin-repeat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 260px;
    }

    .gallery-card-featured {
        grid-column: auto;
        grid-row: auto;
    }

    .admin-sidebar {
        padding: 18px;
    }

    .admin-shell {
        gap: 18px;
    }

    .admin-top-links {
        position: static;
        display: flex;
        gap: 12px;
        align-items: center;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .admin-sidebar-head {
        margin-bottom: 14px;
    }

    .admin-sidebar-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .admin-sidebar-link {
        flex: 0 0 auto;
        min-width: max-content;
        text-align: left;
        padding: 12px 14px;
        font-size: 0.92rem;
    }

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

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

    .admin-content h1 {
        font-size: clamp(2.1rem, 8vw, 3.2rem);
    }

    .admin-content h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .admin-list-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-card-actions {
        flex-wrap: wrap;
    }

    .brand > .brand-logo {
        height: 50px;
        max-width: 140px;
    }

    .pricing-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .pricing-b2b-cta {
        grid-template-columns: 1fr;
    }

    .pricing-b2b-actions {
        width: 100%;
        justify-items: start;
    }

    .pricing-b2b-actions .button {
        width: 100%;
    }

    .hero-stage {
        min-height: auto;
        padding-left: 0;
    }

    .hero-stage-float-top {
        right: 0;
    }
}

@media (min-width: 1280px) {
    .pricing-showcase {
        grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
    }
}

@media (max-width: 980px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        top: auto;
    }
}

select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    outline: none;
    appearance: none;
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

select:focus {
    border-color: rgba(214, 182, 112, 0.55);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(214, 182, 112, 0.09);
    transform: translateY(-1px);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.booking-grid {
    margin-top: 10px;
}

.booking-addons {
    margin: 0;
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.booking-addons legend {
    padding: 0 6px;
    color: rgba(244, 239, 230, 0.92);
    font-weight: 650;
    letter-spacing: -0.02em;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
}

.checkbox-row span {
    color: rgba(244, 239, 230, 0.86);
}

.checkbox-row em {
    font-style: normal;
    color: var(--gold-bright);
    margin-left: 6px;
}

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

.booking-card-widget {
    overflow: visible;
}

.booking-slots-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 26px 0 16px;
}

.booking-slots-head strong {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.booking-slots-head small,
.booking-placeholder {
    color: var(--muted-strong);
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.booking-slot {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.booking-slot:hover,
.booking-slot:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(214, 182, 112, 0.42);
    background: rgba(214, 182, 112, 0.1);
    box-shadow: var(--shadow-md);
}

.booking-slot.is-unavailable {
    opacity: 0.42;
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-slot.is-unavailable:hover,
.booking-slot.is-unavailable:focus-visible {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: opacity var(--transition), visibility var(--transition);
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: opacity var(--transition), visibility var(--transition);
}

.admin-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 8, 0.72);
    backdrop-filter: blur(12px);
}

.admin-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(860px, calc(100vw - 32px));
    max-height: min(calc(100dvh - 32px), 980px);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(13, 15, 19, 0.94);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.admin-order-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-order-card {
    text-align: left;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.admin-order-card:hover,
.admin-order-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(214, 182, 112, 0.22);
    box-shadow: var(--shadow-lg);
}

.admin-order-card strong {
    display: block;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.admin-order-card span {
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.admin-photo-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
}

.admin-photo-card {
    margin: 0;
    display: grid;
    gap: 8px;
}

.admin-photo-grid img {
    display: block;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-photo-card figcaption {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 8, 0.72);
    backdrop-filter: blur(12px);
}

.booking-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 32px));
    max-height: min(calc(100dvh - 32px), 920px);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(13, 15, 19, 0.94);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.5rem;
}

.booking-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

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

.booking-summary div {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.booking-summary div.is-wide {
    grid-column: span 3;
}

.booking-summary span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.88rem;
}

.booking-summary strong {
    display: block;
    letter-spacing: -0.02em;
    white-space: pre-wrap;
    word-break: break-word;
}

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

.booking-wizard {
    display: grid;
    gap: 18px;
}

.booking-wizard-step {
    min-width: 0;
}

.booking-wizard-step:not([hidden]) {
    animation: bookingStepIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-wizard-actions .button {
    min-width: 160px;
}

.booking-wizard-actions [hidden] {
    display: none !important;
}

.booking-radio-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border: 0;
    min-inline-size: 0;
}

.booking-radio-grid legend {
    margin-bottom: 8px;
    padding: 0;
    color: rgba(244, 239, 230, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.radio-card {
    position: relative;
    display: block;
    min-height: 102px;
    padding: 20px 20px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(18, 20, 25, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        opacity var(--transition);
}

.radio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(22, 217, 255, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 58%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.radio-card:hover,
.radio-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(214, 182, 112, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(20, 22, 28, 0.9);
    box-shadow: var(--shadow-md);
}

.radio-card:hover::before,
.radio-card:focus-within::before,
.radio-card:has(input:checked)::before {
    opacity: 1;
}

.radio-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    appearance: none;
}

.radio-card span {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-height: 62px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.08rem;
    line-height: 1.2;
}

.radio-card em {
    font-style: normal;
    color: var(--gold-bright);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.radio-card input:checked + span {
    color: var(--text);
}

.radio-card:has(input:checked) {
    transform: translateY(-2px);
    border-color: rgba(22, 217, 255, 0.55);
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.14), rgba(255, 255, 255, 0.025)),
        rgba(14, 18, 24, 0.94);
    box-shadow:
        0 0 0 1px rgba(22, 217, 255, 0.08),
        0 22px 48px rgba(0, 0, 0, 0.28);
}

.radio-card:has(input:checked) span {
    transform: translateY(-1px);
}

.booking-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 21, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.booking-overview-row {
    position: relative;
    display: grid;
    gap: 8px;
    align-content: start;
    min-height: 104px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.02);
    overflow: hidden;
    animation: bookingOverviewIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking-overview-row::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(22, 217, 255, 0.35), transparent);
    opacity: 0.65;
}

.booking-overview-row span {
    color: rgba(244, 239, 230, 0.64);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.booking-overview-row strong {
    display: block;
    text-align: left;
    font-size: 1.06rem;
    line-height: 1.38;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.booking-overview-row.is-wide {
    grid-column: 1 / -1;
    min-height: 88px;
}

.booking-overview-row.is-accent {
    background:
        linear-gradient(180deg, rgba(22, 217, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.025);
}

.booking-overview-row.is-accent strong {
    font-size: 1.14rem;
}

.booking-overview-row:nth-child(2) {
    animation-delay: 30ms;
}

.booking-overview-row:nth-child(3) {
    animation-delay: 60ms;
}

.booking-overview-row:nth-child(4) {
    animation-delay: 90ms;
}

.booking-overview-row:nth-child(5) {
    animation-delay: 120ms;
}

.booking-overview-row:nth-child(6) {
    animation-delay: 150ms;
}

.booking-overview-row:nth-child(7) {
    animation-delay: 180ms;
}

.booking-overview-row:nth-child(8) {
    animation-delay: 210ms;
}

.booking-overview-row:nth-child(9) {
    animation-delay: 240ms;
}

.booking-overview-row:nth-child(10) {
    animation-delay: 270ms;
}

.booking-overview-row:nth-child(11) {
    animation-delay: 300ms;
}

.booking-overview-row:nth-child(12) {
    animation-delay: 330ms;
}

.booking-addons {
    margin: 0;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(14, 16, 21, 0.88);
}

.booking-addons legend {
    padding: 0 6px;
    color: rgba(244, 239, 230, 0.82);
    font-weight: 700;
}

.booking-addons .checkbox-row {
    position: relative;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    padding: 18px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.02);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.booking-addons .checkbox-row:hover,
.booking-addons .checkbox-row:focus-within {
    transform: translateY(-2px);
    border-color: rgba(214, 182, 112, 0.26);
    box-shadow: var(--shadow-md);
}

.booking-addons .checkbox-row span {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    font-size: 1.03rem;
    font-weight: 700;
    line-height: 1.35;
}

.booking-addons .checkbox-row input {
    width: 20px;
    height: 20px;
}

@keyframes bookingStepIn {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bookingOverviewIn {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.toast {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 95;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 15, 19, 0.94);
    box-shadow: var(--shadow-lg);
    color: var(--text);
    max-width: min(560px, calc(100vw - 32px));
    text-align: center;
}

.toast.success {
    border-color: rgba(22, 217, 255, 0.35);
}

.toast.error {
    border-color: rgba(241, 176, 170, 0.45);
}

.admin-dashboard {
    padding-top: 60px;
    padding-left: 24px;
    padding-right: 24px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.admin-shell.container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.admin-sidebar {
    position: sticky;
    top: 120px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(14, 16, 20, 0.7);
    box-shadow: var(--shadow-md);
}

.admin-sidebar-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.admin-sidebar-head strong {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.admin-sidebar-nav {
    display: grid;
    gap: 16px;
}

.admin-sidebar-group {
    display: grid;
    gap: 8px;
}

.admin-sidebar-group-title {
    color: rgba(244, 239, 230, 0.44);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 4px;
}

.admin-sidebar-group-links {
    display: grid;
    gap: 8px;
}

.admin-sidebar-link {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(244, 239, 230, 0.82);
    border: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.admin-sidebar-link:hover,
.admin-sidebar-link:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(2px);
}

.admin-sidebar-link.is-active {
    color: var(--text);
    border-color: rgba(214, 182, 112, 0.28);
    background: rgba(214, 182, 112, 0.1);
}

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

.admin-content > * {
    min-width: 0;
}

.admin-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    max-width: none;
}

.admin-content h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    max-width: none;
}

.admin-top-links {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.admin-section + .admin-section {
    margin-top: 42px;
}

.admin-grid {
    display: grid;
    gap: 22px;
}

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

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

.admin-repeat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.admin-repeat-card,
.admin-list-item {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

.admin-image-field {
    display: grid;
    gap: 14px;
}

.admin-image-preview {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    min-height: 220px;
}

.admin-image-preview img {
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.admin-image-preview-gallery {
    min-height: 180px;
    margin-bottom: 14px;
}

.admin-image-preview-gallery img {
    min-height: 180px;
}

.admin-logo-preview {
    max-width: 180px;
    min-height: 180px;
}

.admin-logo-preview img {
    min-height: 180px;
}

.admin-help-text {
    margin: -2px 0 0;
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.admin-push-panel {
    display: grid;
    gap: 16px;
}

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

.admin-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.admin-dashboard-groups {
    display: grid;
    gap: 22px;
}

.admin-dashboard-group-card {
    display: grid;
    gap: 22px;
}

.admin-quicklink-card {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}

.admin-quicklink-card strong {
    font-size: 1.02rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.admin-quicklink-card p {
    margin: 0;
    color: rgba(244, 239, 230, 0.72);
}

.admin-quicklink-card .button {
    justify-self: start;
}

.admin-settings-quicknav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.admin-settings-quicknav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(244, 239, 230, 0.82);
    background: rgba(255, 255, 255, 0.025);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.admin-settings-quicknav a:hover,
.admin-settings-quicknav a:focus-visible {
    color: var(--text);
    border-color: rgba(214, 182, 112, 0.28);
    background: rgba(214, 182, 112, 0.1);
}

.admin-settings-stack {
    display: grid;
    gap: 22px;
}

.admin-settings-section,
.admin-settings-subsection {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}

.admin-settings-subsection {
    margin-top: 4px;
}

.admin-settings-actions {
    display: flex;
    justify-content: flex-start;
}

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

.admin-delete-form {
    margin-top: 12px;
}

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

.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.admin-table {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

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

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--gold-bright);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-inline-form {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 10px;
    align-items: start;
}

.admin-inline-form input,
.admin-inline-form select {
    min-width: 0;
}

@media (max-width: 640px) {
    :root {
        --container: min(1200px, calc(100vw - 24px));
    }

    .section {
        padding: 88px 0;
    }

    .admin-dashboard {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nav {
        gap: 12px;
        padding: 0 16px;
        min-height: 68px;
    }

    .brand-copy small {
        display: none;
    }

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

    .brand > .brand-logo {
        height: 40px;
        max-width: 104px;
    }

    .hero-grid {
        gap: 24px;
        padding: 126px 0 68px;
    }

    h1 {
        font-size: clamp(2.35rem, 10.8vw, 3.35rem);
        max-width: 12.4ch;
        line-height: 0.94;
        text-wrap: pretty;
    }

    h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        max-width: 100%;
    }

    .hero-kicker {
        margin-bottom: 14px;
        font-size: 0.95rem;
    }

    .hero-text {
        margin-top: 20px;
        font-size: 1rem;
    }

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

    .hero-highlights {
        gap: 10px;
        margin-top: 28px;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        white-space: normal;
        line-height: 1.35;
    }

    .offer-banner {
        width: 100%;
        padding: 14px 16px;
    }

    .hero-proof-strip,
    .hero-stage-stat-grid {
        grid-template-columns: 1fr;
    }

    .offer-banner strong {
        font-size: 1.02rem;
    }

    .offer-banner small {
        font-size: 0.88rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-highlights,
    .hero-band-grid,
    .hero-editorial-meta,
    .stat-grid,
    .service-grid,
    .benefit-grid,
    .gallery-grid,
    .pricing-grid,
    .addons-grid,
    .page-section-grid,
    .form-grid,
    .footer-grid,
    .contact-steps,
    .seo-info-grid,
    .seo-topic-grid,
    .hero-panel-grid,
    .booking-summary,
    .booking-overview,
    .booking-radio-grid,
    .booking-slots,
    .admin-summary-grid,
    .admin-two-column,
    .admin-repeat-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .section-intro h2 {
        max-width: 100%;
    }

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

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

    .booking-overview-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-overview-row strong {
        text-align: left;
    }

    .addon-card {
        align-items: flex-start;
        flex-direction: column;
    }


    .hero-panel,
    .about-copy,
    .contact-panel,
    .form-card,
    .service-card,
    .benefit-card,
    .pricing-card {
        padding: 24px;
    }

    .hero-stage-surface {
        padding: 24px;
        border-radius: 30px;
    }

    .hero-stage-visual {
        min-height: 250px;
    }

    .hero-stage-visual-card,
    .hero-stage-visual-card.is-secondary {
        position: absolute;
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
    }

    .hero-stage-visual-card {
        bottom: 16px;
    }

    .hero-stage-visual-card.is-secondary {
        top: 16px;
    }

    .hero-stage-float {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .pricing-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .pricing-category-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .pricing-card-topline {
        gap: 10px;
    }

    .pricing-note {
        max-width: none;
        text-align: left;
    }

    .pricing-b2b-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 18px;
    }

    .pricing-toolbar {
        padding: 22px 18px;
    }

    .pricing-b2b-cta .button {
        width: 100%;
    }

    .seo-link-row {
        display: grid;
    }

    .page-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 26px;
    }

    .page-hero-main {
        display: block;
        max-width: none;
    }

    .page-hero-copy {
        max-width: none;
        padding: 0;
    }

    .page-mini-card {
        padding: 20px 18px;
    }

    .page-hero-copy {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .page-hero-metrics,
    .page-editorial-grid,
    .page-process-grid,
    .page-contact-strip,
    .page-showcase-grid,
    .page-story-points,
    .page-faq-layout,
    .page-process-grid.page-process-grid-wide {
        grid-template-columns: 1fr;
    }

    .page-mini-card h2,
    .seo-info-card h2 {
        font-size: 1.3rem;
    }

    .page-data-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-data-value {
        text-align: left;
    }

    .page-hero-main h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
        max-width: 9.2ch;
    }

    .pricing-card {
        padding-top: 68px;
    }

    .pricing-badge {
        top: 24px;
        right: 24px;
    }

    .contact-actions {
        display: grid;
    }

    .booking-modal {
        align-items: start;
        padding: 10px;
    }

    .booking-modal-dialog {
        width: min(100%, calc(100vw - 20px));
        max-height: min(calc(100dvh - 20px), 1000px);
        padding: 24px;
    }

    .admin-modal {
        align-items: start;
        padding: 10px;
    }

    .admin-modal-dialog {
        width: min(100%, calc(100vw - 20px));
        max-height: min(calc(100dvh - 20px), 1000px);
        padding: 24px;
    }

    .admin-order-grid,
    .admin-photo-grid {
        grid-template-columns: 1fr;
    }

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

    .admin-sidebar {
        padding: 16px;
        border-radius: 22px;
    }

    .admin-top-links {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .admin-sidebar-nav {
        gap: 12px;
        align-items: flex-start;
    }

    .admin-sidebar-group {
        flex: 0 0 auto;
        min-width: max-content;
    }

    .admin-sidebar-group-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .admin-sidebar-link {
        text-align: left;
        min-width: max-content;
    }

    .admin-repeat-card,
    .admin-list-item,
    .admin-sidebar,
    .admin-image-preview {
        border-radius: 18px;
    }

    .admin-table {
        border-radius: 18px;
    }

    .admin-table table {
        min-width: 720px;
    }

    .about-media img {
        min-height: 380px;
    }

    .about-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px 20px;
    }

    .gallery-grid {
        grid-auto-rows: 300px;
    }

    .gallery-card figcaption {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 1120px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        top: auto;
    }
}
