@charset "UTF-8";
/* ==========================================================================
   TRAVELNEST — Honeymoons
   Loaded after style.css and destination.css: tokens, top bar, breadcrumb,
   page hero, the "Four answers" enquiry block and the footer come from those
   two. The most photography-led page on the site and the least text-heavy.
   One rule governs it: every number is derived from the trip data — the day
   strips, their legends and the cost lines are all generated from one array,
   so they cannot drift apart.
   --------------------------------------------------------------------------
   01. Page tokens and shared section furniture
   02. The first three days are empty — the opener
   03. Four places worth the flight
   04. Done without asking — the ink band
   05. Twelve days, four of them empty
   06. Responsive — 1500 / 1200 / 1000 / 760 / 430
   --------------------------------------------------------------------------
   Authored in fixed pixels at any width (only the nav and footer scale).
   ========================================================================== */

/* ==========================================================================
   01. Page tokens and shared section furniture
   ========================================================================== */

.page-honey {
  --hm-panel: #17435A;
  --hm-panel-ink: #FBF6EC;
  --hm-panel-rgb: 251, 246, 236;
  --hm-paper: #FFFFFF;
  --hm-card: #FBF6EC;
  --hm-card-ink: #17435A;
  --hm-card-rgb: 23, 67, 90;
  --hm-on-accent: #FFFFFF;
  --hm-on-accent-rgb: 255, 255, 255;
}

[data-theme="dark"] .page-honey {
  --hm-panel: rgba(16, 16, 16, 0.72);
  --hm-panel-ink: #EDE3D3;
  --hm-panel-rgb: 237, 227, 211;
  --hm-paper: #EDE3D3;
  --hm-card: #EDE3D3;
  --hm-card-ink: #1A1A1A;
  --hm-card-rgb: 26, 26, 26;
  --hm-on-accent: #1A1A1A;
  --hm-on-accent-rgb: 26, 26, 26;
  --hm-hot-rule-a: 0.45;
}

/* on dark paper the structural ink rules soften to 45% */
[data-theme="dark"] .pstrip { border-top-color: rgba(var(--ink-rgb), 0.45); }

[data-theme="dark"] .railnote--top,
[data-theme="dark"] .htable { border-top-color: rgba(var(--ink-rgb), 0.45); }

[data-theme="dark"] .htable__head,
[data-theme="dark"] .hrow:last-child { border-bottom-color: rgba(var(--ink-rgb), 0.45); }

[data-theme="dark"] .hdest { border-color: rgba(var(--ink-rgb), 0.45); }
[data-theme="dark"] .hdest--hot { border-color: var(--accent); }

/* the enquiry block is the Europe planner frozen at the 1920 reference */
.page-honey .planner { --u: 19.2px; }

@media (max-width: 1500px) {
  .page-honey .planner { --u: 1.28vw; }
}

/* every section opens the same way: heading pair, script, right-hand note */
.secthead {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 var(--gutter);
  padding: 34px 0 24px;
}

.secthead__stack {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  min-width: 0;
}

.secthead .display--about { font-size: 92px; }

.secthead .script--about {
  font-size: 66px;
  padding-top: 0;
  padding-bottom: 18px;
}

.secthead__note {
  margin: 0 0 0 auto;
  max-width: 380px;
  padding-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
  opacity: 0.8;
  text-wrap: pretty;
}

.pstrip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 var(--gutter) 22px;
  padding: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.22);
  list-style: none;
}

.pcell2 {
  flex: 1 1 180px;
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 13px 20px;
  border-left: 1px solid rgba(var(--ink-rgb), 0.22);
}

.pcell2:first-child { padding-left: 0; border-left: 0; }
.pcell2:last-child { padding-right: 0; }

.pcell2__value {
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
}

.pcell2__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.railnote {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 30px var(--gutter) 0;
}

