/* =====================================================================
   TICKETS & PASSES — /ski/tickets and /ski/tickets/{pass}.

   Laid out after the reference: a quiet breadcrumb and a ruled title, rows
   that alternate photograph and words, a split hero with a dark panel of
   text, benefit cards, a compare table, pricing cards and essentials tiles.

   In the ski pages' own tokens (--skl-navy, --skl-gold, …) so it reads as
   the same site rather than the reference's green. Prefix .skt- throughout.
   ===================================================================== */

/* ------------------------------- breadcrumb ------------------------------- */
.skt-crumbs { padding-top: clamp(16px, 2vw, 26px); }
.skt-crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.skt-crumbs li { display: flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--skl-muted); }
.skt-crumbs li + li::before { content: '›'; color: var(--skl-line); }
.skt-crumbs a { color: var(--skl-muted); text-decoration: none; }
.skt-crumbs a:hover { color: var(--skl-navy); }
.skt-crumbs [aria-current] { color: var(--skl-ink); }

/* --------------------------------- titles --------------------------------- */
.skt-head { padding: clamp(14px, 1.8vw, 22px) 0 clamp(18px, 2.2vw, 28px); border-bottom: 1px solid var(--skl-line); }
.skt-head--page { border-bottom: 0; padding-bottom: clamp(10px, 1.4vw, 16px); }
.skt-title {
  margin: 0;
  font-family: var(--skl-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--skl-navy);
}
.skt-intro { margin: 12px 0 0; max-width: 82ch; font-size: .95rem; line-height: 1.7; color: var(--skl-muted); }

.skt-h2 {
  margin: 0;
  font-family: var(--skl-head);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--skl-navy);
}
.skt-h2--left { text-align: left; }
.skt-h2__sub { margin: 4px 0 clamp(22px, 2.6vw, 34px); text-align: center; font-size: .9rem; color: var(--skl-muted); }
.skt-h2:not(.skt-h2--left) + .skt-cards { margin-top: clamp(22px, 2.6vw, 34px); }

/* -------------------------------- buttons -------------------------------- */
.skt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1.5px solid var(--skl-navy);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--skl-navy);
  background: transparent;
  cursor: pointer;
  transition: background-color .2s var(--skl-ease), color .2s var(--skl-ease), border-color .2s var(--skl-ease);
}
.skt-btn svg { width: 14px; height: 14px; }
.skt-btn:hover { background: var(--skl-navy); color: #FFFFFF; }
.skt-btn:focus-visible { outline: 2px solid var(--skl-gold); outline-offset: 3px; }
.skt-btn--solid { background: var(--skl-navy); color: #FFFFFF; }
.skt-btn--solid:hover { background: var(--skl-gold); border-color: var(--skl-gold); }
.skt-btn--ghost { border-color: #FFFFFF; color: #FFFFFF; }
.skt-btn--ghost:hover { background: #FFFFFF; color: var(--skl-ink); }
.skt-btn--sm { padding: 8px 14px; font-size: .7rem; }
.skt-btn--buy { justify-content: center; width: 100%; background: var(--skl-gold); border-color: var(--skl-gold); color: #FFFFFF; }
.skt-btn--buy:hover { filter: brightness(1.08); background: var(--skl-gold); border-color: var(--skl-gold); color: #FFFFFF; }

/* ------------------------------ the pass rows ------------------------------ */
.skt-rows { display: flex; flex-direction: column; }
.skt-row {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: clamp(22px, 3.2vw, 52px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--skl-line);
}
/* Every other row turns over, so the page reads as a column of alternating
   photographs rather than a list with a picture column. */
.skt-row--flip .skt-row__img { order: 2; }
.skt-row__img { display: block; aspect-ratio: 4 / 2.6; overflow: hidden; background: var(--skl-sky-soft); }
.skt-row__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--skl-ease); }
.skt-row:hover .skt-row__img img { transform: scale(1.04); }
.skt-row__body { min-width: 0; }
.skt-row__name {
  margin: 0 0 10px;
  font-family: var(--skl-head);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--skl-navy);
}
.skt-row__name--sm { font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.skt-row__text { margin: 0 0 10px; font-size: .9rem; line-height: 1.72; color: var(--skl-muted); }
.skt-row__from { color: var(--skl-ink); font-style: italic; }
.skt-row__from--ask { color: var(--skl-muted); }

.skt-ticks { margin: 0 0 16px; padding: 0; list-style: none; }
.skt-ticks li { display: flex; gap: 9px; padding: 3px 0; font-size: .85rem; color: var(--skl-ink); }
.skt-ticks span { color: var(--skl-gold); font-weight: 700; }

.skt-row__cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }

.skt-note { padding: clamp(22px, 2.6vw, 34px) 0; }
.skt-note p { margin: 0; max-width: 84ch; font-size: .84rem; line-height: 1.7; color: var(--skl-muted); }
.skt-note a { color: var(--skl-navy); font-weight: 600; }

/* --------------------------------- the hero --------------------------------- */
.skt-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); align-items: stretch; }
.skt-hero__panel { display: flex; align-items: center; background: #33424b; color: #FFFFFF; }
.skt-hero__in { padding: clamp(28px, 4vw, 60px) clamp(22px, 3.4vw, 52px); max-width: 620px; margin-left: auto; }
.skt-hero__name {
  margin: 0;
  font-family: var(--skl-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.skt-hero__tag { margin: 8px 0 0; font-size: .95rem; font-style: italic; font-weight: 600; }
.skt-hero__text { margin: 18px 0 0; font-size: .92rem; line-height: 1.8; color: rgba(255, 255, 255, .84); }
.skt-hero__price { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 0; }
.skt-hero__price b { font-family: var(--skl-head); font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 800; }
.skt-hero__price span { font-size: .8rem; color: rgba(255, 255, 255, .72); }
.skt-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.skt-hero__img { position: relative; min-height: 320px; background: var(--skl-sky-soft); }
.skt-hero__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------ benefit cards ------------------------------ */
.skt-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 34px); margin: 0; padding: 0; list-style: none; }
.skt-card { display: flex; flex-direction: column; min-width: 0; }
.skt-card__img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--skl-sky-soft); }
.skt-card__img img { width: 100%; height: 100%; object-fit: cover; }
.skt-card__name {
  margin: 14px 0 6px;
  font-family: var(--skl-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--skl-navy);
}
.skt-card__text { margin: 0 0 16px; font-size: .85rem; line-height: 1.65; color: var(--skl-muted); }
/* Pushed to the foot so the buttons of a row line up however long the copy. */
.skt-card .skt-btn { align-self: flex-start; margin-top: auto; }

