:root {
  --navy: #0b2856;
  --navy-deep: #071f49;
  --navy-soft: #173968;
  --amber: #f4a11a;
  --paper: #fbf8f4;
  --paper-deep: #f4efe9;
  --white: #ffffff;
  --line: #ddd8d2;
  --muted: #56647c;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(8, 34, 76, 0.1);
  --page-width: 1390px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(calc(100% - 128px), var(--page-width));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-panel:not([hidden])) {
  background: rgba(251, 248, 244, 0.92);
  box-shadow: 0 1px 0 rgba(8, 34, 76, 0.09);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.header-inner {
  position: relative;
  width: min(calc(100% - 128px), var(--page-width));
  min-height: 130px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.brand {
  width: 278px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.8vw, 35px);
}

.nav-link,
.footer-link {
  position: relative;
  padding: 12px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 174px;
  margin-left: 34px;
  padding: 14px 23px 15px;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid var(--navy-deep);
  border-radius: 12px;
  text-align: center;
  font-weight: 720;
  line-height: 1.2;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--navy-soft);
  box-shadow: 0 10px 25px rgba(8, 34, 76, 0.16);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-panel {
  display: none;
}

/* Shared “under construction” treatment */

.coming-soon__tooltip {
  position: absolute;
  z-index: 150;
  top: calc(100% + 11px);
  left: 50%;
  width: max-content;
  max-width: 220px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(8, 34, 76, 0.2);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -4px);
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    visibility 140ms ease;
}

.coming-soon__tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: var(--navy-deep);
  transform: rotate(45deg);
}

.coming-soon__tooltip--top {
  top: auto;
  bottom: calc(100% + 11px);
}

.coming-soon__tooltip--top::before {
  top: auto;
  bottom: -5px;
}

.coming-soon:hover .coming-soon__tooltip,
.coming-soon:focus-visible .coming-soon__tooltip,
.coming-soon.is-notice-visible .coming-soon__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Hero */

.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.88), transparent 35%),
    var(--paper);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 960px;
  padding-top: 220px;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  top: 78px;
  right: max(0px, calc((100vw - 1536px) / 2));
  width: min(61.6vw, 946px);
  height: 946px;
}

.hero-portrait picture,
.hero-portrait img {
  width: 100%;
  height: 100%;
}

.hero-portrait img {
  object-fit: cover;
  object-position: left top;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 19%;
  background: linear-gradient(90deg, var(--paper) 6%, rgba(251, 248, 244, 0));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 570px;
}

.hero-eyebrow {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 0;
  letter-spacing: -0.038em;
}

h1 > span {
  display: block;
  margin-bottom: 7px;
  font: 400 clamp(52px, 4vw, 61px) / 1.02 var(--serif);
}

h1 strong {
  display: block;
  font-size: clamp(52px, 4vw, 61px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.dot {
  color: var(--amber);
}

.accent-line {
  display: block;
  width: 70px;
  height: 2px;
  margin: 34px 0;
  background: var(--amber);
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 24px;
}

.button {
  min-width: 238px;
  min-height: 66px;
  padding: 11px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--navy);
  border-radius: 11px;
  font-size: 17px;
  font-weight: 740;
  line-height: 1.25;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 4px;
}

.button span:not(.visually-hidden) {
  display: block;
}

.button small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.button--primary {
  color: var(--white);
  background: var(--navy-deep);
}

.button--secondary {
  background: rgba(251, 248, 244, 0.72);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 13px 28px rgba(8, 34, 76, 0.14);
  transform: translateY(-2px);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--navy-soft);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--white);
}

