:root {
    --ink: #28231f;
    --soft: #5d5347;
    --gold: #a18450;
    --gold-dark: #8d7040;
    --paper: #fff;
    --off: #faf9f7;
    --line: #e7e2dc;
    --danger: #a5463a;
    --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
    --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Arial, sans-serif;
    --header: 76px;
    --shadow: 0 20px 60px rgba(50, 40, 30, .09);
}

* {
    box-sizing: border-box;
}

.spon {
    display: none;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: var(--sans);
    line-height: 1.85;
    letter-spacing: .035em;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

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

.brand-logo {
    width: 150px;
    display: inline-flex;
    /* width: max-content; */
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-logo-main {
    padding-left: .28em;
    font-family: Georgia, serif;
    font-size: 25px;
    letter-spacing: .28em;
}

.brand-logo-sub {
    margin-top: 7px;
    padding-left: .43em;
    font-family: Georgia, serif;
    font-size: 9px;
    letter-spacing: .43em;
}

.skip-link {
    position: fixed;
    z-index: 3000;
    top: 8px;
    left: 8px;
    padding: 8px 14px;
    background: #111;
    color: #fff;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
}

.narrow {
    width: min(820px, calc(100% - 48px));
    margin: auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header);
    padding: 0 !important;
    border-bottom: 1px solid rgba(39, 35, 31, .08);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(13px);
    transition: .2s;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(50, 40, 30, .07);
    background: rgba(255, 255, 255, .99);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    padding: 0 34px;
}


.global-nav {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 42px);
}

.global-nav a {
    font-family: var(--serif);
    font-size: 13px;
}

.global-nav a:hover {
    color: var(--gold-dark);
}

.header-contact {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 30px;
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
}

.menu-toggle {
    display: none;
}

.breadcrumb {
    margin-top: var(--header);
    border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
    display: flex;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 13px 0;
    gap: 12px;
    list-style: none;
    color: #928b83;
    font-size: 10px;
}

.breadcrumb li+li:before {
    content: "/";
    margin-right: 12px;
    color: #c4beb7;
}

.reservation-hero {
    display: grid;
    min-height: 520px;
    grid-template-columns: 54% 46%;
    border-bottom: 1px solid var(--line);
}

.hero-image {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, .35)), url("../assets/images/reservation-hero.webp") center 48%/cover no-repeat;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 58px clamp(40px, 6vw, 96px);
    background: #fff;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: .08em;
}

.hero-lead {
    margin: 24px 0 22px;
    color: var(--soft);
    font-family: var(--serif);
    font-size: 14px;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 28px;
}

.hero-assurance span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    font-size: 10px;
}

.hero-note {
    margin: 12px 0 0;
    color: #99918a;
    font-size: 9px;
}

.button {
    display: inline-flex;
    min-width: 230px;
    min-height: 57px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .09em;
    transition: .2s;
}

.button b {
    font-size: 20px;
    font-weight: 400;
}

.button-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.button-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.button-outline {
    border-color: #b8afa6;
    background: #fff;
}

.button-outline:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.section {
    padding: 108px 0;
}

.section-heading {
    text-align: center;
}

.section-heading h2,
.form-intro h2,
.first-visit-copy h2,
.phone-section h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(30px, 3.7vw, 47px);
    font-weight: 500;
    line-height: 1.58;
    letter-spacing: .07em;
}

.benefits-section {
    background: var(--off);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 52px;
    border: 1px solid var(--line);
    background: var(--line);
}

.benefit-card {
    min-height: 240px;
    padding: 38px 34px;
    background: #fff;
}

.benefit-card>span {
    color: #c1a269;
    font-family: Georgia, serif;
    font-size: 12px;
}

.benefit-card h3 {
    margin: 22px 0 13px;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
}

.benefit-card p {
    margin: 0;
    color: var(--soft);
    font-size: 12px;
}

.form-section {
    background: #fff;
}