/* --------------------------- compare / pricing --------------------------- */
.skt-tabsec { padding-block: clamp(30px, 3.6vw, 56px); background: #F4F6F7; }
.skt-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 18px; }
.skt-tab {
  padding: 10px 18px;
  border: 1px solid var(--skl-line);
  border-bottom: 0;
  background: #E9EDEF;
  font-family: var(--skl-body);
  font-size: .8rem;
  font-weight: 700;
  color: var(--skl-muted);
  cursor: pointer;
}
.skt-tab.is-on { background: #FFFFFF; color: var(--skl-navy); }
.skt-tab:focus-visible { outline: 2px solid var(--skl-gold); outline-offset: -2px; }

/* Eight columns of comparison will not fit a phone, so the table scrolls
   sideways inside this box rather than widening the page. The explicit
   max-width is what holds the box to its parent: without it the table's own
   min-content width (some 730px) pushed straight through the wrapper and gave
   the whole document a horizontal scrollbar. */
.skt-tablewrap {
  /* Holds the table's visually-hidden labels inside the scroller too. */
  position: relative;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #FFFFFF;
}
/* Eight columns, each carrying a price and a button: below this they crush.
   The wrapper above scrolls sideways instead of squeezing them. */
.skt-table { width: 100%; min-width: 940px; border-collapse: collapse; font-size: .82rem; }
.skt-table th, .skt-table td { padding: 12px 10px; text-align: center; border-bottom: 1px solid var(--skl-line); }
.skt-table thead th { vertical-align: bottom; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--skl-navy); }
.skt-table thead th a { color: inherit; text-decoration: none; }
.skt-table thead th a:hover { color: var(--skl-gold); text-decoration: underline; }
.skt-table tbody th { text-align: left; font-weight: 600; color: var(--skl-ink); white-space: nowrap; }
/* The pass whose page this is, marked down its whole column. */
.skt-table .is-this { background: #F4F6F7; }
.skt-table__flag { display: block; margin-bottom: 6px; padding: 3px 6px; background: var(--skl-gold); color: #FFFFFF; font-size: .6rem; letter-spacing: .1em; }
.skt-mark { display: inline-grid; place-items: center; }
.skt-mark svg { width: 17px; height: 17px; }
.skt-mark--yes { color: #2F7A4F; }
.skt-mark--no { color: #B9C4CA; }
/* Every price cell is the same two rows — the price block, then the button —
   so all seven buttons land on one line across the row. The rows are declared
   here rather than left to the content: `auto auto` with the block's own two
   lines above means a cell's height is decided by its structure, not by
   whether that particular pass happens to carry a unit or a figure. */
.skt-table__prices td { vertical-align: top; }
.skt-cell { display: grid; grid-template-rows: auto auto; justify-items: center; gap: 10px; }
.skt-cell__price { min-width: 0; text-align: center; }
/* Neither line may wrap: a second line under one price would push that one
   button down and break the row again. The table scrolls sideways instead. */
.skt-cell__price b { display: block; font-size: .92rem; line-height: 1.3; white-space: nowrap; color: var(--skl-navy); }
.skt-cell__price small { display: block; font-size: .66rem; line-height: 1.3; white-space: nowrap; color: var(--skl-muted); }
.skt-cell .skt-btn { justify-content: center; padding: 7px 12px; font-size: .66rem; letter-spacing: .06em; white-space: nowrap; }

.skt-fine { margin: 14px 0 0; font-size: .78rem; line-height: 1.6; color: var(--skl-muted); }
.skt-fine a { color: var(--skl-navy); font-weight: 600; }

.skt-price { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.skt-price__row { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: clamp(16px, 2vw, 28px); padding: clamp(16px, 2vw, 24px); background: #FFFFFF; border-radius: 8px; }
.skt-price__row.is-this { outline: 2px solid var(--skl-gold); }
.skt-price__kicker { margin: 0 0 6px; display: inline-block; padding: 3px 7px; background: var(--skl-gold); color: #FFFFFF; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.skt-price__name { margin: 0 0 8px; font-family: var(--skl-head); font-size: 1.25rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.skt-price__name a { color: var(--skl-navy); text-decoration: none; }
.skt-price__name a:hover { color: var(--skl-gold); }
.skt-price__text { margin: 0 0 10px; font-size: .84rem; line-height: 1.6; color: var(--skl-muted); }
.skt-price__points { display: flex; flex-wrap: wrap; gap: 4px 18px; margin: 0; padding: 0; list-style: none; }
.skt-price__points li { display: flex; gap: 7px; font-size: .78rem; color: var(--skl-ink); }
.skt-price__points span { color: var(--skl-gold); }
.skt-price__tag { display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: clamp(14px, 1.6vw, 20px); border-radius: 6px; background: var(--skl-navy); color: #FFFFFF; text-align: center; }
.skt-price__tag small { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; opacity: .78; }
.skt-price__tag b { font-family: var(--skl-head); font-size: 1.7rem; font-weight: 800; }
.skt-price__tag em { margin-bottom: 10px; font-size: .68rem; font-style: normal; opacity: .78; }

.skt-faqs { background: #FFFFFF; }
.skt-faq { border-bottom: 1px solid var(--skl-line); }
.skt-faq summary { padding: 14px 16px; font-size: .9rem; font-weight: 700; color: var(--skl-navy); cursor: pointer; }
.skt-faq summary::-webkit-details-marker { display: none; }
.skt-faq summary::after { content: '+'; float: right; color: var(--skl-gold); font-size: 1.1rem; line-height: 1; }
.skt-faq[open] summary::after { content: '−'; }
.skt-faq__a { padding: 0 16px 16px; font-size: .86rem; line-height: 1.7; color: var(--skl-muted); }

/* ------------------------------ terrain access ------------------------------ */
.skt-terrain__in { display: grid; grid-template-columns: minmax(0, 36%) minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); align-items: start; }
.skt-terrain__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--skl-sky-soft); }
.skt-terrain__img img { width: 100%; height: 100%; object-fit: cover; }
.skt-terrain__list { margin: 18px 0 0; }
.skt-terrain__list > div { padding: 10px 0; border-bottom: 1px solid var(--skl-line); }
.skt-terrain__list > div.is-this { border-left: 3px solid var(--skl-gold); padding-left: 12px; }
.skt-terrain__list dt { font-size: .88rem; font-weight: 700; color: var(--skl-navy); }
.skt-terrain__list dt a { color: inherit; text-decoration: none; }
.skt-terrain__list dt a:hover { color: var(--skl-gold); }
.skt-terrain__list dd { margin: 3px 0 0; font-size: .84rem; line-height: 1.6; color: var(--skl-muted); }

/* -------------------------------- essentials -------------------------------- */
.skt-tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); margin: clamp(22px, 2.6vw, 34px) 0 0; padding: 0; list-style: none; }
.skt-tile { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: var(--skl-ink); }
.skt-tile__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--skl-sky-soft); }
.skt-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--skl-ease); }
.skt-tile:hover img { transform: scale(1.05); }
.skt-tile b { display: flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--skl-head); font-size: 1rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--skl-navy); }
.skt-tile b svg { width: 13px; height: 13px; }
.skt-tile small { margin-top: 3px; font-size: .8rem; color: var(--skl-muted); }
.skt-tile:hover b { color: var(--skl-gold); }

