/* ============================================================
   COLORVERSE - subpage styles (loaded after style.css)
   ============================================================ */

/* ---------- page hero / breadcrumb ---------- */
.page-hero { padding: clamp(40px, 6vw, 84px) 0 clamp(28px, 4vw, 48px); position: relative; }
.page-hero.tinted { background: var(--paper-2); }
.crumbs { font-size: .9rem; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: var(--coral); }
.crumbs span { color: var(--line-2); margin: 0 8px; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: .98; max-width: 16ch; }
.page-hero .lede { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--ink-2); max-width: 56ch; margin-top: 22px; line-height: 1.5; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: .82rem; color: var(--muted); background: var(--card); border: 1px solid var(--line); padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.page-hero .eyebrow i { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- generic prose ---------- */
.prose { max-width: 70ch; }
.prose p { color: var(--ink-2); line-height: 1.75; margin: 0 0 18px; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 40px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 30px 0 10px; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 20px; display: grid; gap: 10px; }
.prose ul li { display: flex; gap: 11px; color: var(--ink-2); }
.prose ul li::before { content: '✦'; color: var(--coral); flex: 0 0 auto; }
.prose a.inline { color: var(--coral); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- split intro ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split.flip .split-media { order: -1; }
.split-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--paper-3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.tall { aspect-ratio: 3/4; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split.flip .split-media { order: 0; } }

/* ---------- tier deep-dive ---------- */
.tierx { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 56px); align-items: center; padding: clamp(34px, 5vw, 56px) 0; border-top: 1px solid var(--line); }
.tierx:first-of-type { border-top: 0; }
.tierx .tierx-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow); background: var(--paper-3); }
.tierx .tierx-media img { width: 100%; height: 100%; object-fit: cover; }
.tierx.flip .tierx-media { order: -1; }
.tierx .pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 800; font-size: .78rem; letter-spacing: .02em; padding: 6px 14px; border-radius: 100px; color: var(--paper); margin-bottom: 14px; }
.tierx h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.tierx .priceline { font-family: var(--display); font-weight: 800; font-size: 1.5rem; margin: 10px 0 4px; }
.tierx .priceline small { font-size: .9rem; color: var(--muted); font-weight: 600; }
.tierx .dur { color: var(--muted); font-weight: 600; font-size: .95rem; margin-bottom: 16px; }
.tierx p { color: var(--ink-2); line-height: 1.7; margin: 0 0 16px; max-width: 52ch; }
.tierx ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.tierx ul li { display: flex; gap: 10px; color: var(--ink-2); }
.tierx ul li::before { content: '✓'; color: var(--teal); font-weight: 800; flex: 0 0 auto; }
@media (max-width: 880px){ .tierx { grid-template-columns: 1fr; } .tierx.flip .tierx-media { order: 0; } }

/* highlight band for the Premium / custom 3D explainer */
.spotlight { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(34px, 5vw, 64px); position: relative; overflow: hidden; }
.spotlight h2, .spotlight h3 { color: var(--paper); }
.spotlight .lead { color: #ece2cf; font-size: 1.12rem; max-width: 60ch; }
.spotlight .badge { display: inline-block; background: var(--sun); color: var(--ink); font-family: var(--display); font-weight: 800; font-size: .78rem; padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }

/* ---------- custom photo -> result demo ---------- */
.custom-demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 3vw, 36px); align-items: center; margin-top: 34px; }
.custom-demo figure { margin: 0; }
.custom-demo .cd-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--card); background: var(--paper-3); aspect-ratio: 4/5; }
.custom-demo .cd-img img { width: 100%; height: 100%; object-fit: cover; }
.custom-demo figcaption { margin-top: 14px; text-align: center; }
.custom-demo figcaption b { display: block; font-family: var(--display); font-weight: 800; color: var(--paper); font-size: 1.05rem; }
.custom-demo figcaption span { color: #d9ccb6; font-size: .92rem; }
.custom-demo .cd-arrow { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--sun); color: var(--ink); font-size: 1.6rem; font-weight: 800; box-shadow: var(--shadow); }
.custom-demo .cd-tagimg .cd-img { aspect-ratio: 4/5; }
@media (max-width: 760px){
  .custom-demo { grid-template-columns: 1fr; gap: 8px; }
  .custom-demo .cd-arrow { transform: rotate(90deg); margin: 4px auto; }
  .custom-demo figcaption { margin-bottom: 8px; }
}

