:root {
    --bg: #090c0a;
    --deep: #0f1411;
    --surface: #151c17;
    --surface-2: #1b241e;
    --gold: #b6905a;
    --gold-soft: #d7bb8f;
    --ivory: #f3ede3;
    --ivory-soft: #d1c5b4;
    --muted: #879185;
    --line: rgba(182, 144, 90, 0.18);
    --serif: "Cormorant Garamond", "Noto Serif JP", serif;
    --sans: "DM Sans", "Noto Serif JP", sans-serif;
    --max: 1240px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body.menu-open {
    overflow: hidden;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(182, 144, 90, 0.14), transparent 38%),
        linear-gradient(180deg, #0a0d0b 0%, #090c0a 100%);
    color: var(--ivory);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.85;
    font-size: clamp(15px, 0.25vw + 14px, 17px);
}

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

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

.shell {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(9, 12, 10, 0.8);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 54px;
    height: auto;
    opacity: 0.92;
}

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

.brand-copy small {
    color: var(--ivory-soft);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.63rem;
}

.brand-copy strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(215, 187, 143, 0.28);
    border-radius: 999px;
    background: rgba(17, 26, 20, 0.76);
    color: var(--gold-soft);
    font: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    box-shadow:
        0 -6px currentColor,
        0 6px currentColor;
}

.site-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease);
}

.site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 5, 0.72);
    backdrop-filter: blur(8px);
}

.site-menu-panel {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(420px, calc(100% - 24px));
    overflow: auto;
    padding: 22px;
    border: 1px solid rgba(215, 187, 143, 0.2);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(215, 187, 143, 0.16), transparent 32%),
        rgba(9, 12, 10, 0.96);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
    transform: translateX(18px);
    transition: transform 0.34s var(--ease);
}

.site-menu.is-open .site-menu-panel {
    transform: translateX(0);
}

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

.site-menu-title {
    display: grid;
    gap: 2px;
}

.site-menu-title span {
    color: var(--gold);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-menu-title strong {
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.site-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(215, 187, 143, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-soft);
    font-size: 1.4rem;
    line-height: 1;
}

.site-menu-group + .site-menu-group {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(215, 187, 143, 0.12);
}

.site-menu-group-title {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-menu-links {
    display: grid;
    gap: 8px;
}

.site-menu-links a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(215, 187, 143, 0.08);
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.25;
}

.site-menu-links a::after {
    content: "→";
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.9rem;
}

.site-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
}

.site-menu-actions a {
    min-height: 46px;
    border-radius: 999px;
}

.head-tel {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--ivory-soft);
    padding: 0 4px;
    border-bottom: 1px solid rgba(215, 187, 143, 0.24);
}

.head-tel:hover {
    color: var(--gold-soft);
    border-bottom-color: rgba(215, 187, 143, 0.56);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition:
        transform 0.28s var(--ease),
        background 0.24s,
        border-color 0.24s;
}

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

.btn-fill {
    background: var(--gold);
    color: var(--bg);
}

.btn-fill:hover {
    background: var(--gold-soft);
}

.btn-line {
    border: 1px solid rgba(215, 187, 143, 0.34);
    color: var(--gold-soft);
}

.btn-line:hover {
    background: rgba(182, 144, 90, 0.08);
    border-color: rgba(215, 187, 143, 0.58);
}

.page-hero {
    padding: clamp(48px, 6vw, 88px) 0 56px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: end;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.68rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
}

.page-hero-copy h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    margin-bottom: 24px;
}

.page-hero-copy p,
.section-head p,
.intro,
.card p,
.table-note,
.faq-item p,
.cta p,
.bullet-list li {
    color: var(--ivory-soft);
}

.page-hero-copy p {
    max-width: 36ch;
    margin: 0 0 30px;
}

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

.hero-figure,
.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
}

.hero-figure {
    min-height: 620px;
}

.hero-figure img,
.photo-card img {
    height: 100%;
    object-fit: cover;
}

