/* ============================================================
   Mouseways site.css
   Supplements WA design tokens.
   ============================================================ */

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Ensure [hidden] works even when an element has display: flex/grid in other rules */
[hidden] { display: none !important; }

body {
  margin: 0;
  /* Page base is the tinted neutral — sections with their own background
     (--light, --dark, --tinted) override it where needed. */
  background-color: rgb(242 240 238);
  color: var(--wa-color-neutral-10);
  font-size: 1rem;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a {
  color: var(--wa-color-brand-40);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

ul { padding-left: 1.25rem; }
li { margin-bottom: 0.25rem; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 5rem; }
.section--dark {
  background-color: var(--wa-color-neutral-10);
  color: var(--wa-color-neutral-90);
}
.section--light  { background-color: #fff; }
.section--tinted { background-color: rgb(242 240 238); }

/* ── Section header variants ──────────────────────────────── */
.section-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--wa-color-brand-40);
  display: block;
  margin-bottom: 0.5rem;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title-centered {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: inherit;
}

.section-header-left  { margin-bottom: 1.25rem; }
.section-title-left {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: inherit;
}

/* Numbered-rule treatment (inner pages) */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-header__number {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wa-color-brand-40);
  white-space: nowrap;
}
.section-header__rule {
  flex: 1;
  height: 1px;
  background-color: currentColor;
  opacity: 0.2;
}
.section-header__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: inherit;
}

/* ── Site header / nav ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
}
/* .container sets max-width + padding-inline; we override padding here for the pill */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  gap: 1.5rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding-inline: 1.5rem;
}

.site-logo { text-decoration: none; display: flex; align-items: center; }
.site-logo__img { display: block; height: 40px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}
.site-nav__link {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wa-color-neutral-30);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav__link:hover { color: var(--wa-color-brand-40); text-decoration: none; }

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--wa-color-neutral-20);
  padding: 0.25rem;
}
.site-nav--mobile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  padding: 1rem 1.5rem 1.5rem;
  margin: 0.5rem 1rem 0;
  gap: 0.75rem;
}
.site-nav--mobile .site-nav__link { font-size: 1rem; }
.site-nav__link--cta {
  display: inline-block;
  background-color: var(--wa-color-brand-40);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Nav offers dropdown (wa-dropdown) ────────────────────── */
/* Trigger is a plain <a> — no extra styles needed beyond .site-nav__link */

/* Mobile: sub-links indented under Offers */
.site-nav__link--sub {
  font-size: 0.875rem !important;
  padding-left: 1.25rem;
  color: var(--wa-color-neutral-50) !important;
  font-weight: 500 !important;
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .site-nav__actions { display: none; }
  .site-nav__hamburger { display: flex; }
}

/* ── Cinematic full-bleed hero ────────────────────────────── */
.hero-split {
  position: relative;
  z-index: 1;
  min-height: 60vh;
  max-height: 90vh;
  height: 90vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #06060e;
  /* Pull hero up behind the floating nav pill (header = 0.75×2 + 3.5 = 5rem) */
  margin-top: -5rem;
}

/* Castle photo: atmosphere, not content */
.hero-split__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Castle pushed far right — partial crop, asymmetric, anti-postcard */
  object-position: 65% 22%;
  display: block;
  /* Slight darkening — castle should still be clearly visible */
  filter: brightness(0.78) saturate(0.72) contrast(0.96);
}

/* Layer 1 — warm shadow grade, keeps blue-hour from going too cool */
.hero-split__image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(28, 12, 6, 0.16);
}

/* Layer 2 — horizontal gradient: dark left (behind text), open right (castle) */
.hero-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgb(8 10 18 / 0.88)  0%,
      rgb(8 10 18 / 0.70) 30%,
      rgb(8 10 18 / 0.12) 58%,
      transparent         100%
    );
}