/* ---------- process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; counter-reset: step; }
.timeline .t-step { background: rgba(246,239,226,.06); border: 1px solid rgba(246,239,226,.14); border-radius: var(--r); padding: 24px 22px; position: relative; }
.spotlight .timeline .t-step h4 { color: var(--paper); font-size: 1.1rem; margin: 0 0 8px; }
.timeline .t-step p { color: #d9ccb6; font-size: .95rem; margin: 0; }
.timeline .t-step .tn { font-family: var(--display); font-weight: 800; color: var(--sun); font-size: .85rem; margin-bottom: 12px; display: block; }
@media (max-width: 820px){ .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .timeline { grid-template-columns: 1fr; } }

/* ---------- use-case / feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .emoji { font-size: 1.7rem; display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
@media (max-width: 900px){ .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cards, .cards.two { grid-template-columns: 1fr; } }

/* ---------- stat strip ---------- */
.statstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.statstrip .stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px; text-align: center; }
.statstrip .stat b { font-family: var(--display); font-weight: 800; font-size: 2.4rem; display: block; line-height: 1; color: var(--ink); }
.statstrip .stat span { color: var(--muted); font-size: .92rem; font-weight: 600; }
@media (max-width: 700px){ .statstrip { grid-template-columns: 1fr 1fr; } }

/* ---------- forms ---------- */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.form-group label .req { color: var(--coral); }
.form-group label .opt { color: var(--muted); font-weight: 500; font-size: .85em; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 12px;
  padding: 13px 15px; width: 100%; transition: border-color .18s ease, box-shadow .18s ease;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(236,87,52,.13);
}
.form-actions { margin-top: 22px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-actions .btn { width: auto; }
.form-fine { color: var(--muted); font-size: .86rem; margin-top: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-result { margin-top: 22px; background: var(--card); border: 1.5px solid var(--teal); border-radius: var(--r); padding: 24px 26px; display: none; }
.form-result.show { display: block; animation: pop .35s ease; }
.form-result h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-result p { color: var(--ink-2); margin: 0 0 16px; }
.result-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@keyframes pop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }

/* ---------- booking page ---------- */
.book-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.cal-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.cal-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.book-primary h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 8px; }
.cal-card p { color: var(--muted); font-size: .98rem; }
/* Picker container: no inner border/box (the card already frames it), so the
   calendar + time chips breathe within the card's padding instead of pressing
   against a second border. */
.cal-card .cal-embed { margin: 16px 0 0; }
.cal-steps { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.cal-steps li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink-2); }
.cal-steps li b { font-family: var(--display); color: var(--coral); }

