:root {
  --black: #151515;
  --ink: #1f1d1a;
  --paper: #f4f0e8;
  --paper-2: #e8dfd0;
  --white: #ffffff;
  --accent: #ff5a2f;
  --accent-2: #ffb547;
  --green: #8aa070;
  --blue: #6f9dbd;
  --muted: #6e6a64;
  --line: rgba(21, 21, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --rail: 92px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(21, 21, 21, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 68px 68px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(21, 21, 21, 0.16) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

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

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

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

button {
  cursor: pointer;
}

button,
a,
input,
select,
textarea {
  outline-color: var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-140%);
}

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

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

h1,
h2,
h3 {
  line-height: 0.9;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 900;
  text-transform: uppercase;
}

h1 span,
.final-cta h2 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.button,
.text-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--black);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 240ms ease, background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.button:hover,
.text-button:hover {
  transform: translateY(-3px);
}

.button--dark,
.button--submit {
  color: var(--white);
  background: var(--black);
}

.button--accent,
.text-button {
  color: var(--black);
  background: var(--accent);
  border-color: var(--accent);
}

.button--light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  display: flex;
  width: var(--rail);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 26px 0 22px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 16, 16, 0.9);
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: var(--accent);
  font-weight: 900;
  margin-bottom: 24px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark span {
  position: absolute;
  color: transparent;
}

.side-nav__link {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 240ms ease, color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.side-nav__link + .side-nav__link {
  margin-top: 0;
}

.side-nav__link strong {
  position: absolute;
  left: 54px;
  min-width: 112px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.side-nav__link:hover,
.side-nav__link:focus-visible,
.side-nav__link.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

.side-nav__link:hover strong,
.side-nav__link:focus-visible strong {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav {
  display: none;
}

.section {
  position: relative;
  min-height: 100vh;
  margin-left: var(--rail);
  padding: 90px clamp(28px, 6vw, 96px);
  scroll-margin-top: 24px;
}

.section > * {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(244, 240, 232, 0.98) 0%, rgba(244, 240, 232, 0.92) 42%, rgba(232, 223, 208, 0.6) 64%, rgba(21, 21, 21, 0.16) 100%),
    url("../products/Product background image.png") right center / min(72vw, 1180px) auto no-repeat,
    linear-gradient(135deg, #f7f4ee 0%, #eee7dc 55%, #e1d7c8 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(244, 240, 232, 0.92), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: #4f4a44;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

.hero__facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__facts span {
  min-height: 76px;
  padding: 18px 16px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__facts span:first-child {
  color: var(--black);
  font-size: 1rem;
}

.hero__facts span:last-child {
  border-right: 0;
}

.price-ring {
  position: absolute;
  top: 9%;
  right: min(38%, 430px);
  z-index: 2;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  padding: 24px;
  color: var(--black);
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  text-align: center;
  backdrop-filter: blur(8px);
  animation: ringSpin 18s linear infinite;
}

.price-ring::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
}

.price-ring span,
.price-ring small {
  display: block;
  animation: ringSpinReverse 18s linear infinite;
}

.price-ring span {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.price-ring small {
  margin-top: 8px;
  font-size: 0.66rem;
  font-weight: 900;
}

.inquiry-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  padding: 1px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--black), var(--accent));
  background-size: 300% 300%;
  box-shadow: var(--shadow);
  animation: borderFlow 9s ease infinite;
}

.inquiry-panel::before {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: 7px;
  background: rgba(17, 17, 17, 0.94);
}

.panel-head,
.inquiry-form {
  position: relative;
  z-index: 1;
}

.panel-head {
  padding: 30px 30px 0;
  color: var(--white);
}

.panel-head h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 0 30px 30px;
}

.field {
  display: grid;
  gap: 6px;
}

.field--wide,
.button--submit,
.form-status,
.form-backups {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

select {
  color-scheme: dark;
}

textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-backups {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-scene {
  min-height: 110vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.product-scene::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.08) 48%, rgba(10, 10, 10, 0.92) 100%);
}

.scene-copy {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.scene-copy h2 {
  margin-bottom: 0;
  color: var(--white);
}

.scene-copy p {
  max-width: 330px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.scene-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: none;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.scene-image {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
}

.product-scene:hover .scene-image {
  transform: scale(1.018);
  filter: saturate(0.9) contrast(1.06);
}

.hotspot {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.hotspot::before,
.hotspot::after {
  position: absolute;
  inset: -9px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  animation: hotspotPulse 3s ease-out infinite;
}

.hotspot::after {
  animation-delay: 1.1s;
}

.hotspot span {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
}

.hotspot span::before,
.hotspot span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.hotspot span::before {
  width: 17px;
  height: 2px;
}

.hotspot span::after {
  width: 2px;
  height: 17px;
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.hotspot--quick {
  left: 19%;
  top: 61%;
}

.hotspot--expandable {
  left: 51%;
  top: 56%;
}

.hotspot--apple {
  left: 83%;
  top: 58%;
}

.scene-card {
  position: absolute;
  z-index: 6;
  bottom: 30px;
  width: min(348px, calc(100% - 32px));
  overflow: hidden;
  color: var(--black);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.97);
  transition: opacity 300ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scene-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scene-card--left {
  left: 30px;
}

.scene-card--center {
  left: 50%;
  transform: translate(-50%, 20px) scale(0.97);
}

.scene-card--center.is-active {
  transform: translate(-50%, 0) scale(1);
}

.scene-card--right {
  right: 30px;
}

.product-thumb {
  height: 164px;
  background: #ece8e1;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scene-card > :not(.product-thumb) {
  margin-right: 18px;
  margin-left: 18px;
}

.product-kicker {
  margin-top: 18px;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.scene-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.55rem;
}

.scene-card p {
  margin-bottom: 14px;
  color: #69645e;
  font-size: 0.88rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.tags span {
  padding: 6px 8px;
  color: #4e4943;
  border-radius: 999px;
  background: #ece8e1;
  font-size: 0.68rem;
  font-weight: 900;
}

.text-button {
  width: calc(100% - 36px);
  margin-bottom: 18px;
}

.price-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  gap: 24px;
  margin-top: 22px;
}

.price-strip span {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.56);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.price-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1.14rem;
}

.global {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  color: var(--white);
  background: #111;
}

.global__copy h2,
.factory__top h2,
.final-cta h2 {
  color: var(--white);
}

.global__copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.global .eyebrow,
.factory .eyebrow {
  color: var(--accent-2);
}

.map-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #191919;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.map-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.map-panel svg {
  position: absolute;
  inset: 10% 7% 18%;
  width: 86%;
  height: 72%;
}

.land {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.16);
}

.origin {
  fill: var(--accent);
}

.route {
  fill: none;
  stroke: var(--accent);
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  stroke-width: 2;
  animation: dashFlow 8s linear infinite;
}

.route--two {
  stroke: var(--accent-2);
  animation-duration: 10s;
}

.route--three {
  stroke: var(--green);
  animation-duration: 12s;
}

.pulse {
  fill: var(--accent-2);
  animation: lightPulse 2.8s ease-in-out infinite;
}

.pulse--delay {
  animation-delay: 0.8s;
}

.pulse--slow {
  animation-delay: 1.4s;
}

.stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats div {
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.stats span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.value {
  background: var(--paper);
}

.value__intro {
  margin-bottom: 54px;
}

.value__intro .eyebrow {
  color: var(--accent);
}

.value-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-line {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: rgba(255, 255, 255, 0.42);
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease;
}

.value-line:hover {
  color: var(--white);
  background: var(--black);
  transform: translateY(-8px);
}

.value-line span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
}

.value-line h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 42px);
}