/* Text column sits above all image layers */
.hero-split__text {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* At least 40% of hero width; simpler than the old 60% + large padding combo */
  width: clamp(40%, 58%, 840px);
}
.hero-split__text-inner {
  /* Top padding clears the 5rem floating nav pill + breathing room */
  padding: clamp(7.5rem, 14vh, 10rem) 3rem clamp(20rem, 44vh, 32rem) clamp(1.5rem, 4vw, 5rem);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mw-brand-soft);
  margin: 0 0 1rem;
}
.hero-split__headline {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 1.75rem;
}
.hero-split__headline em {
  font-style: italic;
  font-weight: 400;
  color: #ffacc6;
}
.hero-split__sparkle {
  color: #f5c842;
  font-size: 0.6em;
  vertical-align: super;
  display: inline-block;
}
.hero-split__subhead {
  font-size: 0.975rem;
  color: var(--wa-color-neutral-70);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__actions wa-button[variant="brand"] {
  filter: drop-shadow(0 0 18px rgb(182 6 91 / 0.55));
}
@media (max-width: 768px) {
  .hero-split { min-height: 680px; }
  .hero-split__image img { object-position: 72% 22%; }
  .hero-split__image::after {
    background:
      linear-gradient(to top, rgb(8 10 18 / 0.90) 0%, rgb(8 10 18 / 0.60) 30%, transparent 70%),
      linear-gradient(90deg, rgb(8 10 18 / 0.75) 0%, transparent 60%);
  }
  .hero-split__text { width: 100%; max-width: 100%; }
  .hero-split__text-inner {
    padding: 7rem 1.5rem clamp(8rem, 18vh, 12rem);
    max-width: 100%;
  }
  .hero-split__headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-testimonial-card { display: none; }
}

/* ── Hero floating testimonial card ──────────────────────── */
.hero-testimonial-card {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  left: 2rem;
  max-width: 280px;
  margin-left: auto;
  background: rgb(255 255 255 / 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.6);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.18);
  z-index: 4; /* above the .hero-split::after bottom fade at z-index 3 */
}
.hero-testimonial-card__stars {
  display: flex;
  gap: 0.15rem;
  color: #f5c842;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.hero-testimonial-card__quote {
  font-size: 0.8rem;
  color: var(--wa-color-neutral-20);
  line-height: 1.6;
  margin: 0 0 0.75rem;
  font-style: italic;
}
.hero-testimonial-card__byline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wa-color-brand-40);
  margin: 0;
}

/* Mobile: testimonial card hidden in the 768px block above */

/* ── Value props floating card ────────────────────────────── */
.value-props-card-wrap {
  /* Wrap is transparent and zero-height structurally — only the card has a
     background. The next section flows flush against the card's bottom edge
     so no white body strip shows between them. */
  background: transparent;
  padding-block: 0;
  /* z-index must be above hero's positioned stacking context so the card
     (and its shadow) paint on top of hero::after */
  position: relative;
  z-index: 10;
}
.value-props-card {
  background: #fff;
  border-radius: 16px;
  /* Larger, warmer shadow — floats convincingly over the hero image */
  box-shadow:
    0 40px 100px rgb(20 10 5 / 0.12),
    0 8px 24px rgb(20 10 5 / 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2rem;
  gap: 1.5rem;
  /* Card alone is pulled up into the hero — image stays visible behind it */
  margin-top: -10vh;
}
.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-prop-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--wa-color-brand-95);
  color: var(--wa-color-brand-40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.value-prop-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--wa-color-neutral-10);
}
.value-prop-item__desc {
  font-size: 0.85rem;
  color: var(--wa-color-neutral-30);
  line-height: 1.6;
  margin: 0;
}
/* Dividers between items */
.value-prop-item + .value-prop-item {
  border-left: 1px solid var(--wa-color-neutral-90);
  padding-left: 1.5rem;
}

@media (max-width: 900px) {
  .value-props-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-prop-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 560px) {
  .value-props-card {
    grid-template-columns: 1fr;
    /* Keep the float effect on phones — card stacks vertically and pulls up
       a bit deeper since it's taller in single-column layout. */
    margin-top: -15vh;
  }
  .value-prop-item + .value-prop-item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--wa-color-neutral-90);
    padding-top: 1.25rem;
  }
  .value-props-card-wrap { padding-top: 0; }
}

