:root {
  --ink: #071b32;
  --navy: #061a33;
  --navy-soft: #0a2d55;
  --blue: #0d67ad;
  --blue-bright: #1686d6;
  --ice: #eaf5fc;
  --mist: #f4f8fb;
  --line: #cbdce9;
  --white: #fff;
  --muted: #5b7185;
  --shadow: 0 28px 80px rgba(4, 27, 51, 0.14);
  --max: 1240px;
  --sans: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --ui:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
h1,
h2 {
  text-wrap: wrap;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 48px), 840px);
  margin-inline: auto;
}
.section {
  padding-block: clamp(84px, 9vw, 138px);
}
.section[id] {
  scroll-margin-top: 82px;
}
.section-tight {
  padding-block: 72px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--blue);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--white);
  background: rgba(3, 20, 38, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(2, 16, 34, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.site-header.header-solid,
.site-header.is-scrolled {
  position: fixed;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(5, 30, 54, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header:not(.header-solid):not(.is-scrolled) .header-inner {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  background-image:
    url("assets/images/web/flocon.svg"), url("assets/images/web/flocon.webp");
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}
.brand-mark svg {
  display: none;
}
.brand-text {
  display: grid;
  line-height: 1.04;
  letter-spacing: 0.09em;
}
.brand-text strong {
  font-size: 12px;
  font-weight: 800;
}
.brand-text span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
  opacity: 0.72;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.main-nav > a:not(.button) {
  padding-block: 23px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav > a:not(.button):hover,
.main-nav > a[aria-current="page"] {
  border-bottom-color: #5fb8ec;
}
.menu-toggle {
  display: none;
  place-items: center;
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: #4294ff;
  transition: background 0.25s ease, transform 0.3s ease;
}
.menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.menu-toggle[aria-expanded="true"] {
  background: #07528d;
}
.menu-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover,
.button:focus-visible {
  background: #07528d;
  transform: translateY(-2px);
}
.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}
.button-outline:hover,
.button-outline:focus-visible {
  color: var(--navy);
  background: var(--white);
}
.button-light {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}
.button-light:hover {
  color: var(--white);
  background: transparent;
}
.button-small {
  min-height: 43px;
  padding-inline: 17px;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 750;
  border-bottom: 1px solid currentColor;
}
.text-link svg,
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.2s;
}
.text-link:hover svg,
.button:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero-film {
  position: absolute;
  inset: 0;
}
.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: film 30s infinite;
}
.hero-frame:first-child {
  opacity: 1;
  animation-delay: 0s;
}
.hero-frame:nth-child(2) {
  animation-delay: 6s;
}
.hero-frame:nth-child(3) {
  animation-delay: 12s;
}
.hero-frame:nth-child(4) {
  animation-delay: 18s;
}
.hero-frame:nth-child(5) {
  animation-delay: 24s;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 16, 34, 0.88) 0%,
      rgba(2, 16, 34, 0.61) 38%,
      rgba(2, 16, 34, 0.12) 72%
    ),
    linear-gradient(0deg, rgba(2, 16, 34, 0.66) 0%, transparent 45%);
}
@keyframes film {
  0%,
  17% {
    opacity: 1;
    transform: scale(1);
  }
  20%,
  97% {
    opacity: 0;
    transform: scale(1.035);
  }
  100% {
    opacity: 1;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 68vw);
  padding-top: 152px;
  padding-bottom: clamp(88px, 12vh, 140px);
  padding-bottom: calc(clamp(88px, 12vh, 140px) + env(safe-area-inset-bottom));
}
.hero h1 {
  max-width: 100%;
  margin: 0 0 24px;
  font-size: clamp(56px, 6.7vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
.hero-title-line {
  display: block;
}
.hero-title-primary {
  display: block;
  color: #72c6f5;
}
.hero-title-secondary {
  display: block;
  max-width: 100%;
  margin-top: 0.08em;
  color: var(--white);
  font-size: 0.64em;
  letter-spacing: -0.045em;
  line-height: 1.04;
  overflow-wrap: normal;
}
.hero-lede {
  max-width: 590px;
  margin: 0 0 34px;
  color: #e6f2f9;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding-bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-bottom-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #d6e8f4;
  font-size: 12px;
}
.film-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  color: inherit;
  background: none;
  font-size: inherit;
}
.play-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.play-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.intro-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}
.intro-row > *,
.range-heading > *,
.cta-inner > *,
.page-hero-content {
  min-width: 0;
}
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.section-title.light {
  color: var(--white);
}
.section-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
}
.section-copy p {
  margin-top: 0;
}
.section-copy p + p {
  margin-top: 18px;
}

