:root {
  --navy-950: #071523;
  --navy-900: #0c2035;
  --navy-800: #15324d;
  --navy-700: #26445f;
  --ivory-50: #fcfaf5;
  --ivory-100: #f5f0e6;
  --ivory-200: #e8dfcf;
  --gold-500: #b5904d;
  --gold-400: #c9a762;
  --ink: #132231;
  --muted: #5b6771;
  --white: #ffffff;
  --error: #a82d2d;
  --success: #1f6c50;
  --shadow: 0 20px 55px rgb(7 21 35 / 10%);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1220px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--navy-950);
}

body {
  margin: 0;
  background: var(--ivory-50);
  color: var(--ink);
  font-family: "Manrope Variable", "Noto Sans SC Variable", "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

html[lang="zh-Hans"] body {
  font-family: "Noto Sans SC Variable", "Manrope Variable", "Microsoft YaHei",
    sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 17ch;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  max-width: 22ch;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.1vw, 3.8rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
}

code {
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: rgb(12 32 53 / 8%);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.9em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(181 144 77 / 20%);
  background: rgb(7 21 35 / 96%);
  color: var(--ivory-50);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 36px), 1380px);
  min-height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-400);
  color: var(--gold-400);
  font-size: 1.14rem;
  font-weight: 760;
  place-items: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: 0.19em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgb(245 240 230 / 68%);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(13px, 1.45vw, 24px);
}

.desktop-nav a,
.language-switch {
  position: relative;
  min-height: 44px;
  color: rgb(252 250 245 / 78%);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after,
.language-switch::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold-400);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.language-switch:hover {
  color: var(--white);
}

.desktop-nav a:hover::after,
.language-switch:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--gold-400);
  align-items: center;
  color: var(--ivory-50);
  font-size: 0.76rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-400);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(245 240 230 / 35%);
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentcolor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  overflow-y: auto;
  background: var(--navy-950);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  width: min(calc(100% - 40px), 680px);
  margin: 22px auto 60px;
  flex-direction: column;
}

.mobile-menu nav > a:not(.button) {
  min-height: 56px;
  border-bottom: 1px solid rgb(245 240 230 / 12%);
  color: var(--ivory-50);
  font-size: 1.12rem;
  line-height: 56px;
  text-decoration: none;
}

.mobile-menu .button {
  margin-top: 28px;
}

.mobile-language {
  color: var(--gold-400) !important;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--ivory-50);
}