/* ── Destination cards ────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dest-card {
  display: block;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.dest-card:hover .dest-card__img { transform: scale(1.04); }
.dest-card__img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  border-radius: 24px;
  overflow: hidden;
  /* Placeholder colors until real photos are loaded */
}
.dest-card__img--wdw  { background-color: #1a3052; background-image: url('/assets/images/destinations/dest-wdw.jpg'); }
.dest-card__img--dlr  { background-color: #2c1a3a; background-image: url('/assets/images/destinations/dest-dlr.jpg'); }
.dest-card__img--aul  { background-color: #0a3a3a; background-image: url('/assets/images/destinations/dest-aul.jpg'); }
.dest-card__img--dcl  { background-color: #0a1a3a; background-image: url('/assets/images/destinations/dest-dcl.jpg'); }
.dest-card__img--abd  { background-color: #1a2a1a; background-image: url('/assets/images/destinations/dest-abd.jpg'); }
.dest-card__img--nge  { background-color: #2a1a0a; background-image: url('/assets/images/destinations/dest-nge.jpg'); }
.dest-card__img--uni  { background-color: #1a1a2a; background-image: url('/assets/images/destinations/dest-uni.jpg'); }
.dest-card__img--ccl  { background-color: #0a2a3a; background-image: url('/assets/images/destinations/dest-ccl.jpg'); }
.dest-card__img--rc   { background-color: #1a0a2a; background-image: url('/assets/images/destinations/dest-rc.jpg'); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 0.72) 100%);
}
.dest-card__badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  /* Outlined treatment — translucent fill keeps text legible against the
     varied destination photos behind. */
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--mw-brand);
  border: 1px solid var(--mw-brand);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  z-index: 1;
}
.dest-card__badge--new {
  color: var(--wa-color-neutral-20);
  border-color: var(--wa-color-neutral-20);
}
.dest-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem;
  color: #fff;
  text-align: center;
}
.dest-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1rem;
}
.dest-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}
.dest-card__location {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card__img { aspect-ratio: 3/2; }
}

/* ── Agents + Story side by side ──────────────────────────── */
.agents-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Agents panel */
.agents-panel {
  display: flex;
  flex-direction: column;
}
.agents-panel__lead {
  font-size: 0.925rem;
  color: var(--wa-color-neutral-50);
  margin: 0 0 2rem;
  max-width: 42ch;
  line-height: 1.6;
}
.agents-avatars {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.agent-avatar-link {
  text-decoration: none;
  text-align: center;
  color: inherit;
}
.agent-avatar-link:hover { text-decoration: none; }
.agent-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--wa-color-brand-90);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--wa-color-brand-40);
  margin-bottom: 0.5rem;
  transition: box-shadow 0.2s;
}
.agent-avatar-link:hover .agent-avatar {
  box-shadow: 0 0 0 3px var(--wa-color-brand-40);
}
.agent-avatar img { width: 100%; height: 100%; object-fit: cover; }
.agent-avatar__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wa-color-neutral-40);
  margin: 0;
}
.agent-avatar__title {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--wa-color-neutral-60);
  margin: 0.1rem 0 0;
}
.agents-panel__link,
.agents-panel__soon {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wa-color-brand-40);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}
.agents-panel__soon { color: var(--wa-color-neutral-50); font-weight: 400; margin-top: 0; margin-bottom: 1rem; }
.agents-panel__link:hover { text-decoration: underline; }

/* Story panel */
.story-panel {
  background: linear-gradient(150deg, var(--wa-color-brand-20) 0%, var(--wa-color-brand-40) 55%, var(--wa-color-brand-50) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.story-panel__text {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.story-panel__signature {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin: 0.5rem 0 1.25rem;
}
.story-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.story-panel__cta:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .agents-story-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { padding-block: 5rem; }
.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  flex: 1;
  overflow: hidden;
}
.testimonial-card {
  background: rgb(255 255 255 / 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 20px;
  padding: 1.75rem;
  margin: 0;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.10);
}
.testimonial-card[data-active="false"] { display: none; }

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  color: #f5c842;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  font-size: 0.925rem;
  color: var(--wa-color-neutral-80);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  font-style: normal;
}
.testimonial-card__byline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wa-color-brand-60);
  letter-spacing: 0.04em;
}
.testimonials-carousel__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.875rem;
}
.testimonials-carousel__arrow:hover { background: rgba(255,255,255,0.15); }