/* ---------- live booking slot picker (book.html + manage.html) ---------- */
.bk { display: grid; gap: 14px; margin-top: 4px; }
.bk-field { display: grid; gap: 6px; }
.bk-field > span { font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.bk-field select, .bk-grid input {
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--paper); color: var(--ink); font: inherit; font-size: 16px; /* 16px: no iOS zoom */
}
.bk-field select:focus, .bk-grid input:focus { outline: none; border-color: var(--coral); }
.bk-label { font-family: var(--display); font-weight: 700; font-size: .9rem; color: var(--ink); margin: 6px 0 2px; }
.bk-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bk-dates { max-height: 150px; overflow-y: auto; padding: 2px; }
.bk-chip {
  font-family: var(--display); font-weight: 700; font-size: .9rem; cursor: pointer;
  background: var(--paper); border: 1.5px solid var(--line); color: var(--ink-2);
  padding: 8px 13px; border-radius: 12px; display: inline-flex; flex-direction: column;
  align-items: center; gap: 1px; transition: border-color .15s, background .15s, color .15s;
}
.bk-chip small { font-weight: 500; font-size: .72rem; color: var(--muted); }
.bk-chip:hover { border-color: var(--ink); }
.bk-chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.bk-chip.on small { color: rgba(246,239,226,.82); }
.bk-chip.full, .bk-chip[disabled] { opacity: .42; cursor: not-allowed; }
.bk-note { color: var(--muted); font-size: .9rem; margin: 8px 0 0; }
.bk-form { margin-top: 14px; display: grid; gap: 12px; }
.bk-when { font-family: var(--display); font-weight: 800; color: var(--coral); }
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-grid label { display: grid; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--ink-2); }
.bk-grid .req { color: var(--coral); }
.bk-grid .opt { color: var(--muted); font-weight: 500; font-size: .82em; }
.bk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.bk-done { text-align: center; padding: 10px 0; }
.bk-done-mark { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff5ef; display: grid; place-items: center; font-size: 1.5rem; margin: 0 auto 10px; }
.bk-done h3 { font-size: 1.3rem; margin-bottom: 6px; }
.bk-done p { color: var(--ink-2); }

/* time chips: only flag LOW stock (coral); duration label stays quiet */
.bk-chip small.low { color: var(--coral); font-weight: 700; }
.bk-dur { font-family: var(--body); font-weight: 600; font-size: .82rem; color: var(--muted); letter-spacing: 0; text-transform: none; }

/* month calendar */
.bk-cal { margin-top: 4px; }
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bk-cal-title { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--ink); }
.bk-cal-nav { width: 32px; height: 32px; border-radius: 9px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); font-size: 1.15rem; line-height: 1; cursor: pointer; transition: border-color .15s; }
.bk-cal-nav:hover:not([disabled]) { border-color: var(--ink); }
.bk-cal-nav[disabled] { opacity: .3; cursor: default; }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bk-cal-wd { text-align: center; font-family: var(--display); font-weight: 700; font-size: .72rem; color: var(--muted); padding-bottom: 2px; }
.bk-cal-cell { aspect-ratio: 1; border: 0; background: transparent; border-radius: 9px; font-weight: 600; font-size: .9rem; color: var(--muted); display: grid; place-items: center; }
.bk-cal-cell.empty { visibility: hidden; }
.bk-cal-cell:not(.avail):not(.empty) { opacity: .32; }
.bk-cal-cell.avail { background: var(--paper); border: 1.5px solid var(--line); color: var(--ink); cursor: pointer; transition: border-color .15s; }
.bk-cal-cell.avail:hover { border-color: var(--coral); background: var(--paper-2); }
.bk-cal-cell.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* time groups */
.bk-tg { margin-top: 12px; }
.bk-tg-h { font-family: var(--display); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }

/* booking summary card */
.bk-summary { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-top: 16px; }
.bk-summary > div { display: grid; gap: 2px; }
.bk-summary b { font-family: var(--display); font-weight: 800; color: var(--ink); }
.bk-summary span { font-size: .9rem; color: var(--ink-2); }
.bk-summary-tier { text-align: right; font-weight: 700; color: var(--ink); }
.bk-summary-tier span { display: block; color: var(--coral); font-weight: 800; }

.bk-wide { grid-column: 1 / -1; }