.moments {
  padding-top: 34px;
}
.moment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 12px;
}
.moment {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  color: var(--white);
}
.moment:first-child {
  grid-row: 1 / 3;
  min-height: 632px;
}
.moment-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.15s ease;
}
.moment-scene.is-active {
  opacity: 1;
}
.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.moment:hover img {
  transform: scale(1.025);
}
.moment-scene::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 20, 39, 0) 0%,
    rgba(3, 20, 39, 0.48) 48%,
    rgba(3, 20, 39, 0.88) 100%
  );
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 24%,
    #000 58%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 24%,
    #000 58%
  );
}
.moment-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}
.moment-copy h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
}
.moment-copy h3,
.moment-copy p {
  text-shadow: 0 2px 12px rgba(2, 16, 34, 0.72);
}
.moment-copy p {
  max-width: 420px;
  margin: 0;
  color: #dcebf4;
  font-size: 14px;
}

.range-section {
  background: var(--mist);
}
.range-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 52px;
}
.range-heading .section-title {
  max-width: 650px;
}
.range-heading p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
}
.range-rail {
  border-top: 1px solid var(--line);
}
.range-row {
  display: grid;
  grid-template-columns: 190px repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}
.range-row > * {
  min-width: 0;
  padding: 18px 14px;
  border-left: 1px solid var(--line);
}
.range-row > *:first-child {
  border-left: 0;
}
.range-row strong {
  color: var(--navy);
}
.range-row .volume {
  color: var(--blue);
  font-size: 23px;
  font-weight: 800;
}
.range-row small {
  color: var(--muted);
  font-size: 12px;
}
.range-mobile {
  display: none;
}

.media-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 650px;
}
.media-split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
.media-split-image {
  min-height: 560px;
}
.media-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 110px);
  color: var(--white);
  background: var(--navy);
}
.media-split-copy .section-title {
  margin-bottom: 25px;
}
.media-split-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #c7dcea;
}
.facts {
  display: grid;
  gap: 17px;
  margin: 28px 0 35px;
}
.fact {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.fact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}
.fact span {
  color: #b9d0df;
  font-size: 13px;
}

.logistics {
  color: var(--white);
}
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: transparent;
}
.logistics-item {
  padding: clamp(42px, 6vw, 82px);
  background: var(--blue);
}
.logistics-item svg {
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  fill: none;
  stroke: #a9dcf8;
  stroke-width: 1.4;
}
.logistics-item h2 {
  max-width: 480px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.05;
}
.logistics-item p {
  max-width: 490px;
  margin: 0;
  color: #e3f2fb;
}

.bull-preview {
  background: var(--ice);
}
.bull-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}
.bull-layout img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.bull-copy .section-title {
  margin-bottom: 20px;
}
.bull-copy p {
  max-width: 510px;
  color: var(--muted);
}
.bull-copy .text-link {
  margin-top: 14px;
}

.cta-section {
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.04;
}
.cta-inner p {
  max-width: 600px;
  color: var(--muted);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.cta-actions .button-call {
  color: var(--navy);
  border-color: var(--line);
  background: var(--ice);
}
.cta-actions .button-call:hover,
.cta-actions .button-call:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}
.cta-section .button-light {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}
.cta-section .button-light:hover,
.cta-section .button-light:focus-visible {
  color: var(--white);
  background: #07528d;
}