/* On large screens all 3 are visible, arrows hidden */
@media (min-width: 769px) {
  .testimonial-card { display: block !important; }
  .testimonials-carousel__arrow { display: none; }
}
@media (max-width: 768px) {
  .testimonials-track { grid-template-columns: 1fr; }
}

/* ── Newsletter bar ───────────────────────────────────────── */
/* Lives between testimonials (dark) and footer (dark) — stay dark, use brand accent */
.newsletter-bar {
  background-color: var(--wa-color-neutral-05);
  padding-block: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.newsletter-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.newsletter-bar__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(182,6,91,0.25);
  color: var(--wa-color-brand-60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.newsletter-bar__heading {
  font-weight: 700;
  font-size: 0.975rem;
  color: #fff;
  margin: 0 0 0.2rem;
}
.newsletter-bar__sub {
  font-size: 0.8rem;
  color: var(--wa-color-neutral-60);
  margin: 0;
}
.newsletter-bar__form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}
.newsletter-bar__input { flex: 1; }
.newsletter-bar__input::part(base) { min-height: 2.75rem; }
.newsletter-bar__msg {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  flex-basis: 100%;
}
.newsletter-bar__msg[data-state="ok"]  { color: var(--mw-brand); }
.newsletter-bar__msg[data-state="err"] { color: #ff8a8a; }
/* Suppress wa-input's orphaned required asterisk on the no-label newsletter
   field. The required attribute is preserved for browser validation; only the
   visual indicator is hidden. */
.newsletter-bar__input::part(required-indicator),
.newsletter-bar__input::part(label),
.newsletter-bar__input::part(form-control-label) {
  display: none;
}

@media (max-width: 768px) {
  .newsletter-bar__form { min-width: 100%; }
  .newsletter-bar__inner { flex-direction: column; align-items: flex-start; }
}

/* ── Site footer ──────────────────────────────────────────── */
.site-footer {
  background-color: var(--wa-color-neutral-10);
  color: var(--wa-color-neutral-70);
  padding-block: 4rem 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.site-footer__brand {}
.site-footer__logo { text-decoration: none; display: inline-block; margin-bottom: 0.75rem; }
.site-footer__logo-img { display: block; height: 36px; width: auto; filter: brightness(0) invert(1); }
.site-footer__tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-color-neutral-60);
  margin: 0 0 1.25rem;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-color-neutral-60);
  font-size: 0.9rem;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.site-footer__social-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.site-footer__links h4 {
  font-family: var(--wa-font-family-body);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 1rem;
}
.mw-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}
.site-footer__links a {
  font-size: 0.9rem;
  color: var(--wa-color-neutral-60);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__links a:hover { color: #fff; text-decoration: none; }

/* Legal links under the Contact column — styled to match the column
   h4 (caps, tracked, bold, white) so they read as their own labels
   rather than buried list items. Heading font applied explicitly
   because <a> doesn't inherit it the way <h4> does. */
.site-footer__links .site-footer__legal-link {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--wa-font-family-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__links .site-footer__legal-link + .site-footer__legal-link {
  margin-top: 0.5rem;
}
.site-footer__links .site-footer__legal-link:hover {
  color: var(--mw-brand-soft);
  text-decoration: none;
}

.site-footer__text-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wa-color-brand-60);
  border: 1px solid var(--wa-color-brand-60);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s;
}
.site-footer__text-btn:hover {
  background: rgba(231, 106, 146, 0.1);
  text-decoration: none;
}

.site-footer__credentials {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer__clia-link {
  display: inline-block;
}
.site-footer__clia-link:hover { text-decoration: none; }
.site-footer__clia {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.site-footer__clia-link:hover .site-footer__clia { opacity: 1; }
.site-footer__clia-number {
  margin: 0.6rem 0 0;
  font-size: 0.775rem;
  color: var(--wa-color-neutral-60);
}
.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--wa-color-neutral-60);
}
.site-footer__disclaimer { max-width: 60ch; text-align: right; }

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .site-footer__disclaimer { text-align: left; }
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background-color: var(--wa-color-neutral-10);
  color: #fff;
  /* Pull up behind the floating nav pill; padding-top compensates */
  margin-top: -5rem;
  padding-top: calc(4rem + 5rem);
  padding-bottom: 4rem;
}
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wa-color-brand-60);
  margin-bottom: 0.75rem;
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--wa-color-neutral-70);
  max-width: 56ch;
  line-height: 1.65;
}

