.ocf-shell,
.ocf-shell * {
    box-sizing: border-box;
}

.ocf-shell {
    --ocf-navy: #121b4f;
    --ocf-navy-deep: #0a1238;
    --ocf-gold: #c59a45;
    --ocf-cream: #f7f2e8;
    --ocf-page-bg: #f9f3e5;
    --ocf-text: #1b2440;
    --ocf-muted: #6b7280;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: clamp(38px, 6vw, 80px) 18px;
    background-color: var(--ocf-page-bg);
    background-image:
        radial-gradient(circle at 10% 8%, rgba(252,248,238,.96), rgba(252,248,238,0) 42%),
        linear-gradient(135deg, #fcf8ee 0%, var(--ocf-page-bg) 58%, #f7efdc 100%);
    color: var(--ocf-text);
}

.ocf-card {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 54px);
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(18,27,79,.08);
    border-radius: 24px;
    box-shadow: 0 24px 65px rgba(18,27,79,.13);
}

.ocf-intro {
    text-align: center;
    margin-bottom: 34px;
}

.ocf-kicker {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--ocf-gold);
}

.ocf-intro h2 {
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: var(--ocf-navy-deep) !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(34px, 6vw, 48px) !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
}

.ocf-intro p {
    margin: 0;
    font-size: 16px;
    color: #39415d;
}

.ocf-form {
    display: grid;
    gap: 20px;
}

.ocf-grid {
    display: grid;
    gap: 18px;
}

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

.ocf-field {
    display: grid;
    gap: 7px;
}

.ocf-field label {
    font-size: 14px;
    font-weight: 700;
    color: var(--ocf-navy-deep);
}

.ocf-field label span {
    color: #b33a3a;
}

.ocf-field input,
.ocf-field textarea {
    width: 100%;
    margin: 0;
    border: 1px solid #d8dfeb;
    border-radius: 10px;
    background: #fff;
    color: var(--ocf-text);
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.ocf-field input {
    min-height: 52px;
    padding: 12px 14px;
}

.ocf-field textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
}

.ocf-field input:focus,
.ocf-field textarea:focus {
    border-color: var(--ocf-gold);
    box-shadow: 0 0 0 4px rgba(197,154,69,.15);
    background: #fffefb;
}

.ocf-field small {
    color: var(--ocf-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ocf-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 4px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ocf-navy) 0%, var(--ocf-navy-deep) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18,27,79,.18);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.ocf-submit:hover,
.ocf-submit:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(18,27,79,.24);
}

.ocf-submit:focus-visible {
    outline: 3px solid rgba(197,154,69,.55);
    outline-offset: 3px;
}


.ocf-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ocf-notice {
    display: grid;
    gap: 4px;
    margin: 0 0 24px;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.ocf-notice-success {
    background: #edf8f0;
    border: 1px solid #b9dec2;
    color: #1e5c2f;
}

.ocf-notice-error {
    background: #fff2f1;
    border: 1px solid #e9c0bc;
    color: #7a2822;
}

@media (max-width: 620px) {
    .ocf-shell {
        padding: 24px 12px;
    }

    .ocf-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

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

    .ocf-intro {
        margin-bottom: 28px;
    }
}

/* v1.0.2 polish */
.ocf-card {
    position: relative;
    overflow: hidden;
}

.ocf-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ocf-navy-deep), var(--ocf-gold), var(--ocf-navy-deep));
}

.ocf-gold-rule {
    width: 54px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--ocf-gold);
}




.ocf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.ocf-submit-arrow {
    font-size: 19px;
    line-height: 1;
    transition: transform .15s ease;
}

.ocf-submit:hover .ocf-submit-arrow,
.ocf-submit:focus .ocf-submit-arrow {
    transform: translateX(3px);
}

.ocf-after-submit {
    display: grid;
    gap: 3px;
    margin-top: -2px;
    padding: 14px 16px;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    background: #f9fbfd;
    text-align: center;
}

.ocf-after-submit strong {
    color: var(--ocf-navy-deep);
    font-size: 12px;
    line-height: 1.45;
}

.ocf-after-submit span {
    color: var(--ocf-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ocf-success-panel {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 34px 24px;
    border: 1px solid #d8e8dc;
    border-radius: 18px;
    background: linear-gradient(180deg, #f5fbf6 0%, #edf8f0 100%);
    text-align: center;
}

.ocf-success-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0a1238;
    color: #fff;
    box-shadow: 0 8px 18px rgba(10,18,56,.18);
    font-size: 25px;
    font-weight: 900;
}

.ocf-success-panel h3 {
    margin: 4px 0 0 !important;
    padding: 0 !important;
    color: var(--ocf-navy-deep) !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
}

.ocf-success-panel p {
    max-width: 520px;
    margin: 0;
    color: #33405b;
    font-size: 15px;
    line-height: 1.6;
}

.ocf-success-panel > span {
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
}


/* v1.0.3 warm cream background system */
body.ocf-contact-page #main-content {
    background-color: #f9f3e5 !important;
}

body.ocf-contact-page #main-content .et_pb_section {
    background-color: transparent !important;
}