.page-hero {
  min-height: 75vh;
  min-height: 75svh;
  min-height: 75dvh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 40, 0.9),
    rgba(3, 20, 40, 0.3)
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 180px;
  padding-bottom: 92px;
}
.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(52px, 6.5vw, 90px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.page-title-primary {
  display: block;
  color: #72c6f5;
}
.page-title-secondary {
  display: block;
  max-width: 100%;
  margin-top: 0.08em;
  color: var(--white);
  font-size: 0.64em;
  letter-spacing: -0.045em;
  line-height: 1.08;
  overflow-wrap: normal;
}
.page-hero p {
  max-width: 640px;
  margin: 0;
  color: #dcecf5;
  font-size: 20px;
}
.page-hero-plain {
  min-height: 60vh;
  min-height: 60svh;
  min-height: 60dvh;
}
.page-hero-plain::after {
  display: none;
}
.page-hero-plain .page-hero-content {
  padding-bottom: 76px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 8vw, 130px);
}
.content-grid > * {
  min-width: 0;
}
.sticky-title {
  position: sticky;
  top: 120px;
  align-self: start;
}
.prose h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}
.prose h3 {
  margin: 38px 0 8px;
  color: var(--navy);
  font-size: 18px;
}
.prose p {
  color: var(--muted);
}
.prose ul {
  padding-left: 20px;
  color: var(--muted);
}
.prose h2,
.prose h3 {
  overflow-wrap: normal;
  word-break: normal;
}
.tech-details {
  margin: 36px 0 8px;
  /* border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: var(--ice); */
}
.tech-details summary {
  position: relative;
  padding: 18px 48px 18px 20px;
  color: var(--navy);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.tech-details summary::-webkit-details-marker {
  display: none;
}
.tech-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}
.tech-details[open] summary {
  border-bottom: 1px solid var(--line);
}
.tech-details[open] summary::after {
  content: "−";
}
.tech-details-content {
  padding: 4px 20px 18px;
}
.tech-specs {
  margin: 0;
}
.tech-specs > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) 1.15fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(119, 148, 169, 0.25);
}
.tech-specs > div:last-child {
  border-bottom: 0;
}
.tech-specs dt {
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}
.tech-specs dd {
  margin: 0;
  color: var(--muted);
}
.tech-details-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.prose-media-stack {
  display: grid;
  gap: 10px;
  margin: 32px 0;
}
.prose-media {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}
.prose-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.prose-media-stack .prose-media {
  position: relative;
  height: clamp(210px, 20vw, 250px);
}
.prose-media-stack .prose-media img {
  height: 100%;
  aspect-ratio: auto;
}
.prose-media-petanque img {
  object-position: center 58%;
}
.event-gallery-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s ease;
}
.event-gallery-layer.is-active {
  opacity: 1;
}
.prose-media-petanque .event-gallery-bull {
  object-position: center 48%;
}
.bull-gallery-section {
  padding: 0 0 clamp(84px, 9vw, 138px);
  background: var(--white);
}
.bull-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}
.bull-gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--mist);
}
.bull-gallery-item-main {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.bull-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 1.15s ease,
    transform 0.7s ease;
}
.bull-gallery-item img.is-active {
  opacity: 1;
}
.bull-gallery-item:hover img {
  transform: scale(1.025);
}
.legal-note {
  margin: 0 0 36px;
  padding: 17px 20px;
  color: #6b4b10;
  background: #fff8e7;
  border: 1px solid #ead6a5;
}
.legal-note strong {
  color: #4e3508;
}
.detail-list {
  border-top: 1px solid var(--line);
}
.detail-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  margin-inline: -20px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transform-origin: center;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.detail-item strong {
  color: var(--blue);
  font-size: 21px;
}
.detail-item h3 {
  margin: 0 0 4px;
  color: var(--navy);
}
.detail-item p {
  margin: 0;
  color: var(--muted);
}
.detail-item:hover,
.detail-item:focus-visible {
  position: relative;
  z-index: 2;
  color: #f5f9fc;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 18px 45px rgba(6, 26, 51, 0.2);
  transform: scale(1.025);
}
.detail-item:hover strong,
.detail-item:focus-visible strong {
  color: #72c6f5;
}
.detail-item:hover h3,
.detail-item:focus-visible h3 {
  color: var(--white);
}
.detail-item:hover p,
.detail-item:focus-visible p {
  color: #d5e5ef;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.moment.reveal:nth-child(2),
.detail-item.reveal:nth-child(2),
.logistics-item.reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.moment.reveal:nth-child(3),
.detail-item.reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.hero-content > * {
  opacity: 0;
  animation: hero-enter 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-content > :nth-child(2) {
  animation-delay: 0.16s;
}
.hero-content > :nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gallery-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-band img {
  width: 100%;
  height: clamp(180px, 16vw, 280px);
  aspect-ratio: auto;
  object-fit: cover;
}
.gallery-band img:nth-child(2) {
  transform: translateY(24px);
}

.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 300;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 740px;
  margin: 0 0 24px;
  color: var(--muted);
}

.quote-page {
  padding-top: 150px;
  background: var(--mist);
}
.quote-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}
.quote-layout > *,
.quote-form {
  min-width: 0;
}
.quote-intro {
  position: sticky;
  top: 120px;
}
.quote-intro .section-title {
  margin-bottom: 22px;
}
.quote-intro > p {
  color: var(--muted);
}
.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 35px;
}
.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
}
.contact-list a > span,
.contact-list div > span {
  min-width: 0;
}
.contact-list svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
}
.contact-list small,
.contact-list strong {
  display: block;
}
.contact-list small {
  color: var(--muted);
  font-size: 11px;
}
.contact-list strong {
  color: var(--navy);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.quote-form {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 65px rgba(6, 26, 51, 0.08);
}
.quote-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.quote-form legend {
  margin-bottom: 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
}
.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 34px;
}
.form-progress span {
  height: 3px;
  background: var(--line);
}
.form-progress .progress-active {
  background: var(--blue);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}
