:root {
  --hue-dawn-bg: #f2f4f7;
  --hue-deep-text: #1e252b;
  --hue-solar-accent: #f4a261;
  --hue-earl-muted: #7e8b96;
  --hue-glass-lite: rgba(255, 255, 255, 0.45);
  --hue-glass-strong: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 0.35rem 1.75rem rgba(30, 37, 43, 0.12);
  --shadow-droplet: 0 0.15rem 0.95rem rgba(244, 162, 97, 0.22);

  --font-display: "Crimson Pro", "Times New Roman", serif;
  --font-readable: "Outfit", "Segoe UI", system-ui, sans-serif;

  --space-xs: 0.375rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --radius-pill: 999rem;
  --radius-panel: 0.95rem;
  --radius-droplet: 50%;
  --transition-fast: 0.35s cubic-bezier(0.25, 0.69, 0.24, 1);

  --max-readable-ch: 70ch;
  --hdr-offset: clamp(5.5rem, 12vw, 7.5rem);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.visually-masked-aid {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: var(--font-readable);
  color: var(--hue-deep-text);
  background: linear-gradient(
    180deg,
    #dfe6ef 0%,
    var(--hue-dawn-bg) 42%,
    #fef9f1 88%,
    #fffdf8 100%
  );
  line-height: 1.62;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.banner-media-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
}

a:not(.text-button-dew, .cta-pill-accent, .card-link-soft):focus-visible {
  outline: 0.125rem dashed var(--hue-solar-accent);
  outline-offset: 0.2rem;
}

.skip-to-content-anchor {
  position: absolute;
  left: -100rem;
  top: auto;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  z-index: 80;
}

.skip-to-content-anchor:focus {
  position: fixed;
  left: var(--space-md);
  top: var(--space-md);
  width: auto;
  height: auto;
  padding: var(--space-sm) var(--space-md);
  background: var(--hue-glass-strong);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  overflow: visible;
}

.primary-site-header {
  position: relative;
  z-index: 40;
}

.header-inner-shell {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: space-between;
  max-width: 92%;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.text-brand-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.9vw, 1.85rem);
  letter-spacing: 0.015em;
  font-weight: 500;
}

.header-desktop-rail {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.35rem, 2vw, 1.85rem);
  flex-wrap: wrap;
}

.nav-link-inline {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--hue-earl-muted);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link-inline:hover,
.nav-link-inline[aria-current="page"] {
  color: var(--hue-deep-text);
  background: var(--hue-glass-lite);
  backdrop-filter: blur(10px);
}

.burger-menu-trigger {
  order: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  border-radius: var(--radius-droplet);
  border: none;
  cursor: pointer;
  margin-left: var(--space-sm);
  flex-shrink: 0;
  background: var(--hue-glass-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.burger-menu-trigger:hover {
  transform: translateY(-0.0625rem);
  box-shadow: var(--shadow-droplet);
}

.burger-menu-trigger:active {
  transform: translateY(0.0625rem);
}

.burger-line-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 1.35rem;
}

.burger-bar-slice {
  display: block;
  height: 0.09375rem;
  width: 100%;
  background: var(--hue-deep-text);
  border-radius: var(--radius-pill);
}

.mobile-nav-sheet {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 32, 0.38);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 50;
}

.mobile-nav-sheet.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel-body {
  position: absolute;
  top: var(--hdr-offset);
  right: var(--space-md);
  bottom: var(--space-md);
  width: min(92%, 22rem);
  margin-left: auto;
  background: rgba(251, 252, 255, 0.84);
  border-radius: var(--radius-panel);
  padding: var(--space-lg);
  transform: translateX(110%);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  overflow-y: auto;
}

.mobile-nav-sheet.is-open .mobile-panel-body {
  transform: translateX(0);
}

.mobile-nav-anchor {
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-pill);
  background: var(--hue-glass-lite);
  backdrop-filter: blur(8px);
}

.mobile-sheet-close-control {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  color: var(--hue-earl-muted);
}

.viewport-wrap-main {
  max-width: min(1140px, 92%);
  margin: 0 auto;
  padding-block: clamp(1.85rem, 5vw, 3.85rem);
}