.railnote--top {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.railnote--tight { margin-top: 26px; }

.railnote__text {
  max-width: 700px;
  font-size: 21px;
  font-weight: 500;
  opacity: 0.78;
  text-wrap: pretty;
}

.railnote__script {
  color: var(--accent);
  font-family: "Caramel", "Segoe Script", cursive;
  font-size: 46px;
  line-height: 0.5;
  white-space: nowrap;
}

.railnote__cta {
  margin-left: auto;
  border: 2px solid var(--accent);
  padding: 15px 32px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.16s ease-out, color 0.16s ease-out;
}

.railnote__cta:hover,
.railnote__cta:focus-visible {
  background: var(--accent);
  color: var(--cta-label);
}

.railnote__cta--solid {
  border: 0;
  background: var(--accent);
  padding: 15px 32px;
  color: var(--ab-on-accent-deep);
}

.railnote__cta--solid:hover,
.railnote__cta--solid:focus-visible {
  background: var(--ink);
  color: var(--ab-on-accent);
}


/* ==========================================================================
   02. The first three days are empty — the opener
   ========================================================================== */

.hopen-sec { padding: 40px var(--gutter) 46px; }

.hopen {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.hopen__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hopen__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.3) 48%, rgba(10, 10, 10, 0.06) 78%);
  pointer-events: none;
}

.hopen__scrim--foot {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 32%);
}

/* the side scrim fades to 0.06 on the right, which is where the letterhead's
   boxed count sits — a narrow top band keeps that type readable */
.hopen__scrim--head {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.42) 7%, transparent 14%);
}

.hopen__head {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.hopen__place {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ab-panel-accent);
}

.hopen__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentcolor;
}

.hopen__note { opacity: 0.7; }

.hopen__tag {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 13px;
  letter-spacing: 0.16em;
}

.hopen__body {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  max-width: 1080px;
  color: #FFFFFF;
}

