/* vanilla base reset (no framework) */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--xcb6ye-font, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif); line-height: 1.5; color: var(--xcb6ye-ink, #111); background: var(--xcb6ye-bg, #fff); }
h1, h2, h3, h4, h5, h6 { font-family: var(--xcb6ye-font-display, var(--xcb6ye-font, system-ui, sans-serif)); }
img, svg, video, canvas { max-width: 100%; height: auto; }
a { color: inherit; }
*:focus-visible { outline: 2px solid var(--xcb6ye-primary, #2563eb); outline-offset: 2px; }
/* visibility shim for framework toggles */
.hidden { display: none !important; }

/* design tokens */
:root {
  --xcb6ye-primary: #12171A;
  --xcb6ye-secondary: #8A9199;
  --xcb6ye-accent: #E8552B;
  --xcb6ye-ink: #12171A;
  --xcb6ye-slate: #7C848C;
  --xcb6ye-mist: #DCDFE2;
  --xcb6ye-border: #DADAD7;
  --xcb6ye-surface: #FFFFFF;
  --xcb6ye-bg: #F5F4F1;
  --xcb6ye-text: #171D21;
  --xcb6ye-font: 'Segoe UI', Candara, 'Gill Sans', 'Trebuchet MS', sans-serif;
  --xcb6ye-font-display: 'Optima', 'Segoe UI', Candara, 'Gill Sans', 'Gill Sans MT', sans-serif;
}

/* state utilities */
.is-open { display: block !important; }
.is-active { display: block !important; }
[hidden] { display: none !important; }

/* framework-injected components (vanilla) */
[data-xcb6ye-ui="cookie-banner"] { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9999; margin: 0 auto; max-width: 56rem; border: 1px solid var(--xcb6ye-border, #e5e7eb); background: var(--xcb6ye-surface, #fff); border-radius: 1rem; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
[data-xcb6ye-ui="cookie-banner"] > div { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; justify-content: space-between; }
[data-xcb6ye-ui="cookie-banner"] > div > div:last-child { display: flex; flex-wrap: wrap; gap: .5rem; }
[data-xcb6ye-ui="cookie-banner"] a { text-decoration: underline; }
[data-xcb6ye-cs-action], [data-xcb6ye-ag-action] { cursor: pointer; border-radius: .5rem; padding: .5rem .9rem; font-size: .8rem; border: 1px solid var(--xcb6ye-border, #d1d5db); background: transparent; color: var(--xcb6ye-ink, #111); }
[data-xcb6ye-cs-action="accept-all"], [data-xcb6ye-cs-action="save"], [data-xcb6ye-ag-action="confirm"] { background: var(--xcb6ye-primary, #2563eb); color: #fff; border-color: transparent; font-weight: 600; }
[data-xcb6ye-cs-action="reject-all"] { background: var(--xcb6ye-ink, #111); color: #fff; border-color: transparent; font-weight: 600; }
[data-xcb6ye-cs-panel] { margin-top: 1rem; border: 1px solid var(--xcb6ye-border, #e5e7eb); background: var(--xcb6ye-surface, #fff); border-radius: .75rem; padding: 1rem; font-size: .875rem; }
[data-xcb6ye-cs-panel] > div { display: flex; flex-wrap: wrap; gap: .75rem; }
[data-xcb6ye-ui="cookie-banner"] label { display: inline-flex; align-items: center; gap: .5rem; }
[data-xcb6ye-ui="age-gate-overlay"] { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.8); }
[data-xcb6ye-ui="age-gate-overlay"] > div { width: 100%; max-width: 28rem; margin: 0 1rem; background: var(--xcb6ye-surface, #1a1a2e); color: var(--xcb6ye-ink, #fff); border-radius: 1rem; padding: 2rem; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
[data-xcb6ye-ui="age-gate-overlay"] > div > div:last-of-type { display: flex; flex-direction: column; gap: .75rem; }
[data-xcb6ye-ag-action] { padding: .75rem 1.5rem; }

/* sections */
/* xcb6ye:header */
/* xcb6ye:header */
#header{position:sticky;top:0;z-index:30;background:var(--xcb6ye-surface);border-bottom:1px solid var(--xcb6ye-border);font-family:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;color:var(--xcb6ye-text)}
#header ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
#header :focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:3px}
#header .header-inner{max-width:90rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);min-height:4.25rem;display:flex;align-items:center;gap:clamp(.75rem,2.5vw,2rem)}
#header .brand{display:flex;align-items:center;gap:.45rem;color:var(--xcb6ye-ink);text-decoration:none;font-size:1.0625rem;font-weight:600;white-space:nowrap}
#header .brand-mark{color:var(--xcb6ye-accent);font-size:.7rem}
#header .brand-dot{color:var(--xcb6ye-slate);font-weight:400}
#header .primary-nav{margin-left:auto}
#header .nav-list{display:flex;align-items:center;gap:clamp(.875rem,2.5vw,2rem);margin:0;padding:0;list-style:none}
#header .nav-list a{position:relative;display:block;padding:.55rem 0;color:var(--xcb6ye-text);text-decoration:none;font-size:.9375rem}
#header .nav-list a::after{content:"";position:absolute;left:0;right:0;bottom:.3rem;height:1px;background:var(--xcb6ye-accent);transform:scaleX(0);transform-origin:left;transition:transform .18s ease}
#header .nav-list a:hover::after,#header .nav-list a:focus-visible::after{transform:scaleX(1)}
#header .header-actions{display:flex;align-items:center;gap:1.25rem}
#header .header-phone{color:var(--xcb6ye-slate);text-decoration:none;font-size:.875rem;white-space:nowrap}
#header .header-phone:hover{color:var(--xcb6ye-ink)}
#header .btn-book{display:inline-flex;align-items:center;min-height:2.75rem;padding:.6rem 1.1rem;background:var(--xcb6ye-surface);color:var(--xcb6ye-ink);border:1px solid var(--xcb6ye-ink);text-decoration:none;font-size:.8125rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;transition:background .18s,color .18s}
#header .btn-book:hover{background:var(--xcb6ye-ink);color:var(--xcb6ye-surface)}
#header .menu-toggle{display:none}
@media (max-width:900px){#header .header-phone{display:none}}
@media (max-width:768px){#header .header-actions{margin-left:auto}
#header .menu-toggle{display:inline-flex;align-items:center;min-height:2.75rem;padding:.4rem .8rem;background:none;border:1px solid var(--xcb6ye-border);color:var(--xcb6ye-ink);font:inherit;font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}
#header .primary-nav{position:absolute;left:0;right:0;top:100%;display:none;margin:0;background:var(--xcb6ye-surface);border-bottom:1px solid var(--xcb6ye-border);padding:0 clamp(1rem,4vw,3rem) 1rem}
#header .primary-nav.is-open,#header .primary-nav.open,#header .primary-nav[data-open="true"]{display:block}
#header .nav-list{flex-direction:column;align-items:stretch;gap:0}
#header .nav-list li{border-top:1px solid var(--xcb6ye-border)}
#header .nav-list a{padding:.85rem 0;font-size:1rem}
#header .nav-list a::after{display:none}}
@media (prefers-reduced-motion:reduce){#header *{transition:none!important}}
/* xcb6ye:footer */
/* xcb6ye:footer */
#footer{background:var(--xcb6ye-ink);color:var(--xcb6ye-bg);border-top:3px solid var(--xcb6ye-accent);padding:clamp(3rem,7vw,5rem) 0 clamp(2rem,4vw,3rem);font-family:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;}
#footer .footer-inner{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);}
#footer .footer-label{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-mist);border-bottom:1px solid var(--xcb6ye-slate);padding-bottom:.75rem;margin:0 0 clamp(2rem,4vw,3rem);}
#footer .footer-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr;gap:clamp(1.5rem,3vw,3rem);}
#footer .footer-name{font-family:Optima,'Segoe UI',Candara,sans-serif;font-size:1.5rem;letter-spacing:-.01em;margin:0 0 .75rem;color:var(--xcb6ye-bg);}
#footer .footer-note{font-size:.9375rem;line-height:1.6;color:var(--xcb6ye-mist);max-width:42ch;margin:0 0 1.25rem;}
#footer .footer-contact{list-style:none;margin:0;padding:0;font-size:.875rem;line-height:1.7;color:var(--xcb6ye-secondary);}
#footer .footer-heading{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-mist);margin:0 0 1rem;font-weight:600;}
#footer .footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem;}
#footer a{color:var(--xcb6ye-bg);text-decoration:none;border-bottom:1px solid transparent;padding-bottom:2px;font-size:.9375rem;}
#footer a:hover{color:var(--xcb6ye-accent);border-bottom-color:var(--xcb6ye-accent);}
#footer a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:3px;}
#footer .footer-legal{margin-top:clamp(2.5rem,5vw,4rem);border-top:1px solid var(--xcb6ye-slate);padding-top:1.5rem;display:grid;gap:.75rem;font-size:.8125rem;line-height:1.65;color:var(--xcb6ye-secondary);}
#footer .footer-legal p{margin:0;max-width:88ch;}
#footer .footer-copy{color:var(--xcb6ye-mist);font-variant-numeric:tabular-nums;}
#footer ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface);}
@media (max-width:1024px){#footer .footer-grid{grid-template-columns:1fr 1fr;}#footer .footer-brand{grid-column:1 / -1;}}
@media (max-width:640px){#footer .footer-grid{grid-template-columns:1fr;}#footer .footer-links{gap:.625rem;}#footer a{padding:.35rem 0;min-height:44px;display:inline-flex;align-items:center;}}
/* xcb6ye:hero-conditions */
/* xcb6ye:hero-conditions */
.hc{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);padding-bottom:clamp(3rem,8vw,7rem)}
.hc .shell{max-width:1440px;margin:0 auto;padding:0 clamp(1rem,4vw,1.5rem)}
.hc .label{margin:.75rem 0 clamp(2rem,5vw,4rem);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate);border-top:1px solid var(--xcb6ye-border);padding-top:.75rem}
.hc .grid{display:grid;grid-template-columns:7fr 5fr;gap:clamp(1.5rem,4vw,3rem)}
.hc .panel{display:flex;flex-direction:column;gap:1.25rem;border-left:1px solid var(--xcb6ye-border);padding-left:clamp(1rem,3vw,1.5rem)}
.hc h1{margin:0 0 1rem;font-family:Optima,Candara,sans-serif;font-size:clamp(2.4rem,5vw,4rem);line-height:1.05;letter-spacing:-.02em;text-wrap:balance}
.hc .deck{margin:0 0 1.75rem;line-height:1.6;max-width:54ch}
.hc .matcher{display:grid;grid-template-columns:1fr 1fr;gap:.75rem 1rem;max-width:32rem;padding:1rem;border:1px solid var(--xcb6ye-border);background:var(--xcb6ye-surface)}
.hc .matcher label{display:block;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.hc select{width:100%;min-height:44px;margin-top:.25rem;padding:.45rem;font:inherit;border:1px solid var(--xcb6ye-border);background:var(--xcb6ye-bg);color:var(--xcb6ye-text)}
.hc .cta{grid-column:1/-1;display:grid;place-items:center;min-height:44px;background:var(--xcb6ye-ink);color:var(--xcb6ye-surface);text-decoration:none}
.hc .cta:hover{background:var(--xcb6ye-accent)}
.hc .note{margin:1rem 0 0;font-size:.85rem;line-height:1.5;color:var(--xcb6ye-slate)}
.hc .note a{color:var(--xcb6ye-ink)}
.hc .conditions,.hc figure{margin:0;border:1px solid var(--xcb6ye-border);background:var(--xcb6ye-surface)}
.hc .head{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;padding:.7rem 1rem;border-bottom:1px solid var(--xcb6ye-border)}
.hc h2{margin:0;font-size:.94rem}
.hc .chip{background:var(--xcb6ye-accent);color:#fff;font-size:11px;text-transform:uppercase;padding:.15rem .4rem}
.hc table{width:100%;border-collapse:collapse;font-size:.88rem}
.hc th,.hc td{padding:.55rem 1rem;text-align:right;font-weight:400}
.hc tbody tr>*{border-top:1px solid var(--xcb6ye-border)}
.hc thead th{text-align:left;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.hc tbody th{text-align:left;color:var(--xcb6ye-text)}
.hc td{font-family:'IBM Plex Mono',ui-monospace,monospace;font-variant-numeric:tabular-nums}
.hc img{display:block;width:100%;height:auto}
.hc .visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.hc :focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
@media(max-width:1023px){.hc .grid{grid-template-columns:1fr}.hc .panel{border-left:0;border-top:1px solid var(--xcb6ye-border);padding:1.5rem 0 0}}
@media(max-width:639px){.hc .matcher{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.hc *{animation:none!important;transition:none!important}}
/* xcb6ye:resort-shortlist */
/* xcb6ye:resort-shortlist */
.resort-shortlist{padding:clamp(3rem,7vw,6rem) 0;background:var(--xcb6ye-bg);color:var(--xcb6ye-text)}
.shortlist-inner{max-width:72rem;margin:auto;padding:0 clamp(1rem,4vw,3rem)}
.shortlist-label,.resort-table thead th{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate);font-weight:600}
.shortlist-label{border-top:1px solid var(--xcb6ye-border);padding-top:1rem;margin:0 0 2.5rem}
.shortlist-intro{display:grid;grid-template-columns:7fr 5fr;gap:2rem;align-items:end;margin-bottom:2.5rem}
.intro-copy h2{margin:0 0 .6rem;font-size:clamp(1.5rem,3vw,2.25rem);letter-spacing:-.02em;line-height:1.1}
.intro-copy p{margin:0;max-width:56ch;line-height:1.6;color:var(--xcb6ye-slate)}
.intro-figure{margin:0}
.intro-figure img{display:block;width:100%;height:auto;object-fit:cover}
.resort-table{width:100%;border-collapse:collapse;font-size:.9375rem}
.resort-table th,.resort-table td{padding:.8rem .6rem;border-top:1px solid var(--xcb6ye-border);text-align:left}
.num{font-family:'IBM Plex Mono',ui-monospace,monospace;font-variant-numeric:tabular-nums;text-align:right;white-space:nowrap}
.resort-toggle{display:inline-flex;align-items:center;gap:.5rem;min-height:44px;border:0;padding:0;background:none;font:inherit;font-weight:600;color:var(--xcb6ye-ink);cursor:pointer}
.resort-toggle::before{content:"›";color:var(--xcb6ye-accent)}
.resort-toggle[aria-expanded=true]::before{transform:rotate(90deg)}
.detail-cell p,.footnote{margin:0 0 .5rem;font-size:.875rem;line-height:1.55;color:var(--xcb6ye-slate)}
.detail-link{color:var(--xcb6ye-accent);font-weight:600}
.resort-shortlist :focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
@media(max-width:768px){.shortlist-intro{grid-template-columns:1fr}.col-transfer{display:none}.resort-table th,.resort-table td{padding:.7rem .4rem;font-size:.875rem}}
@media(prefers-reduced-motion:reduce){.resort-toggle::before{transition:none}}
/* xcb6ye:selection-method */
/* xcb6ye:selection-method */
#selection-method{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);padding:clamp(3rem,8vw,7rem) clamp(1rem,4vw,3rem);font-family:'Segoe UI',Candara,'Gill Sans',sans-serif}
#selection-method .method-inner{max-width:72rem;margin:0 auto}
#selection-method .method-rule{height:1px;background:var(--xcb6ye-ink);opacity:.12}
#selection-method .method-label{margin:12px 0 0;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#selection-method .method-grid{display:grid;grid-template-columns:7fr 5fr;gap:clamp(1.5rem,4vw,3rem);margin-top:clamp(2rem,5vw,3.5rem)}
#selection-method .method-title{margin:0 0 1rem;font-family:Optima,'Segoe UI',Candara,sans-serif;font-size:clamp(1.5rem,3vw,2.5rem);line-height:1.12;letter-spacing:-.02em;color:var(--xcb6ye-ink);text-wrap:balance}
#selection-method .method-lead{max-width:78ch;margin:0 0 2rem;font-size:1rem;line-height:1.65;color:var(--xcb6ye-text)}
#selection-method .method-steps{list-style:none;margin:0;padding:0;border-top:1px solid var(--xcb6ye-border)}
#selection-method .method-step{display:grid;grid-template-columns:3rem 1fr;gap:0 1rem;padding:1.25rem 0;border-bottom:1px solid var(--xcb6ye-border)}
#selection-method .step-num{font-family:'IBM Plex Mono',Consolas,monospace;font-size:.8125rem;letter-spacing:.08em;color:var(--xcb6ye-accent);font-variant-numeric:tabular-nums}
#selection-method .method-step h3{margin:0 0 .35rem;font-size:1.0625rem;font-weight:600;color:var(--xcb6ye-ink)}
#selection-method .method-step p{margin:0;max-width:62ch;font-size:.9375rem;line-height:1.6;color:var(--xcb6ye-text)}
#selection-method .fn-ref a{color:var(--xcb6ye-accent);text-decoration:none;font-variant-numeric:tabular-nums}
#selection-method .method-footnote{margin:1.5rem 0 0;max-width:70ch;font-size:.8125rem;line-height:1.55;color:var(--xcb6ye-slate)}
#selection-method .fn-mark{color:var(--xcb6ye-accent);font-family:'IBM Plex Mono',Consolas,monospace;margin-right:.4rem}
#selection-method .method-panel{border-left:1px solid var(--xcb6ye-border);padding-left:clamp(1rem,3vw,2rem)}
#selection-method .method-figure{margin:0 0 1.5rem;border:1px solid var(--xcb6ye-border);background:var(--xcb6ye-surface)}
#selection-method .method-figure img{display:block;width:100%;height:auto}
#selection-method .method-scale{width:100%;border-collapse:collapse;font-variant-numeric:tabular-nums}
#selection-method .method-scale caption{text-align:left;margin-bottom:.65rem;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#selection-method .method-scale th{text-align:left;padding:.4rem 0;font-size:.75rem;font-weight:600;color:var(--xcb6ye-slate);border-bottom:1px solid var(--xcb6ye-ink)}
#selection-method .method-scale th:first-child{width:3.5rem}
#selection-method .method-scale td{padding:.55rem 0;font-size:.875rem;border-bottom:1px solid var(--xcb6ye-border);color:var(--xcb6ye-text)}
#selection-method .method-scale .num{font-family:'IBM Plex Mono',Consolas,monospace;color:var(--xcb6ye-ink)}
#selection-method .method-link{display:inline-block;margin-top:1.25rem;padding-bottom:2px;font-size:.875rem;font-weight:600;color:var(--xcb6ye-ink);text-decoration:none;border-bottom:1px solid var(--xcb6ye-accent)}
#selection-method a:hover{color:var(--xcb6ye-accent)}
#selection-method a:focus-visible,#selection-method .method-link:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:3px}
#selection-method ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media (max-width:1023px){#selection-method .method-grid{grid-template-columns:1fr}
#selection-method .method-panel{border-left:0;border-top:1px solid var(--xcb6ye-border);padding-left:0;padding-top:1.5rem}}
@media (prefers-reduced-motion:reduce){#selection-method *{transition:none!important;animation:none!important}}
/* xcb6ye:trip-anatomy */
/* xcb6ye:trip-anatomy */
.trip-anatomy{padding:clamp(3rem,8vw,7rem) 0;background:var(--xcb6ye-bg);color:var(--xcb6ye-text)}
.trip-anatomy .ledger-wrap{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem)}
.trip-anatomy .section-rule{margin:0;border:0;border-top:1px solid var(--xcb6ye-border)}
.trip-anatomy .section-label{margin:.75rem 0 0;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.trip-anatomy h2{margin:.6rem 0 0;font-family:Optima,Candara,sans-serif;font-size:clamp(1.5rem,3vw,2.5rem);line-height:1.1;letter-spacing:-.02em;max-width:22ch;text-wrap:balance}
.trip-anatomy .ledger-deck{margin:.9rem 0 0;max-width:62ch;line-height:1.6;color:var(--xcb6ye-slate)}
.trip-anatomy .ledger-grid{display:grid;gap:clamp(1.5rem,4vw,3rem);margin-top:clamp(1.5rem,4vw,3rem)}
.trip-anatomy table{width:100%;border-collapse:collapse;font-variant-numeric:tabular-nums}
.trip-anatomy th{text-align:left;font-weight:500;padding:.75rem 1rem .75rem 0;border-bottom:1px solid var(--xcb6ye-border);vertical-align:top}
.trip-anatomy td{padding:.75rem 0 .75rem 1rem;text-align:right;border-bottom:1px solid var(--xcb6ye-border);font-family:'IBM Plex Mono',Menlo,Consolas,monospace;white-space:nowrap}
.trip-anatomy .detail{display:block;margin-top:.15rem;font-size:.8125rem;font-weight:400;color:var(--xcb6ye-slate)}
.trip-anatomy .subtotal th,.trip-anatomy .subtotal td,.trip-anatomy .total th,.trip-anatomy .total td{border-top:2px solid var(--xcb6ye-ink);border-bottom:0;padding-top:1.25rem;font-weight:600}
.trip-anatomy .total th,.trip-anatomy .total td{font-size:1.125rem;font-weight:700}
.trip-anatomy .total td{color:var(--xcb6ye-accent)}
.trip-anatomy figure{margin:0}
.trip-anatomy img{display:block;width:100%;height:auto;border:1px solid var(--xcb6ye-border)}
.trip-anatomy figcaption,.trip-anatomy .ledger-notes{color:var(--xcb6ye-slate);font-size:.8125rem;line-height:1.7}
.trip-anatomy .chip{display:inline-block;margin:1rem 0 0;padding:.3rem .6rem;border:1px solid var(--xcb6ye-accent);color:var(--xcb6ye-accent);font-size:11px;letter-spacing:.12em;text-transform:uppercase}
.trip-anatomy .aside-note{margin:.8rem 0 0;font-size:.875rem;line-height:1.6}
.trip-anatomy .ledger-notes{margin:clamp(2rem,5vw,3.5rem) 0 0;padding-left:1.25rem;max-width:78ch}
.trip-anatomy a{color:var(--xcb6ye-ink);text-underline-offset:3px}
.trip-anatomy a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
.trip-anatomy ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media (min-width:1024px){.trip-anatomy .ledger-grid{grid-template-columns:7fr 5fr}}
@media (prefers-reduced-motion:reduce){.trip-anatomy *{transition:none!important;animation:none!important}}
/* xcb6ye:trust-protection */
/* xcb6ye:trust-protection */
#trust-protection{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif}
#trust-protection .trust-shell{max-width:72rem;margin:0 auto;padding:clamp(2.5rem,6vw,5rem) clamp(1rem,4vw,3rem)}
#trust-protection .trust-rule{border-top:1px solid var(--xcb6ye-border)}
#trust-protection .trust-label{margin:1rem 0 clamp(1.5rem,4vw,3rem);font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-primary)}
#trust-protection .trust-split{display:grid;grid-template-columns:7fr 5fr;gap:clamp(1.5rem,4vw,3rem);align-items:start}
#trust-protection .trust-title{margin:0 0 1rem;font-family:Optima,'Segoe UI',Candara,sans-serif;font-size:clamp(1.6rem,3vw,2.5rem);line-height:1.12;letter-spacing:-.02em;text-wrap:balance}
#trust-protection .trust-deck{margin:0;max-width:62ch;line-height:1.65}
#trust-protection .trust-terms{margin:clamp(1.5rem,4vw,2.5rem) 0 0}
#trust-protection .trust-term{border-top:1px solid var(--xcb6ye-border);padding:1.25rem 0}
#trust-protection .trust-term dt{font-weight:600;font-size:1.0625rem;letter-spacing:-.01em}
#trust-protection .trust-term dd{margin:.5rem 0 0;max-width:62ch;line-height:1.6}
#trust-protection a{color:var(--xcb6ye-primary);text-decoration:underline;text-underline-offset:3px}
#trust-protection a:hover{color:var(--xcb6ye-accent)}
#trust-protection a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
#trust-protection .trust-links{margin:1.75rem 0 0;line-height:1.6}
#trust-protection .trust-cta{font-weight:600}
#trust-protection .trust-panel{border:1px solid var(--xcb6ye-border);border-top:2px solid var(--xcb6ye-accent);background:var(--xcb6ye-surface)}
#trust-protection .trust-panel figure{margin:0}
#trust-protection .trust-chip{display:inline-block;margin:1rem 1rem 0;padding:.35rem .6rem;background:var(--xcb6ye-accent);color:var(--xcb6ye-primary);font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:.1em;text-transform:uppercase}
#trust-protection img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;margin-top:1rem}
#trust-protection figcaption{padding:.75rem 1rem;border-top:1px solid var(--xcb6ye-border);font-size:.75rem;line-height:1.5;color:var(--xcb6ye-text)}
#trust-protection .trust-facts{list-style:none;margin:0;padding:0 1rem 1rem}
#trust-protection .trust-facts li{display:flex;justify-content:space-between;gap:1rem;padding:.65rem 0;border-top:1px solid var(--xcb6ye-mist);font-size:.875rem}
#trust-protection .trust-facts li:first-child{border-top:0}
#trust-protection .val{font-family:'IBM Plex Mono',ui-monospace,monospace;font-variant-numeric:tabular-nums;white-space:nowrap}
#trust-protection ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-primary)}
@media (max-width:1023px){#trust-protection .trust-split{grid-template-columns:1fr}}
@media (prefers-reduced-motion:reduce){#trust-protection a{transition:none}}

/* xcb6ye:trip-form */
/* xcb6ye:trip-form */
.tf{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);padding:clamp(3rem,8vw,7rem) 0}
.tf .w{max-width:72rem;margin:auto;padding:0 clamp(1rem,4vw,3rem)}
.tf .r{height:1px;background:var(--xcb6ye-ink);opacity:.12}
.tf .e,.tf label,.tf dt{margin:0;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--xcb6ye-ink)}
.tf .e{margin-top:.75rem}
.tf .c{display:grid;grid-template-columns:5fr 7fr;gap:clamp(2rem,5vw,4.5rem);margin-top:clamp(2rem,5vw,4rem)}
.tf h2{margin:0 0 1rem;font-family:Optima,Georgia,serif;font-size:clamp(1.5rem,3vw,2.5rem);line-height:1.15;letter-spacing:-.02em;text-wrap:balance;color:var(--xcb6ye-ink)}
.tf p{margin:0 0 1.25rem;line-height:1.6}
.tf ol{list-style:none;margin:0 0 1.5rem;padding:0}
.tf li{border-top:1px solid var(--xcb6ye-border);padding:.6rem 0;font-size:.9375rem}
.tf li span{margin-right:.5rem;font-family:ui-monospace,monospace;color:var(--xcb6ye-accent)}
.tf dl{display:flex;gap:2rem;margin:0;font-size:.875rem}
.tf dd{margin:0}
.tf a{color:var(--xcb6ye-ink);text-underline-offset:3px}
.tf form{background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);padding:clamp(1.25rem,3vw,2.25rem)}
.tf .g{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.tf .fd{grid-column:1/-1}
.tf label{display:block;margin-bottom:.35rem}
.tf input,.tf select,.tf textarea{width:100%;min-height:44px;padding:.6rem .75rem;font:inherit;color:var(--xcb6ye-text);background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);border-radius:1px}
.tf textarea{min-height:96px}
.tf :focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:1px}
.tf ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
.tf .n{margin:.75rem 0 0;padding-top:.6rem;border-top:1px solid var(--xcb6ye-border);font-family:ui-monospace,monospace;font-size:.8125rem;color:var(--xcb6ye-text);display:flex;justify-content:space-between;gap:1rem}
.tf button{width:100%;min-height:48px;margin-top:1.25rem;font:inherit;letter-spacing:.04em;text-transform:uppercase;color:var(--xcb6ye-surface);background:var(--xcb6ye-ink);border:1px solid var(--xcb6ye-ink);border-radius:1px;cursor:pointer;transition:background .18s ease,border-color .18s ease}
.tf button:hover{background:var(--xcb6ye-accent);border-color:var(--xcb6ye-accent)}
.tf small{display:block;margin-top:.75rem;font-size:.8125rem;color:var(--xcb6ye-text)}
@media(max-width:1023px){.tf .c{grid-template-columns:1fr}}
@media(max-width:639px){.tf .g{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.tf *{transition:none}}
/* xcb6ye:destinations-hero */
/* xcb6ye:destinations-hero */
#destinations-hero{--rule:rgba(18,23,26,.12);background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:"Segoe UI",Candara,sans-serif;padding:clamp(2rem,5vw,3.5rem) clamp(1rem,4vw,3rem) clamp(3rem,7vw,6rem)}
#destinations-hero ::selection{background:var(--xcb6ye-accent);color:#fff}
#destinations-hero :focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
#destinations-hero .hero-rule{height:1px;background:var(--rule);margin-bottom:clamp(2rem,5vw,4rem)}
#destinations-hero .hero-inner{max-width:72rem;margin:0 auto;display:grid;grid-template-columns:7fr 5fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:start}
#destinations-hero .hero-copy{border-right:1px solid var(--rule)}
#destinations-hero .hero-label{margin:0 0 1rem;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#destinations-hero h1{margin:0 0 1.2rem;font-size:clamp(2.25rem,4.6vw,4rem);line-height:1.06;letter-spacing:-.02em;font-weight:600;max-width:22ch;text-wrap:balance;color:var(--xcb6ye-ink)}
#destinations-hero h2{margin:0;font-size:.9375rem;color:var(--xcb6ye-ink)}
#destinations-hero .hero-deck{margin:0 0 1.75rem;line-height:1.6;max-width:58ch}
#destinations-hero .hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:2rem}
#destinations-hero .btn{display:inline-flex;align-items:center;min-height:44px;padding:.7rem 1.2rem;font-size:.875rem;font-weight:600;text-decoration:none;border:1px solid var(--xcb6ye-ink);border-radius:2px;color:var(--xcb6ye-ink)}
#destinations-hero .btn-solid{background:var(--xcb6ye-ink);color:var(--xcb6ye-surface)}
#destinations-hero .btn-solid:hover,#destinations-hero .btn-solid:focus-visible{background:var(--xcb6ye-accent);border-color:var(--xcb6ye-accent);color:#fff}
#destinations-hero .btn-ghost:hover,#destinations-hero .btn-ghost:focus-visible{background:var(--xcb6ye-mist)}
#destinations-hero figure{margin:0}
#destinations-hero img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border-radius:2px}
#destinations-hero figcaption{margin-top:.6rem;font-size:.8125rem;color:var(--xcb6ye-slate)}
#destinations-hero .conditions-head{display:flex;justify-content:space-between;gap:1rem;border-bottom:1px solid var(--rule);padding-bottom:.75rem}
#destinations-hero .chip{background:var(--xcb6ye-accent);color:#fff;font-size:10px;letter-spacing:.12em;text-transform:uppercase;padding:.3rem .5rem;border-radius:2px}
#destinations-hero table{width:100%;border-collapse:collapse;font-family:"IBM Plex Mono",Menlo,monospace;font-variant-numeric:tabular-nums;font-size:.8125rem}
#destinations-hero th,#destinations-hero td{text-align:right;padding:.6rem 0;border-bottom:1px solid var(--rule);font-weight:400}
#destinations-hero th:first-child{text-align:left;color:var(--xcb6ye-ink)}
#destinations-hero thead th{font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#destinations-hero .score{display:flex;justify-content:space-between;margin:1rem 0 .5rem;font-size:.8125rem}
#destinations-hero .score-value{font-family:"IBM Plex Mono",Menlo,monospace;font-weight:600}
#destinations-hero .conditions-note{margin:0;font-size:.75rem;line-height:1.5;color:var(--xcb6ye-slate)}
#destinations-hero .conditions-note a{color:var(--xcb6ye-ink)}
@media(max-width:1023px){#destinations-hero .hero-inner{grid-template-columns:1fr}#destinations-hero .hero-copy{border-right:0;border-bottom:1px solid var(--rule);padding-bottom:2rem;margin-bottom:2rem}}
/* xcb6ye:resort-table */
/* xcb6ye:resort-table */
.resort-table{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;padding:clamp(3rem,7vw,6rem) clamp(1rem,4vw,3rem)}
.resort-inner{max-width:72rem;margin:0 auto}
.rlabel{margin:0 0 clamp(1.5rem,4vw,2.5rem);padding-top:.75rem;border-top:1px solid var(--xcb6ye-border);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.rintro{display:grid;grid-template-columns:1.5fr 1fr;gap:clamp(1.5rem,4vw,3rem);margin-bottom:clamp(2rem,5vw,3rem)}
.rintro h2{margin:0 0 .6rem;font-family:Optima,'Segoe UI',Candara,sans-serif;font-size:clamp(1.5rem,3vw,2.25rem);letter-spacing:-.02em;text-wrap:balance}
.rintro p{margin:0;max-width:54ch;color:var(--xcb6ye-slate)}
.rfig{margin:0}
.rfig img{display:block;width:100%;height:auto;border:1px solid var(--xcb6ye-border)}
.rhead,.rtoggle{display:grid;grid-template-columns:minmax(6rem,1.3fr) .9fr 1.15fr .55fr .6fr 1.25rem;gap:1rem;align-items:center;text-align:left}
.rhead{padding-bottom:.6rem;border-bottom:1px solid var(--xcb6ye-border);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.rhead .n,.rtoggle .n{font-family:'IBM Plex Mono',ui-monospace,Menlo,monospace;font-variant-numeric:tabular-nums;text-align:right}
.resort-list{list-style:none;margin:0;padding:0}
.rrow{border-bottom:1px solid var(--xcb6ye-border)}
.rtoggle{width:100%;padding:.9rem 0;background:none;border:0;font:inherit;color:var(--xcb6ye-text);cursor:pointer}
.rtoggle:hover{color:var(--xcb6ye-accent)}
.rtoggle:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
.rname{font-weight:600}
.rchev{width:8px;height:8px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);justify-self:end;transition:transform .2s ease}
.rtoggle[aria-expanded="true"] .rchev{transform:rotate(225deg)}
.rpanel{padding:0 0 1.1rem;max-width:64ch}
.rpanel p{margin:0 0 .5rem;color:var(--xcb6ye-slate)}
.rcta{color:var(--xcb6ye-accent);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.rcta:hover{color:var(--xcb6ye-ink)}
.rnote{max-width:70ch;margin:clamp(1.5rem,4vw,2.5rem) 0 0;font-size:.8125rem;color:var(--xcb6ye-slate)}
.rnote a{color:var(--xcb6ye-ink)}
.resort-table ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media (max-width:768px){.rintro{grid-template-columns:1fr}.rhead{display:none}.rtoggle{display:flex;flex-wrap:wrap;gap:.35rem 1rem;align-items:baseline}.rname{order:1;flex:1 1 55%}.rchev{order:2}.rtoggle .n,.rtoggle>span:not(.rname):not(.rchev){order:3;font-size:.8125rem;text-align:left}}
@media (prefers-reduced-motion:reduce){.rchev{transition:none}}
/* xcb6ye:docs-checklist */
/* xcb6ye:docs-checklist */
.docs-checklist{--r:1px solid var(--xcb6ye-border);background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:'Segoe UI',Candara,sans-serif;padding:clamp(3rem,7vw,6rem) clamp(1.5rem,9vw,8rem)}
.docs-checklist__label,.docs-entry__field{display:block;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.docs-checklist__label{border-top:var(--r);padding-top:1rem;margin:0 0 3rem}
.docs-checklist__intro{display:grid;grid-template-columns:7fr 5fr;gap:2rem;align-items:end;margin-bottom:3rem}
.docs-checklist__title{font-size:clamp(1.5rem,3vw,2.5rem);line-height:1.1;letter-spacing:-.02em;margin:0 0 .75rem;text-wrap:balance}
.docs-checklist__deck,.docs-checklist__note{margin:0;max-width:68ch;color:var(--xcb6ye-slate);line-height:1.6}
.docs-checklist__note{margin-top:2.5rem;font-size:.875rem}
.docs-checklist figure{margin:0}
.docs-checklist img{display:block;width:100%;height:auto;border:var(--r)}
.docs-checklist__list{margin:0;border-top:var(--r)}
.docs-entry{display:grid;grid-template-columns:10rem 1fr;gap:1.5rem;padding:1.5rem 0;border-bottom:var(--r)}
.docs-entry__code{display:block;font-family:monospace;font-size:1.5rem;font-weight:600}
.docs-entry__country{color:var(--xcb6ye-slate)}
.docs-entry__body{margin:0;display:flex;flex-wrap:wrap;gap:1rem 1.5rem}
.docs-entry__row{flex:1 1 14rem}
.docs-entry__field{margin-bottom:.3rem}
.docs-entry__value{display:block;font-size:.9375rem;line-height:1.5}
.docs-entry__value--num{font-family:monospace;font-variant-numeric:tabular-nums}
.docs-checklist a{color:var(--xcb6ye-ink)}
.docs-checklist a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:3px}
.docs-checklist ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media(max-width:900px){.docs-checklist__intro,.docs-entry{grid-template-columns:1fr}}
/* xcb6ye:snow-report */
/* xcb6ye:snow-report */
#snow-report{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;padding:clamp(3rem,8vw,7rem) clamp(1rem,4vw,3rem)}
#snow-report *{box-sizing:border-box}
#snow-report .snow-report__inner{max-width:72rem;margin:0 auto;border-top:1px solid var(--xcb6ye-border);padding-top:1.25rem}
#snow-report .snow-report__label{margin:0 0 1.75rem;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#snow-report .snow-report__head{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:space-between;align-items:flex-start}
#snow-report h2{font-family:Optima,'Segoe UI',Candara,sans-serif;font-size:clamp(1.5rem,3vw,2.5rem);letter-spacing:-.02em;line-height:1.1;margin:0 0 .75rem;max-width:26ch;text-wrap:balance}
#snow-report .snow-report__deck{margin:0 0 2.5rem;max-width:78ch;color:var(--xcb6ye-slate)}
#snow-report .snow-report__chip{margin:0;background:var(--xcb6ye-accent);color:var(--xcb6ye-surface);font-size:11px;letter-spacing:.12em;text-transform:uppercase;padding:.45rem .6rem;border-radius:0}
#snow-report .snow-report__figure{margin:0 0 2.5rem}
#snow-report .snow-report__figure img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border:1px solid var(--xcb6ye-border)}
#snow-report figcaption{margin-top:.5rem;font-size:.8125rem;color:var(--xcb6ye-slate)}
#snow-report .snow-report__scroll{overflow-x:auto}
#snow-report .snow-table{width:100%;min-width:40rem;border-collapse:collapse;font-family:'IBM Plex Mono',ui-monospace,Menlo,Consolas,monospace;font-variant-numeric:tabular-nums;font-size:.9375rem}
#snow-report .snow-table th{text-align:right;padding:.6rem .5rem;border-bottom:1px solid var(--xcb6ye-ink);font-family:'Segoe UI',Candara,sans-serif;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--xcb6ye-slate);white-space:nowrap}
#snow-report .snow-table td{text-align:right;padding:.7rem .5rem;border-bottom:1px solid var(--xcb6ye-border);white-space:nowrap}
#snow-report .snow-table tr>*:first-child{text-align:left;font-family:'Segoe UI',Candara,sans-serif;font-weight:600;color:var(--xcb6ye-ink)}
#snow-report .snow-table tbody tr:hover{background:var(--xcb6ye-surface)}
#snow-report .snow-report__foot{margin-top:1.75rem;border-top:2px solid var(--xcb6ye-ink);padding-top:1.25rem;max-width:78ch;font-size:.8125rem;color:var(--xcb6ye-slate)}
#snow-report .snow-report__foot p{margin:0 0 .6rem}
#snow-report .snow-report__foot strong{color:var(--xcb6ye-ink)}
#snow-report a{color:var(--xcb6ye-accent);text-decoration:underline;text-underline-offset:2px}
#snow-report a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
#snow-report ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media (max-width:640px){#snow-report .snow-table{font-size:.875rem}#snow-report .snow-report__figure img{aspect-ratio:16/9}}
/* xcb6ye:pricing-hero */
/* xcb6ye:pricing-hero */
#pricing-hero{max-width:72rem;margin:0 auto;padding:1rem clamp(1rem,4vw,3rem) 4rem;background:var(--xcb6ye-bg);color:var(--xcb6ye-text)}
#pricing-hero .label{margin:0 0 2rem;padding-top:1rem;border-top:1px solid var(--xcb6ye-border);font-size:11px;letter-spacing:.12em;color:var(--xcb6ye-slate)}
#pricing-hero .layout{display:grid;grid-template-columns:7fr 5fr;gap:clamp(1.5rem,3vw,3rem)}
#pricing-hero .title{margin:0 0 1rem;font-family:Optima,Georgia,serif;font-size:clamp(2.25rem,4.4vw,3.5rem);line-height:1.05;letter-spacing:-.02em}
#pricing-hero .deck{margin:0 0 1.5rem;max-width:56ch;line-height:1.6}
#pricing-hero .list{list-style:none;margin:0 0 1.75rem;padding:0;font-size:.9375rem}
#pricing-hero .list li{padding:.5rem 0;border-top:1px solid var(--xcb6ye-border)}
#pricing-hero .actions{display:flex;flex-wrap:wrap;gap:.75rem}
#pricing-hero .btn{display:inline-flex;align-items:center;min-height:44px;padding:0 1.25rem;font-weight:600;text-decoration:none;background:var(--xcb6ye-ink);color:var(--xcb6ye-surface)}
#pricing-hero .btn--ghost{background:var(--xcb6ye-surface);color:var(--xcb6ye-ink);border:1px solid var(--xcb6ye-ink)}
#pricing-hero .panel{border:1px solid var(--xcb6ye-border);background:var(--xcb6ye-surface);padding:1.25rem}
#pricing-hero .panel img{display:block;width:100%;height:auto;margin-bottom:1rem}
#pricing-hero .panel p{margin:0 0 .5rem}
@media(max-width:900px){#pricing-hero .layout{grid-template-columns:1fr}}
/* xcb6ye:price-ledger */
/* xcb6ye:price-ledger */
#price-ledger{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;padding:clamp(3rem,8vw,7rem) clamp(1rem,4vw,3rem)}
#price-ledger .ledger-inner{max-width:72rem;margin:0 auto}
#price-ledger .ledger-label{margin:0 0 clamp(2rem,5vw,4rem);padding-top:1rem;border-top:1px solid var(--xcb6ye-border);font-size:11px;line-height:1;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#price-ledger .ledger-split{display:grid;grid-template-columns:minmax(0,7fr) minmax(0,5fr);gap:clamp(2rem,4vw,4rem)}
#price-ledger h2{margin:0 0 1rem;font-family:Optima,'Segoe UI',Candara,'Gill Sans',sans-serif;font-size:clamp(1.5rem,3vw,2.5rem);font-weight:600;letter-spacing:-.02em;line-height:1.15;text-wrap:balance}
#price-ledger .ledger-deck{margin:0 0 2rem;max-width:60ch;font-size:1rem;line-height:1.6;color:var(--xcb6ye-text)}
#price-ledger .ledger-table{width:100%;border-collapse:collapse;font-variant-numeric:tabular-nums}
#price-ledger .ledger-table caption{text-align:left;padding-bottom:.9rem;font-size:.8125rem;color:var(--xcb6ye-slate)}
#price-ledger .ledger-table th,#price-ledger .ledger-table td{padding:.85rem 0;vertical-align:baseline}
#price-ledger .ledger-table thead th{border-bottom:1px solid var(--xcb6ye-border);font-size:11px;letter-spacing:.12em;text-transform:uppercase;font-weight:600;color:var(--xcb6ye-slate)}
#price-ledger .ledger-table thead th:last-child{text-align:right}
#price-ledger .ledger-table tbody th{text-align:left;font-weight:400;font-size:1rem}
#price-ledger .ledger-table tbody td{text-align:right;font-family:'IBM Plex Mono',ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-variant-numeric:tabular-nums;white-space:nowrap}
#price-ledger .ledger-subtotal th,#price-ledger .ledger-subtotal td{border-top:2px solid var(--xcb6ye-ink);padding-top:1rem;font-weight:700;color:var(--xcb6ye-ink)}
#price-ledger .ledger-subtotal td{font-size:1.125rem}
#price-ledger .ledger-note{margin:1.25rem 0 0;max-width:62ch;font-size:.875rem;line-height:1.6;color:var(--xcb6ye-slate)}
#price-ledger .ledger-aside{display:flex;flex-direction:column;gap:1.75rem}
#price-ledger .ledger-figure{margin:0}
#price-ledger .ledger-figure img{display:block;width:100%;height:auto;border:1px solid var(--xcb6ye-border)}
#price-ledger .ledger-figure figcaption{margin-top:.6rem;font-size:.8125rem;line-height:1.5;color:var(--xcb6ye-slate)}
#price-ledger .ledger-notes{margin:0;padding-left:1.25rem;display:grid;gap:.85rem;font-size:.875rem;line-height:1.6;color:var(--xcb6ye-text)}
#price-ledger .ledger-notes li::marker{font-family:'IBM Plex Mono',ui-monospace,Menlo,monospace;color:var(--xcb6ye-slate)}
#price-ledger a{color:var(--xcb6ye-text);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}
#price-ledger .ledger-link{display:inline-block;align-self:flex-start;min-height:44px;padding:.6rem 0;font-size:.875rem;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;border-bottom:2px solid var(--xcb6ye-ink)}
#price-ledger a:hover{border-bottom-color:var(--xcb6ye-accent);color:var(--xcb6ye-ink)}
#price-ledger a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:3px}
#price-ledger ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media (max-width:1024px){#price-ledger .ledger-split{grid-template-columns:1fr;gap:clamp(2rem,5vw,3rem)}}
@media (max-width:640px){#price-ledger .ledger-table thead th:first-child{font-size:10px}}
@media (prefers-reduced-motion:reduce){#price-ledger *{transition:none!important;animation:none!important}}
/* xcb6ye:cost-estimator */
/* xcb6ye:cost-estimator */
#cost-estimator{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);padding:clamp(3rem,8vw,7rem) clamp(1rem,4vw,3rem)}
#cost-estimator .inner{max-width:72rem;margin:auto}
#cost-estimator .label{margin:0 0 2rem;padding-top:1rem;border-top:1px solid var(--xcb6ye-border);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#cost-estimator .grid{display:grid;grid-template-columns:7fr 5fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
#cost-estimator h2{margin:0 0 .6rem;font-size:clamp(1.5rem,3vw,2.25rem);letter-spacing:-.02em;text-wrap:balance}
#cost-estimator .deck,#cost-estimator .note{margin:0 0 1.75rem;color:var(--xcb6ye-slate);font-size:.9rem;line-height:1.6}
#cost-estimator .note{margin:1rem 0 0;font-size:.78rem}
#cost-estimator .note a{color:var(--xcb6ye-ink)}
#cost-estimator .fields{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem 1.5rem}
#cost-estimator label{display:block;margin-bottom:.4rem;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--xcb6ye-slate)}
#cost-estimator select,#cost-estimator input{width:100%;min-height:44px;padding:.6rem .7rem;border:1px solid var(--xcb6ye-border);background:var(--xcb6ye-surface);color:var(--xcb6ye-ink);font:inherit}
#cost-estimator :focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
#cost-estimator .ledger{margin-top:2rem;border-top:1px solid var(--xcb6ye-ink)}
#cost-estimator h3{margin:0;padding:.7rem 0 .5rem;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate);font-weight:400}
#cost-estimator .row{display:flex;justify-content:space-between;gap:1rem;padding:.55rem 0;border-bottom:1px solid var(--xcb6ye-border);font-size:.9rem}
#cost-estimator .row span:last-child{font-family:ui-monospace,Menlo,Consolas,monospace;font-variant-numeric:tabular-nums}
#cost-estimator .row.total{border-top:2px solid var(--xcb6ye-ink);border-bottom:0;padding-top:.7rem;font-weight:600}
#cost-estimator .row.grand span:last-child{color:var(--xcb6ye-accent);font-size:1.1rem;font-weight:600}
#cost-estimator button{margin-top:1.5rem;min-height:48px;padding:.85rem 1.6rem;border:1px solid var(--xcb6ye-primary);background:var(--xcb6ye-primary);color:var(--xcb6ye-surface);font:inherit;font-size:.95rem;cursor:pointer}
#cost-estimator button:hover{box-shadow:inset 0 0 0 2px var(--xcb6ye-accent)}
#cost-estimator aside{border-left:1px solid var(--xcb6ye-border);padding-left:clamp(1rem,2vw,2rem)}
#cost-estimator ul{list-style:none;margin:1rem 0 0;padding:0;display:grid;gap:.9rem;font-size:.9rem;line-height:1.5}
#cost-estimator li{position:relative;padding-left:1rem}
#cost-estimator li::before{content:"";position:absolute;left:0;top:.55em;width:5px;height:5px;background:var(--xcb6ye-ink)}
#cost-estimator ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
@media(max-width:1024px){#cost-estimator .grid{grid-template-columns:1fr}#cost-estimator aside{border-left:0;padding:1.5rem 0 0;border-top:1px solid var(--xcb6ye-border)}}
@media(max-width:640px){#cost-estimator .fields{grid-template-columns:1fr}}
/* xcb6ye:booking-terms */
/* xcb6ye:booking-terms */
#booking-terms{background:var(--xcb6ye-bg);color:var(--xcb6ye-text);padding:clamp(3rem,6vw,4.5rem) 0;line-height:1.6}
.terms-shell{max-width:72rem;margin:auto;padding:0 clamp(1rem,4vw,3rem)}
.terms-title{font-family:Optima,serif;font-size:clamp(1.6rem,3vw,2.35rem);line-height:1.1;letter-spacing:-.02em;margin:0 0 .8rem;max-width:24ch;text-wrap:balance}
.terms-lede{margin:0 0 3rem;max-width:60ch}
.terms-grid{display:grid;gap:3rem}
@media(min-width:1024px){.terms-grid{grid-template-columns:minmax(0,7fr) minmax(0,5fr)}}
.terms-label,.terms-list strong,.refund-table thead th{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.terms-label{border-top:1px solid var(--xcb6ye-border);padding-top:.9rem;margin:0 0 2rem}
.terms-block,.terms-links,.terms-list li,.refund-table th,.refund-table td{border-top:1px solid var(--xcb6ye-border)}
.terms-block{padding-top:1.1rem;margin-bottom:2rem}
.terms-links{margin:3rem 0 0;padding-top:1rem;font-size:.9rem}
.refund-table{width:100%;border-collapse:collapse;font-variant-numeric:tabular-nums}
.refund-table th,.refund-table td{padding:.7rem .5rem;text-align:left;font-size:.9rem}
.refund-table tr>:last-child{text-align:right;font-family:monospace;font-weight:600}
.terms-list{list-style:none;margin:0;padding:0}
.terms-list li{padding:.7rem 0;font-size:.9rem}
.terms-list li:first-child{border-top:0;padding-top:0}
.terms-list strong{display:block;margin-bottom:.2rem}
.terms-note,.terms-figure figcaption{font-size:.8rem;color:var(--xcb6ye-slate);margin:.8rem 0 0}
.terms-figure img{display:block;width:100%;height:auto;margin-top:2rem;border:1px solid var(--xcb6ye-border)}
#booking-terms a{color:var(--xcb6ye-ink);text-decoration:underline;text-underline-offset:3px}
#booking-terms a:hover{color:var(--xcb6ye-accent)}
#booking-terms a:focus-visible{outline:2px solid var(--xcb6ye-accent);outline-offset:2px}
#booking-terms ::selection{background:var(--xcb6ye-accent);color:var(--xcb6ye-surface)}
body{margin:0;background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:var(--xcb6ye-font);line-height:1.6}
.policy-page{max-width:800px;margin:2rem auto;padding:2rem;background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);border-radius:1px}
.policy-header h1{font-family:var(--xcb6ye-font-display);color:var(--xcb6ye-primary);font-size:2rem;margin:0 0 .5rem}
.policy-updated{color:var(--xcb6ye-secondary);font-size:.875rem;margin:0 0 1.5rem}
.policy-content h2{font-family:var(--xcb6ye-font-display);color:var(--xcb6ye-primary);font-size:1.25rem;margin:1.5rem 0 .5rem;padding-bottom:.25rem;border-bottom:1px solid var(--xcb6ye-border)}
.policy-content p{margin:0 0 1rem}
.policy-footer{margin-top:2rem;padding-top:1rem;border-top:1px solid var(--xcb6ye-border);font-size:.875rem;color:var(--xcb6ye-slate)}
a{color:var(--xcb6ye-accent);text-decoration:underline}
.policy-page{max-width:820px;margin:0 auto;padding:48px 20px 64px;background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:var(--xcb6ye-font);font-size:16px;line-height:1.65}
.policy-header{border-bottom:2px solid var(--xcb6ye-accent);padding-bottom:24px;margin-bottom:32px}
.policy-header h1{font-family:var(--xcb6ye-font-display);font-size:34px;line-height:1.2;margin:0 0 12px;color:var(--xcb6ye-primary);letter-spacing:-.01em}
.policy-lede{margin:0;color:var(--xcb6ye-slate);font-size:17px}
.policy-section{background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);border-radius:2px;padding:24px;margin-bottom:20px}
.policy-section h2{font-family:var(--xcb6ye-font-display);font-size:20px;margin:0 0 12px;color:var(--xcb6ye-ink)}
.policy-section p{margin:0 0 12px}
.policy-section p:last-child{margin-bottom:0}
.policy-table{width:100%;border-collapse:collapse;margin:12px 0;font-size:15px}
.policy-table th,.policy-table td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--xcb6ye-border)}
.policy-table th{background:var(--xcb6ye-bg);color:var(--xcb6ye-primary);font-weight:600}
.policy-list{margin:0;padding-left:20px}
.policy-list li{margin-bottom:6px;font-size:15px}
.policy-form{display:block;margin:0 0 12px}
.policy-form label{display:block;margin:12px 0 6px;font-weight:600;color:var(--xcb6ye-ink)}
.policy-form input{width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid var(--xcb6ye-border);border-radius:1px;background:var(--xcb6ye-surface);font-family:inherit;font-size:15px;color:var(--xcb6ye-text)}
.policy-form input:focus{outline:2px solid var(--xcb6ye-accent);outline-offset:1px}
.policy-button{margin-top:20px;padding:12px 28px;border:0;border-radius:1px;background:var(--xcb6ye-accent);color:var(--xcb6ye-surface);font-family:inherit;font-size:15px;font-weight:600;cursor:pointer}
.policy-button:hover{background:var(--xcb6ye-primary)}
.policy-note{font-size:14px;color:var(--xcb6ye-slate)}
.policy-footer{border-top:1px solid var(--xcb6ye-border);padding-top:20px;margin-top:28px;font-size:14px;color:var(--xcb6ye-secondary)}
.policy-footer p{margin:0 0 6px}
:root{--xcb6ye-primary:#12171A;--xcb6ye-secondary:#8A9199;--xcb6ye-accent:#E8552B;--xcb6ye-ink:#12171A;--xcb6ye-slate:#7C848C;--xcb6ye-mist:#DCDFE2;--xcb6ye-border:#DADAD7;--xcb6ye-surface:#FFFFFF;--xcb6ye-bg:#F5F4F1;--xcb6ye-text:#171D21;--xcb6ye-font:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;--xcb6ye-font-display:Optima,'Segoe UI',Candara,'Gill Sans','Gill Sans MT',sans-serif;}
.policy-page{max-width:820px;margin:0 auto;padding:48px 24px;background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:var(--xcb6ye-font);line-height:1.65;}
.policy-hero{border-bottom:1px solid var(--xcb6ye-border);padding-bottom:24px;margin-bottom:32px;}
.policy-eyebrow{font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--xcb6ye-accent);margin:0 0 8px;}
.policy-page h1{font-family:var(--xcb6ye-font-display);font-size:34px;line-height:1.2;margin:0 0 12px;color:var(--xcb6ye-primary);font-weight:600;}
.policy-lede{margin:0;color:var(--xcb6ye-slate);font-size:17px;}
.policy-section{margin:0 0 28px;}
.policy-section h2{font-family:var(--xcb6ye-font-display);font-size:19px;margin:0 0 10px;color:var(--xcb6ye-ink);}
.policy-section p{margin:0 0 12px;}
.policy-form{display:flex;flex-direction:column;gap:8px;background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);padding:20px;margin:0 0 10px;}
.policy-form label{font-size:14px;font-weight:600;color:var(--xcb6ye-ink);}
.policy-form input,.policy-form textarea{font-family:var(--xcb6ye-font);font-size:15px;color:var(--xcb6ye-text);background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);border-radius:2px;padding:10px 12px;}
.policy-form input:focus,.policy-form textarea:focus{outline:2px solid var(--xcb6ye-accent);outline-offset:1px;}
.policy-form button{align-self:flex-start;margin-top:6px;background:var(--xcb6ye-accent);color:#fff;border:0;border-radius:2px;padding:12px 22px;font-size:15px;font-weight:600;cursor:pointer;}
.policy-form button:hover{background:var(--xcb6ye-primary);}
.policy-note{font-size:13px;color:var(--xcb6ye-slate);margin:0;}
@media (max-width:600px){.policy-page{padding:32px 16px;}.policy-page h1{font-size:26px;}}
:root{--xcb6ye-primary:#12171A;--xcb6ye-secondary:#8A9199;--xcb6ye-accent:#E8552B;--xcb6ye-ink:#12171A;--xcb6ye-slate:#7C848C;--xcb6ye-mist:#DCDFE2;--xcb6ye-border:#DADAD7;--xcb6ye-surface:#FFFFFF;--xcb6ye-bg:#F5F4F1;--xcb6ye-text:#171D21;--xcb6ye-font:'Segoe UI',Candara,'Gill Sans','Trebuchet MS',sans-serif;--xcb6ye-font-display:'Optima','Segoe UI',Candara,'Gill Sans','Gill Sans MT',sans-serif}
body{margin:0;background:var(--xcb6ye-bg);}
.policy-page{max-width:56rem;margin:0 auto;padding:2rem 1.25rem 4rem;font-family:var(--xcb6ye-font);color:var(--xcb6ye-text);line-height:1.65;}
.policy-header{border-bottom:2px solid var(--xcb6ye-accent);padding-bottom:1rem;margin-bottom:2rem;}
.policy-header h1{font-family:var(--xcb6ye-font-display);font-size:clamp(1.75rem,4vw,2.5rem);line-height:1.15;color:var(--xcb6ye-primary);margin:0 0 0.5rem;}
.policy-meta{font-size:0.875rem;color:var(--xcb6ye-slate);margin:0;}
.policy-section{background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);border-radius:1px;padding:1.5rem;margin-bottom:1.5rem;}
.policy-section h2{font-family:var(--xcb6ye-font-display);font-size:1.25rem;color:var(--xcb6ye-ink);margin:0 0 0.75rem;}
.policy-section p{margin:0 0 0.75rem;}
.policy-section ul{padding-left:1.25rem;margin:0.5rem 0 0;}
.policy-section li{margin-bottom:0.35rem;}
.policy-section a{color:var(--xcb6ye-accent);text-decoration:underline;}
.policy-contact address{font-style:normal;line-height:1.7;}
.policy-contact a{color:var(--xcb6ye-accent);}
@media(max-width:480px){.policy-page{padding:1.25rem 1rem 3rem;}.policy-section{padding:1rem;}}
.policy-page{max-width:820px;margin:0 auto;padding:48px 20px 64px;background:var(--xcb6ye-bg);color:var(--xcb6ye-text);font-family:var(--xcb6ye-font);font-size:16px;line-height:1.65}
.policy-header{padding-bottom:24px;margin-bottom:32px;border-bottom:2px solid var(--xcb6ye-border)}
.policy-header h1{font-family:var(--xcb6ye-font-display);font-size:2rem;line-height:1.2;margin:0 0 8px;color:var(--xcb6ye-primary)}
.policy-updated{font-family:ui-monospace,Menlo,Consolas,monospace;font-size:.75rem;letter-spacing:.09em;text-transform:uppercase;color:var(--xcb6ye-slate);margin:0 0 16px}
.policy-lead{margin:0;font-size:1.02rem}
.policy-section{margin:0 0 32px;padding-bottom:24px;border-bottom:1px solid var(--xcb6ye-border)}
.policy-section h2{font-family:var(--xcb6ye-font-display);font-size:1.15rem;font-weight:600;margin:0 0 12px;color:var(--xcb6ye-primary)}
.policy-section p{margin:0 0 12px}
.policy-section p:last-child{margin-bottom:0}
.policy-section ul{margin:0;padding-left:20px}
.policy-section li{margin:0 0 6px}
.policy-section li::marker{color:var(--xcb6ye-accent)}
.policy-contact{padding:24px;background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border)}
.policy-contact h2{font-family:var(--xcb6ye-font-display);font-size:1.1rem;margin:0 0 12px;color:var(--xcb6ye-primary)}
.policy-contact p{margin:0 0 6px;font-size:.94rem}
.policy-contact p:last-child{margin-bottom:0}
@media(max-width:600px){.policy-page{padding:32px 16px 48px}.policy-header h1{font-size:1.6rem}}
.thanks-page{max-width:960px;margin:0 auto;padding:48px 20px 64px;font-family:var(--xcb6ye-font);color:var(--xcb6ye-text);background:var(--xcb6ye-bg)}
.thanks-card,.thanks-contact{background:var(--xcb6ye-surface);border:1px solid var(--xcb6ye-border);border-radius:2px;padding:32px}
.thanks-eyebrow{margin:0 0 8px;font-family:var(--xcb6ye-font-display);font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--xcb6ye-accent)}
.thanks-title{margin:0 0 16px;font-family:var(--xcb6ye-font-display);font-size:32px;line-height:1.2;color:var(--xcb6ye-ink)}
.thanks-lead{margin:0 0 24px;font-size:17px;line-height:1.6;color:var(--xcb6ye-slate)}
.thanks-steps{list-style:none;margin:0 0 24px;padding:0}
.thanks-step{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-top:1px solid var(--xcb6ye-mist);line-height:1.5}
.thanks-step:last-child{border-bottom:1px solid var(--xcb6ye-mist)}
.step-num{flex:0 0 24px;height:24px;line-height:24px;text-align:center;font-family:var(--xcb6ye-font-display);font-size:12px;background:var(--xcb6ye-primary);color:var(--xcb6ye-surface);border-radius:1px}
.thanks-note{margin:0 0 24px;padding:14px 16px;background:var(--xcb6ye-bg);border-left:3px solid var(--xcb6ye-accent);font-size:14px;line-height:1.6;color:var(--xcb6ye-ink)}
.thanks-actions{margin:0}
.thanks-button{display:inline-block;padding:14px 24px;background:var(--xcb6ye-accent);color:var(--xcb6ye-surface);text-decoration:none;font-weight:600;border-radius:1px}
.thanks-button:hover{background:var(--xcb6ye-primary)}
.thanks-contact{margin-top:32px}
.contact-title{margin:0 0 16px;font-family:var(--xcb6ye-font-display);font-size:20px;color:var(--xcb6ye-ink)}
.contact-list{margin:0;padding:0}
.contact-row{display:flex;flex-wrap:wrap;gap:4px 16px;padding:10px 0;border-top:1px solid var(--xcb6ye-mist)}
.contact-row dt{flex:0 0 220px;font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:var(--xcb6ye-slate)}
.contact-row dd{flex:1 1 260px;margin:0;font-size:15px;line-height:1.55;color:var(--xcb6ye-text)}
.contact-row a{color:var(--xcb6ye-accent);text-decoration:none}
.contact-row a:hover{text-decoration:underline}
.contact-rights{margin:20px 0 0;font-size:14px;line-height:1.6;color:var(--xcb6ye-slate)}
@media(max-width:640px){.thanks-card,.thanks-contact{padding:22px}.thanks-title{font-size:26px}.contact-row dt{flex:1 1 100%}}
section[data-xcb6ye-tj0]:not([data-xcb6ye-tj0='header']):not([data-xcb6ye-tj0='footer']) { position: relative; }
section[data-xcb6ye-tj0]:not([data-xcb6ye-tj0='header']):not([data-xcb6ye-tj0='footer']) { border-top: 1px solid var(--xcb6ye-border); }
section[data-xcb6ye-tj0] [class*='grid'] > * { border-radius: 0 !important; border-color: var(--xcb6ye-border); }
section[data-xcb6ye-tj0] h2 { letter-spacing: -0.025em; }
:root {
  --xcb6ye-c-content-width: 72rem;
  --xcb6ye-c-gutter: clamp(1rem, 4vw, 3rem);
  --xcb6ye-c-measure: 65ch;
  --xcb6ye-c-heading-display: clamp(2.5rem, 6vw, 5.5rem);
}
[data-xcb6ye-dr] { scroll-margin-top: 1.5rem; }
main > section, main [data-xcb6ye-tj0] { padding-inline: var(--xcb6ye-c-gutter); }
[data-xcb6ye-dr*='article'], [data-xcb6ye-dr*='review'] { max-width: var(--xcb6ye-c-measure); }
h1 { font-size: var(--xcb6ye-c-heading-display); }
@media (max-width: 768px) { [data-xcb6ye-dr] { min-width: 0; } }