.section-heading-cluster {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-eyebrow-label {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--hue-earl-muted);
  margin: 0 0 var(--space-sm);
}

.section-title-primary {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.25vw, 2.95rem);
  margin: 0;
  font-weight: 520;
}

.section-lede-text {
  max-width: var(--max-readable-ch);
  margin: var(--space-md) auto 0;
  color: var(--hue-earl-muted);
}

.hero-banner-prime .viewport-banner-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.viewport-banner-shell {
  overflow: hidden;
}

.banner-vertical-stack {
  display: grid;
  grid-template-rows: auto minmax(12rem, 1fr);
  gap: var(--space-md);
  align-items: stretch;
  padding-inline: clamp(1rem, 5vw, 4rem);
}

.hero-banner-prime .banner-vertical-stack {
  grid-template-rows: auto 1fr;
  min-height: clamp(28rem, 58vw, 38rem);
}

.section-compact-photo-band {
  max-width: min(960px, 92%);
  margin-inline: auto;
  padding-block: clamp(1.35rem, 4.5vw, 3rem);
}

.text-photo-duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.85rem);
  align-items: start;
}

@media (min-width: 720px) {
  .text-photo-duo-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(11rem, 0.92fr);
  }
}

.secondary-copy-shell {
  padding-top: 0;
  max-width: none;
}

.secondary-band-display-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.1;
  margin: 0 0 var(--space-md);
}

.compact-photo-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  width: fit-content;
  max-width: 100%;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

@media (min-width: 720px) {
  .text-photo-duo-grid .compact-photo-matrix {
    margin-inline: 0 auto;
  }

  .text-photo-duo-grid.is-copy-on-right .compact-photo-matrix {
    margin-inline: auto 0;
  }

  .text-photo-duo-grid.is-copy-on-right {
    grid-template-columns: minmax(11rem, 0.92fr) minmax(0, 1.08fr);
  }

  .text-photo-duo-grid.is-copy-on-right .secondary-copy-shell {
    order: 2;
  }
}

.compact-photo-tile {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-soft);
  max-height: 9rem;
}

.compact-photo-tile.is-matrix-span-two {
  grid-column: 1 / -1;
  max-height: 10rem;
}

.compact-photo-tile img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
}

@media (max-width: 719px) {
  .text-photo-duo-grid .compact-photo-matrix {
    justify-items: center;
    margin-inline: auto;
    width: 100%;
    max-width: 18rem;
  }
}

.section-compact-photo-band article.glass-information-card {
  margin-block: 0;
}

.secondary-copy-shell .cta-pill-accent {
  margin-top: var(--space-md);
}

.banner-copy-layer {
  position: relative;
  z-index: 2;
  padding-top: clamp(2rem, 6vw, 4rem);
  max-width: min(720px, 92%);
}

.banner-title-line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.06;
  margin: 0 0 var(--space-md);
}

.banner-subtle-lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--hue-deep-text);
  max-width: 38rem;
}

.banner-media-holder {
  position: relative;
  border-radius: 0 0 var(--radius-panel) var(--radius-panel);
  overflow: hidden;
  min-height: 14rem;
  box-shadow: var(--shadow-soft);
}

.banner-soft-gradient-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(30, 37, 43, 0.18));
  pointer-events: none;
}

.two-column-shift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.85rem);
  align-items: start;
}

.glass-information-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-panel);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.card-mini-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 var(--space-sm);
}

.card-link-soft {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  color: var(--hue-solar-accent);
  font-weight: 560;
}

.asymmetric-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.asymmetric-gallery-row.is-flipped {
  grid-template-columns: 1.15fr 1fr;
}

.asymmetric-gallery-row.is-flipped .glass-information-card {
  order: -1;
}

.cta-pill-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
  padding: 0.75rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  color: var(--hue-deep-text);
  background: var(--hue-solar-accent);
  box-shadow: var(--shadow-droplet);
}

.text-button-dew {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.timeline-orbit-shell {
  display: grid;
  gap: var(--space-lg);
}

.timeline-orbit-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  padding: var(--space-lg);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  align-items: center;
}

.sunrise-micro-label {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hue-earl-muted);
}

.sunrise-strong-value {
  font-size: clamp(2rem, 4vw, 2.95rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--hue-deep-text);
}