/* ── Cards ────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

.resort-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--wa-color-neutral-90);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.resort-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.resort-card__image {
  aspect-ratio: 16/9;
  background-color: var(--wa-color-neutral-90);
  overflow: hidden;
}
.resort-card__image img { width: 100%; height: 100%; object-fit: cover; }
.resort-card__image--placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-color-neutral-60);
  font-size: 2.5rem;
}
.resort-card__body { padding: 1.25rem; flex: 1; }
.resort-card__tier {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wa-color-brand-40);
  margin-bottom: 0.4rem;
}
.resort-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.resort-card__excerpt {
  font-size: 0.875rem;
  color: var(--wa-color-neutral-50);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.resort-card__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--wa-color-neutral-90);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resort-card__property { font-size: 0.75rem; color: var(--wa-color-neutral-50); }
.resort-card__arrow { color: var(--wa-color-brand-40); font-size: 0.875rem; }

/* ── Agent card (team page) ───────────────────────────────── */
.agent-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--wa-color-neutral-90);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.agent-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--wa-color-brand-90);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--wa-color-brand-40);
}
.agent-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.agent-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.agent-card__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-color-brand-40);
  margin-bottom: 0.75rem;
}
.agent-card__message {
  font-size: 0.9rem;
  color: var(--wa-color-neutral-40);
  line-height: 1.6;
  font-style: italic;
}
.agent-card__link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wa-color-brand-40);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Offer card ───────────────────────────────────────────── */
.offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--wa-color-neutral-90);
}
.offer-card__header {
  background-color: var(--wa-color-brand-40);
  color: #fff;
  padding: 1rem 1.5rem;
}
.offer-card__tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.offer-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.offer-card__body { padding: 1.5rem; }
.offer-card__desc {
  font-size: 0.9rem;
  color: var(--wa-color-neutral-40);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.offer-card__expiry {
  font-size: 0.75rem;
  color: var(--wa-color-neutral-60);
  margin-bottom: 1rem;
}

/* ── Plan My Trip form ────────────────────────────────────── */
.plan-form {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
  border: 1px solid var(--wa-color-neutral-90);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.plan-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.plan-form__row--full { grid-template-columns: 1fr; }
@media (max-width: 560px) {
  .plan-form { padding: 1.5rem; }
  .plan-form__row { grid-template-columns: 1fr; }
}

/* ── Filter bar ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--wa-color-neutral-80);
  background: none;
  cursor: pointer;
  color: var(--wa-color-neutral-40);
  transition: all 0.15s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--wa-color-brand-40);
  color: var(--wa-color-brand-40);
  background-color: var(--wa-color-brand-95);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--wa-color-neutral-70);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--wa-color-neutral-70); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: 0.4; }

/* ── Highlights list ──────────────────────────────────────── */
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.925rem;
  margin: 0;
}
.highlights-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--wa-color-brand-40);
  margin-top: 0.55em;
  flex-shrink: 0;
}

/* ── Resort detail ────────────────────────────────────────── */
.resort-detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.resort-detail__meta-card {
  background: #fff;
  border: 1px solid var(--wa-color-neutral-90);
  border-radius: 12px;
  padding: 1.75rem;
  position: sticky;
  top: 5rem;
}
.resort-detail__meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--wa-color-neutral-90);
}
.resort-detail__meta-row:last-child { border-bottom: none; }
.resort-detail__meta-label { color: var(--wa-color-neutral-50); }
.resort-detail__meta-value { font-weight: 600; }

