:root {
  --ink: #0e1820;
  --ink-soft: #445563;
  --sky: #1a6fad;
  --sky-deep: #0e4a76;
  --field: #1f5a48;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(14, 24, 32, 0.42);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-border-dark: rgba(255, 255, 255, 0.18);
  --blur: 22px;
  --line: rgba(14, 24, 32, 0.1);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --nav-h: 5.25rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --measure: min(1120px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  background:
    linear-gradient(165deg, #dce8f1 0%, #e8f0f4 32%, #dfeae6 68%, #d4e3ef 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--sky-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sky);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: white;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

/* Ambient orbs behind everything */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.ambient-orb-a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: rgba(26, 111, 173, 0.35);
  top: -8%;
  left: -10%;
  animation: orb-float 18s var(--ease) infinite alternate;
}

.ambient-orb-b {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: rgba(31, 90, 72, 0.28);
  top: 40%;
  right: -12%;
  animation: orb-float 22s 1s var(--ease) infinite alternate-reverse;
}

.ambient-orb-c {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  background: rgba(120, 170, 210, 0.3);
  bottom: 5%;
  left: 30%;
  animation: orb-float 26s 0.5s var(--ease) infinite alternate;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* —— Glass primitives —— */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 18px 50px rgba(14, 40, 60, 0.1);
}

.glass-hero {
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border-radius: 1.25rem;
  max-width: 34rem;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.glass-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.35rem;
  background: var(--glass-strong);
}

.glass-center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.glass-center p {
  margin-left: auto;
  margin-right: auto;
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--sky-deep);
  background: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  height: fit-content;
}

.glass-frame {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(14, 40, 60, 0.14);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.cascade.is-visible .glass-frame img {
  transform: scale(1);
}

.glass-order {
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 1.5rem;
  text-align: center;
  color: #fff;
  background: rgba(14, 74, 118, 0.45);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 30px 80px rgba(8, 30, 50, 0.28);
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 1rem 0;
  pointer-events: none;
}

.header-glass {
  pointer-events: auto;
  width: var(--measure);
  margin: 0 auto;
  min-height: calc(var(--nav-h) - 0.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.85rem 0.45rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled .header-glass {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(14, 40, 60, 0.1);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  text-decoration: none;
  z-index: 2;
}

.brand-logo {
  width: auto;
  height: 64px;
  max-width: min(200px, 52vw);
  object-fit: contain;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.brand-logo-reverse {
  display: block;
  position: relative;
  z-index: 1;
}

.brand-logo-primary {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-scrolled .brand-logo-reverse {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-scrolled .brand-logo-primary {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  color: inherit;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.nav-toggle-bar {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.site-header.nav-open .nav-toggle-bar:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 0.8;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: inherit !important;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.is-scrolled .nav-cta {
  background: var(--sky);
  border-color: transparent;
  color: #fff !important;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: hero-drift 24s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.35) 0%, rgba(8, 18, 28, 0.12) 40%, rgba(8, 18, 28, 0.55) 100%),
    linear-gradient(115deg, rgba(8, 18, 28, 0.45), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--measure);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 0 5.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  max-width: 11ch;
  text-wrap: balance;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 30ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  width: 1.35rem;
  height: 2.35rem;
  display: flex;
  justify-content: center;
  text-decoration: none;
  opacity: 0.7;
}

.scroll-cue-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9));
  animation: scroll-pulse 2.2s var(--ease) infinite;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.btn-glass-solid {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: transparent;
}

.btn-glass-solid:hover {
  background: #fff;
  color: var(--ink);
}

.btn-glass-solid.dark {
  background: var(--sky);
  color: #fff;
}

.btn-glass-solid.dark:hover {
  background: var(--sky-deep);
  color: #fff;
}

/* —— Waterfall —— */
.waterfall {
  position: relative;
  width: var(--measure);
  margin: 0 auto;
  padding: 5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.waterfall-rail {
  display: none;
}

@media (min-width: 900px) {
  .waterfall-rail {
    display: block;
    position: absolute;
    left: 50%;
    top: 6rem;
    bottom: 4rem;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      transparent,
      rgba(26, 111, 173, 0.35) 12%,
      rgba(31, 90, 72, 0.35) 88%,
      transparent
    );
    z-index: 0;
  }
}

.waterfall-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 860px) {
  .waterfall-step {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }

  .waterfall-step.cascade-alt {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .waterfall-step[data-step="1"],
  .waterfall-step[data-step="2"] {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .waterfall-step[data-step="2"] {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.waterfall-step .section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 0.7rem;
}

.waterfall-step h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.waterfall-step p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 48ch;
}

.waterfall-step p:last-child {
  margin-bottom: 0;
}

.pull-line {
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem) !important;
  font-weight: 650;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
  line-height: 1.25 !important;
  max-width: 20ch !important;
  margin-top: 1.25rem !important;
}

.year-chip-inline {
  margin-top: 1.5rem;
}

.waterfall-media {
  margin: 0;
  min-height: 260px;
}

@media (min-width: 860px) {
  .waterfall-media {
    min-height: 360px;
  }

  .waterfall-media img {
    min-height: 360px;
  }

  /* Offset cascade — waterfall feel */
  .waterfall-step[data-step="1"] {
    width: 92%;
  }

  .waterfall-step[data-step="2"] {
    width: 92%;
    margin-left: auto;
  }

  .waterfall-step[data-step="3"] {
    width: 100%;
  }

  .waterfall-step[data-step="4"] {
    width: 100%;
  }
}

/* —— Order / close —— */
.order-band {
  width: var(--measure);
  margin: 3rem auto 2rem;
  padding: 0;
  position: relative;
}

.order-band::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(circle at 20% 30%, rgba(26, 111, 173, 0.45), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31, 90, 72, 0.4), transparent 45%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.order-band .glass-order {
  position: relative;
  z-index: 1;
}

.order-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.75rem;
}

.order-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
  color: #fff;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.close-section {
  width: var(--measure);
  margin: 0 auto;
  padding: 2rem 0 5.5rem;
}

.close-section .section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 0.7rem;
}

.close-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.close-section p {
  color: var(--ink-soft);
  max-width: 42ch;
}

.close-cta {
  margin-top: 1.5rem !important;
}

/* —— Inner pages —— */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 1.5rem;
  width: var(--measure);
  margin: 0 auto;
}

.page-hero .glass-panel {
  max-width: 40rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 0.85rem;
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 38ch;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 0.7rem;
}

.legal,
.contact-page {
  width: var(--measure);
  margin: 0 auto;
  padding: 1.5rem 0 5rem;
}

.legal .glass-panel,
.contact-page .glass-panel {
  margin-bottom: 1.25rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 1.75rem 0 0.65rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.contact-item {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.contact-item h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  text-decoration: none;
}

.contact-item a {
  font-weight: 600;
  color: var(--ink);
}

.contact-item a:hover {
  color: var(--sky-deep);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-actions .btn-glass {
  color: var(--ink);
  border-color: rgba(14, 24, 32, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.contact-actions .btn-glass:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.contact-closing {
  margin-top: 0.5rem;
}

.contact-closing p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 48ch;
}

/* —— Footer —— */
.site-footer {
  padding: 0 1rem 2rem;
}

.footer-glass {
  width: var(--measure);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 760px) {
  .footer-glass {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.footer-meta,
.footer-links {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.15rem;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sky-deep);
}

/* —— Cascade / waterfall motion —— */
.cascade {
  opacity: 0;
  transform: translateY(56px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}

.cascade.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.cascade-1 {
  animation: none;
}

.hero .cascade-1 {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(6px);
  animation: cascade-in 1.05s 0.15s var(--ease) forwards;
}

.waterfall-step.cascade:nth-child(2) { transition-delay: 0.02s; }
.waterfall-step.cascade:nth-child(3) { transition-delay: 0.06s; }

@keyframes cascade-in {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes orb-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(4%, 6%, 0);
  }
}

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

  .ambient-orb,
  .hero-media img,
  .cascade,
  .hero .cascade-1,
  .scroll-cue-line,
  .glass-frame img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* —— Mobile —— */
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    gap: 1.35rem;
    padding: 6rem 2rem 3rem;
    background: rgba(14, 24, 32, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    border-radius: 0;
  }

  .site-header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.nav-open .header-glass {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #fff;
  }

  .site-header.nav-open .brand-logo-reverse {
    opacity: 1;
    visibility: visible;
  }

  .site-header.nav-open .brand-logo-primary {
    opacity: 0;
    visibility: hidden;
  }

  .nav a {
    font-size: 1.35rem;
  }

  .nav-cta {
    margin-top: 0.35rem;
    width: 100%;
    max-width: 280px;
  }

  .year-chip:not(.year-chip-inline) {
    display: none;
  }

  .hero-content {
    padding-bottom: 4rem;
  }
}
