:root {
    --cp-navy: #06234f;
    --cp-blue: #075f91;
    --cp-red: #dd1f32;
    --cp-red-dark: #bd1226;
    --cp-ink: #08284e;
    --cp-muted: #58708a;
    --cp-pale: #eef7fb;
    --cp-line: #cddbe5;
    --cp-white: #fff;
    --cp-radius: 0;
}

html[data-corner="rounded"] { --cp-radius: 8px; }
html { scroll-behavior: smooth; }
body.content-page {
    margin: 0;
    color: var(--cp-ink);
    background: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.65;
}
* { box-sizing: border-box; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.cp-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.cp-skip { position: fixed; left: 12px; top: -80px; z-index: 9999; padding: 10px 14px; background: #fff; color: var(--cp-navy); }
.cp-skip:focus { top: 12px; }

.cp-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(6,29,52,.14); box-shadow: 0 14px 34px rgba(6,29,52,.12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.cp-header .cp-container { width: 100%; max-width: 1280px; padding-inline: 32px; }
.cp-header-row { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cp-logo { display: flex; align-items: center; }
.cp-logo img { width: 66px; height: 66px; object-fit: contain; }
.cp-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); font-family: "Montserrat", "Archivo Black", Arial, sans-serif; font-weight: 900; font-size: .95rem; }
.cp-nav a { position: relative; padding: .7rem 0; color: #061d34; text-decoration: none; transition: color .22s ease, transform .22s ease; }
.cp-nav a::after { content: ""; position: absolute; right: 0; bottom: .36rem; left: 0; height: 3px; background: var(--cp-red); transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.cp-nav a:hover, .cp-nav a:focus-visible { color: var(--cp-red); transform: translateY(-1px); }
.cp-nav a:hover::after, .cp-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.cp-actions { display: flex; align-items: center; gap: 18px; }
.cp-quote-link { color: var(--cp-navy); font-weight: 800; text-decoration: none; }
.cp-quote-link:hover, .cp-quote-link:focus-visible { color: var(--cp-red); }
.cp-btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid var(--cp-red); border-radius: var(--cp-radius); background: var(--cp-red); color: #fff; font-weight: 900; text-decoration: none; letter-spacing: 0; box-shadow: 0 12px 25px rgba(221,31,50,.18); transition: transform .2s ease, background .2s ease; }
.cp-btn:hover { background: var(--cp-red-dark); transform: translateY(-2px); }
body.content-page .cp-btn.cp-btn-secondary { background: transparent; border-color: currentColor; color: var(--cp-navy); box-shadow: none; }
.cp-cta .cp-btn.cp-btn-secondary, html[data-theme="deep-blue"] .cp-hero .cp-btn-secondary { color: #fff; }
.cp-menu { display: none; width: 24px; height: 18px; padding: 0; border: 0; background: transparent; color: var(--cp-navy); }
.cp-menu span { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .35s ease, opacity .25s ease; }
.cp-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.cp-menu.active span:nth-child(2) { opacity: 0; }
.cp-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.cp-drawer { display: none; }
.cp-drawer-overlay { position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,.65); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s cubic-bezier(.16,1,.3,1), visibility .45s; }
.cp-drawer-overlay.visible { opacity: 1; visibility: visible; pointer-events: auto; }
body.cp-nav-open { overflow: hidden; }

.cp-breadcrumbs { padding: 18px 0 0; font-size: .88rem; color: var(--cp-muted); }
.cp-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.cp-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #9bb0c1; }
.cp-breadcrumbs a { color: var(--cp-blue); text-decoration: none; }

.cp-hero { padding: 44px 0 68px; background: linear-gradient(180deg, #f7fbfd 0%, var(--cp-pale) 100%); border-bottom: 1px solid var(--cp-line); }
.cp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: 64px; align-items: center; }
.cp-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--cp-red); font-size: .8rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.cp-eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.cp-hero h1 { max-width: 820px; margin: 0 0 20px; color: var(--cp-navy); font-family: "Archivo Black", Arial, sans-serif; font-size: clamp(2.55rem, 5vw, 4.9rem); line-height: .98; letter-spacing: 0; text-transform: uppercase; }
@media (min-width: 1025px) {
    .cp-hero h1.cp-hero-title-compact { font-size: clamp(2.55rem, 4.2vw, 4.15rem); }
}
.cp-hero p { max-width: 690px; margin: 0; color: var(--cp-muted); font-size: 1.17rem; }
.cp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cp-hero-media { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--cp-radius); background: var(--cp-navy); box-shadow: 0 22px 45px rgba(6,35,79,.18); }
.cp-hero-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.cp-hero-badge { position: absolute; left: 20px; bottom: 20px; max-width: 330px; padding: 16px 18px; background: rgba(6,35,79,.92); color: #fff; border-left: 4px solid var(--cp-red); font-weight: 800; }

.cp-section { padding: 88px 0; }
.cp-section-alt { background: var(--cp-pale); }
.cp-section-dark { background: var(--cp-navy); color: #dceaf5; }
.cp-section-head { max-width: 780px; margin-bottom: 38px; }
.cp-section-head h2, .cp-prose h2 { margin: 0 0 16px; color: var(--cp-navy); font-family: "Archivo Black", Arial, sans-serif; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.06; letter-spacing: 0; text-transform: uppercase; }
.cp-hero h1, .cp-section-head h2, .cp-prose h2, .cp-related strong { overflow-wrap: anywhere; }
.cp-section-head p { margin: 0; color: var(--cp-muted); font-size: 1.08rem; }
.cp-section-dark .cp-section-head h2, .cp-section-dark .cp-prose h2 { color: #fff; }
.cp-section-dark .cp-section-head p { color: #c3d5e5; }

.cp-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cp-card-grid.cp-card-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cp-card { padding: 28px; border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: #fff; box-shadow: 0 12px 28px rgba(6,35,79,.07); }
.cp-card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; background: var(--cp-navy); color: #fff; border-left: 4px solid var(--cp-red); font-size: 1.15rem; }
.cp-card h3 { margin: 0 0 8px; color: var(--cp-navy); font-size: 1.15rem; line-height: 1.25; }
.cp-card p { margin: 0; color: var(--cp-muted); }

.cp-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); gap: 64px; align-items: start; }
.cp-split > * { min-width: 0; }
.cp-prose { max-width: 760px; }
.cp-prose h2 { margin-top: 0; }
.cp-prose h3 { margin: 36px 0 10px; color: var(--cp-navy); font-size: 1.35rem; line-height: 1.25; }
.cp-prose p, .cp-prose li { color: var(--cp-muted); font-size: 1.05rem; }
.cp-prose p { margin: 0 0 20px; }
.cp-prose ul, .cp-prose ol { padding-left: 22px; }
.cp-prose li { margin-bottom: 10px; }
.cp-prose strong { color: var(--cp-ink); }
.cp-aside { position: sticky; top: 104px; padding: 30px; border-radius: var(--cp-radius); background: var(--cp-navy); color: #fff; }
.cp-aside h2 { margin: 0 0 14px; font-family: "Archivo Black", Arial, sans-serif; font-size: 1.65rem; line-height: 1.08; text-transform: uppercase; }
.cp-aside p { color: #cfdeea; }
.cp-aside .cp-btn { width: 100%; margin-top: 12px; }
.cp-checklist { list-style: none; padding: 0; margin: 24px 0; }
.cp-checklist li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid rgba(255,255,255,.14); color: #e6f0f7; }
.cp-checklist li::before { content: "\2713"; position: absolute; left: 0; top: 13px; color: #fff; font-weight: 900; }

.cp-callout { padding: 25px 28px; margin: 30px 0; border-left: 5px solid var(--cp-red); border-radius: var(--cp-radius); background: #f4f8fb; }
.cp-callout h3 { margin-top: 0; }
.cp-callout-danger { background: #fff1f2; }
.cp-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; color: var(--cp-muted); font-size: .92rem; }
.cp-meta span { display: inline-flex; align-items: center; gap: 8px; }

.cp-related { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.cp-related a { min-height: 210px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: #fff; text-decoration: none; box-shadow: 0 12px 26px rgba(6,35,79,.07); }
.cp-related a:hover { border-color: var(--cp-red); }
.cp-related strong { color: var(--cp-navy); font-size: 1.25rem; line-height: 1.2; }
.cp-related p { margin: 14px 0 22px; color: var(--cp-muted); line-height: 1.55; }
.cp-related span { margin-top: auto; color: var(--cp-red); font-weight: 900; }

.cp-review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.cp-review { display: flex; flex-direction: column; min-height: 100%; padding: 30px; border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: #fff; box-shadow: 0 12px 28px rgba(6,35,79,.07); }
.cp-review-stars { margin-bottom: 18px; color: var(--cp-red); letter-spacing: .16em; }
.cp-review blockquote { margin: 0 0 24px; color: var(--cp-ink); font-size: 1.08rem; font-style: italic; }
.cp-review footer { margin-top: auto; color: var(--cp-muted); }
.cp-review footer strong { display: block; color: var(--cp-navy); font-style: normal; }
.cp-testimonials-section { overflow: hidden; background: var(--cp-navy); color: #fff; }
.cp-testimonials-section .cp-section-head h2 { color: #fff; }
.cp-testimonials-section .cp-section-head p { color: #c6d9e8; }
.cp-testimonials-section .cp-eyebrow { color: #ff9ba6; }
.cp-testimonial-splide { position: relative; padding: 4px 54px 42px; }
.cp-testimonial-splide .splide__track { overflow: hidden; }
.cp-testimonial-splide .splide__list { align-items: stretch; }
.cp-testimonial-splide .splide__slide { height: auto; }
.cp-testimonial-splide .cp-review { height: 100%; background: #0d315c; border-color: #335a7c; box-shadow: none; }
.cp-testimonial-splide .cp-review blockquote, .cp-testimonial-splide .cp-review footer strong { color: #fff; }
.cp-testimonial-splide .cp-review footer { color: #c6d9e8; }
.cp-testimonial-splide .splide__arrow { position: absolute; top: 50%; z-index: 4; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: var(--cp-radius); background: var(--cp-red); color: #fff; transform: translateY(-70%); cursor: pointer; }
.cp-testimonial-splide .splide__arrow svg { width: 15px; height: 15px; fill: currentColor; }
.cp-testimonial-splide .splide__arrow--prev svg { transform: scaleX(-1); }
.cp-testimonial-splide .splide__arrow--prev { left: 0; }
.cp-testimonial-splide .splide__arrow--next { right: 0; }
.cp-testimonial-splide .splide__pagination { position: absolute; left: 50%; bottom: 4px; display: flex; gap: 8px; padding: 0; margin: 0; list-style: none; transform: translateX(-50%); }
.cp-testimonial-splide .splide__pagination__page { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.35); }
.cp-testimonial-splide .splide__pagination__page.is-active { background: var(--cp-red); }

.cp-faq { display: grid; gap: 12px; max-width: 900px; }
.cp-faq details { border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: #fff; box-shadow: 0 10px 24px rgba(6,35,79,.05); }
.cp-faq summary { position: relative; padding: 21px 56px 21px 24px; color: var(--cp-navy); font-weight: 900; cursor: pointer; list-style: none; }
.cp-faq summary::-webkit-details-marker { display: none; }
.cp-faq summary::after { content: "\f078"; position: absolute; right: 24px; top: 50%; color: var(--cp-red); font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif; font-size: .82rem; font-weight: 900; line-height: 1; transform: translateY(-50%); transition: transform 300ms cubic-bezier(.16,1,.3,1); }
.cp-faq details[open] summary::after, .cp-faq details.is-open summary::after { transform: translateY(-50%) rotate(180deg); }
.cp-faq details p { margin: 0; padding: 0 24px 22px; color: var(--cp-muted); }

.cp-location-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 42px; align-items: stretch; }
.cp-map { min-height: 460px; overflow: hidden; border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: var(--cp-pale); box-shadow: 0 16px 36px rgba(6,35,79,.1); }
.cp-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }
.cp-area-panel { padding: 34px; border-radius: var(--cp-radius); background: var(--cp-navy); color: #fff; }
.cp-area-panel h2 { margin: 0 0 14px; font-family: "Archivo Black", Arial, sans-serif; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.06; text-transform: uppercase; }
.cp-area-panel p { color: #cfdeea; }
.cp-area-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0; margin: 26px 0; list-style: none; }
.cp-area-list li { padding: 12px 14px; border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 800; }
.cp-area-list i { margin-right: 8px; color: #ff6b79; }

.cp-cta { padding: 70px 0; background: var(--cp-navy); color: #fff; }
.cp-cta-row { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.cp-cta h2 { max-width: 760px; margin: 0; font-family: "Archivo Black", Arial, sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; text-transform: uppercase; }
.cp-cta p { margin: 12px 0 0; color: #c9d9e6; }
.cp-cta-actions { flex: 0 0 auto; display: flex; gap: 10px; }

.cp-footer { padding: 64px 0 110px; background: #031b40; color: #c6d7e5; }
.cp-footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .9fr; gap: 56px; }
.cp-footer-logo { width: 84px; height: 84px; padding: 8px; object-fit: contain; border-radius: 50%; background: #fff; }
.cp-footer h2 { color: #fff; font-size: 1rem; text-transform: uppercase; }
.cp-footer a { display: block; margin: 8px 0; color: #c6d7e5; text-decoration: none; }
.cp-footer a:hover { color: #fff; }
.cp-footer small { display: block; margin-top: 50px; border-top: 1px solid rgba(255,255,255,.13); padding-top: 22px; }
.cp-mobile-book { display: none; }

.cp-settings-trigger { position: fixed; right: 24px; bottom: 24px; z-index: 800; width: 50px; height: 50px; border: 0; border-radius: 50%; background: var(--cp-blue); color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.cp-settings { position: fixed; right: 24px; bottom: 86px; z-index: 850; width: min(330px, calc(100% - 32px)); padding: 22px; border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: #fff; color: var(--cp-ink); box-shadow: 0 20px 50px rgba(6,35,79,.22); }
.cp-settings-trigger,
.cp-settings { display: none !important; }
.cp-settings[hidden] { display: none; }
.cp-settings-head { display: flex; align-items: center; justify-content: space-between; }
.cp-settings-head h2 { margin: 0; font-size: .9rem; text-transform: uppercase; }
.cp-settings-head button { width: 34px; height: 34px; border: 1px solid var(--cp-line); background: transparent; color: var(--cp-ink); }
.cp-setting-label { margin: 18px 0 8px; color: var(--cp-red); font-size: .78rem; font-weight: 800; }
.cp-option-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cp-option-row.corner { grid-template-columns: repeat(2, 1fr); }
.cp-option { min-height: 60px; padding: 8px; border: 1px solid var(--cp-line); border-radius: var(--cp-radius); background: #f7fafc; color: var(--cp-ink); font-size: .76rem; }
.cp-option.active { border-color: var(--cp-red); color: var(--cp-red); background: #fff4f5; }

.cp-reveal {
    --cp-reveal-delay: 0ms;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px);
    transition: opacity .68s cubic-bezier(.16,1,.3,1) var(--cp-reveal-delay), transform .68s cubic-bezier(.16,1,.3,1) var(--cp-reveal-delay), filter .68s ease var(--cp-reveal-delay);
    will-change: opacity, transform, filter;
}
.cp-reveal.is-visible { opacity: 1; filter: blur(0); transform: none; }
.cp-reveal-sequence { opacity: 1; filter: none; transform: none; }
.cp-reveal-sequence > * {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
    transition: opacity .62s cubic-bezier(.16,1,.3,1), transform .62s cubic-bezier(.16,1,.3,1), filter .62s ease;
}
.cp-reveal-sequence > :nth-child(2) { transition-delay: 70ms; }
.cp-reveal-sequence > :nth-child(3) { transition-delay: 140ms; }
.cp-reveal-sequence > :nth-child(4) { transition-delay: 210ms; }
.cp-reveal-sequence.is-visible > * { opacity: 1; filter: blur(0); transform: none; }
.cp-hero-media.cp-reveal { transform: translateY(24px) scale(.975); }
.cp-hero-media.cp-reveal.is-visible { transform: none; }
.cp-card.cp-reveal, .cp-related > .cp-reveal, .cp-faq > .cp-reveal { transform: translateY(24px) scale(.985); }
.cp-card.cp-reveal.is-visible, .cp-related > .cp-reveal.is-visible, .cp-faq > .cp-reveal.is-visible { transform: none; }

html[data-theme="deep-blue"] body.content-page { background: #061a36; color: #e8f1f7; }
html[data-theme="deep-blue"] .cp-hero, html[data-theme="deep-blue"] .cp-section, html[data-theme="deep-blue"] .cp-section-alt { background: #08264a; }
html[data-theme="deep-blue"] .cp-header { background: rgba(255,255,255,.97); }
html[data-theme="deep-blue"] .cp-hero h1, html[data-theme="deep-blue"] .cp-section-head h2, html[data-theme="deep-blue"] .cp-prose h2, html[data-theme="deep-blue"] .cp-prose h3 { color: #fff; }
html[data-theme="deep-blue"] .cp-hero p, html[data-theme="deep-blue"] .cp-section-head p, html[data-theme="deep-blue"] .cp-prose p, html[data-theme="deep-blue"] .cp-prose li, html[data-theme="deep-blue"] .cp-breadcrumbs { color: #c6d9e8; }
html[data-theme="deep-blue"] .cp-prose strong { color: #fff; }
html[data-theme="deep-blue"] .cp-card, html[data-theme="deep-blue"] .cp-related a { background: #0d315c; border-color: #335a7c; }
html[data-theme="deep-blue"] .cp-card h3, html[data-theme="deep-blue"] .cp-related strong { color: #fff; }
html[data-theme="deep-blue"] .cp-card p { color: #c6d9e8; }
html[data-theme="deep-blue"] .cp-callout { background: #0d315c; }
html[data-theme="deep-blue"] .cp-review, html[data-theme="deep-blue"] .cp-faq details { background: #0d315c; border-color: #335a7c; }
html[data-theme="deep-blue"] .cp-review blockquote, html[data-theme="deep-blue"] .cp-review footer strong, html[data-theme="deep-blue"] .cp-faq summary { color: #fff; }
html[data-theme="deep-blue"] .cp-review footer, html[data-theme="deep-blue"] .cp-faq details p { color: #c6d9e8; }

html[data-theme="contrast"] body.content-page { background: #fff; }
html[data-theme="contrast"] .cp-hero, html[data-theme="contrast"] .cp-section-alt { background: #fff; }
html[data-theme="contrast"] .cp-card, html[data-theme="contrast"] .cp-related a { box-shadow: none; border: 2px solid var(--cp-navy); }
html[data-theme="contrast"] .cp-review, html[data-theme="contrast"] .cp-faq details, html[data-theme="contrast"] .cp-map { box-shadow: none; border: 2px solid var(--cp-navy); }

@media (max-width: 900px) {
    .cp-container { width: min(100% - 32px, 720px); }
    .cp-header .cp-container { width: 100%; padding-inline: 32px; }
    .cp-nav, .cp-actions { display: none; }
    .cp-mobile-book { position: fixed; right: 16px; bottom: calc(12px + env(safe-area-inset-bottom)); left: 16px; z-index: 790; display: flex; width: auto; min-height: 54px; opacity: 0; pointer-events: none; transform: translateY(calc(100% + 36px)); transition: opacity .28s ease, transform .42s cubic-bezier(.16,1,.3,1), background .2s ease; }
    .cp-mobile-book.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
    body.cp-nav-open .cp-mobile-book { opacity: 0; pointer-events: none; transform: translateY(calc(100% + 36px)); }
    .cp-settings-trigger { right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); transition: bottom .42s cubic-bezier(.16,1,.3,1), transform .2s ease, background .2s ease; }
    body.cp-sticky-cta-visible .cp-settings-trigger { bottom: calc(82px + env(safe-area-inset-bottom)); }
    .cp-settings { right: 16px; bottom: calc(82px + env(safe-area-inset-bottom)); transition: bottom .42s cubic-bezier(.16,1,.3,1); }
    body.cp-sticky-cta-visible .cp-settings { bottom: calc(142px + env(safe-area-inset-bottom)); }
    .cp-menu { display: flex; flex-direction: column; justify-content: space-between; }
    .cp-drawer { position: fixed; inset: 0 0 0 auto; z-index: 1100; width: min(360px, 88vw); display: flex; flex-direction: column; padding: 34px 32px 28px; background: var(--cp-navy); border-left: 1px solid rgba(255,255,255,.14); box-shadow: -26px 0 70px rgba(0,0,0,.45); transform: translateX(100%); visibility: hidden; transition: transform .5s cubic-bezier(.16,1,.3,1), visibility .5s; }
    .cp-drawer.open { transform: translateX(0); visibility: visible; }
    .cp-drawer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
    .cp-drawer-top img { width: 72px; height: 72px; object-fit: contain; }
    .cp-drawer-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.24); background: transparent; color: #fff; font-size: 1.2rem; }
    .cp-drawer-main { display: grid; margin-top: 28px; }
    .cp-drawer-main a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.9); font-size: 1.18rem; font-weight: 700; text-decoration: none; opacity: 0; }
    .cp-drawer.open .cp-drawer-main a { animation: cpDrawerLinkIn .55s cubic-bezier(.16,1,.3,1) both; }
    .cp-drawer.open .cp-drawer-main a:nth-child(1) { animation-delay: .10s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(2) { animation-delay: .15s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(3) { animation-delay: .20s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(4) { animation-delay: .25s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(5) { animation-delay: .30s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(6) { animation-delay: .35s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(7) { animation-delay: .40s; }
    .cp-drawer.open .cp-drawer-main a:nth-child(8) { animation-delay: .45s; }
    .cp-drawer-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
    .cp-drawer-footer a { display: block; padding: 13px; background: var(--cp-red); color: #fff; font-weight: 900; text-align: center; text-decoration: none; }

    .cp-drawer { width: min(390px, 90vw); height: 100dvh; padding: 28px 26px 24px; overflow: hidden; }
    .cp-drawer-top { flex: 0 0 auto; padding-bottom: 18px; }
    .cp-drawer-main { display: block; flex: 1 1 auto; min-height: 0; margin-top: 16px; padding-right: 6px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-color: rgba(255,255,255,.35) transparent; scrollbar-width: thin; }
    .cp-drawer-main .drawer-primary-link,
    .cp-drawer-main .drawer-group-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 50px; padding: 12px 2px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); background: transparent; color: rgba(255,255,255,.92); font: 750 1.05rem/1.2 "DM Sans", Arial, sans-serif; text-align: left; text-decoration: none; }
    .cp-drawer-main .drawer-group-toggle { cursor: pointer; }
    .cp-drawer-main .drawer-group-toggle i { flex: 0 0 auto; margin-left: 14px; color: #ff6673; font-size: .78rem; transition: transform .35s cubic-bezier(.16,1,.3,1); }
    .cp-drawer-main .drawer-nav-group.is-open .drawer-group-toggle i { transform: rotate(180deg); }
    .cp-drawer-main .drawer-submenu { display: grid; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .48s cubic-bezier(.16,1,.3,1), opacity .25s ease; }
    .cp-drawer-main .drawer-nav-group.is-open .drawer-submenu { max-height: 420px; opacity: 1; }
    .cp-drawer-main .drawer-submenu a { padding: 10px 12px 10px 18px; border: 0; border-left: 2px solid rgba(232,29,52,.58); color: rgba(255,255,255,.72); font-size: .9rem; font-weight: 650; line-height: 1.25; opacity: 1; }
    .cp-drawer-main :is(.drawer-primary-link, .drawer-group-toggle, .drawer-submenu a):hover,
    .cp-drawer-main :is(.drawer-primary-link, .drawer-group-toggle, .drawer-submenu a):focus-visible { color: #ff9aa3; }
    .cp-drawer-footer { flex: 0 0 auto; margin-top: 16px; padding-top: 16px; }
    .cp-hero { padding: 30px 0 46px; }
    .cp-hero-grid, .cp-split { grid-template-columns: 1fr; gap: 38px; }
    .cp-hero-media, .cp-hero-media img { min-height: 380px; }
    .cp-card-grid, .cp-related, .cp-review-grid { grid-template-columns: repeat(2, 1fr); }
    .cp-location-grid { grid-template-columns: 1fr; }
    .cp-aside { position: static; }
    .cp-cta-row { align-items: flex-start; flex-direction: column; }
    .cp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .cp-container { width: calc(100% - 32px); }
    .cp-header-row { height: 74px; }
    .cp-header .cp-container { padding-inline: 24px; }
    .cp-logo img { width: 64px; height: 64px; }
    .cp-breadcrumbs { font-size: .78rem; }
    .cp-hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.45rem); line-height: 1.02; }
    .cp-hero p { font-size: 1rem; }
    .cp-hero-actions, .cp-cta-actions { width: 100%; flex-direction: column; }
    .cp-btn { width: 100%; }
    .cp-mobile-book { width: auto; }
    .cp-hero-media, .cp-hero-media img { min-height: 310px; }
    .cp-section { padding: 64px 0; }
    .cp-section-head h2, .cp-prose h2, .cp-cta h2 { font-size: clamp(1.85rem, 9vw, 2.5rem); }
    .cp-card-grid, .cp-related, .cp-review-grid, .cp-footer-grid { grid-template-columns: 1fr; }
    .cp-card-grid.cp-card-grid-four { grid-template-columns: 1fr; }
    .cp-card { padding: 24px; }
    .cp-review { padding: 24px; }
    .cp-testimonial-splide { padding-inline: 0; }
    .cp-testimonial-splide .splide__arrows { display: none; }
    .cp-area-panel { padding: 26px; }
    .cp-area-list { grid-template-columns: 1fr; }
    .cp-map, .cp-map iframe { min-height: 340px; }
    .cp-related a { min-height: 0; }
    .cp-footer { padding-bottom: 130px; }
    .cp-card-grid > .cp-reveal, .cp-related > .cp-reveal, .cp-faq > .cp-reveal, .cp-area-list > .cp-reveal { transition-delay: 0ms; }
}

@keyframes cpDrawerLinkIn {
    from { opacity: 0; transform: translateX(24px); filter: blur(8px); }
    to { opacity: 1; transform: none; filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .cp-reveal, .cp-reveal-sequence > * { opacity: 1; filter: none; transform: none; }
}