input,
select,
textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid #bfd2df;
  border-radius: 0;
  background: var(--white);
  outline: none;
  font-size: 14px;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 103, 173, 0.12);
}
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.form-actions .button:last-child {
  margin-left: auto;
}
.form-privacy {
  margin: 0 0 24px;
  padding: 14px 16px;
  color: var(--muted);
  background: #f5f8fb;
  border-left: 3px solid var(--blue);
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.form-privacy summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.form-privacy summary::-webkit-details-marker {
  display: none;
}
.form-privacy summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}
.form-privacy[open] summary::after {
  content: "−";
}
.form-privacy p {
  margin: 12px 0 0;
}
.form-privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-message {
  margin-top: 15px;
  font-size: 13px;
}
.form-message.success {
  padding: 12px;
  color: #145c43;
  background: #eaf7f2;
}
.form-message.error {
  padding: 12px;
  color: #8d3131;
  background: #fff0f0;
}

.site-footer {
  color: #c0d3e1;
  background: #031426;
}
.footer-top {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  padding-block: 58px;
}
.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  color: #87a4b8;
  font-size: 13px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}
.footer-col h3 {
  margin: 3px 0 12px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.footer-col a:hover {
  color: #71c1ef;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #7794a9;
  font-size: 11px;
}
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(119, 148, 169, 0.55);
  text-underline-offset: 3px;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #71c1ef;
  text-decoration-color: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(1, 12, 25, 0.92);
}
.modal.is-open {
  display: grid;
}
.modal-inner {
  position: relative;
  width: min(1100px, 96vw);
}
.modal-inner img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}
.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  color: white;
  background: transparent;
  font-size: 22px;
}
.modal-caption {
  margin: 14px 0 0;
  color: #cfe2ef;
  text-align: center;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }
  .main-nav > a:not(.button) {
    font-size: 13px;
  }
  .range-row {
    grid-template-columns: 160px repeat(6, 1fr);
  }
  .range-row > * {
    padding-inline: 9px;
  }
}