.hero-card,
.photo-card figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(10, 13, 11, 0.78);
    border: 1px solid rgba(215, 187, 143, 0.12);
    color: var(--ivory);
}

.hero-card strong,
.mini-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
}

.section {
    padding: clamp(72px, 10vw, 132px) 0;
}

.section.alt {
    background:
        linear-gradient(180deg, rgba(182, 144, 90, 0.07), transparent 22%),
        var(--deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.section-head h2,
.cta h2 {
    font-size: clamp(2.4rem, 4.8vw, 4.5rem);
    line-height: 0.92;
}

em {
    font-style: italic;
    color: var(--gold-soft);
}

.grid-2,
.grid-3,
.grid-4,
.split,
.duo,
.cta-wrap {
    display: grid;
    gap: 18px;
}

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

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

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

.menu-category-grid .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-category-grid .card .btn {
    margin-top: auto;
}

.split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.duo {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.card,
.table-card,
.faq-item,
.stat,
.contact-card,
.timeline-step {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
}

.card,
.table-card,
.faq-item,
.stat,
.contact-card,
.timeline-step {
    padding: 24px;
}

.card h3,
.table-card h3,
.contact-card h3,
.timeline-step h3 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.card .price,
.table-row .price {
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: 1.8rem;
    line-height: 1;
}

.price-stack {
    display: grid;
    gap: 6px;
    align-items: start;
}

.card .price-stack {
    margin-bottom: 12px;
}

.tax-note {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
}

.price-stack.compact {
    gap: 2px;
}

.price-stack.compact .price {
    font-size: 1.45rem;
}

.menu-intro {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    padding: 24px;
    margin-bottom: clamp(34px, 4vw, 56px);
    border: 1px solid rgba(215, 187, 143, 0.16);
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.035), rgba(255, 250, 241, 0.015));
}

.menu-intro-copy {
    display: grid;
    gap: 8px;
}

.menu-intro-copy strong {
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
}

.menu-intro-copy p,
.menu-intro-aside p {
    margin: 0;
    color: var(--muted);
}

.menu-intro-aside {
    display: grid;
    gap: 10px;
    align-content: start;
    padding-left: 18px;
    border-left: 1px solid rgba(215, 187, 143, 0.12);
}

.menu-intro-aside span {
    color: var(--gold);
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.table-card h3 {
    margin-bottom: 18px;
}

.table-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(215, 187, 143, 0.12);
}

.table-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.table-row strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
    color: var(--ivory);
}

.table-row span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.bullet-list {
    margin: 0;
    padding-left: 18px;
}

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

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.timeline-step span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.timeline-step h3 {
    font-size: 1.7rem;
}

.stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
}

.stat p {
    margin: 0;
    color: var(--ivory-soft);
}

.faq-group + .faq-group {
    margin-top: 28px;
}

.faq-group h3 {
    margin-bottom: 14px;
    font-size: 2rem;
}

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.faq-item p {
    margin: 0;
}

.cta {
    padding: clamp(72px, 9vw, 116px) 0 120px;
}

.cta-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    column-gap: clamp(36px, 6vw, 82px);
    row-gap: 24px;
    padding: clamp(28px, 5vw, 46px);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(182, 144, 90, 0.18), transparent 50%),
        var(--surface);
    border: 1px solid var(--line);
}

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

.contact-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.73rem;
}

.contact-card span,
.contact-card p {
    color: var(--ivory);
    margin: 0;
}

.contact-form-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
    padding: clamp(26px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(215, 187, 143, 0.12), transparent 34%),
        rgba(15, 20, 17, 0.94);
}

.contact-form-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: 0.94;
}

.contact-form-copy p {
    margin: 0;
    color: var(--ivory-soft);
}

.form-note-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.form-note-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
}

.form-note-list li::before {
    content: "";
    position: absolute;
    top: 0.86em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold);
}

.form-tel-card {
    display: inline-grid;
    gap: 4px;
    margin-top: 26px;
    padding: 16px 18px;
    border: 1px solid rgba(215, 187, 143, 0.22);
    border-radius: 18px;
    background: rgba(9, 12, 10, 0.42);
    transition:
        border-color 0.24s var(--ease),
        background 0.24s var(--ease),
        transform 0.24s var(--ease);
}