.hopen__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.hopen__line {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.hopen__word {
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 106px;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.02em;
}

.hopen__word--outline {
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
}

.hopen__script {
  padding-bottom: 18px;
  color: var(--ab-panel-accent);
  font-family: "Caramel", "Segoe Script", cursive;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.5;
  transform: rotate(-6deg);
  transform-origin: left bottom;
  white-space: nowrap;
}

.hopen__lead {
  margin: 0;
  max-width: 620px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.94;
  text-wrap: pretty;
}

.hopen__strip {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 820px;
}

/* one span per day: the empty ones are the point of the page */
.hdays {
  display: flex;
  gap: 4px;
}

.hday {
  flex: 1;
  height: 16px;
  background: var(--accent);
}

.hday--free { background: rgba(var(--ink-rgb), 0.18); }

.hdays--open .hday { background: var(--ab-panel-accent); }
.hdays--open .hday--free { background: rgba(255, 255, 255, 0.28); }

.hlegend {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hlegend--open { font-size: 16px; letter-spacing: 0.14em; }

.hlegend__key {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hlegend__key--on { color: var(--accent); }

.hlegend__key--off {
  margin-left: auto;
  opacity: 0.5;
}

.hlegend__swatch {
  width: 11px;
  height: 11px;
  background: currentcolor;
}

.hlegend__key--off .hlegend__swatch { background: rgba(var(--ink-rgb), 0.25); }

.hlegend--open .hlegend__key--on { color: var(--ab-panel-accent); }
.hlegend--open .hlegend__key--off { opacity: 0.75; }
.hlegend--open .hlegend__key--off .hlegend__swatch { background: rgba(255, 255, 255, 0.35); }

/* the four things done before you land */
.hcard {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 350px;
  background: var(--hm-card);
  padding: 0 0 22px;
  color: var(--hm-card-ink);
}

.hcard__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  background: var(--accent);
  padding: 9px 20px;
  color: var(--hm-on-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hcard__count { margin-left: auto; }

.hcard__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 16px 22px 0;
  list-style: none;
}

.hcard__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(var(--hm-card-rgb), 0.3);
  font-size: 19px;
  font-weight: 600;
}

.hcard__item:last-child { border-bottom: 0; }

.hcard__tick {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

.hcard__foot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 22px 0;
  padding-top: 12px;
  border-top: 2px dotted rgba(var(--hm-card-rgb), 0.4);
}

.hcard__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hcard__value {
  margin-left: auto;
  color: var(--accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

/* ==========================================================================
   03. Four places worth the flight
   ========================================================================== */

.hdest-sec { padding: 0 0 62px; }

.hdests {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 var(--gutter);
  padding: 0;
  list-style: none;
}

.hdest {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
}

.hdest--hot {
  border: 3px solid var(--accent);
  background: rgba(192, 82, 27, 0.05);
}

.hdest__frame {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.hdest__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hdest__scrim {
  position: absolute;
  inset: 0;
  /* the handoff's 0.88/54% left the Japan card's sub-line at 4.46:1 on the real
     photograph — this carries the band six points higher for 5.2:1 there and
     4.8:1 or better on the other three */
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  pointer-events: none;
}

/* added in review: a bottom scrim alone left the top labels unreadable */
.hdest__topscrim {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 92px;
  /* measured against the four real photographs: the season label sits top-right
     on blossom, dusk and open sky, where the original 0.5 band left it at
     2.4—3.7:1. This holds the corner at 4.9:1 or better on all four. */
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.42) 55%, transparent 100%);
  pointer-events: none;
}

.hdest__top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 16px;
  pointer-events: none;
}

.hdest__index {
  background: rgba(192, 82, 27, 0.94);
  padding: 4px 11px;
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.hdest--hot .hdest__index {
  background: var(--hm-paper);
  color: var(--accent);
}

.hdest__season {
  margin-left: auto;
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.hdest__cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #FFFFFF;
  pointer-events: none;
}

.hdest__name {
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.02;
}

.hdest__sub {
  font-size: 19px;
  font-weight: 500;
  opacity: 0.88;
}

.hdest__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 9px;
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
}

.hdest__from {
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.hdest__pp {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hdest__days {
  margin-left: auto;
  font-size: 17px;
  font-weight: 600;
  opacity: 0.85;
}

.hdest__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 16px 18px 18px;
}

.hfacts {
  display: flex;
  flex-direction: column;
}

.hfact {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(var(--ink-rgb), 0.3);
}

.hfact:last-child { border-bottom: 0; }

.hfact__key {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hfact__val {
  margin-left: auto;
  font-size: 19px;
  font-weight: 600;
}

/* the month we would actually pick, against the month people ask for */
.hadvice {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 2px dotted rgba(var(--ink-rgb), 0.4);
}

/* on the accent card every rule inside it is accent-tinted too */
.hdest--hot .hadvice { border-top-color: rgba(192, 82, 27, 0.5); }
.hdest--hot .hfact { border-bottom-color: rgba(192, 82, 27, 0.45); }
.hdest--hot .hdest__price { border-top-color: rgba(255, 255, 255, 0.6); }
.hdest--hot .hdest__from { color: #FFFFFF; }

.hadvice__label {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hadvice__text {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.8;
  text-wrap: pretty;
}

.hdest__when {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: auto 0 0;
  padding-top: 12px;
}

.hdest__when-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hdest__month {
  margin-left: auto;
  color: var(--accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

/* ==========================================================================
   04. Done without asking — the ink band
   ========================================================================== */

.hband-sec { padding: 34px var(--gutter) 46px; }

.hband {
  background: var(--hm-panel);
  color: var(--hm-panel-ink);
}

.hband__head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 14px 30px;
  border-top: 4px solid var(--ab-panel-accent);
  border-bottom: 1px solid rgba(var(--hm-panel-rgb), 0.25);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hband__place {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ab-panel-accent);
}

.hband__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentcolor;
}

.hband__note { opacity: 0.6; }

.hband__tag {
  margin-left: auto;
  border: 1px solid rgba(var(--hm-panel-rgb), 0.5);
  padding: 5px 13px;
  letter-spacing: 0.16em;
}

.hcells {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hcell {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 28px;
  border-left: 1px solid rgba(var(--hm-panel-rgb), 0.3);
}

.hcell:first-child { border-left: 0; }

/* the upgrade is the only one we cannot promise, so it carries the accent */
.hcell--hot {
  background: var(--accent);
  border-left: 0;
  color: var(--hm-on-accent);
}

.hcell__index {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hcell--hot .hcell__index { opacity: 0.8; }

.hcell__title {
  margin: 0;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}

.hcell__text {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.75;
  text-wrap: pretty;
}

.hcell--hot .hcell__text { opacity: 0.92; }

/* every promise carries the frequency that backs it */
.hcell__freq {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(var(--hm-panel-rgb), 0.4);
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 20px;
}

.hcell--hot .hcell__freq {
  border-top-color: rgba(var(--hm-on-accent-rgb), var(--hm-hot-rule-a, 0.55));
  color: inherit;
}

.hband__foot {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0;
  padding: 18px 30px;
  border-top: 1px solid rgba(var(--hm-panel-rgb), 0.3);
}

.hband__figure {
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.hband__text {
  max-width: 700px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.85;
  text-wrap: pretty;
}

.hband__script {
  color: var(--ab-panel-accent);
  font-family: "Caramel", "Segoe Script", cursive;
  font-size: 46px;
  line-height: 0.5;
  white-space: nowrap;
}

.hband__cta {
  margin-left: auto;
  border: 2px solid var(--ab-panel-cta);
  padding: 13px 28px;
  color: var(--ab-panel-cta);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.16s ease-out, color 0.16s ease-out;
}

.hband__cta:hover,
.hband__cta:focus-visible {
  background: var(--ab-panel-cta);
  color: var(--ab-panel-cta-ink);
}

/* ==========================================================================
   05. Twelve days, four of them empty
   ========================================================================== */

.htrip-sec { padding: 0 0 62px; }

/* the frames sit two pixels closer under the strip than the cards do */
.htrip-sec .pstrip { margin-bottom: 20px; }

.hframes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 var(--gutter) 20px;
  padding: 0;
  list-style: none;
}

.hframe {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hframe--wide { grid-column: span 2; }

.hframe--hot {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.hframe__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hframe__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.86) 0%, transparent 52%);
  pointer-events: none;
}

.hframe--hot .hframe__scrim {
  background: linear-gradient(to top, rgba(192, 82, 27, 0.9) 0%, rgba(10, 10, 10, 0.2) 50%, transparent 72%);
}

.hframe__topscrim {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 92px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

.hframe__topscrim--short {
  height: 88px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.45) 0%, transparent 100%);
}

.hframe__tag {
  position: absolute;
  left: 18px;
  top: 16px;
  background: rgba(192, 82, 27, 0.94);
  padding: 4px 11px;
  color: #FFFFFF;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  pointer-events: none;
}

.hframe__tag--paper {
  left: 16px;
  background: var(--hm-paper);
  color: var(--accent);
}

.hframe__cap {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #FFFFFF;
  pointer-events: none;
}

.hframe__cap--tight { left: 18px; right: 18px; }

.hframe__where {
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
}

.hframe__title {
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.02;
}

.hframe__title--sm { font-size: 28px; }

.hframe__text {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
}

.hframe--hot .hframe__text { opacity: 0.92; }

.htrip__strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 var(--gutter) 22px;
}

.htrip__row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 var(--gutter);
}

.htrip__main {
  flex: 1 1 900px;
  min-width: min(680px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.htrip__briefs {
  display: flex;
  align-items: stretch;
  gap: 26px;
  flex-wrap: wrap;
}

/* their four lines, verbatim */
.hbrief {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: 15px;
}

.hbrief__label {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hbrief__text {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.85;
  text-wrap: pretty;
}

.hrewrite {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hrewrite__label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hrewrite__text {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.78;
  text-wrap: pretty;
}

.htable {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--ink);
}

.htable__head,
.hrow {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  padding: 12px 0;
}

.htable__head {
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}

.htable__head > span {
  font: inherit;
  letter-spacing: inherit;
  opacity: 1;
}

.hrows {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hrow { border-bottom: 1px dashed rgba(var(--ink-rgb), 0.3); }
.hrow:last-child { border-bottom: 2px solid var(--ink); }

/* the day the crossing happened */
.hrow--hot { background: rgba(192, 82, 27, 0.06); }

.hrow__day {
  flex: none;
  width: 46px;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.htable__head .hrow__day { font: inherit; }

.hrow--hot .hrow__day {
  padding-left: 10px;
  color: var(--accent);
}

.hrow--empty .hrow__day { opacity: 0.45; }

.hrow__what {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hrow__title {
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.05;
}

.hrow--hot .hrow__title {
  color: var(--accent);
  font-weight: 600;
}

.hrow--empty .hrow__title { opacity: 0.55; }

.hrow__note {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.68;
  text-wrap: pretty;
}

.hrow__night {
  flex: none;
  width: 190px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.75;
}

.hrow__meals {
  flex: none;
  width: 90px;
  font-size: 17px;
  font-weight: 500;
  opacity: 0.55;
  text-align: right;
}

.htable__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  padding-top: 14px;
}

.htable__plan {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

.htable__script {
  margin-left: auto;
  color: var(--accent);
  font-family: "Caramel", "Segoe Script", cursive;
  font-size: 44px;
  line-height: 0.5;
  white-space: nowrap;
}

/* what it cost, printed as the invoice read */
.hprice {
  flex: 0 1 400px;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  background: var(--hm-panel);
  padding: 0 0 22px;
  color: var(--hm-panel-ink);
}

.hprice__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(var(--hm-panel-rgb), 0.3);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hprice__tab-label { color: var(--ab-panel-accent); }

.hprice__guests {
  margin-left: auto;
  opacity: 0.6;
}

.hprice__sums {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 22px 0;
}

.hsum {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.hsum--rule {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(var(--hm-panel-rgb), 0.45);
}

.hsum__key {
  font-size: 19px;
  font-weight: 500;
  opacity: 0.7;
}

.hsum--big .hsum__key {
  font-size: 20px;
  opacity: 0.8;
}

.hsum__value {
  margin-left: auto;
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.hsum__value--md {
  color: inherit;
  font-size: 26px;
  font-weight: 500;
}

.hsum__value--sm {
  color: inherit;
  font-size: 24px;
  font-weight: 500;
}

.hprice__where {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 18px 22px 0;
  padding-top: 15px;
  border-top: 2px dotted rgba(var(--hm-panel-rgb), 0.45);
}

.hprice__label {
  margin: 0;
  color: var(--ab-panel-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hspend {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(var(--hm-panel-rgb), 0.35);
}

.hspend:last-child { border-bottom: 0; }

.hspend__what {
  font-size: 18px;
  font-weight: 600;
}

.hspend__sum {
  margin-left: auto;
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 19px;
  opacity: 0.85;
}

.hprice__own {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 22px 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(var(--hm-panel-rgb), 0.4);
}

.hown {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hown__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}

.hown__text {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.75;
}

.hown__value {
  margin-left: auto;
  color: var(--ab-panel-accent);
  font-family: "Oswald", "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.hown__pp {
  font-size: 15px;
  opacity: 0.7;
}

.hprice__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 18px 22px 0;
}

.hprice__perf {
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(var(--hm-panel-rgb), 0.5) 0 8px, transparent 8px 16px);
}

.hprice__quote {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.85;
  text-wrap: pretty;
}

.hprice__who {
  margin: 0;
  color: var(--ab-panel-accent);
  font-family: "Caramel", "Segoe Script", cursive;
  font-size: 42px;
  line-height: 0.55;
}

.hprice__cta {
  background: var(--ab-panel-cta);
  padding: 15px;
  color: var(--ab-panel-cta-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.16s ease-out, color 0.16s ease-out;
}

.hprice__cta:hover,
.hprice__cta:focus-visible { background: var(--ab-panel-accent); }

/* ==========================================================================
   06. Responsive
   ========================================================================== */

@media (max-width: 1500px) {
  .secthead .display--about { font-size: 74px; }
  .hopen { height: 700px; }
  .hopen__word { font-size: 80px; }
  .hopen__script { font-size: 62px; }
  .hdests { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
  .hopen { height: 620px; }
  .hopen__word { font-size: 62px; }
  .hopen__script { font-size: 48px; }
  .hopen__lead { font-size: 21px; }
  .hcard { width: 310px; bottom: 28px; }
  .hcell { flex: 1 1 260px; padding: 20px 22px; }
  .hframes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hframe { height: 360px; }
  .htrip__main { flex: 1 1 100%; min-width: 0; }
  .hprice { flex: 1 1 100%; }
}

@media (max-width: 1000px) {
  .hopen-sec { padding: 28px var(--gutter) 34px; }
  .hband-sec { padding: 24px var(--gutter) 32px; }
  .hdest-sec,
  .htrip-sec { padding-bottom: 40px; }

  .secthead { padding: 26px 0 20px; gap: 14px; }

  .secthead__note {
    margin-left: 0;
    padding-bottom: 0;
    text-align: left;
    font-size: 18px;
  }

  .pcell2 { flex: 1 1 150px; padding: 10px 14px; }
  .pcell2__label { font-size: 14px; }

  .hband__head { gap: 12px; padding: 12px 20px; font-size: 14px; }
  .hband__tag { margin-left: 0; }
  .hband__foot { gap: 14px; padding: 14px 20px; }
  .hband__text { font-size: 18px; }
  .hband__cta { margin-left: 0; padding: 12px 22px; font-size: 15px; }

  .railnote { gap: 14px; }
  .railnote__text { font-size: 18px; }

  .railnote__cta,
  .railnote__cta--solid {
    margin-left: 0;
    padding: 13px 24px;
    font-size: 16px;
  }

  /* the opener's three overlaid elements become blocks under the photograph */
  .hopen { height: auto; }

  .hopen__img {
    position: static;
    height: 400px;
  }

  .hopen__scrim { inset: 0 0 auto; height: 400px; }
  .hopen__scrim--foot,
  .hopen__scrim--head { top: 0; }

  .hopen__head { left: 20px; right: 20px; top: 20px; font-size: 13px; }

  .hopen__body {
    position: static;
    max-width: none;
    gap: 18px;
    padding: 22px 0 0;
    color: var(--ink);
  }

  .hopen__word--outline { -webkit-text-stroke: 2px var(--ink); }
  .hopen__script { color: var(--accent); }
  .hopen__lead { max-width: none; }
  .hopen__strip { max-width: none; }

  .hdays--open .hday { background: var(--accent); }
  .hdays--open .hday--free { background: rgba(var(--ink-rgb), 0.18); }
  .hlegend--open .hlegend__key--on { color: var(--accent); }
  .hlegend--open .hlegend__key--off { opacity: 0.5; }
  .hlegend--open .hlegend__key--off .hlegend__swatch { background: rgba(var(--ink-rgb), 0.25); }

  .hcard {
    position: static;
    width: auto;
    margin-top: 22px;
    border: 2px solid var(--ink);
  }

  .hrow__night { width: 150px; }
  .hrow__meals { width: 78px; }
}

@media (max-width: 760px) {
  .hdests,
  .hframes { grid-template-columns: minmax(0, 1fr); }

  .hframe--wide { grid-column: span 1; }
  .hframe { height: 300px; }

  .hopen__img,
  .hopen__scrim { height: 280px; }

  /* stacked cells are divided top to bottom, never by a stray left rule */
  .pstrip { display: block; }

  .pcell2 {
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid rgba(var(--ink-rgb), 0.22);
  }

  .pcell2:first-child { border-top: 0; }

  .hcell,
  .hcell--hot {
    flex: 1 1 100%;
    border-left: 0;
    border-top: 1px solid rgba(var(--hm-panel-rgb), 0.3);
  }

  .hcell:first-child { border-top: 0; }
  .hcell--hot { border-top: 0; }

  /* the day table becomes a stack of day cards */
  .htable__head { display: none; }

  .hrow {
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 12px 0;
  }

  .hrow__what { flex: 1 1 100%; order: 2; padding-left: 58px; }
  .hrow__day { order: 1; }
  .hrow__night { order: 3; width: auto; padding-left: 58px; }
  .hrow__meals { order: 4; margin-left: auto; width: auto; text-align: right; }
  .hrow--hot .hrow__day { padding-left: 0; }

  .hprice { min-width: 0; }
}

@media (max-width: 430px) {
  .secthead .display--about { font-size: clamp(30px, 8.5vw, 48px); }
  .secthead .script--about { font-size: clamp(30px, 9vw, 46px); }
  .hopen__word { font-size: clamp(30px, 9vw, 48px); }
  .hopen__script { font-size: clamp(30px, 9vw, 46px); }
  .hopen__head { flex-wrap: wrap; gap: 10px; font-size: 12px; letter-spacing: 0.14em; }
  .hopen__tag { margin-left: 0; }
  .hlegend,
  .hlegend--open { flex-wrap: wrap; gap: 6px 14px; }
  .hlegend__key--off { margin-left: 0; }
  .hdest__price { flex-wrap: wrap; gap: 4px 10px; }
  .hdest__days { margin-left: 0; }
  .htable__foot { gap: 8px; }
  .htable__script { margin-left: 0; }
  .hprice__own { flex-wrap: wrap; gap: 8px; }
  .hown__value { margin-left: 0; }
}
