/* ShoreSmarts homepage and supporting legal pages. All rules are scoped to .home. */
.home {
  --home-cream: #fff8ee;
  --home-sand: #f5eadb;
  --home-surface: #fffdf8;
  --home-coral: #cc4636;
  --home-coral-dark: #a93225;
  --home-teal: #0c746f;
  --home-teal-dark: #07504d;
  --home-navy: #102c3b;
  --home-muted: #52666e;
  --home-border: #d8d1c5;
  --home-white: #fffdf8;
  --home-radius: 16px;
  --home-shell: 1280px;
  --home-header-height: 72px;
  min-width: 320px;
  background: var(--home-cream);
  color: var(--home-navy);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* This file stands alone: the home and legal pages no longer load styles.css,
   so the reset they used to inherit from it lives here, scoped to .home. */
.home {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.home *,
.home *::before,
.home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home img,
.home svg {
  display: block;
}

.home img {
  max-width: 100%;
}

.home a {
  color: inherit;
  text-decoration: none;
}

.home button {
  font-family: inherit;
}

.home a,
.home button,
.home summary {
  -webkit-tap-highlight-color: transparent;
}

.home a:focus-visible,
.home button:focus-visible,
.home summary:focus-visible,
.home [tabindex]:focus-visible {
  outline: 3px solid var(--home-coral);
  outline-offset: 4px;
}

.home .home__skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--home-white);
  color: var(--home-navy);
  font-weight: 700;
  transform: translateY(-160%);
}

.home .home__skip-link:focus {
  transform: translateY(0);
}

.home .home__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home .home__shell {
  width: min(100% - 32px, var(--home-shell));
  margin-inline: auto;
}

.home .home__section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--home-header-height) + 16px);
}

.home .home__section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.home .home__section-heading h2,
.home .home__cta h2,
.home .home__legal h1 {
  margin: 0;
  color: var(--home-navy);
  font-size: clamp(2rem, 5.8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.home .home__section-heading p,
.home .home__cta p {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.home .home__header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--home-header-height);
  color: var(--home-white);
  /* Nav text sits on rotating hero photos; the top of the hero scrim is too
     light to carry white text on bright slides, so the header brings its own. */
  background: linear-gradient(180deg, rgb(5 26 37 / 0.78) 0%, rgb(5 26 37 / 0.45) 62%, rgb(5 26 37 / 0) 100%);
}

.home .home__header.is-scrolled {
  position: fixed;
  background: rgb(16 44 59 / 0.96);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.15);
}

@supports (backdrop-filter: blur(14px)) {
  .home .home__header.is-scrolled {
    background: rgb(16 44 59 / 0.86);
    backdrop-filter: blur(14px) saturate(130%);
  }
}

.home .home__nav-shell {
  width: min(100% - 32px, var(--home-shell));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home .home__brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home .home__brand-mark {
  width: 30px;
  height: 30px;
  color: var(--home-coral);
  flex: none;
}

.home .home__desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.home .home__desktop-nav > a:not(.home__nav-cta) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.home .home__nav-cta {
  min-width: 104px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 999px;
  background: var(--home-white);
  color: var(--home-navy);
  font-weight: 700;
}

.home .home__menu-button,
.home .home__menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.5);
  border-radius: 50%;
  background: rgb(16 44 59 / 0.35);
  color: var(--home-white);
  cursor: pointer;
}

.home .home__menu-button svg,
.home .home__menu-close svg,
.home .home__carousel-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home .home__menu[hidden] {
  display: none;
}

.home .home__menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr minmax(270px, 88vw);
}

.home .home__menu-backdrop {
  width: 100%;
  height: 100%;
  border: 0;
  background: rgb(7 30 40 / 0.62);
  cursor: pointer;
}

.home .home__menu-panel {
  padding: 18px 22px 32px;
  background: var(--home-cream);
  color: var(--home-navy);
  box-shadow: -20px 0 60px rgb(7 30 40 / 0.22);
}

.home .home__menu-top {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--home-border);
}

.home .home__menu-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home .home__menu-close {
  border-color: var(--home-border);
  background: transparent;
  color: var(--home-navy);
}

.home .home__menu-links {
  display: grid;
  margin-top: 18px;
}

.home .home__menu-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--home-border);
  font-size: 1.125rem;
  font-weight: 600;
}

.home .home__hero {
  position: relative;
  min-height: min(760px, 100dvh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--home-teal-dark);
  color: var(--home-white);
}

.home .home__hero-media-stack,
.home .home__hero-media,
.home .home__hero-media img,
.home .home__hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home .home__hero-media img {
  object-fit: cover;
  object-position: 68% center;
}