.form-shell {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    grid-template-columns: 32% 68%;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.form-intro {
    padding: 58px 42px;
    background: var(--off);
    border-right: 1px solid var(--line);
}

.form-intro>p:not(.eyebrow) {
    margin: 24px 0 31px;
    color: var(--soft);
    font-size: 12px;
}

.form-guide {
    border-top: 1px solid var(--line);
}

.form-guide p {
    display: flex;
    margin: 0;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    gap: 15px;
    font-size: 11px;
}

.form-guide strong {
    font-weight: 600;
}

.form-guide span {
    color: var(--soft);
}

.reservation-form {
    padding: 55px 58px;
    background: #fff;
}

.form-row {
    margin-bottom: 29px;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row label,
.form-row legend {
    display: block;
    margin-bottom: 9px;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
}

.form-row em {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    background: #8c6f42;
    color: #fff;
    font-family: var(--sans);
    font-size: 8px;
    font-style: normal;
    letter-spacing: .08em;
}

.form-row label>span,
.form-row legend>span {
    color: #8c857e;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid #d9d2ca;
    background: #fff;
    border-radius: 0;
    outline: none;
    transition: .18s;
}

.form-row input,
.form-row select {
    height: 52px;
    padding: 0 15px;
}

.form-row textarea {
    padding: 13px 15px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(179, 149, 91, .1);
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.choice-grid.is-invalid,
.consent-row.is-invalid {
    border-color: var(--danger);
}

.field-hint {
    margin: 7px 0 0;
    color: #8d867f;
    font-size: 9px;
}

fieldset.form-row {
    padding: 0;
    border: 0;
}

.choice-grid > p {
    margin: 0;
}

.choice-grid .wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.choice-grid .wpcf7-list-item {
    margin: 0;
}

.choice-grid .wpcf7-list-item label {
    position: relative;
    display: block;
    cursor: pointer;
    width: 100%;
}

.choice-grid input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid .wpcf7-list-item-label {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 16px;
    border: 1px solid #ccc;
    background: #fff;
    transition: 0.2s;
}
span.wpcf7-form-control-wrap, .choice-grid .wpcf7-radio, .choice-grid .wpcf7-list-item {
    border: none;
}
span.wpcf7-list-item {
    padding: 2px;
}
.choice-grid input[type="radio"]:checked
+ .wpcf7-list-item-label {
    color: #fff;
    border-color: #333;
    background: #333;
}

.choice-grid input[type="radio"]:focus-visible
+ .wpcf7-list-item-label {
    outline: 2px solid #333;
    outline-offset: 2px;
}

@media screen and (max-width: 1000px) {
    .header-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
    }
}

@media (max-width: 767px) {
    .choice-grid .wpcf7-radio {
        grid-template-columns: 1fr;
    }
}

.choice-grid label {
    margin: 0;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
}

.choice-grid span {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 2px;
    /* border-right: 1px solid var(--line); */
    /* border-bottom: 1px solid var(--line); */
    background: #fff;
    color: var(--ink) !important;
    font-size: 11px !important;
    cursor: pointer;
    transition: .18s;
}

.choice-grid input:checked+span {
    background: var(--gold);
    color: #fff !important;
}

.consent-row {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.consent-row label {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
}

.consent-row input {
    width: 18px;
    height: 18px;
}

.consent-row a {
    text-decoration: underline;
}

.form-error {
    min-height: 23px;
    margin-bottom: 8px;
    color: var(--danger);
    font-size: 11px;
}

.submit-button {
    display: flex;
    width: 100%;
    min-height: 61px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    transition: .2s;
}

.submit-button:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.submit-button span {
    font-size: 21px;
}

.submit-note {
    margin: 12px 0 0;
    color: #98918a;
    font-size: 9px;
    text-align: center;
}

.flow-section {
    background: var(--off);
    border-top: 1px solid var(--line);
}

.flow-list {
    display: grid;
    margin: 52px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    list-style: none;
}

.flow-list li {
    min-height: 225px;
    padding: 35px 31px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.flow-list span {
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 10px;
    letter-spacing: .15em;
}

.flow-list h3 {
    margin: 22px 0 12px;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
}

.flow-list p {
    margin: 0;
    color: var(--soft);
    font-size: 11px;
}

.first-visit-section {
    background: #fff;
}

.first-visit-inner {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    min-height: 500px;
    margin: auto;
    grid-template-columns: 51% 49%;
    border: 1px solid var(--line);
}

.first-visit-image {
    overflow: hidden;
}

.first-visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.first-visit-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 58px 65px;
}

.first-visit-copy ul {
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.first-visit-copy li {
    position: relative;
    padding: 10px 0 10px 27px;
    border-bottom: 1px solid var(--line);
    color: var(--soft);
    font-size: 12px;
}

.first-visit-copy li:before {
    content: "◇";
    position: absolute;
    left: 2px;
    color: var(--gold-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    font-weight: 700;
}

.text-link:hover {
    gap: 23px;
    color: var(--gold-dark);
}

.faq-section {
    background: var(--off);
    border-top: 1px solid var(--line);
}

.faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 23px 50px 23px 4px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 15px;
    list-style: none;
}

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

.faq-item summary:after {
    content: "＋";
    position: absolute;
    right: 8px;
    color: var(--gold-dark);
}

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

.faq-item p {
    margin: 0;
    padding: 0.5em 45px 25px 4px;
    color: var(--soft);
    font-size: 13px;
    background: #ffffff9e;
}

.phone-section {
    padding: 95px 0;
    text-align: center;
    background: #fff;
}

.phone-section>div>p:not(.eyebrow) {
    margin: 20px 0 29px;
    color: var(--soft);
    font-size: 13px;
}

.site-footer {
    padding: 45px 0;
    border-top: 1px solid var(--line);
}

.footer-inner2 {
    display: flex;
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 11px;
}

.site-footer small {
    color: #948d85;
    font-size: 9px;
}

.mobile-reserve {
    display: none;
}

.page-top {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid #bdb5ac;
    background: rgba(255, 255, 255, .95);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: .2s;
}

.page-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.demo-modal[hidden] {
    display: none;
}

.demo-modal {
    position: fixed;
    z-index: 2500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 24, 21, .55);
}

.demo-modal-panel {
    position: relative;
    width: min(560px, 100%);
    padding: 48px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
    text-align: center;
}

.demo-modal-panel h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.6;
}

.demo-modal-panel>p:not(.eyebrow) {
    margin: 20px 0 28px;
    color: var(--soft);
    font-size: 12px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 13px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 25px;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s, transform .65s;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media(max-width:940px) {
    .spon {
        display: block !important;
    }
    .pcon {
        display: none;
    }

    :root {
        --header: 66px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .header-contact {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 48px;
        height: 56px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 0;
        background: transparent;
    }

    .menu-toggle>span {
        display: flex;
        width: 23px;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle i {
        display: block;
        height: 1px;
        background: var(--ink);
    }

    .menu-toggle small {
        font-size: 7px;
    }

    .global-nav {
        position: fixed;
        top: var(--header);
        left: 0;
        display: flex;
        width: 100%;
        height: calc(100vh - var(--header));
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 30px 27px 100px;
        background: rgba(255, 255, 255, .99);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .22s;
    }

    .global-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .global-nav a {
        padding: 18px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
    }

    .reservation-hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 390px;
        order: -1;
        background-position: center 46%;
    }

    .hero-copy {
        text-align: center;
        align-items: center;
        padding: 52px 30px 63px;
    }

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

    .form-intro {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefit-grid,
    .flow-list {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .flow-list li {
        min-height: 0;
    }

    .first-visit-inner {
        grid-template-columns: 1fr;
    }

    .first-visit-image {
        height: 380px;
    }

    .mobile-reserve {
        position: fixed;
        z-index: 999;
        left: 14px;
        right: 14px;
        bottom: 12px;
        display: flex;
        min-height: 55px;
        align-items: center;
        justify-content: center;
        gap: 25px;
        background: var(--gold);
        color: #fff;
        box-shadow: 0 10px 30px rgba(67, 47, 18, .22);
        font-size: 13px;
        font-weight: 700;
    }

    .page-top {
        bottom: 81px;
    }

    .footer-inner2 {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:620px) {

    .container,
    .narrow {
        width: calc(100% - 34px);
    }

    .breadcrumb ol {
        width: calc(100% - 34px);
    }

    .reservation-hero {
        min-height: 0;
    }

    .hero-image {
        min-height: 285px;
        background-position: center 42%;
    }

    .hero-copy {
        padding: 42px 20px 51px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 13px;
    }

    .hero-assurance {
        justify-content: center;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading h2,
    .form-intro h2,
    .first-visit-copy h2,
    .phone-section h2 {
        font-size: 26px;
    }

    .benefit-grid {
        margin-top: 40px;
    }

    .form-shell {
        width: calc(100% - 26px);
    }

    .form-intro,
    .reservation-form {
        padding: 36px 22px;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choice-grid {
        grid-template-columns: 1fr 1fr;
    }

    .choice-grid span {
        font-size: 10px !important;
    }

    .flow-list {
        margin-top: 40px;
    }

    .first-visit-inner {
        width: calc(100% - 34px);
    }

    .first-visit-image {
        height: 250px;
    }

    .first-visit-copy {
        padding: 38px 24px;
    }

    .phone-section .button {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .demo-modal-panel {
        padding: 43px 24px;
    }

    .demo-modal-panel h2 {
        font-size: 24px;
    }
}


/* Form-first layout: the page begins with the reservation form immediately after the breadcrumb. */
.form-section {
    padding-top: 64px;
}

@media(max-width:620px) {
    .form-section {
        padding-top: 40px;
    }
}