/* v1.1.0 inquiry choices, rental details, and photo viewer */
.ocf-choice-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.ocf-choice-group legend {
    margin-bottom: 9px;
    color: var(--ocf-navy-deep);
    font-size: 14px;
    font-weight: 700;
}

.ocf-choice-group legend span {
    color: #b33a3a;
}

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

.ocf-choice-card {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    padding: 16px;
    border: 1px solid #d8dfeb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.ocf-choice-card:hover,
.ocf-choice-card:has(input:checked) {
    border-color: var(--ocf-gold);
    background: #fffdf7;
    box-shadow: 0 0 0 3px rgba(197,154,69,.11);
}

.ocf-choice-card input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--ocf-navy);
}

.ocf-choice-card > span {
    display: grid;
    gap: 4px;
}

.ocf-choice-card strong {
    color: var(--ocf-navy-deep);
    font-size: 14px;
    line-height: 1.35;
}

.ocf-choice-card small {
    color: var(--ocf-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ocf-rental-panel {
    display: grid;
    gap: 20px;
    padding: clamp(20px, 4vw, 28px);
    border: 1px solid #eadfc9;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffcf5 0%, #f7f2e8 100%);
}

.ocf-rental-panel[hidden],
.ocf-field[hidden],
.ocf-lightbox[hidden] {
    display: none !important;
}

.ocf-rental-heading h3,
.ocf-gallery-heading h4 {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--ocf-navy-deep) !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    line-height: 1.2 !important;
}

.ocf-rental-heading h3 {
    font-size: 25px !important;
}

.ocf-rental-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--ocf-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
}

.ocf-rental-heading p,
.ocf-gallery-heading p {
    margin: 6px 0 0;
    color: var(--ocf-muted);
    font-size: 13px;
    line-height: 1.5;
}

.ocf-field select {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 42px 12px 14px;
    border: 1px solid #d8dfeb;
    border-radius: 10px;
    background: #fff;
    color: var(--ocf-text);
    font: inherit;
    font-size: 16px;
    outline: none;
}

.ocf-field select:focus {
    border-color: var(--ocf-gold);
    box-shadow: 0 0 0 4px rgba(197,154,69,.15);
}

.ocf-gallery-block {
    display: grid;
    gap: 13px;
    padding-top: 3px;
}

.ocf-gallery-heading h4 {
    font-size: 19px !important;
}

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

.ocf-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 10px;
    background: #e8e3d8;
    box-shadow: 0 4px 14px rgba(10,18,56,.12);
    cursor: zoom-in;
}

.ocf-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.ocf-gallery-item:hover img,
.ocf-gallery-item:focus-visible img {
    transform: scale(1.04);
}

.ocf-gallery-item:focus-visible {
    outline: 3px solid var(--ocf-gold);
    outline-offset: 2px;
}

.ocf-lightbox {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.ocf-lightbox-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(4, 8, 27, .9);
    cursor: zoom-out;
}

.ocf-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    max-width: min(1100px, 94vw);
    max-height: 90vh;
}

.ocf-lightbox-dialog img {
    display: block;
    max-width: 100%;
    max-height: 86vh;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
    touch-action: pan-y;
}

.ocf-lightbox-close {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0 0 4px;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: var(--ocf-navy-deep);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 7px 20px rgba(0,0,0,.3);
}

.ocf-lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0 0 6px;
    transform: translateY(-50%);
    border: 2px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: rgba(10,18,56,.9);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 43px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 7px 20px rgba(0,0,0,.32);
    transition: background .15s ease, transform .15s ease;
}

.ocf-lightbox-nav:hover,
.ocf-lightbox-nav:focus-visible {
    background: #c59a45;
    transform: translateY(-50%) scale(1.05);
}

.ocf-lightbox-nav:focus-visible,
.ocf-lightbox-close:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.ocf-lightbox-prev {
    left: 16px;
}

.ocf-lightbox-next {
    right: 16px;
}

.ocf-lightbox-count {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 14px;
    padding: 6px 11px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(4,8,27,.76);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

body.ocf-lightbox-open {
    overflow: hidden;
}

@media (max-width: 620px) {
    .ocf-choice-grid {
        grid-template-columns: 1fr;
    }

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

    .ocf-lightbox {
        padding: 14px;
    }

    .ocf-lightbox-close {
        top: 8px;
        right: 8px;
    }

    .ocf-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 36px;
    }

    .ocf-lightbox-prev {
        left: 6px;
    }

    .ocf-lightbox-next {
        right: 6px;
    }
}