.hero-shell {
  display: grid;
  min-height: min(760px, calc(100vh - var(--header-height)));
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.hero-inner .hero-shell {
  min-height: min(650px, calc(100vh - var(--header-height)));
}

.hero-text-only .hero-shell {
  min-height: min(520px, calc(100vh - var(--header-height)));
  grid-template-columns: minmax(0, 1fr);
}

.hero-text-only .hero-copy {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

.hero-text-only .hero-copy::after {
  display: none;
}

.hero-text-only h1 {
  max-width: 24ch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: clamp(54px, 6vw, 92px) clamp(28px, 5vw, 82px);
  flex-direction: column;
  justify-content: center;
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -100px;
  bottom: 0;
  width: 190px;
  background: linear-gradient(90deg, var(--navy-950), transparent);
  content: "";
}

.hero h1 {
  max-width: 19ch;
  margin-bottom: 20px;
  color: var(--ivory-50);
  font-size: clamp(2.65rem, 4.55vw, 4.8rem);
  line-height: 1.06;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 26px;
  color: rgb(245 240 230 / 76%);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.62;
}

.eyebrow {
  margin-bottom: 18px;
  color: #765b2d;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-navy .eyebrow,
.not-found .eyebrow {
  color: var(--gold-400);
}

html[lang="zh-Hans"] .eyebrow {
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-copy .microcopy {
  margin-top: 26px;
  color: rgb(245 240 230 / 58%);
  font-size: 0.82rem;
}

.hero-media {
  position: relative;
  min-height: 480px;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(7 21 35 / 10%), rgb(7 21 35 / 22%)),
    linear-gradient(90deg, rgb(7 21 35 / 22%), transparent 34%);
  content: "";
  pointer-events: none;
}

.responsive-image,
.responsive-image img {
  width: 100%;
  height: 100%;
}

.responsive-image {
  display: block;
  overflow: hidden;
  background: var(--navy-800);
}

.responsive-image img {
  object-fit: cover;
  object-position: var(--position-desktop, center);
}

.image-1 { --position-desktop: 68% 55%; --position-mobile: 72% 55%; }
.image-2 { --position-desktop: 50% 53%; --position-mobile: 50% 55%; }
.image-3 { --position-desktop: 55% 58%; --position-mobile: 58% 60%; }
.image-4 { --position-desktop: 55% 60%; --position-mobile: 66% 58%; }
.image-5 { --position-desktop: 50% 45%; --position-mobile: 48% 45%; }
.image-6 { --position-desktop: 42% 52%; --position-mobile: 34% 52%; }
.image-7 { --position-desktop: 72% 48%; --position-mobile: 70% 48%; }
.image-8 { --position-desktop: 50% 48%; --position-mobile: 50% 45%; }
.image-9 { --position-desktop: 45% 48%; --position-mobile: 35% 42%; }
.image-10 { --position-desktop: 66% 55%; --position-mobile: 75% 55%; }
.image-11 { --position-desktop: 55% 55%; --position-mobile: 58% 55%; }
.image-12 { --position-desktop: 66% 52%; --position-mobile: 77% 55%; }
.image-13 { --position-desktop: 52% 52%; --position-mobile: 50% 55%; }
.image-14 { --position-desktop: 60% 55%; --position-mobile: 64% 55%; }
.image-15 { --position-desktop: 50% 68%; --position-mobile: 52% 72%; }

.button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button-download {
  min-height: 64px;
  padding-block: 9px;
  flex-direction: column;
  line-height: 1.25;
}

.download-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.76;
}

.button-primary {
  border-color: var(--gold-400);
  background: var(--gold-400);
  color: var(--navy-950);
}

.button-primary:hover {
  border-color: var(--ivory-50);
  background: var(--ivory-50);
}

.button-secondary {
  border-color: rgb(245 240 230 / 45%);
  background: transparent;
  color: currentcolor;
}

.button-secondary:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.breadcrumbs {
  margin-bottom: 34px;
  color: rgb(245 240 230 / 64%);
  font-size: 0.78rem;
}

.legal-hero .breadcrumbs {
  color: var(--muted);
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: var(--gold-500);
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

.content-section {
  padding: clamp(80px, 10vw, 145px) 0;
}

.section-muted {
  background: var(--ivory-100);
}

.section-navy {
  background: var(--navy-900);
  color: var(--ivory-50);
}

.section-navy h2,
.section-navy h3 {
  color: var(--ivory-50);
}

.section-navy .copy,
.section-navy .note,
.section-navy .microcopy {
  color: rgb(245 240 230 / 86%);
}

.section-intro {
  max-width: 900px;
}

.section-intro > .copy {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.section-navy .section-intro > .copy {
  color: rgb(245 240 230 / 86%);
}

.section-intro .button {
  margin-top: 12px;
}

.section-intro .button + .button {
  margin-left: 8px;
}

.copy {
  max-width: 820px;
  color: var(--muted);
}

.note {
  max-width: 880px;
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 2px solid var(--gold-500);
  background: rgb(181 144 77 / 8%);
  color: var(--muted);
}

.microcopy {
  color: var(--muted);
  font-size: 0.86rem;
}

.section-visual {
  height: clamp(320px, 43vw, 580px);
  margin-top: clamp(40px, 7vw, 78px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cards-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid var(--ivory-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.section-navy .content-card {
  border-color: rgb(245 240 230 / 14%);
  background: rgb(255 255 255 / 5%);
  color: var(--ivory-50);
}

.content-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 18px 50px rgb(7 21 35 / 9%);
  transform: translateY(-3px);
}

.content-card .copy {
  color: var(--muted);
}

.section-navy .content-card .copy,
.section-navy .content-card .note,
.section-navy .content-card .microcopy {
  color: rgb(245 240 230 / 68%);
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.card-image-link {
  display: block;
  height: 230px;
}

.card-picture {
  height: 100%;
}

.card-body {
  position: relative;
  padding: 30px;
}

.product-card .card-body {
  display: flex;
  min-height: 480px;
  flex-direction: column;
}

.product-card .card-body > .button {
  width: fit-content;
  margin-top: auto;
  align-self: flex-start;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
  place-items: center;
}

.card-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.card-body > .button,
.card-body > a:not(.card-overlay),
.card-body > h3 {
  position: relative;
  z-index: 2;
}

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.step-number {
  display: inline-block;
  margin-bottom: 20px;
  color: #765b2d;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section-navy .step-number {
  color: var(--gold-400);
}

.list-title {
  margin-top: 28px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.feature-list,
.legal-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 10px;
  align-items: start;
}

.feature-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--gold-500);
}

.legal-hero {
  padding: clamp(72px, 9vw, 120px) 0 64px;
  border-bottom: 1px solid var(--ivory-200);
  background: var(--ivory-100);
}

.legal-hero h1 {
  max-width: none;
  color: var(--navy-900);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-content {
  padding: clamp(72px, 8vw, 120px) 0;
}

.legal-content article > p {
  color: #374551;
}

.legal-content h2 {
  max-width: none;
  margin-top: 62px;
  padding-top: 18px;
  border-top: 1px solid var(--ivory-200);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-list {
  padding-left: 1.2rem;
  gap: 9px;
  list-style: disc;
}

.effective-date {
  margin-bottom: 34px;
  color: var(--navy-700) !important;
}

.enquiry-section {
  padding: clamp(86px, 10vw, 145px) 0;
  background: var(--ivory-100);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.form-heading {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.form-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.form-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.enquiry-form,
.form-success {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--ivory-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field > label,
.checkbox-field legend,
.conditional-fields > legend {
  display: block;
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 680;
}

.field-status {
  margin-left: 6px;
  color: var(--error);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-status.optional {
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #b9c0c5;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--navy-700);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-width: 2px;
  border-color: var(--error);
}

.field-error {
  min-height: 1.2em;
  margin: 6px 0 0;
  color: var(--error);
  font-size: 0.76rem;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
}

.checkbox-option {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 10px;
  color: #34424e;
  cursor: pointer;
  font-size: 0.88rem;
}

.checkbox-option input {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--navy-900);
  flex: 0 0 auto;
}

.checkbox-option.compact {
  min-height: auto;
  margin-top: 9px;
  font-size: 0.76rem;
}

.conditional-fields {
  padding: 24px;
  border: 1px solid var(--ivory-200);
  border-radius: var(--radius-sm);
  background: var(--ivory-50);
}

.conditional-fields[hidden] {
  display: none;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.upload-drop {
  position: relative;
  display: grid;
  min-height: 156px;
  padding: 24px;
  border: 1px dashed #97a2a9;
  border-radius: var(--radius-sm);
  background: var(--ivory-50);
  place-items: center;
  text-align: center;
}

.upload-drop.dragging {
  border-color: var(--gold-500);
  background: rgb(181 144 77 / 9%);
}

.upload-drop:focus-within {
  outline: 3px solid var(--navy-700);
  outline-offset: 3px;
}

.upload-drop .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  color: var(--gold-500);
}

.upload-drop span {
  color: var(--muted);
  font-size: 0.78rem;
}

.upload-drop input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-help,
.privacy-summary {
  color: var(--muted);
  font-size: 0.76rem;
}

.file-list:not(:empty) {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--ivory-200);
}

.file-row {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.file-row span {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-row button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--error);
  cursor: pointer;
}

.declaration-field {
  padding-top: 8px;
  border-top: 1px solid var(--ivory-200);
}

.declaration {
  min-height: auto;
  line-height: 1.55;
}

.privacy-summary {
  padding: 17px 19px;
  border-left: 2px solid var(--gold-500);
  background: rgb(181 144 77 / 7%);
}

.privacy-summary p {
  margin: 0;
}

.submit-row {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 18px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.submit-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-error-summary {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid var(--error);
  border-radius: var(--radius-sm);
  background: #fff3f1;
  color: #7c1f1f;
}

.form-success {
  grid-column: 2;
  padding-block: clamp(44px, 7vw, 86px);
  text-align: center;
}

.form-success > .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 22px;
  color: var(--success);
}

.form-success h2 {
  max-width: 700px;
  margin-inline: auto;
}

.form-success p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.form-success .hero-actions {
  justify-content: center;
}

.form-success .button-secondary {
  border-color: var(--navy-700);
  color: var(--navy-900);
}

.noscript-note {
  grid-column: 2;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--gold-500);
  background: var(--white);
}

.not-found {
  display: grid;
  min-height: 67vh;
  padding: 90px 0;
  align-items: center;
  background: var(--ivory-100);
}

.not-found h1 {
  max-width: 15ch;
  color: var(--navy-900);
}

.not-found p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.12rem;
}

.not-found .button-secondary {
  border-color: var(--navy-700);
  color: var(--navy-900);
}

.site-footer {
  padding: 82px 0 26px;
  background: var(--navy-950);
  color: rgb(245 240 230 / 70%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(145px, 0.7fr));
  gap: clamp(28px, 5vw, 66px);
}

.footer-about p {
  max-width: 410px;
  margin-top: 25px;
  font-size: 0.9rem;
}

.brand-footer {
  color: var(--ivory-50);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--ivory-50);
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 34px;
  color: rgb(245 240 230 / 68%);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-400);
}

.footer-legal {
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid rgb(245 240 230 / 12%);
  font-size: 0.74rem;
}

.footer-legal > div {
  display: flex;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: rgb(245 240 230 / 82%);
}

.footer-legal p {
  max-width: 1050px;
  margin-bottom: 12px;
}

.footer-legal a {
  color: var(--gold-400);
}

@media (max-width: 1240px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .cards-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 30px 55px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-media {
    height: min(64vw, 560px);
    min-height: 340px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgb(7 21 35 / 35%), transparent 25%);
  }

  .cards-three,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .form-heading {
    position: static;
  }

  .form-success,
  .noscript-note {
    grid-column: 1;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    padding-inline: 6px;
  }

  .hero-copy {
    padding: 54px 20px 45px;
  }

  .hero-media {
    min-height: 290px;
  }

  .responsive-image img {
    object-position: var(--position-mobile, center);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section-intro .button + .button {
    margin-left: 0;
  }

  .content-section {
    padding-block: 72px;
  }

  .cards-grid,
  .cards-three,
  .cards-four,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .section-visual {
    height: 300px;
    border-radius: var(--radius-sm);
  }

  .content-card {
    padding: 26px;
  }

  .product-card {
    padding: 0;
  }

  .card-body {
    padding: 26px;
  }

  .product-card .card-body {
    min-height: auto;
  }

  .product-card .card-body > .button {
    width: 100%;
  }

  .form-shell {
    gap: 28px;
  }

  .enquiry-form,
  .form-success {
    padding: 24px 18px;
    border-radius: var(--radius-sm);
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-legal > div {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