@media (max-width: 860px) {
  .container,
  .narrow {
    width: min(calc(100% - 36px), var(--max));
  }
  .header-inner {
    min-height: 72px;
  }
  .menu-toggle {
    display: grid !important;
    position: relative;
    z-index: 50;
    color: var(--white);
    border-color: #72c6f5;
    background: var(--blue);
  }
  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    color: var(--white);
    border-color: #72c6f5;
    background: var(--blue);
  }
  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: auto;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: max-content;
    min-width: 0;
    max-width: calc(100vw - 36px);
    padding: 10px;
    overflow: hidden;
    color: var(--white);
    text-align: right;
    background: rgba(3, 20, 38, 0.97);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 20px 42px rgba(2, 16, 34, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }
  .main-nav > a:not(.button) {
    width: auto;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    white-space: nowrap;
  }
  .main-nav > a:not(.button):last-of-type {
    border-bottom: 0;
  }
  .main-nav .button {
    width: auto;
    min-width: 0;
    min-height: 44px;
    margin: 10px 0 0;
    padding-inline: 15px;
    white-space: nowrap;
  }
  .header-solid .main-nav,
  .is-scrolled .main-nav {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.98);
    border-color: transparent;
  }
  .header-solid .main-nav > a:not(.button),
  .is-scrolled .main-nav > a:not(.button) {
    border-bottom-color: var(--line);
  }
  .hero-content {
    width: 100%;
    padding-top: 175px;
    padding-top: calc(175px + env(safe-area-inset-top));
    padding-bottom: 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 16, 34, 0.72), rgba(2, 16, 34, 0.18)),
      linear-gradient(0deg, rgba(2, 16, 34, 0.5), transparent);
  }
  .intro-row,
  .content-grid,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .moment-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .moment:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 520px;
  }
  .moment {
    min-height: 330px;
  }
  .range-rail {
    display: none;
  }
  .range-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
  }
  .range-mobile > div {
    padding: 25px;
    background: var(--white);
  }
  .range-mobile strong,
  .range-mobile span {
    display: block;
  }
  .range-mobile strong {
    color: var(--blue);
    font-size: 25px;
  }
  .range-mobile span {
    color: var(--muted);
    font-size: 13px;
  }
  .media-split,
  .media-split.reverse {
    grid-template-columns: 1fr;
  }
  .media-split-image {
    min-height: 470px;
  }
  .media-split.reverse .media-split-image {
    order: -1;
  }
  .logistics-grid,
  .bull-layout {
    grid-template-columns: 1fr;
  }
  .bull-preview .bull-layout > img {
    max-height: 60vh;
  }
  .gallery-band {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-band img {
    height: clamp(140px, 24vw, 220px);
    aspect-ratio: auto;
  }
  .gallery-band img:nth-child(2) {
    transform: translateY(18px);
  }
  .gallery-band img:last-child {
    display: none;
  }
  .bull-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .bull-gallery-item-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }
  .sticky-title,
  .quote-intro {
    position: static;
  }
  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-text strong {
    font-size: 10px;
  }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-frame {
    object-position: 62% center;
  }
  .hero-content {
    padding-bottom: 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
  .hero h1 {
    max-width: 100%;
    font-size: 42px;
    overflow-wrap: normal;
  }
  .hero-title-secondary {
    max-width: 24ch;
    font-size: clamp(22px, 7.2vw, 29px);
    line-height: 1.08;
  }
  .hero-lede {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-bottom-inner {
    min-height: auto;
    justify-content: center;
    padding-block: 12px;
  }
  .hero-bottom-inner > span {
    display: none;
  }
  .film-control {
    width: 100%;
    justify-content: center;
    padding-inline: 0;
  }
  .section {
    padding-block: 78px;
  }
  .section-title {
    font-size: 40px;
  }
  .quote-intro .section-title {
    font-size: clamp(32px, 8.2vw, 40px);
  }
  .moment-grid {
    grid-template-columns: 1fr;
  }
  .moment,
  .moment:first-child {
    height: 360px;
    min-height: 360px;
  }
  .moment:first-child {
    grid-column: auto;
  }
  .range-heading {
    display: block;
  }
  .range-heading p {
    margin-top: 18px;
  }
  .range-mobile {
    grid-template-columns: 1fr 1fr;
  }
  .range-mobile > div {
    padding: 19px 16px;
  }
  .media-split-image {
    min-height: 380px;
  }
  .media-split-copy {
    padding: 54px 24px;
  }
  .logistics-item {
    padding: 48px 24px;
  }
  .bull-layout {
    gap: 35px;
  }
  .cta-inner {
    min-height: 370px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .page-hero {
    min-height: 60vh;
    min-height: 60svh;
    min-height: 60dvh;
  }
  .page-hero-content {
    max-width: 100%;
    min-width: 0;
    padding-bottom: 92px;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 46px);
    overflow-wrap: normal;
    hyphens: none;
  }
  .page-title-secondary {
    max-width: 24ch;
    font-size: clamp(22px, 7.2vw, 29px);
    line-height: 1.08;
  }
  .page-hero p {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: normal;
  }
  .prose h2 {
    font-size: clamp(30px, 9vw, 38px);
  }
  .tech-details-content {
    padding-inline: 16px;
  }
  .tech-specs > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .gallery-band {
    width: calc(100% - 48px);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .gallery-band img {
    height: clamp(168px, 51vw, 246px);
    aspect-ratio: auto;
  }
  .gallery-band img:nth-child(2) {
    display: block;
    transform: none;
  }
  .gallery-band img:nth-child(3) {
    display: none;
  }
  .bull-gallery-section {
    padding-bottom: 78px;
  }
  .bull-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bull-gallery-item-main {
    grid-column: auto;
  }
  .bull-gallery-item,
  .bull-gallery-item-main {
    aspect-ratio: 4 / 3;
  }
  .detail-item {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-inline: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-actions {
    flex-direction: column-reverse;
  }
  .form-actions .button {
    width: 100%;
    margin-left: 0 !important;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    padding-top: 36px;
    padding-bottom: 34px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col {
    gap: 5px;
  }
  .footer-col h3 {
    margin-top: 0;
    margin-bottom: 6px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    padding-top: 12px;
    padding-bottom: 15px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .cta-inner {
    min-height: 300px;
    gap: 24px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