.form-tel-card:hover {
    transform: translateY(-1px);
    border-color: rgba(215, 187, 143, 0.48);
    background: rgba(182, 144, 90, 0.08);
}

.form-tel-card span {
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.form-tel-card strong {
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

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

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

.form-field-full,
.form-consent,
.form-actions {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--gold-soft);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-field label span {
    color: var(--ivory-soft);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(215, 187, 143, 0.18);
    border-radius: 16px;
    background: rgba(9, 12, 10, 0.68);
    color: var(--ivory);
    font: inherit;
    outline: none;
    transition:
        border-color 0.24s var(--ease),
        background 0.24s var(--ease),
        box-shadow 0.24s var(--ease);
}

.contact-form input:not([type="checkbox"]),
.contact-form select {
    min-height: 52px;
    padding: 0 16px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 170px;
    padding: 14px 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(209, 197, 180, 0.54);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(215, 187, 143, 0.58);
    background: rgba(9, 12, 10, 0.86);
    box-shadow: 0 0 0 4px rgba(182, 144, 90, 0.12);
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ivory-soft);
    font-size: 0.9rem;
}

.form-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 0;
    accent-color: var(--gold);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.form-actions p {
    max-width: 38ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

footer {
    padding: 0 0 46px;
}

.footer-line {
    border-top: 1px solid var(--line);
    padding-top: 26px;
    color: var(--muted);
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-line a {
    color: var(--gold-soft);
    border-bottom: 1px solid rgba(215, 187, 143, 0.24);
}

.footer-line a:hover {
    border-bottom-color: rgba(215, 187, 143, 0.62);
}

@media (max-width: 980px) {
    .page-hero-grid,
    .section-head,
    .grid-4,
    .split,
    .duo,
    .contact-form-panel,
    .cta-wrap {
        grid-template-columns: 1fr;
    }

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

    .hero-figure {
        min-height: 480px;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
        line-height: 1.9;
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .topbar-inner {
        min-height: 62px;
        padding: 8px 0;
        align-items: center;
        justify-content: flex-start;
    }

    .top-links {
        display: none;
    }

    .page-nav-wrap {
        display: none;
    }

    .site-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .grid-2,
    .grid-3,
    .timeline {
        grid-template-columns: 1fr;
    }

    .brand-copy strong {
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }

    .brand-copy small {
        display: none;
    }

    .brand img {
        width: 40px;
    }

    .page-hero-copy h1 {
        line-height: 1;
    }

    .section {
        padding: 62px 0;
    }

    .card,
    .table-card,
    .faq-item,
    .stat,
    .contact-card,
    .timeline-step {
        padding: 20px;
    }

    .table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-stack {
        align-items: flex-start;
    }

    .table-row .price {
        font-size: 1.5rem;
    }

    .menu-intro {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .menu-intro-aside {
        padding-left: 0;
        border-left: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(215, 187, 143, 0.12);
    }

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

    .contact-form-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .form-actions {
        align-items: stretch;
    }

    .form-actions .btn {
        width: 100%;
    }

    .hero-card,
    .photo-card figcaption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* ---- Refinement Layer ---- */
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 187, 143, 0.08), transparent 32%),
        radial-gradient(circle at 78% 0%, rgba(182, 144, 90, 0.12), transparent 36%);
}

body::after {
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
    background: rgba(215, 187, 143, 0.28);
    color: #fff6e8;
}

.topbar {
    transition:
        background 0.32s var(--ease),
        border-color 0.32s var(--ease),
        min-height 0.32s var(--ease);
}

.topbar.scrolled {
    background: rgba(8, 11, 9, 0.92);
    border-bottom-color: rgba(215, 187, 143, 0.32);
}

.page-nav-wrap {
    position: sticky;
    top: 72px;
    z-index: 18;
    border-bottom: 1px solid rgba(215, 187, 143, 0.1);
    background: rgba(10, 13, 11, 0.62);
    backdrop-filter: blur(10px);
}

.page-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.page-nav::-webkit-scrollbar {
    display: none;
}

.page-nav a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(215, 187, 143, 0.2);
    color: var(--ivory-soft);
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    line-height: 1;
    text-transform: uppercase;
    transition:
        border-color 0.24s var(--ease),
        transform 0.24s var(--ease),
        color 0.24s var(--ease),
        background 0.24s var(--ease);
}

.page-nav a:hover {
    transform: translateY(-1px);
    border-color: rgba(215, 187, 143, 0.58);
    color: var(--ivory);
    background: rgba(182, 144, 90, 0.12);
}

.page-nav a[aria-current="page"] {
    border-color: rgba(215, 187, 143, 0.64);
    color: #fff6e8;
    background: rgba(182, 144, 90, 0.22);
}

.quick-jump {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.quick-jump a {
    border: 1px solid rgba(215, 187, 143, 0.25);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--gold-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 13px;
    transition:
        background 0.24s var(--ease),
        border-color 0.24s var(--ease),
        transform 0.24s var(--ease);
}

.quick-jump a:hover {
    border-color: rgba(215, 187, 143, 0.6);
    background: rgba(182, 144, 90, 0.1);
    transform: translateY(-1px);
}

.kpi-band {
    margin-top: 26px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(215, 187, 143, 0.16);
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.kpi-band div {
    border-right: 1px solid rgba(215, 187, 143, 0.12);
    padding: 6px 12px;
}

.kpi-band div:last-child {
    border-right: 0;
}

.kpi-band strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-soft);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kpi-band span {
    color: var(--ivory);
    font-size: 0.95rem;
}

.card,
.table-card,
.faq-item,
.stat,
.contact-card,
.timeline-step,
.page-nav a,
.photo-card,
.hero-figure {
    transition:
        transform 0.34s var(--ease),
        border-color 0.26s var(--ease),
        box-shadow 0.26s var(--ease),
        background 0.26s var(--ease);
}

.card:hover,
.table-card:hover,
.faq-item:hover,
.stat:hover,
.contact-card:hover,
.timeline-step:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 187, 143, 0.36);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.photo-card:hover,
.hero-figure:hover {
    border-color: rgba(215, 187, 143, 0.45);
}

.section-head h2 {
    text-wrap: balance;
}

.contact-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--surface);
}