.hero-features {
  position: absolute;
  z-index: 5;
  bottom: 70px;
  left: 0;
  width: 690px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card img {
  width: 54px;
  height: auto;
  margin-bottom: 6px;
}

.feature-card p,
.feature-card strong,
.feature-card span {
  display: block;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.52;
}

.feature-card strong {
  font-weight: 760;
}

.hero-quote {
  position: absolute;
  z-index: 6;
  right: max(64px, calc((100vw - var(--page-width)) / 2));
  bottom: 41px;
  min-width: 352px;
  margin: 0;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--white);
  background: rgba(9, 34, 77, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(7, 31, 73, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-quote > span {
  color: rgba(255, 255, 255, 0.68);
  font: 700 48px/0.7 var(--serif);
}

.hero-quote p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Content sections */

.section {
  position: relative;
  padding-block: 112px;
}

.intro {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(65px, 8vw, 135px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.2em;
}

.section-heading h2,
.contact h2 {
  max-width: 640px;
  margin-bottom: 0;
  font: 400 clamp(40px, 4vw, 56px) / 1.13 var(--serif);
  letter-spacing: -0.03em;
}

.section-heading .accent-line {
  margin-block: 30px 0;
}

.intro-copy {
  padding-top: 33px;
  font-size: 18px;
}

.intro-copy p {
  max-width: 710px;
  color: var(--muted);
}

.intro-copy .lead,
.contact .lead {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.62;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 6px 0 6px 42px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 8px;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.support {
  overflow: hidden;
  background: var(--paper-deep);
}

.support::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -150px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(8, 34, 76, 0.08);
  border-radius: 50%;
}

.section-heading--center {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading--center > p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  min-height: 290px;
  padding: 37px 34px;
  border: 1px solid rgba(8, 34, 76, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 40px rgba(8, 34, 76, 0.04);
}

.support-card__number {
  display: block;
  margin-bottom: 43px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.support-card h3 {
  margin-bottom: 15px;
  font: 400 29px/1.2 var(--serif);
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.contact {
  padding-block: 96px;
}

.contact-panel {
  min-height: 430px;
  padding: 68px clamp(40px, 5.5vw, 82px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: clamp(42px, 5vw, 80px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(244, 161, 26, 0.14), transparent 31%),
    var(--navy-deep);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.contact-copy .lead {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 25px;
  font-style: normal;
}

.contact-item span {
  display: block;
  margin-bottom: 3px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.55;
}

.contact-item a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.contact-item a:hover {
  text-decoration-color: var(--amber);
}

.button--wide {
  width: 100%;
  min-width: 0;
  color: var(--navy-deep);
  background: var(--white);
  border-color: var(--white);
}

.button--wide:hover,
.button--wide:focus-visible {
  color: var(--navy-deep);
  background: #fffaf2;
}

.contact-action > p {
  margin: 14px 10px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-align: center;
}

/* Footer */

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  font: 700 16px/1.2 var(--sans);
}

.footer-brand span {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--muted);
  font-size: 13px;
}

.footer-link:hover {
  color: var(--navy);
}

.mobile-booking-cta {
  display: none;
}

.status-toast {
  position: fixed;
  z-index: 250;
  right: 24px;
  bottom: 24px;
  width: min(calc(100% - 48px), 320px);
  padding: 15px 18px;
  color: var(--white);
  background: var(--navy-deep);
  border-left: 4px solid var(--amber);
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(7, 31, 73, 0.28);
}

.status-toast strong,
.status-toast span {
  display: block;
}

.status-toast strong {
  font-size: 14px;
}

.status-toast span {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

/* Vanilla-JS reveal effect */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1260px) {
  .page-shell,
  .header-inner {
    width: min(calc(100% - 80px), var(--page-width));
  }

  .brand {
    width: 235px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 13px;
  }

  .header-cta {
    min-width: 150px;
    margin-left: 22px;
  }

  .hero-quote {
    right: 40px;
  }
}

@media (max-width: 1050px) {
  .page-shell,
  .header-inner {
    width: min(calc(100% - 48px), var(--page-width));
  }

  .header-inner {
    min-height: 100px;
  }

  .brand {
    width: 225px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 9px 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: var(--navy);
    transform-origin: center;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
  }

  .mobile-panel {
    position: fixed;
    z-index: 140;
    top: 100px;
    right: 20px;
    width: min(calc(100% - 40px), 360px);
    padding: 16px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(251, 248, 244, 0.99);
    box-shadow: 0 24px 70px rgba(8, 34, 76, 0.2);
  }

  .mobile-panel nav {
    display: grid;
    gap: 3px;
  }

  .mobile-link {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    text-align: left;
    font-weight: 650;
    cursor: pointer;
  }

  .mobile-link:hover,
  .mobile-link:focus-visible {
    background: var(--paper-deep);
  }

  .mobile-link--active {
    color: var(--amber);
  }

  .mobile-link--contact {
    margin-top: 6px;
    color: var(--white);
    background: var(--navy-deep);
    text-align: center;
  }

  .mobile-link--contact:hover,
  .mobile-link--contact:focus-visible {
    background: var(--navy-soft);
  }

  .mobile-panel__note {
    margin: 11px 8px 2px;
    color: var(--muted);
    font-size: 12px;
  }

  .hero-copy {
    width: 540px;
  }

  .hero-features {
    width: 620px;
  }

  .hero-quote {
    display: none;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact-action {
    grid-column: 1 / -1;
    width: min(100%, 420px);
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .page-shell,
  .header-inner {
    width: calc(100% - 40px);
  }

  .header-inner {
    min-height: 100px;
  }

  .brand {
    width: min(66vw, 248px);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 980px;
  }

  .hero-content {
    min-height: 980px;
    padding-top: 155px;
  }

  .hero-portrait {
    top: 150px;
    right: -4%;
    width: min(66vw, 410px);
    height: auto;
  }

  .hero-portrait picture,
  .hero-portrait img {
    height: auto;
  }

  .hero-portrait img {
    object-fit: contain;
  }

  .hero-portrait::before {
    inset: 0 auto 0 -1px;
    width: 19%;
    background: linear-gradient(90deg, var(--paper) 10%, rgba(251, 248, 244, 0));
  }

  .hero-portrait::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 25%;
    background: linear-gradient(0deg, var(--paper) 7%, rgba(251, 248, 244, 0));
  }

  .hero-copy {
    width: 100%;
  }

  .hero-eyebrow {
    display: none;
  }

  h1 {
    position: relative;
    z-index: 4;
    width: 67%;
  }

  h1 > span {
    font-size: clamp(29px, 7.8vw, 42px);
  }

  h1 strong {
    font-size: clamp(39px, 10.8vw, 58px);
    line-height: 1.1;
  }

  .accent-line {
    width: 38px;
    margin-block: 25px;
  }

  .hero-lead {
    position: relative;
    z-index: 4;
    width: 54%;
    min-width: 225px;
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-actions {
    position: relative;
    z-index: 5;
    width: min(100%, 292px);
    margin-top: 27px;
    display: grid;
    gap: 11px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 16px;
  }

  .hero-features {
    bottom: 60px;
    left: 0;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .feature-card {
    min-height: 140px;
    padding-inline: 14px;
    text-align: center;
  }

  .feature-card + .feature-card {
    border-left: 1px solid var(--line);
  }

  .feature-card img {
    width: 48px;
    margin: 0 auto 9px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card strong {
    margin-bottom: 3px;
  }

  .section {
    padding-block: 76px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(36px, 9vw, 48px);
  }

  .intro-copy {
    padding-top: 0;
    font-size: 16px;
  }

  .intro-copy .lead {
    font-size: 19px;
  }

  .section-heading--center {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading--center h2,
  .section-heading--center > p:last-child {
    margin-inline: 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-card {
    min-height: 0;
    padding: 28px;
  }

  .support-card__number {
    margin-bottom: 20px;
  }

  .contact {
    padding: 0;
  }

  .contact .page-shell {
    width: 100%;
  }

  .contact-panel {
    min-height: 0;
    padding: 70px 20px 76px;
    grid-template-columns: 1fr;
    gap: 40px;
    border-radius: 0;
  }

  .contact-action {
    grid-column: auto;
    width: 100%;
  }

  .footer-inner {
    padding-block: 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-links {
    gap: 18px;
    flex-wrap: wrap;
  }

  .coming-soon__tooltip {
    display: none;
  }

  .mobile-booking-cta {
    position: fixed;
    z-index: 120;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    min-height: 52px;
    padding: 14px 20px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(7, 31, 73, 0.25);
    font-weight: 760;
    line-height: 1.2;
  }

  .status-toast {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    width: calc(100% - 28px);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 950px;
  }

  .hero-content {
    min-height: 950px;
    padding-top: 145px;
  }

  .hero-portrait {
    top: 175px;
    right: -12%;
    width: min(78vw, 360px);
  }

  h1 {
    width: 74%;
  }

  h1 > span {
    font-size: clamp(27px, 8vw, 36px);
  }

  h1 strong {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-lead {
    width: 59%;
    min-width: 205px;
    font-size: 15.5px;
  }

  .hero-actions {
    width: min(72%, 285px);
  }

  .hero-features {
    bottom: 45px;
  }

  .feature-card {
    min-height: 150px;
    padding-inline: 8px;
  }

  .feature-card img {
    width: 41px;
  }

  .feature-card p,
  .feature-card strong {
    font-size: 12px;
    line-height: 1.5;
  }

  .check-list li {
    padding-left: 37px;
  }
}

@media (max-width: 360px) {
  .page-shell,
  .header-inner {
    width: calc(100% - 32px);
  }

  .brand {
    width: 205px;
  }

  .hero {
    min-height: 985px;
  }

  .hero-content {
    min-height: 985px;
  }

  .hero-portrait {
    top: 180px;
  }

  h1 {
    width: 78%;
  }

  .hero-actions {
    width: 77%;
  }

  .feature-card p,
  .feature-card strong {
    font-size: 11px;
  }

  .support-card {
    padding: 25px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