.location-list-inline {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
  color: var(--hue-earl-muted);
}

.location-list-inline li {
  margin-bottom: var(--space-xs);
}

.timeline-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-grid-equal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.85vw, 2.25rem);
}

.product-catalog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-photo-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  max-height: 10rem;
}

.product-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy-block {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-price-badge {
  font-weight: 600;
  letter-spacing: 0.045em;
  color: var(--hue-deep-text);
}

.primary-site-footer {
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0 clamp(4.5rem, 12vw, 6rem);
  border-top: 0.0625rem solid rgba(126, 139, 150, 0.22);
}

.footer-compact-shell {
  max-width: min(940px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.footer-nav-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.footer-link-chip {
  text-decoration: none;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  background: var(--hue-glass-lite);
  backdrop-filter: blur(8px);
}

.footer-mini-note {
  font-size: 0.875rem;
  color: var(--hue-earl-muted);
  margin: 0;
}

.footer-legal-micro {
  margin: 0;
  font-size: 0.8rem;
  color: var(--hue-earl-muted);
}

.cookies-consent-slab {
  position: fixed;
  left: clamp(4%, 3vw, 8%);
  right: clamp(4%, 3vw, 8%);
  /*bottom: clamp(1rem, 4vw, 2.15rem);*/
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transform: translateY(115%);
  transition: transform var(--transition-fast);
}

.cookies-consent-slab.is-visible {
  transform: translateY(0);
}

.consent-parcel-text {
  margin: 0;
  font-size: 0.9rem;
}

.consent-control-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.consent-accept-button {
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  background: var(--hue-deep-text);
  color: var(--hue-dawn-bg);
  cursor: pointer;
}

.consent-learn-link {
  text-decoration: underline;
}

.modal-overlay-curtain {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: var(--space-md);
  align-items: center;
  justify-content: center;
  display: none;
  background: rgba(18, 24, 32, 0.45);
}

.modal-overlay-curtain.is-open {
  display: flex;
}

.modal-focus-panel {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(252, 252, 255, 0.96);
  border-radius: var(--radius-panel);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.modal-lede-zero {
  margin-top: 0;
}

.modal-dismiss-button {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--hue-earl-muted);
}

.radio-stack-fieldset {
  border: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.radio-stack-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.form-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-label-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--hue-deep-text);
}

.field-text-standard,
.field-text-area {
  width: 100%;
  padding: 0.72rem var(--space-md);
  border-radius: var(--radius-panel);
  border: 0.0625rem solid rgba(126, 139, 150, 0.45);
  font-family: var(--font-readable);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.88);
}

.field-text-area {
  min-height: 9rem;
  resize: vertical;
}

.checkbox-row-inline {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.map-embed-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-panel);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-soft);
}

.map-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.legal-document-wrapper {
  max-width: min(820px, 92%);
  margin: 0 auto;
  padding-block: var(--space-lg);
}

.legal-plain-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: var(--space-sm);
}

.legal-intro-date {
  color: var(--hue-earl-muted);
  margin-top: 0;
}

.stack-paper-plain {
  display: grid;
  gap: var(--space-md);
}

.error-state-panel {
  text-align: center;
  padding: var(--space-xl);
}

.first-light-rise {
  opacity: 0;
  transform: translateY(18%);
  animation: crestLightRise 0.92s forwards ease-out;
  animation-delay: var(--motion-delay-slot, 0s);
}

@keyframes crestLightRise {
  from {
    opacity: 0;
    transform: translateY(14%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1023px) {
  .burger-menu-trigger {
    display: inline-flex;
  }

  .header-desktop-rail {
    display: none;
  }

  .asymmetric-gallery-row,
  .asymmetric-gallery-row.is-flipped {
    grid-template-columns: 1fr;
  }

  .asymmetric-gallery-row.is-flipped .glass-information-card {
    order: unset;
  }

  .timeline-orbit-entry {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .timeline-action-row {
    justify-content: flex-start;
  }

  .cookies-consent-slab {
    grid-template-columns: 1fr;
  }

  .consent-control-cluster {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .burger-menu-trigger {
    display: none;
  }

  .header-desktop-rail {
    display: flex;
  }

  .text-brand-mark {
    flex-shrink: 0;
  }
}