.value-line p {
  margin-bottom: 0;
  color: var(--muted);
}

.value-line:hover p {
  color: rgba(255, 255, 255, 0.58);
}

.factory {
  background: #e9e3d8;
}

.factory__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}

.factory__top h2 {
  color: var(--black);
}

.factory__top .eyebrow {
  color: var(--accent);
}

.factory__top p {
  max-width: 530px;
  color: var(--muted);
  line-height: 1.75;
}

.factory-showcase {
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.35fr 0.65fr;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.factory-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.factory-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 55%, rgba(17, 17, 17, 0.82));
}

.factory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 700ms ease;
}

.factory-showcase:hover .factory-media img {
  transform: scale(1.035);
}

.factory-media.is-fading img {
  opacity: 0;
}

.factory-info {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
}

.factory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.factory-tabs button {
  min-height: 42px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
}

.factory-tabs button.is-active,
.factory-tabs button:hover {
  color: var(--black);
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.factory-info h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 64px);
}

.factory-info p,
.factory-info li {
  color: rgba(255, 255, 255, 0.58);
}

.factory-info ul {
  display: grid;
  gap: 12px;
  padding-left: 0;
  margin: 26px 0;
  list-style: none;
}

.factory-info li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.factory-info li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.progress-line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--green), var(--blue));
}

.final-cta {
  display: grid;
  min-height: 74vh;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: #111;
}

.final-cta__inner {
  max-width: 1080px;
}

.final-cta h2 {
  margin: 18px auto 30px;
  color: var(--white);
  font-size: clamp(62px, 10vw, 150px);
  line-height: 0.84;
}

.final-cta h2::first-line {
  color: var(--white);
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.12rem;
  line-height: 1.7;
}