.section + .section {
    position: relative;
}

.section + .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(460px, 86%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(215, 187, 143, 0.18), transparent);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-20px);
}

.reveal.reveal-right {
    transform: translateX(20px);
}

.reveal.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

.faq-item.is-open {
    border-color: rgba(215, 187, 143, 0.42);
    background:
        linear-gradient(180deg, rgba(182, 144, 90, 0.08), transparent),
        var(--surface);
}

.mobile-fixed-actions-global {
    display: none;
}

.mfag-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(
        180deg,
        rgba(9, 12, 10, 0.2) 0%,
        rgba(9, 12, 10, 0.9) 35%,
        rgba(9, 12, 10, 0.98) 100%
    );
    border-top: 1px solid rgba(215, 187, 143, 0.18);
    backdrop-filter: blur(12px);
}

.mfag-btn {
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    gap: 7px;
}

.mfag-btn.call {
    background: var(--gold);
    color: var(--bg);
    font-weight: 500;
}

.mfag-btn.map {
    border: 1px solid rgba(215, 187, 143, 0.36);
    color: var(--gold-soft);
    background: rgba(17, 26, 20, 0.94);
}

@media (max-width: 980px) {
    .page-nav-wrap {
        top: 58px;
    }

    .kpi-band {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kpi-band div {
        border-right: 0;
        border-top: 1px solid rgba(215, 187, 143, 0.1);
    }

    .kpi-band div:first-child {
        border-top: 0;
    }
}

@media (max-width: 680px) {
    .page-nav-wrap {
        top: 62px;
    }

    .mobile-fixed-actions-global {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