/* ====================== BOOK A PASS / CHECKOUT ======================
   A white form panel beside a sticky summary of what is being bought. */
.skt-book {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
  padding: clamp(18px, 2.4vw, 30px) 0 clamp(34px, 4vw, 60px);
}
.skt-panel { padding: clamp(20px, 2.6vw, 32px); border: 1px solid var(--skl-line); border-radius: 8px; background: #FFFFFF; }
.skt-panel__h {
  margin: 0 0 18px;
  font-family: var(--skl-head);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--skl-navy);
}
.skt-panel__sub { margin: 24px 0 10px; font-size: .95rem; font-weight: 700; color: var(--skl-navy); }

.skt-alert { margin: 0 0 16px; padding: 10px 12px; border-left: 3px solid #B3261E; background: #FBEDEC; font-size: .85rem; color: #7A1C16; }
.skt-alert--soft { border-left-color: var(--skl-gold); background: #FDF6E7; color: #6B4A05; }

/* ---- how to book: two cards, the chosen one outlined ---- */
.skt-opts { display: grid; gap: 10px; margin: 0 0 20px; padding: 0; border: 0; }
.skt-opt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 44px 14px 16px;
  border: 1.5px solid var(--skl-line);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s var(--skl-ease), background-color .2s var(--skl-ease);
}
.skt-opt:hover { border-color: var(--skl-navy); }
.skt-opt input { position: absolute; opacity: 0; pointer-events: none; }
.skt-opt__txt b { display: block; font-size: .95rem; color: var(--skl-navy); }
.skt-opt__txt small { display: block; margin-top: 3px; font-size: .82rem; line-height: 1.55; color: var(--skl-muted); }
.skt-opt__dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--skl-line);
  border-radius: 50%;
}
.skt-opt input:checked ~ .skt-opt__dot { border-color: var(--skl-navy); box-shadow: inset 0 0 0 4px var(--skl-navy); }
.skt-opt:has(input:checked) { border-color: var(--skl-navy); background: #F7F9FA; }
.skt-opt:focus-within { outline: 2px solid var(--skl-gold); outline-offset: 2px; }

/* ---- fields ---- */
.skt-field { margin-bottom: 16px; }
.skt-field label { display: block; margin-bottom: 6px; font-size: .84rem; font-weight: 600; color: var(--skl-navy); }
.skt-field label span { font-weight: 400; color: var(--skl-muted); }
.skt-field input,
.skt-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--skl-line);
  border-radius: 5px;
  background: #FFFFFF;
  font: inherit;
  font-size: .9rem;
  color: var(--skl-ink);
}
.skt-field input:focus-visible,
.skt-field textarea:focus-visible { outline: 2px solid var(--skl-gold); outline-offset: 1px; border-color: var(--skl-navy); }
.skt-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }

/* ---- the guest stepper ---- */
.skt-qty { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-top: 1px solid var(--skl-line); border-bottom: 1px solid var(--skl-line); }
.skt-qty__txt b { display: block; font-size: .95rem; color: var(--skl-navy); }
.skt-qty__txt small { font-size: .8rem; color: var(--skl-muted); }
.skt-qty__box { display: flex; align-items: center; gap: 6px; }
.skt-qty__box button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--skl-line);
  border-radius: 5px;
  background: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--skl-navy);
  cursor: pointer;
}
.skt-qty__box button:hover { border-color: var(--skl-navy); }
.skt-qty__box input {
  width: 58px;
  padding: 8px 4px;
  border: 1.5px solid var(--skl-line);
  border-radius: 5px;
  font: inherit;
  font-size: .95rem;
  text-align: center;
  color: var(--skl-ink);
}

.skt-hint { margin: 10px 0 18px; font-size: .8rem; line-height: 1.6; color: var(--skl-muted); }
.skt-hint--mid { text-align: center; margin-bottom: 0; }
.skt-linkbtn { padding: 0; border: 0; background: none; font: inherit; font-size: .8rem; color: var(--skl-navy); text-decoration: underline; cursor: pointer; }
/* Reserved, but they would rather pay after all — sits under the panel. */
.skt-switch { margin-top: 12px; }