.final-cta .hero__actions {
  justify-content: center;
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-contact__button {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(255, 90, 47, 0.36);
  transition: transform 240ms ease;
}

.floating-contact__button:hover {
  transform: translateY(-4px) rotate(5deg);
}

.floating-contact__button span {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.floating-contact.is-open .floating-contact__button span {
  transform: rotate(45deg);
}

.floating-contact__menu {
  display: grid;
  width: 260px;
  gap: 4px;
  padding: 14px;
  color: var(--black);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.23);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease;
}

.floating-contact.is-open .floating-contact__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-contact__menu a {
  min-height: 46px;
  padding: 13px;
  border-radius: 8px;
  font-weight: 900;
}

.floating-contact__menu a:hover {
  background: var(--paper);
}

.asset-placeholder {
  display: grid;
  width: 100%;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  color: #6d675f;
  border: 1px dashed rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, #d8d3ca, #f3f0ea);
  text-align: center;
  font-weight: 900;
}

.scene-frame > .asset-placeholder {
  min-height: 650px;
  border-radius: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ringSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes borderFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hotspotPulse {
  0% {
    opacity: 0.86;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes lightPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 105px;
    background:
      linear-gradient(105deg, rgba(244, 240, 232, 0.98) 0%, rgba(244, 240, 232, 0.92) 58%, rgba(232, 223, 208, 0.6) 100%),
      url("../products/Product background image.png") right top / min(92vw, 950px) auto no-repeat,
      linear-gradient(135deg, #f7f4ee 0%, #eee7dc 55%, #e1d7c8 100%);
  }

  .price-ring {
    top: 10%;
    right: 6%;
  }

  .inquiry-panel {
    max-width: 760px;
  }

  .global,
  .factory__top,
  .factory-showcase {
    grid-template-columns: 1fr;
  }

  .factory-media::after {
    background: linear-gradient(180deg, transparent 58%, rgba(17, 17, 17, 0.9));
  }

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

@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }

  .side-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
  }

  .mobile-brand span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
  }

  .mobile-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
  }

  .mobile-menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 12px 18px 22px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #111;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 46px;
    padding: 13px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 900;
  }

  .section {
    min-height: auto;
    margin-left: 0;
    padding: 70px 18px;
    scroll-margin-top: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 58px;
    background:
      linear-gradient(180deg, rgba(244, 240, 232, 0.96) 0%, rgba(244, 240, 232, 0.86) 52%, rgba(244, 240, 232, 1) 100%),
      url("../products/Product background image.png") center 36px / 1120px auto no-repeat,
      var(--paper);
  }

  .price-ring {
    top: 70px;
    right: 16px;
    width: 112px;
    height: 112px;
    padding: 18px;
  }

  .price-ring span {
    font-size: 1rem;
  }

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

  .hero__facts span:nth-child(2) {
    border-right: 0;
  }

  .hero__facts span:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .scene-copy {
    display: block;
  }

  .scene-copy p {
    max-width: none;
    padding-top: 12px;
  }

  .scene-frame {
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .scene-image {
    min-height: auto;
    object-fit: contain;
    background: #cfe2ee;
  }

  .hotspot {
    width: 42px;
    height: 42px;
  }

  .hotspot::before,
  .hotspot::after {
    inset: -6px;
  }

  .scene-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 14px 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .scene-card--left,
  .scene-card--right {
    right: auto;
    left: auto;
  }

  .scene-card--center,
  .scene-card--center.is-active {
    left: auto;
    transform: none;
  }

  .price-strip {
    display: none;
  }

  .global {
    display: grid;
  }

  .map-panel {
    min-height: 520px;
  }

  .map-panel svg {
    inset: 6% 3% 28%;
    width: 94%;
    height: 62%;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .factory-media {
    min-height: 340px;
  }

  .factory-info {
    padding: 32px 22px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .hero__actions,
  .form-backups {
    display: grid;
  }

  .hero__actions .button,
  .final-cta .button {
    width: 100%;
  }

  .inquiry-panel {
    border-radius: 8px;
  }

  .panel-head {
    padding: 24px 20px 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
  }

  .value-lines {
    grid-template-columns: 1fr;
  }

  .value-line {
    min-height: 230px;
  }

  .factory-showcase {
    min-height: auto;
  }

  .factory-media {
    min-height: 300px;
  }

  .factory-tabs button {
    flex: 1 1 auto;
  }

  .final-cta {
    min-height: 66vh;
  }

  .floating-contact {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .floating-contact__menu {
    width: min(260px, calc(100vw - 32px));
  }
}

@media (max-width: 380px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .button,
  .text-button {
    padding-right: 14px;
    padding-left: 14px;
  }
}

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

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

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

  .hotspot::before,
  .hotspot::after {
    display: none;
  }
}