@media (max-width: 900px) {
  .resort-detail__grid { grid-template-columns: 1fr; }
  .resort-detail__meta-card { position: static; }
}

.resort-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}
.resort-gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--wa-border-radius-m, 0.5rem);
  background-color: var(--wa-color-neutral-20);
}
.resort-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.resort-gallery__item:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .resort-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* ── Empty / agent detail ─────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--wa-color-neutral-50);
}
.empty-state__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.empty-state__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--wa-color-neutral-30);
}

/* ── Utilities ────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-brand  { color: var(--wa-color-brand-40); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ── Blog ─────────────────────────────────────────────────── */
.post-list { display: flex; flex-direction: column; gap: 3rem; }

.post-card { border-bottom: 1px solid var(--wa-color-neutral-90); padding-bottom: 3rem; }
.post-card:last-child { border-bottom: none; }

.post-card__meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-color-neutral-50);
  margin-bottom: 0.5rem;
}
.post-card__title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--wa-color-brand-40); text-decoration: none; }
.post-card__excerpt { color: var(--wa-color-neutral-40); line-height: 1.7; margin-bottom: 1rem; }
.post-card__excerpt p { margin: 0; }
.post-card__read-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wa-color-brand-40);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Prose (blog posts) ───────────────────────────────────── */
.prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--wa-color-neutral-20);
}
.prose h2 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.prose p { margin: 0 0 1.25rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose hr { border: none; border-top: 1px solid var(--wa-color-neutral-90); margin: 2.5rem 0; }
.prose a { color: var(--wa-color-brand-40); }
.prose strong { font-weight: 700; }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 3px solid var(--wa-color-brand-40);
  margin: 1.5rem 0;
  padding: 0.5rem 1.25rem;
  color: var(--wa-color-neutral-40);
  font-style: italic;
}

/* Post footer */
.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wa-color-neutral-90);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.post-footer__cta p {
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.post-footer__back {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wa-color-neutral-50);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Content pages (planning, KBYG, etc.) ─────────────────── */
.content-page { max-width: 820px; margin-inline: auto; }
.content-page h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}
.content-page p { line-height: 1.75; color: var(--wa-color-neutral-30); margin: 0 0 1.25rem; }
.content-page ul { color: var(--wa-color-neutral-30); line-height: 1.75; margin-bottom: 1.25rem; }
.content-page li { margin-bottom: 0.4rem; }

/* Child-page grid for section hubs */
.child-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.child-page-card {
  background: #fff;
  border: 1px solid var(--wa-color-neutral-90);
  border-radius: var(--wa-border-radius-l, 0.75rem);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.15s;
}
.child-page-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); text-decoration: none; }
.child-page-card__icon { font-size: 1.5rem; color: var(--wa-color-brand-40); }
.child-page-card__title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.child-page-card__desc { font-size: 0.9rem; color: var(--wa-color-neutral-50); margin: 0; line-height: 1.6; }

/* ── Legal pages (privacy policy, terms, etc.) ───────────────
   Long-form copy with TOC, In Short callouts, contact box. Used
   on /privacy-policy/ and /terms-and-conditions/. */