.skt-total { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0 6px; border-top: 2px solid var(--skl-navy); }
.skt-total span { font-size: .9rem; font-weight: 600; color: var(--skl-navy); }
.skt-total b { font-family: var(--skl-head); font-size: 1.8rem; font-weight: 800; color: var(--skl-navy); }
/* Words, not a figure — sized to read as a sentence rather than a price. */
.skt-total--ask { font-size: 1.1rem !important; font-weight: 700; }

.skt-btn--wide { justify-content: center; width: 100%; margin-top: 6px; background: var(--skl-navy); color: #FFFFFF; }
.skt-btn--wide:hover { background: var(--skl-gold); border-color: var(--skl-gold); }
.skt-btn--pay { background: var(--skl-gold); border-color: var(--skl-gold); }
.skt-btn--pay:hover { filter: brightness(1.08); background: var(--skl-gold); border-color: var(--skl-gold); }
.skt-btn[disabled] { opacity: .65; cursor: default; }
.skt-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 10px 0 0; font-size: .76rem; color: var(--skl-muted); }
.skt-secure svg { width: 13px; height: 13px; }
.skt-pay { display: grid; gap: 8px; }

/* ---- the summary beside it ---- */
.skt-side { position: sticky; top: 86px; border: 1px solid var(--skl-line); border-radius: 8px; overflow: hidden; background: #FFFFFF; }
.skt-side__img { aspect-ratio: 16 / 9; background: var(--skl-sky-soft); }
.skt-side__img img { width: 100%; height: 100%; object-fit: cover; }
.skt-side__body { padding: 16px 18px 20px; }
.skt-side__name { margin: 0; font-family: var(--skl-head); font-size: 1.25rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--skl-navy); }
.skt-side__tag { margin: 3px 0 12px; font-size: .84rem; font-style: italic; color: var(--skl-muted); }
.skt-side__price { margin: 0 0 12px; }
.skt-side__price b { font-family: var(--skl-head); font-size: 1.5rem; color: var(--skl-navy); }
.skt-side__price span { font-size: .78rem; color: var(--skl-muted); }
.skt-side__access { margin: 12px 0 0; font-size: .8rem; line-height: 1.6; color: var(--skl-muted); }
.skt-side__access b { color: var(--skl-navy); }
.skt-side__back { display: inline-block; margin-top: 14px; font-size: .8rem; font-weight: 600; color: var(--skl-navy); }
.skt-order { margin: 0; }
.skt-order > div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--skl-line); font-size: .85rem; }
.skt-order dt { color: var(--skl-muted); }
.skt-order dd { margin: 0; text-align: right; color: var(--skl-ink); }
.skt-side__total { display: flex; align-items: baseline; justify-content: space-between; margin: 14px 0 0; }
.skt-side__total span { font-size: .9rem; font-weight: 600; color: var(--skl-navy); }
.skt-side__total b { font-family: var(--skl-head); font-size: 1.6rem; color: var(--skl-navy); }

/* ---- request received ---- */
.skt-sent { max-width: 640px; margin-inline: auto; text-align: center; }
.skt-sent__tick { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: #E8F3EC; color: #2F7A4F; }
.skt-sent__tick svg { width: 30px; height: 30px; }
.skt-sent__text { margin: 14px 0 0; font-size: .95rem; line-height: 1.75; color: var(--skl-muted); }
.skt-sent__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }

/* ------------------------------- responsive ------------------------------- */
@media (max-width: 1024px) {
  .skt-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .skt-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .skt-hero { grid-template-columns: minmax(0, 1fr); }
  .skt-hero__in { max-width: none; margin-left: 0; }
  .skt-hero__img { min-height: 260px; order: -1; }
}
@media (max-width: 760px) {
  .skt-row { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  /* Stacked, the picture always leads: a flipped row would put the photograph
     under its own words and break the rhythm. */
  .skt-row--flip .skt-row__img { order: 0; }
  .skt-cards { grid-template-columns: minmax(0, 1fr); }
  .skt-terrain__in { grid-template-columns: minmax(0, 1fr); }
  .skt-price__row { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .skt-tiles { grid-template-columns: minmax(0, 1fr); }
  .skt-tabs .skt-tab { flex: 1 1 auto; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .skt-row__img img, .skt-tile__img img { transition: none; }
}