.home .home__hero-scrim {
  background:
    linear-gradient(180deg, rgb(5 26 37 / 0.16) 0%, rgb(5 26 37 / 0.24) 36%, rgb(5 26 37 / 0.86) 100%),
    linear-gradient(90deg, rgb(5 26 37 / 0.68) 0%, rgb(5 26 37 / 0.12) 82%);
}

.home .home__hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--home-shell));
  margin: 0 auto;
  padding: calc(var(--home-header-height) + 28px) 0 54px;
}

.home .home__eyebrow {
  margin: 0 0 12px;
  color: #ffe4dc;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home .home__hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--home-white);
  font-size: clamp(2.5rem, 11vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.home .home__hero-copy {
  max-width: 560px;
  margin: 20px 0 10px;
  color: #f5f7f2;
  font-size: clamp(1.0625rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.home .home__button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.home .home__button:active,
.home .home__carousel-button:active,
.home .home__menu-button:active,
.home .home__menu-close:active {
  transform: scale(0.98);
}

.home .home__button--hero,
.home .home__button--primary {
  background: var(--home-coral);
  color: var(--home-white);
}

.home .home__button--hero:hover,
.home .home__button--primary:hover {
  background: var(--home-coral-dark);
}

.home .home__hero-ctas {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.home .home__button--hero-secondary {
  border-color: var(--home-white);
  background: var(--home-navy);
  background: color-mix(in srgb, var(--home-navy) 72%, transparent);
  color: var(--home-white);
}

.home .home__button--hero-secondary:hover {
  background: var(--home-white);
  color: var(--home-navy);
}

.home .home__hero-controls {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.home .home__hero-controls.is-ready {
  display: flex;
}

.home .home__hero-nav {
  width: 44px;
  height: 44px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: 50%;
  background: rgb(5 26 37 / 0.28);
  color: var(--home-white);
  cursor: pointer;
}

.home .home__hero-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home .home__hero-dots {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* The button is the 36px touch target; the visible dot is the ::after inside it.
   Sized so five targets plus both arrows still fit a 320px viewport without
   the hit areas overlapping each other, which mis-taps. */
.home .home__hero-dot {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.home .home__hero-dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.45);
}

.home .home__hero-dot.is-active::after {
  width: 11px;
  height: 11px;
  background: var(--home-white);
}

.home .home__button--secondary {
  border-color: var(--home-navy);
  background: transparent;
  color: var(--home-navy);
}

.home .home__button--secondary:hover {
  background: var(--home-navy);
  color: var(--home-white);
}

.home .home__comparison {
  background: var(--home-cream);
  padding-top: 22px;
}

.home .home__carousel {
  position: relative;
}

.home .home__carousel-viewport {
  overflow: visible;
}

.home .home__comparison-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home .home__price-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  background: var(--home-surface);
  box-shadow: 0 14px 36px rgb(16 44 59 / 0.08);
}

.home .home__price-card picture,
.home .home__price-card img {
  width: 100%;
}

.home .home__price-card img {
  height: auto;
  aspect-ratio: 640 / 420;
  object-fit: cover;
}

.home .home__price-card picture.image-failed {
  min-height: 180px;
  display: grid;
  place-items: center;
  background: #d7ebe7;
}

.home .home__price-card picture.image-failed::after {
  content: "Tour image unavailable";
  padding: 24px;
  color: var(--home-teal-dark);
  font-weight: 700;
}

.home .home__price-card picture.image-failed img {
  display: none;
}

.home .home__price-card-body {
  padding: 22px;
}

.home .home__price-port {
  margin: 0 0 4px;
  color: var(--home-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.home .home__price-card h3 {
  margin: 0;
  color: var(--home-navy);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home .home__saving {
  margin: 12px 0 18px;
  color: var(--home-teal-dark);
  font-size: 1.125rem;
  font-weight: 800;
}

.home .home__price-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  overflow: hidden;
}

.home .home__price-pair > div {
  padding: 12px;
}

.home .home__price-pair > div:first-child {
  border-right: 1px solid var(--home-border);
  background: #e5f3ed;
}

.home .home__price-pair > div:last-child {
  background: #ece6d9;
}

.home .home__price-pair dt {
  color: var(--home-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home .home__price-pair dd {
  margin: 3px 0 0;
  color: var(--home-navy);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.home .home__price-pair > div:first-child dd {
  color: var(--home-teal-dark);
}

.home .home__price-pair small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
}

.home .home__source-note {
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}

.home .home__carousel-controls {
  display: none;
  min-height: 52px;
  margin-top: 22px;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.home .home__carousel-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  background: var(--home-surface);
  color: var(--home-navy);
  cursor: pointer;
}

.home .home__carousel-button[aria-disabled="true"] {
  opacity: 0.42;
  cursor: default;
}

.home .home__carousel-position {
  min-width: 62px;
  margin: 0;
  color: var(--home-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-align: center;
}

.home .home__trust {
  background: var(--home-sand);
}

.home .home__trust-grid {
  display: grid;
  gap: 14px;
}

.home .home__trust-card {
  align-self: start;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  background: var(--home-surface);
  overflow: hidden;
}

.home .home__trust-card summary {
  min-height: 108px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
}

.home .home__trust-card summary::-webkit-details-marker {
  display: none;
}

.home .home__trust-card summary strong,
.home .home__trust-card summary small {
  display: block;
}

.home .home__trust-card summary strong {
  color: var(--home-navy);
  font-size: 1.0625rem;
  line-height: 1.25;
}

.home .home__trust-card summary small {
  margin-top: 4px;
  color: var(--home-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.home .home__trust-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5f3ed;
  color: var(--home-teal-dark);
}

.home .home__trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home .home__summary-plus {
  position: relative;
  width: 20px;
  height: 20px;
}

.home .home__summary-plus::before,
.home .home__summary-plus::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--home-navy);
}

.home .home__summary-plus::after {
  transform: rotate(90deg);
}

.home .home__trust-card[open] .home__summary-plus::after {
  transform: rotate(0deg);
}

.home .home__trust-detail {
  padding: 0 20px 22px 82px;
  color: var(--home-muted);
}

.home .home__trust-detail p {
  margin: 0 0 12px;
}

.home .home__trust-detail a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--home-coral-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home .home__cta {
  background: var(--home-cream);
}

.home .home__cta-inner {
  width: min(100% - 32px, 840px);
  margin-inline: auto;
  text-align: center;
}

.home .home__cta p {
  margin-inline: auto;
}

.home .home__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 28px auto 0;
}

.home .home__cta-hint {
  max-width: 60ch;
  margin: 20px auto 0;
  color: var(--home-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.home .home__footer {
  padding: 46px 0 34px;
  background: #e9dfd1;
  color: var(--home-navy);
}

.home .home__footer-shell {
  width: min(100% - 32px, var(--home-shell));
  margin-inline: auto;
}

.home .home__brand--footer {
  margin-bottom: 22px;
}

.home .home__footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}

.home .home__footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--home-navy);
  font-weight: 600;
}

.home .home__footer-meta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #cfc3b5;
  color: var(--home-muted);
  font-size: 0.8125rem;
}

.home .home__footer-meta p {
  margin: 0 0 7px;
}

.home .home__footer-meta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--home-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home.js-loaded .home__reveal {
  opacity: 0;
  transform: translateY(18px);
}

.home.js-loaded .home__reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home .home__legal-header {
  position: static;
  height: auto;
  background: var(--home-navy);
  color: var(--home-white);
}

.home .home__legal-header .home__nav-shell {
  height: var(--home-header-height);
}

.home .home__legal {
  width: min(100% - 32px, 780px);
  margin-inline: auto;
  padding: 64px 0 88px;
}

.home .home__legal h1 {
  margin-bottom: 10px;
}

.home .home__legal > p:first-of-type {
  margin: 0 0 40px;
  color: var(--home-muted);
}

.home .home__legal h2 {
  margin: 36px 0 10px;
  color: var(--home-navy);
  font-size: 1.45rem;
  line-height: 1.25;
}

.home .home__legal p,
.home .home__legal li {
  color: #354f5a;
  line-height: 1.75;
}

.home .home__legal p {
  margin: 0 0 14px;
}

.home .home__legal ul {
  margin: 12px 0 18px;
  padding-left: 24px;
}

.home .home__legal li + li {
  margin-top: 9px;
}

.home .home__legal a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--home-coral-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 639px) {
  .home .home__hero {
    min-height: min(620px, 88dvh);
  }

  .home .home__hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .home .home__hero-controls {
    order: 1;
    align-self: center;
  }

  .home .home__hero-ctas {
    order: 2;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
  }

  .home .home__hero-ctas .home__button {
    width: 100%;
  }

  .home .home__hero[data-hero-slide="1"] .home__hero-media.is-active img {
    height: 145%;
    object-position: 56% top;
  }

  .home .home__hero-scrim {
    background:
      linear-gradient(180deg, rgb(5 26 37 / 0.1) 0%, rgb(5 26 37 / 0.18) 36%, rgb(5 26 37 / 0.7) 100%),
      linear-gradient(90deg, rgb(5 26 37 / 0.5) 0%, rgb(5 26 37 / 0.08) 82%);
  }
}

@media (min-width: 640px) {
  .home .home__shell {
    width: min(100% - 48px, var(--home-shell));
  }

  .home .home__section {
    padding: 88px 0;
  }

  .home .home__comparison {
    padding-top: 26px;
  }

  .home .home__hero-content,
  .home .home__nav-shell,
  .home .home__footer-shell {
    width: min(100% - 48px, var(--home-shell));
  }

  .home .home__hero {
    min-height: 700px;
    align-items: center;
  }

  .home .home__hero-content {
    padding-top: calc(var(--home-header-height) + 56px);
    padding-bottom: 58px;
  }

  .home .home__hero-scrim {
    background:
      linear-gradient(90deg, rgb(5 26 37 / 0.78) 0%, rgb(5 26 37 / 0.48) 36%, rgb(5 26 37 / 0.08) 78%),
      linear-gradient(180deg, rgb(5 26 37 / 0.24) 0%, rgb(5 26 37 / 0.08) 60%, rgb(5 26 37 / 0.35) 100%);
  }

  .home .home__hero h1 {
    max-width: 700px;
    font-size: clamp(4rem, 8vw, 5.75rem);
  }

  .home .home__comparison-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .home__carousel.carousel-ready .home__carousel-viewport {
    overflow: hidden;
  }

  .home .home__carousel.carousel-ready .home__comparison-track {
    --home-items: 2;
    display: flex;
    gap: 18px;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .home .home__carousel.carousel-ready .home__price-card {
    flex: 0 0 calc((100% - (var(--home-items) - 1) * 18px) / var(--home-items));
  }

  .home .home__carousel.carousel-ready .home__carousel-controls {
    display: flex;
  }

  /* Every card already fits: paging would only push content out of view. */
  .home .home__carousel.carousel-ready .home__carousel-controls[hidden] {
    display: none;
  }

  .home .home__trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home .home__cta-actions {
    max-width: 540px;
    flex-direction: row;
    justify-content: center;
  }

  .home .home__cta-actions .home__button {
    flex: 1;
  }

  .home .home__footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 26px;
  }

  .home .home__legal {
    width: min(100% - 48px, 780px);
  }
}

@media (min-width: 1024px) {
  .home {
    --home-header-height: 76px;
    font-size: 17px;
  }

  .home .home__desktop-nav {
    display: flex;
  }

  .home .home__menu-button {
    display: none;
  }

  .home .home__section {
    padding: 104px 0;
  }

  .home .home__hero {
    min-height: 720px;
  }

  .home .home__hero-media img {
    object-position: center;
  }

  .home .home__hero-content {
    padding-top: calc(var(--home-header-height) + 60px);
  }

  .home .home__comparison-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home .home__carousel.carousel-ready .home__comparison-track {
    --home-items: 4;
  }

  .home .home__price-card-body {
    padding: 18px 16px;
  }

  .home .home__price-card h3 {
    font-size: 1.15rem;
  }

  .home .home__saving {
    font-size: 0.95rem;
  }

  .home .home__trust-grid {
    gap: 18px;
  }

  .home .home__footer-shell {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 20px 70px;
  }

  .home .home__brand--footer {
    margin: 0;
  }

  .home .home__footer-links {
    justify-content: flex-end;
  }

  .home .home__footer-meta {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1440px) {
  .home {
    font-size: 18px;
  }

  .home .home__hero {
    min-height: 780px;
  }

  .home .home__price-card h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 380px) {
  .home .home__hero h1 {
    font-size: 2.35rem;
  }

  .home .home__button {
    width: 100%;
    white-space: normal;
  }

  .home .home__trust-card summary {
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 17px 14px;
  }

  .home .home__trust-icon {
    width: 44px;
    height: 44px;
  }

  .home .home__trust-detail {
    padding: 0 14px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home {
    scroll-behavior: auto;
  }

  .home .home__button,
  .home .home__comparison-track,
  .home .home__summary-plus::after,
  .home .home__reveal {
    transition: none !important;
  }

  .home.js-loaded .home__reveal,
  .home.js-loaded .home__reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .home .home__carousel.carousel-ready .home__carousel-viewport {
    overflow: visible;
  }

  .home .home__carousel.carousel-ready .home__comparison-track {
    display: grid;
    transform: none !important;
    will-change: auto;
  }

  .home .home__carousel.carousel-ready .home__price-card {
    flex: initial;
  }

  .home .home__carousel.carousel-ready .home__carousel-controls {
    display: none;
  }
}

@media (forced-colors: active) {
  .home .home__button,
  .home .home__carousel-button,
  .home .home__trust-card,
  .home .home__price-card {
    border: 2px solid CanvasText;
  }
}