.legal-page { color: var(--wa-color-neutral-20); }
.legal-page p,
.legal-page li { line-height: 1.7; font-size: 1rem; }
.legal-page p { margin: 0 0 1.1rem; }
.legal-page h2 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--wa-color-neutral-10);
	margin: 3rem 0 1rem;
	scroll-margin-top: 6rem;
}
.legal-page h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--wa-color-neutral-10);
	margin: 1.75rem 0 0.6rem;
	scroll-margin-top: 6rem;
}
.legal-page .legal-meta {
	font-size: 0.9rem;
	color: var(--wa-color-neutral-50);
	margin: 0 0 2rem;
}
.legal-page .legal-toc {
	background: var(--wa-color-neutral-95);
	border: 1px solid var(--wa-color-neutral-90);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin: 0 0 2.5rem;
}
.legal-page .legal-toc h2 {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	color: var(--mw-brand);
}
.legal-page .legal-toc ol {
	margin: 0;
	padding-left: 1.25rem;
}
.legal-page .legal-toc li {
	margin-bottom: 0.25rem;
	font-size: 0.95rem;
}
.legal-page .legal-toc a {
	color: var(--wa-color-neutral-20);
	text-decoration: none;
}
.legal-page .legal-toc a:hover { color: var(--mw-brand); text-decoration: underline; }
.legal-page .legal-in-short {
	background: #fff5f9;
	border-left: 3px solid var(--mw-brand);
	padding: 0.85rem 1.1rem;
	margin: 0 0 1.25rem;
	border-radius: 0 8px 8px 0;
	font-size: 0.95rem;
}
.legal-page .legal-in-short strong {
	color: var(--mw-brand);
	font-weight: 700;
}
.legal-page .legal-contact {
	background: var(--wa-color-neutral-95);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-top: 1.5rem;
	font-size: 0.95rem;
}
.legal-page .legal-contact p { margin: 0 0 0.35rem; }
.legal-page .legal-contact p:last-child { margin-bottom: 0; }
.legal-page a { color: var(--mw-brand); }
.legal-page a:hover { text-decoration: underline; }
.legal-page ol.wp-block-list,
.legal-page ol {
	margin: 0 0 1.1rem;
	padding-left: 1.5rem;
}
.legal-page ol li { margin-bottom: 0.5rem; }

/* ── Important Dates Calculator ───────────────────────────── */
.calc-inputs {
	background: var(--wa-color-neutral-97, #f7f7f9);
	border-radius: var(--wa-border-radius-l, 0.75rem);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.calc-field { display: flex; flex-direction: column; gap: 0.4rem; }
.calc-label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wa-color-neutral-40);
}
.calc-label wa-icon { color: #a7235a; }
.calc-date-input {
	width: 100%;
	max-width: 240px;
	padding: 0.6rem 0.75rem;
	border: 1.5px solid var(--wa-color-neutral-80, #ccc);
	border-radius: var(--wa-border-radius-m, 0.5rem);
	font-size: 1rem;
	font-family: inherit;
	background: #fff;
	color: var(--wa-color-neutral-10);
}
.calc-date-input:focus {
	outline: none;
	border-color: #a7235a;
	box-shadow: 0 0 0 3px rgba(167, 35, 90, 0.15);
}
.calc-onsite-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	cursor: pointer;
}
.calc-empty {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--wa-color-neutral-60);
}
.calc-empty wa-icon { font-size: 2rem; color: var(--wa-color-neutral-80); margin-bottom: 0.5rem; display: block; }
.calc-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}
.calc-table th {
	text-align: left;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wa-color-neutral-50);
	padding: 0 0.75rem 0.75rem;
	border-bottom: 2px solid var(--wa-color-neutral-90);
}
.calc-table td {
	padding: 1rem 0.75rem;
	border-bottom: 1px solid var(--wa-color-neutral-93);
	vertical-align: middle;
	font-size: 0.95rem;
}
.calc-window {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	white-space: nowrap;
}
.calc-window wa-icon { color: #a7235a; flex-shrink: 0; }
.calc-table .calc-note { color: var(--wa-color-neutral-50); font-size: 0.85rem; }
.calc-table .calc-rel { color: var(--wa-color-neutral-50); font-size: 0.85rem; white-space: nowrap; text-align: right; }
.calc-disclaimer {
	font-size: 0.85rem;
	color: var(--wa-color-neutral-50);
	line-height: 1.6;
	margin-bottom: 2rem;
}
.calc-cta {
	border-top: 1px solid var(--wa-color-neutral-90);
	padding-top: 2rem;
	margin-top: 1rem;
}
.calc-cta p { margin-bottom: 1rem; }
@media (max-width: 600px) {
	.calc-table th:nth-child(3),
	.calc-table td:nth-child(3) { display: none; }
	.calc-window { font-size: 0.875rem; }
}
