:root {
  --orange: #f06b22;
  --orange-dark: #d95313;
  --ink: #1c1d1a;
  --ink-soft: #5e605a;
  --paper: #f7f5f0;
  --paper-deep: #ece9e1;
  --white: #fff;
  --line: rgba(28, 29, 26, 0.13);
  --shadow: 0 22px 65px rgba(28, 29, 26, 0.12);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.notice-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  font-size: 12px;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 24px;
}

.notice-bar p {
  margin: 0;
}

.notice-bar strong {
  color: #fff;
  font-weight: 700;
}

.notice-bar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 240, 0.93);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(28, 29, 26, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand__logo {
  width: 170px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 680;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 30px 0;
  color: #474944;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav > a[aria-current="page"] {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.solution-nav {
  position: sticky;
  top: 84px;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.solution-nav__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}

.solution-nav__inner::-webkit-scrollbar {
  display: none;
}

.solution-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 15px 0 13px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.solution-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.solution-nav a:hover,
.solution-nav a[aria-current="page"] {
  color: var(--ink);
}

.solution-nav a:hover::after,
.solution-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.solution-nav small {
  margin-left: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(240, 107, 34, 0.12);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 14px;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
}

.button--dark:hover {
  border-color: #050505;
  background: #050505;
}

.button--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button--ghost:hover {
  border-color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 760;
}

.text-link span {
  color: var(--orange);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.6);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6.2vw, 86px);
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 60px);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 13px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
  background-image: linear-gradient(rgba(28, 29, 26, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 29, 26, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero::after {
  position: absolute;
  top: -190px;
  right: -170px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(240, 107, 34, 0.1);
  content: "";
  filter: blur(10px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 66px;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 1 / 0.83;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  right: -20px;
  bottom: 30px;
  max-width: 210px;
  padding: 20px 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
}

.hero__badge b {
  display: block;
  margin-bottom: 3px;
  color: var(--orange);
  font-size: 18px;
}

.benefit-strip {
  color: #fff;
  background: var(--ink);
}

.benefit-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-strip__grid > div {
  padding: 25px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-strip__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-strip b,
.benefit-strip span {
  display: block;
}

.benefit-strip b {
  font-size: 14px;
}

.benefit-strip span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section--tight {
  padding: 78px 0;
}

.section--white {
  background: #fff;
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 17px;
}

.choice-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choice-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choice-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.choice-card__image {
  display: block;
  position: relative;
  overflow: hidden;
}

.choice-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.choice-card__image--contain {
  background: var(--paper);
}

.choice-card__image--contain img {
  object-fit: contain;
}

.choice-card:hover .choice-card__image img {
  transform: scale(1.025);
}

.choice-card__image--zoomed img {
  transform: scale(1.25);
}

.choice-card:hover .choice-card__image--zoomed img {
  transform: scale(1.28);
}

.choice-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(28, 29, 26, 0.85);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-card__body {
  padding: 31px;
}

.choice-card__code {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.choice-card p {
  color: var(--ink-soft);
}

.choice-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 25px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.choice-card__meta b {
  display: block;
}

.choice-card__meta span {
  color: var(--ink-soft);
}

.shop-article-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 25px 0 18px;
}

.shop-article-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.shop-article-option > span {
  min-height: 38px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.shop-article-option strong {
  margin-top: 10px;
  font-size: 20px;
}

.shop-article-option small {
  min-height: 38px;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.shop-article-option .button {
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 12px;
  text-align: center;
}

.principle-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.principle-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principle-teaser__copy {
  display: flex;
  align-items: center;
  padding: 80px max(48px, calc((100vw - 1180px) / 2));
  padding-left: clamp(48px, 7vw, 110px);
  color: #fff;
  background: var(--ink);
}

.principle-teaser__copy > div {
  max-width: 520px;
}

.principle-teaser__copy p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.principle-teaser .text-link {
  color: #fff;
}

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

.route-card {
  min-height: 285px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.route-card:hover {
  border-color: rgba(240, 107, 34, 0.55);
  background: #fff;
  transform: translateY(-5px);
}

.route-card > span {
  display: block;
  margin-bottom: 60px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.route-card p {
  color: var(--ink-soft);
}

.route-card b {
  font-size: 22px;
}

.contact-band {
  padding: 80px 0;
  color: #fff;
  background: var(--orange);
}

.contact-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-band h2 {
  max-width: 660px;
  margin-bottom: 12px;
}

.contact-band p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-band__mail {
  flex: 0 0 auto;
  padding: 18px 24px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.page-hero {
  padding: 72px 0 84px;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(28, 29, 26, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 29, 26, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  font-size: clamp(48px, 5.5vw, 78px);
}

.page-hero__lead {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 19px;
}

.page-hero__visual {
  position: relative;
  min-width: 0;
}

.page-hero__visual > img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.page-hero__visual--asl100 > img {
  object-position: 72% center;
}

.page-hero__visual--product {
  padding: 24px;
  border-radius: var(--radius);
  background: #22231f;
}

.page-hero__visual--product > img {
  height: 270px;
  aspect-ratio: auto;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.shop-account-section {
  padding: 34px 0 28px;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(28, 29, 26, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 29, 26, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.shop-products-section {
  padding-top: 56px;
}

.shop-login-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.65fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 48px rgba(28, 29, 26, 0.1);
}

.shop-login-intro .eyebrow {
  margin-bottom: 8px;
}

.shop-login-intro h1 {
  margin: 0 0 9px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.shop-login-intro p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.shop-login-account {
  min-width: 0;
}

.shop-login-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.shop-login-form label {
  display: grid;
  gap: 7px;
}

.shop-login-form label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.shop-login-form input {
  width: 100%;
  min-height: 49px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.shop-login-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 107, 34, 0.12);
}

.shop-login-form .button {
  width: auto;
  min-height: 49px;
  margin: 0;
  padding-inline: 26px;
  cursor: pointer;
}

.shop-login-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 24px;
  margin-top: 11px;
  font-size: 13px;
  font-weight: 700;
}

.shop-login-links a:hover {
  color: var(--orange-dark);
}

.product-price {
  margin: 26px 0 24px;
  font-size: 30px;
  font-weight: 850;
}

.product-price small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-grid > div {
  min-height: 150px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid span,
.spec-grid b {
  display: block;
}

.spec-grid span {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-grid b {
  font-size: 20px;
  line-height: 1.3;
}

.running-cost {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0 0;
  padding: 20px 24px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
}

.running-cost span,
.running-cost b,
.running-cost small {
  display: block;
}

.running-cost span {
  font-size: 13px;
  font-weight: 760;
}

.running-cost b {
  margin-left: auto;
  color: var(--orange);
  font-size: 24px;
  line-height: 1.2;
}

.running-cost small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.content-split {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.content-split__aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.content-split__aside p {
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list > li > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.feature-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper-deep);
}

.gallery-grid figure:first-child {
  grid-column: span 8;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 4;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery-grid figure:nth-child(2) img {
  height: 360px;
}

.gallery-grid figcaption {
  padding: 13px 17px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 12px;
}

.video-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

.video-feature__visual {
  position: relative;
}

.video-feature__visual img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  place-items: center;
  transform: translate(-50%, -50%);
}

.video-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.video-feature__copy p {
  color: rgba(255, 255, 255, 0.64);
}

.video-feature__copy .text-link {
  align-self: flex-start;
}

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

.step-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.step-card > span {
  display: block;
  margin-bottom: 70px;
  color: var(--orange);
  font-weight: 850;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

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

.info-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.info-card > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.info-card h3 {
  margin-top: 45px;
  font-size: 22px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.article {
  max-width: 850px;
  margin-inline: auto;
}

.article h2 {
  margin-top: 68px;
  font-size: clamp(32px, 4vw, 50px);
}

.article h3 {
  margin-top: 38px;
}

.article p,
.article li {
  color: #4f514c;
  font-size: 17px;
}

.article-callout {
  margin: 50px 0;
  padding: 34px;
  border-left: 4px solid var(--orange);
  background: #fff;
}

.article-callout p {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.media-card__image {
  position: relative;
}

.media-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-card__body {
  padding: 25px;
}

.media-card__body > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-card h3 {
  margin-top: 9px;
  font-size: 21px;
}

.media-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.press-link {
  display: grid;
  grid-template-columns: 0.4fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.press-link span {
  color: var(--ink-soft);
  font-size: 13px;
}

.press-link b {
  font-size: 19px;
}

.press-link i {
  color: var(--orange);
  font-style: normal;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro p {
  color: var(--ink-soft);
}

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

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--orange);
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 720px;
  padding: 0 50px 24px 0;
  color: var(--ink-soft);
}

.related-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}

.related-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.related-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
}

.related-card__copy p {
  color: var(--ink-soft);
}

.related-card__copy .button {
  align-self: flex-start;
}

.site-footer {
  padding: 72px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  background: #151613;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding-bottom: 58px;
}

.brand--footer {
  margin-bottom: 17px;
}

.brand--footer .brand__logo {
  width: 190px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h3 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 13px;
}

body .site-footer a,
body .site-footer a:visited {
  color: #fff;
}

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

body .site-footer a:hover {
  color: var(--orange);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .main-nav .button {
    display: none;
  }

  .hero__grid,
  .page-hero__grid {
    gap: 44px;
  }

  .site-footer__top {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .notice-bar__inner {
    justify-content: center;
  }

  .notice-bar a {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .solution-nav {
    top: 74px;
  }

  .solution-nav__inner {
    gap: 24px;
  }

  .brand__logo {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    min-height: calc(100dvh - 74px);
    max-height: calc(100dvh - 74px);
    padding: 24px max(18px, calc((100vw - 680px) / 2));
    overflow-y: auto;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 24px;
  }

  .hero,
  .page-hero {
    padding: 52px 0 64px;
  }

  .hero__grid,
  .page-hero__grid,
  .section-heading,
  .content-split,
  .faq-layout,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .page-hero__grid {
    gap: 48px;
  }

  .shop-login-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-login-intro p {
    max-width: 620px;
  }

  .hero__content {
    max-width: 650px;
  }

  .hero__visual img {
    aspect-ratio: 16 / 10;
  }

  .hero__badge {
    right: 18px;
  }

  .benefit-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-strip__grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefit-strip__grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 40px;
  }

  .choice-grid,
  .principle-teaser,
  .video-feature,
  .related-card {
    grid-template-columns: 1fr;
  }

  .principle-teaser__image img {
    height: 420px;
  }

  .principle-teaser__copy {
    padding: 65px var(--shell);
  }

  .route-grid,
  .info-grid,
  .media-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: auto;
  }

  .route-card > span,
  .step-card > span,
  .info-card h3 {
    margin-bottom: 28px;
  }

  .info-card h3 {
    margin-top: 28px;
  }

  .contact-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .running-cost {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .running-cost b {
    margin: 8px 0 0;
  }

  .content-split,
  .faq-layout {
    gap: 45px;
  }

  .content-split__aside,
  .faq-intro {
    position: static;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(2) {
    grid-column: span 6;
  }

  .video-feature__copy {
    padding: 40px;
  }

  .site-footer__top {
    gap: 45px;
  }
}

@media (max-width: 560px) {

  .shop-article-options {
    grid-template-columns: 1fr;
  }
  :root {
    --shell: calc(100% - 28px);
    --radius: 17px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: 37px;
  }

  .hero__lead,
  .page-hero__lead {
    font-size: 17px;
  }

  .shop-account-section {
    padding: 22px 0;
  }

  .shop-products-section {
    padding-top: 44px;
  }

  .shop-login-panel {
    padding: 22px;
  }

  .shop-login-intro h1 {
    font-size: 31px;
  }

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

  .shop-login-form .button {
    width: 100%;
  }

  .hero__actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .product-actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -18px 14px 0;
  }

  .benefit-strip__grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip__grid > div {
    padding: 18px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none !important;
  }

  .choice-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .choice-card__body {
    padding: 24px;
  }

  .principle-teaser__image img {
    height: 300px;
  }

  .principle-teaser__copy {
    padding: 55px 24px;
  }

  .contact-band {
    padding: 60px 0;
  }

  .contact-band__mail {
    width: 100%;
    text-align: center;
  }

  .page-hero__visual--product {
    padding: 14px;
  }

  .page-hero__visual--product > img {
    height: 180px;
  }

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

  .spec-grid > div {
    min-height: 120px;
  }

  .spec-grid span {
    margin-bottom: 18px;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(2) {
    grid-column: span 12;
  }

  .gallery-grid img,
  .gallery-grid figure:nth-child(2) img {
    height: 250px;
  }

  .video-feature__visual img {
    min-height: 240px;
  }

  .video-feature__copy,
  .related-card__copy {
    padding: 30px 24px;
  }

  .press-link {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }

  .press-link span {
    grid-column: 1 / -1;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