/* guests stepper + live total */
.bk-pax-row { display: flex; align-items: center; gap: 14px; }
.bk-pax-row > span:first-child { font-weight: 600; font-size: .88rem; color: var(--ink-2); }
.bk-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.bk-stepper button { width: 34px; height: 34px; border: 0; background: var(--paper); color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer; }
.bk-stepper button:hover { background: var(--paper-3); }
.bk-stepper span { min-width: 32px; text-align: center; font-family: var(--display); font-weight: 800; }
.bk-total { font-family: var(--display); font-weight: 800; color: var(--coral); margin-left: auto; }
.bk-hint { font-size: .82rem; color: var(--muted); margin: -2px 0 0; }
.bk-pay { font-size: .83rem; color: var(--muted); margin: 2px 0 0; }
.cal-pay-note { margin-top: 16px; padding: 11px 14px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; font-size: .86rem; color: var(--ink-2); line-height: 1.45; }
.cal-pay-note b { color: var(--ink); }

@media (max-width: 560px) { .bk-grid { grid-template-columns: 1fr; } .bk-wide { grid-column: auto; } }
.contactways { display: grid; gap: 12px; margin-top: 20px; }
.contactways a { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); font-weight: 600; color: var(--ink-2); transition: border-color .2s, transform .2s; }
.contactways a:hover { border-color: var(--coral); transform: translateX(3px); }
/* The source icons are white-on-transparent glyphs (made for the dark footer),
   so on these light chips they need a dark badge behind them to be visible.
   brightness(0) invert(1) normalises every icon to a clean white glyph. */
/* Icon badge: dark circle on the wrapper, white-normalising filter on the inner
   img only (a filter on the img itself would also invert the circle background). */
.contactways a .ci {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%;
  background: var(--ink); display: grid; place-items: center;
}
.contactways a .ci img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: .92; }
.contactways span small { display: block; color: var(--muted); font-weight: 500; font-size: .82rem; }
@media (max-width: 880px){ .book-grid { grid-template-columns: 1fr; } .cal-card { position: static; } }

/* ---------- about ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 14px; }
.value { padding: 26px 24px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); }
.value .vn { font-family: var(--display); font-weight: 800; color: var(--coral); font-size: .85rem; margin-bottom: 10px; }
.value h3 { font-size: 1.2rem; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: .96rem; margin: 0; }
@media (max-width: 820px){ .values { grid-template-columns: 1fr; } }

.photo-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-band figure { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: var(--paper-3); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.photo-band figure:hover img { transform: scale(1.06); }
@media (max-width: 680px){ .photo-band { grid-template-columns: 1fr 1fr; } }

/* ---------- gallery page filter ---------- */
.gfilter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.gfilter button {
  font-family: var(--display); font-weight: 700; font-size: .92rem; cursor: pointer;
  background: var(--card); border: 1.5px solid var(--line); color: var(--ink-2);
  padding: 9px 18px; border-radius: 100px; transition: all .18s ease;
}
.gfilter button:hover { border-color: var(--ink); }
.gfilter button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery-grid figure.hide { display: none; }

/* ---------- contact split ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .85fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact-aside { display: grid; gap: 16px; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.info-card .row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: .96rem; color: var(--ink-2); }
.info-card .row:last-child { margin-bottom: 0; }
.info-card .row b { font-family: var(--display); color: var(--ink); display: block; }
.info-card .row a:hover { color: var(--coral); }
/* Same white-glyph icons as the booking chips: darken so they read on the light card. */
.info-card .row img { filter: brightness(0); opacity: .8; }
.wa-card { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: 28px 26px; }
.wa-card h3 { color: var(--paper); font-size: 1.2rem; margin-bottom: 6px; }
.wa-card p { color: #d9ccb6; font-size: .96rem; margin: 0 0 18px; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---------- mini cta band reused ---------- */
.band { background: var(--paper-2); border-radius: var(--r-lg); padding: clamp(34px, 5vw, 60px); text-align: center; }
.band h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
.band p { color: var(--ink-2); max-width: 52ch; margin: 16px auto 0; font-size: 1.08rem; }
.band .band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* section intro reused on subpages */
.s-head.tight { margin-bottom: clamp(28px, 4vw, 44px); }
