@font-face {
  font-family: Manrope;
  src: url("assets/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Sora;
  src: url("assets/sora.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
:root {
  --bg: #090a0b;
  --surface: #121315;
  --surface-raised: #191a1d;
  --gold: #e9ba60;
  --gold-light: #f6d694;
  --text: #f5f3ed;
  --muted: #a4a5aa;
  --line: #28292b;
  --scroll-thumb: #67615a;
  --scroll-track: #121315;
  --scroll-hover: #9a825a;
  --scroll-active: #e9ba60;
  --radius: 18px;
  --body: Manrope, "Segoe UI", sans-serif;
  --display: Sora, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--scroll-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border: 2px solid var(--scroll-track);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-hover);
}
::-webkit-scrollbar-thumb:active {
  background: var(--scroll-active);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
summary,
select {
  cursor: pointer;
}
button {
  color: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}
a:active,
button:active {
  opacity: 0.85;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button {
  border: 0;
}
::selection {
  background: var(--gold);
  color: var(--bg);
}
[hidden] {
  display: none !important;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  text-wrap: pretty;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(1200px, calc(100% - 88px));
  margin-inline: auto;
}
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.gold-text {
  color: var(--gold);
}
.muted-heading {
  color: var(--muted);
}
.section {
  padding-block: 108px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.6;
}
.gold-line {
  width: 25px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}
h2 {
  font-family: var(--display);
  font-size: clamp(31px, 3.35vw, 43px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.24;
}
h3 {
  font-family: var(--display);
  font-weight: 500;
}
h2 + .text-link {
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 53px;
  padding: 15px 22px;
  background: var(--surface-raised);
  border: 1px solid #39362e;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.button:hover {
  background: #272621;
  transform: translateY(-2px);
}
.button-gold {
  background: var(--gold);
  color: #151109;
  border-color: var(--gold);
  box-shadow:
    0 3px 0 #956b2b,
    0 8px 30px #e9ba6010;
}
.button-gold:hover {
  background: var(--gold-light);
  box-shadow:
    0 3px 0 #956b2b,
    0 8px 36px #e9ba6028;
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
  min-height: 44px;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--gold);
}
.text-link .icon {
  width: 17px;
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #090a0bee;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #ffffff09;
}
.header-inner {
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 65px;
  height: 57px;
  object-fit: contain;
}
.brand-wordmark {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--gold);
}
.brand-wordmark b {
  color: var(--text);
  font-weight: 500;
}
.brand-wordmark small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.7px;
  line-height: 2.5;
  font-family: var(--body);
  font-weight: 500;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  color: #b9b9bc;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--gold);
}
.header-contact {
  background: #171612;
  color: var(--gold);
  border-color: #53452c;
}
.arrow-small {
  width: 15px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 44%, #a0783010, transparent 46%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  min-height: 647px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 52px;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-copy .eyebrow {
  margin-bottom: 27px;
}
h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(42px, 4.05vw, 57px);
  letter-spacing: -2.7px;
  line-height: 1.19;
  white-space: nowrap;
}
.hero-description {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}
.hero-actions .button {
  padding-inline: 19px;
}
.hero-reassurance {
  display: flex;
  gap: 10px 22px;
  margin-top: 37px;
  color: #b4b2ab;
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-reassurance span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-reassurance .icon {
  width: 17px;
  height: 17px;
  color: #a18e67;
}
.hero-visual {
  position: relative;
  min-width: 0;
  height: 617px;
  isolation: isolate;
  margin-right: -32px;
  margin-left: -24px;
}
#phone-scene {
  position: absolute;
  inset: 0 -40px 0 -35px;
  z-index: 2;
  touch-action: pan-y;
}
#phone-scene canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: pan-y;
}
#phone-scene canvas:active {
  cursor: grabbing;
}
.part-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.part-label {
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 9px;
  border: 1px solid #e9ba602a;
  border-radius: 5px;
  background: #101112e8;
}
.floating-note {
  transition:
    opacity 0.25s,
    visibility 0.25s;
}
.is-exploded .floating-note {
  opacity: 0;
  visibility: hidden;
}
.orbit {
  position: absolute;
  left: 7%;
  top: 10%;
  width: 88%;
  height: 80%;
  border: 1px solid #d8af5a13;
  border-radius: 50%;
  transform: rotate(-30deg);
  pointer-events: none;
}
.orbit-two {
  inset: 17% -1% auto auto;
  width: 98%;
  height: 64%;
  transform: rotate(-40deg);
  border-style: dashed;
  border-color: #d8af5a12;
}
.scene-label {
  position: absolute;
  right: 20px;
  top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #9d998f;
  letter-spacing: 2px;
  transition:
    opacity 0.25s,
    visibility 0.25s;
}
.tiny-cross {
  font-size: 20px;
  color: var(--gold);
  font-weight: 200;
}
.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #242321ee, #121315dd);
  border: 1px solid #ffffff15;
  border-radius: 11px;
  padding: 12px 16px;
  box-shadow: 0 15px 30px #0004;
  backdrop-filter: blur(15px);
  font-size: 13px;
  pointer-events: none;
}
.floating-note small {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  color: var(--muted);
}
.note-screen {
  right: -8px;
  top: 30%;
  transform: rotate(3deg);
}
.note-care {
  left: -12px;
  bottom: 22%;
  transform: rotate(-4deg);
}
.note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  background: #e9ba6010;
  border: 1px solid #e9ba601c;
  border-radius: 8px;
  color: var(--gold);
}
.note-icon .icon {
  width: 17px;
  height: 17px;
}
.scene-controls {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  border: 1px solid #ffffff15;
  border-radius: 99px;
  background: #181817c9;
  backdrop-filter: blur(15px);
  padding: 2px 8px;
  white-space: nowrap;
}
.scene-controls button {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 7px 12px;
  background: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c2bbae;
  border-radius: 99px;
}
.scene-controls button:hover,
.scene-controls button[aria-pressed="true"] {
  background: #e9ba6012;
  color: var(--gold);
}
.scene-controls .icon {
  width: 16px;
  height: 16px;
}
.control-divider {
  height: 15px;
  width: 1px;
  background: var(--line);
}
.pause-symbol {
  font-size: 15px;
  width: 14px;
}
.scene-caption {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  color: #8f8b81;
  white-space: nowrap;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 14px;
  border-top: 1px solid #ffffff0b;
  font-size: 11px;
  letter-spacing: 1.8px;
  color: #94938e;
}
.hero-bottom > a {
  display: flex;
  align-items: center;
  gap: 15px;
  letter-spacing: 0.4px;
  font-size: 13px;
  min-height: 44px;
}
.hero-bottom .icon {
  transform: rotate(90deg);
  width: 15px;
}
.hero-bottom > a:hover {
  color: var(--gold);
}
.phone-fallback {
  position: absolute;
  left: 33%;
  top: 14%;
  width: 200px;
  height: 390px;
  border: 5px solid #918574;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 100% 100%, #cea04d, transparent 60%),
    linear-gradient(140deg, #222, #0c0b08);
  box-shadow:
    inset 0 0 0 3px #000,
    15px 25px 50px #000;
  transform: rotate(-12deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.phone-fallback > span {
  font-size: 45px;
  font-family: var(--display);
  color: var(--gold);
}
.phone-fallback > span span {
  color: var(--text);
}
.phone-fallback small {
  font-size: 6px;
  letter-spacing: 2px;
}
.fallback-camera {
  position: absolute;
  top: 12px;
  left: 35%;
  width: 30%;
  height: 16px;
  background: #000;
  border-radius: 20px;
}
.specialty-strip {
  background: #111213;
  border-block: 1px solid #ffffff06;
}
.specialty-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.specialty-inner > span:first-child {
  font-size: 13px;
  color: #929294;
  line-height: 1.7;
}
.specialty-inner > span b {
  font-weight: 500;
  color: #d0cfcb;
}
.specialty-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 17px;
  font-family: var(--display);
  letter-spacing: -0.5px;
  color: #b2b1ad;
}
.specialty-item .icon {
  width: 22px;
  height: 22px;
  color: #827966;
}
.strip-star {
  color: #a48b5b;
  font-size: 18px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 45px;
}
.section-heading .eyebrow,
.process-intro .eyebrow,
.faq-layout .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 5px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1200px;
}
.service-card {
  display: block;
  min-width: 0;
  background: linear-gradient(145deg, #17181a, #101113);
  border: 1px solid #ffffff0c;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.35s,
    box-shadow 0.35s;
  transform-style: preserve-3d;
}
.service-card:hover {
  border-color: #e9ba6050;
  transform: translateY(-8px);
  box-shadow: 0 20px 36px #0005;
}
.service-art {
  height: 208px;
  position: relative;
  perspective: 600px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 65%, #ba903c12, transparent 66%);
}
.service-text {
  padding: 7px 23px 23px;
}
.service-text h3 {
  font-size: 18px;
  letter-spacing: -0.55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.service-text h3 > .icon {
  width: 16px;
  color: #99876a;
}
.service-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 12px;
  min-height: 72px;
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 650;
  color: var(--gold);
  padding-top: 20px;
  margin-top: 17px;
  border-top: 1px solid #ffffff0b;
  gap: 5px;
}
.service-link .icon {
  width: 15px;
}
/* Orbit lines are a backdrop: every component paints above them. */
.screen-part,
.battery-part,
.cable-wire,
.cable-plug,
.circuit-board {
  z-index: 1;
}
.screen-part {
  position: absolute;
  width: 92px;
  height: 142px;
  left: calc(50% - 46px);
  top: 29px;
  border-radius: 13px;
  transform: rotateX(24deg) rotateY(-27deg) rotateZ(23deg);
  transition: transform 0.5s;
}
.screen-shadow {
  background: #25282b;
  border: 2px solid #494b4c;
  box-shadow:
    7px 8px 0 #0b0c0d,
    9px 10px 0 #343638;
  transform: translate(-13px, 15px) rotateX(24deg) rotateY(-27deg)
    rotateZ(23deg);
}
.screen-glass {
  background: linear-gradient(
    130deg,
    #786544 0%,
    #28231c 25%,
    #1a1c20 60%,
    #a47b38
  );
  border: 2px solid #c7a364;
  box-shadow:
    inset 0 0 0 3px #090a0b,
    6px 5px 12px #0008;
  overflow: hidden;
}
.screen-glass:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 35%;
  width: 30%;
  height: 5px;
  background: #08090a;
  border-radius: 8px;
}
.crack {
  position: absolute;
  left: 46%;
  top: 23%;
  height: 80px;
  width: 1px;
  background: #f3daa6;
  transform: rotate(-24deg);
  box-shadow: 0 0 5px #e9ba6060;
}
.crack-two {
  height: 40px;
  left: 61%;
  top: 45%;
  transform: rotate(45deg);
}
.crack-three {
  height: 38px;
  left: 40%;
  top: 60%;
  transform: rotate(58deg);
}
.screen-glint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    #ffffff18 21%,
    transparent 50%
  );
}
.service-card:hover .screen-glass {
  transform: translate(7px, -9px) rotateX(24deg) rotateY(-27deg) rotateZ(23deg);
}
.art-orbit {
  position: absolute;
  width: 160px;
  height: 60px;
  border: 1px solid #e9ba6018;
  border-radius: 50%;
  bottom: 18px;
  left: calc(50% - 80px);
  transform: rotate(-12deg);
}
.battery-part {
  position: absolute;
  left: calc(50% - 43px);
  top: 35px;
  width: 86px;
  height: 135px;
  background: linear-gradient(
    110deg,
    #67615a,
    #262628 12%,
    #17181a 82%,
    #787164
  );
  border: 2px solid #9b8c71;
  border-radius: 8px;
  transform: rotateX(20deg) rotateY(-25deg) rotateZ(-21deg);
  box-shadow:
    7px 6px 0 #393731,
    8px 7px 0 #8f7d5d,
    14px 17px 22px #0006;
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.battery-part:before {
  content: "";
  position: absolute;
  left: 28%;
  top: -10px;
  width: 44%;
  height: 9px;
  background: linear-gradient(90deg, #9c773a, #efd092, #8c733f);
  border-radius: 3px 3px 0 0;
}
.battery-plus {
  position: absolute;
  right: 9px;
  top: 4px;
  font-size: 15px;
  color: #b9b3a6;
}
.battery-bolt {
  font-size: 65px;
  line-height: 1.4;
  color: var(--gold);
  text-shadow: 0 0 20px #e9ba6035;
}
.battery-label {
  font-size: 5px;
  letter-spacing: 1px;
  color: #d5c9ae;
}
.battery-lines {
  margin-top: 8px;
  height: 8px;
  width: 35px;
  background: repeating-linear-gradient(
    0deg,
    #898070 0 1px,
    transparent 1px 3px
  );
}
.energy-ring {
  position: absolute;
  width: 155px;
  height: 68px;
  left: calc(50% - 77px);
  top: 93px;
  border: 1px solid #b58c3e38;
  border-radius: 50%;
  transform: rotate(-30deg);
  pointer-events: none;
}
.energy-ring-two {
  width: 195px;
  height: 83px;
  left: calc(50% - 97px);
  top: 85px;
  border-color: #b58c3e13;
}
.service-card:hover .battery-part {
  transform: translateY(-9px) rotateX(15deg) rotateY(0deg) rotateZ(-14deg);
}
.cable-plug {
  position: absolute;
  top: 81px;
  left: calc(50% - 25px);
  height: 88px;
  width: 50px;
  border-radius: 12px 12px 22px 22px;
  background: linear-gradient(
    90deg,
    #332f28,
    #ad9873 18%,
    #565047 40%,
    #252423 85%,
    #90826a
  );
  transform: rotate(28deg);
  box-shadow: 10px 10px 20px #0006;
  transition: transform 0.5s;
}
.plug-tip {
  position: absolute;
  top: -32px;
  left: 6px;
  width: 38px;
  height: 37px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(
    90deg,
    #797773,
    #eee9de 30%,
    #9d978b 80%,
    #5c574c
  );
  border: 1px solid #d3c3a5;
}
.plug-tip i {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 4px;
  height: 9px;
  border: 2px solid #9a8a69;
  border-radius: 8px;
  background: #101010;
}
.plug-line {
  position: absolute;
  top: 20px;
  left: 23px;
  width: 4px;
  height: 22px;
  border: 1px solid #c8b386;
  border-radius: 3px;
}
.cable-wire {
  position: absolute;
  left: calc(50% - 29px);
  top: 146px;
  height: 130px;
  width: 17px;
  background: linear-gradient(90deg, #292727, #6c655b, #242323);
  transform: rotate(28deg);
  border-radius: 8px;
}
.port-halo {
  position: absolute;
  top: 33px;
  left: calc(50% - 56px);
  width: 130px;
  height: 70px;
  border: 1px solid #e9ba6023;
  transform: rotate(-25deg);
  border-radius: 50%;
}
.service-card:hover .cable-plug {
  transform: translateY(-10px) rotate(18deg);
}
.circuit-board {
  position: absolute;
  left: calc(50% - 66px);
  top: 48px;
  width: 132px;
  height: 123px;
  border-radius: 12px;
  background: linear-gradient(135deg, #373e3d, #141b1b);
  border: 2px solid #797058;
  transform: rotateX(40deg) rotateY(-14deg) rotateZ(-30deg);
  box-shadow:
    0 7px 0 #222725,
    0 9px 0 #565447,
    4px 20px 25px #0007;
  transition: transform 0.5s;
}
.microchip {
  position: absolute;
  left: 31px;
  top: 29px;
  width: 68px;
  height: 62px;
  border: 2px solid #b8a17b;
  background: linear-gradient(130deg, #6f6655, #262727 55%, #39372f);
  box-shadow: 3px 4px 0 #121416;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--gold);
}
.microchip b {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.microchip small {
  font-size: 5px;
  letter-spacing: 1px;
}
.chip-pins {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 50px;
  height: 80px;
  background: repeating-linear-gradient(
    90deg,
    #b6a27b 0 3px,
    transparent 3px 8px
  );
}
.chip-pins:after {
  content: "";
  position: absolute;
  left: -19px;
  top: 20px;
  width: 88px;
  height: 42px;
  background: repeating-linear-gradient(
    0deg,
    #b6a27b 0 3px,
    transparent 3px 8px
  );
}
.circuit-line {
  position: absolute;
  width: 32px;
  height: 24px;
  border: 1px solid #af945960;
  top: 12px;
  left: 9px;
}
.circuit-two {
  inset: auto 9px 10px auto;
}
.service-card:hover .circuit-board {
  transform: translateY(-8px) rotateX(22deg) rotateY(5deg) rotateZ(-20deg);
}
.services-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.services-help > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.services-help .icon {
  width: 16px;
}
.services-help .text-link {
  font-size: 14px;
  color: var(--gold);
}
.process-section {
  background: #101112;
  border-block: 1px solid #ffffff08;
  padding-block: 83px;
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.process-intro > p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 23px;
  line-height: 1.8;
}
.process-intro > .text-link {
  margin-top: 23px;
  color: var(--gold);
  font-size: 14px;
}
.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-steps li {
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-steps li:first-child {
  padding-top: 6px;
}
.process-steps li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-number {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  color: #ac8e57;
  line-height: 1.5;
}
.process-steps h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
}
.process-steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 7px;
  max-width: 430px;
}
.process-steps li > .icon {
  color: #7f7664;
  margin-top: 6px;
  width: 19px;
}
.contact-panel {
  border: 1px solid #c69c492b;
  background:
    radial-gradient(ellipse at 4% 80%, #b0873411, transparent 55%), #121314;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
}
.contact-copy {
  padding: 58px;
  position: relative;
  overflow: hidden;
}
.contact-copy .eyebrow {
  margin-bottom: 25px;
}
.contact-copy h2 {
  font-size: 44px;
  line-height: 1.22;
  position: relative;
  z-index: 1;
}
.contact-copy > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 25px;
}
.direct-contact {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}
.direct-contact > .icon {
  width: 35px;
  height: 35px;
  padding: 7px;
  box-sizing: content-box;
  color: var(--gold);
  border: 1px solid #e9ba6028;
  border-radius: 50%;
  background: #e9ba6008;
}
.direct-contact span {
  font-size: 13px;
  color: var(--muted);
}
.direct-contact b {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  color: var(--text);
  font-weight: 600;
  margin-top: 2px;
}
.direct-contact b .icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
}
.direct-contact:hover b {
  color: var(--gold);
}
.instagram-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  min-height: 48px;
  margin-top: 19px;
  position: relative;
  z-index: 1;
}
.instagram-badge {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e8ba6052;
  background: linear-gradient(135deg, #7046a2, #b63c79 48%, #c47e3c);
  color: #fff;
}
.instagram-badge .icon {
  width: 26px;
  height: 26px;
}
.instagram-contact > span:last-child {
  color: var(--muted);
  font-size: 13px;
}
.instagram-contact b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.instagram-contact b .icon {
  width: 15px;
  color: var(--gold);
}
.instagram-contact:hover b {
  color: var(--gold);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-socials .text-link {
  color: var(--gold);
  font-size: 14px;
}
.footer-socials .instagram-link {
  color: var(--text);
}
.footer-socials .instagram-link:hover {
  color: var(--gold);
}
.contact-orbit {
  position: absolute;
  width: 460px;
  height: 230px;
  left: -30px;
  bottom: -180px;
  border: 27px solid #6d532334;
  border-radius: 50%;
  transform: rotate(-27deg);
  box-shadow:
    0 0 0 1px #bb923b35,
    inset 0 0 0 1px #bb923b40,
    0 -8px 25px #bb923b08;
}
.contact-form {
  margin: 27px;
  padding: 30px;
  background: #1a1b1c;
  border: 1px solid #ffffff08;
  border-radius: 16px;
}
.contact-form > h3 {
  font-size: 21px;
  letter-spacing: -0.5px;
}
.form-intro {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 25px;
}
.field {
  margin-top: 9px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 8px;
}
.field label span {
  color: #a5a4a0;
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #3d3e3f;
  border-radius: 7px;
  background: #141516;
  color: var(--text);
  padding: 12px 13px;
  font-size: 15px;
  line-height: 1.5;
  min-height: 44px;
  transition: border-color 0.2s;
  caret-color: var(--gold);
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #727065;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #939398;
}
.field select {
  appearance: none;
  padding-right: 32px;
}
.select-wrap {
  position: relative;
}
.select-wrap:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 19px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  pointer-events: none;
}
.field textarea {
  resize: none;
  min-height: 71px;
  max-height: 260px;
}
.field-error {
  display: block;
  min-height: 22px;
  line-height: 1.6;
  font-size: 13px;
  color: #f6a898;
  padding-top: 3px;
}
.field [aria-invalid="true"] {
  border-color: #ed9a87;
}
.form-submit {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
}
.form-submit > .icon:last-child {
  margin-left: auto;
  width: 17px;
}
.form-submit > .icon:first-child {
  margin-right: auto;
}
.form-note {
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  margin-top: 12px;
}
.request-result {
  margin-top: 18px;
  border-top: 1px solid #ffffff15;
  padding-top: 16px;
}
.request-result p {
  font-size: 14px;
  color: var(--gold);
}
.request-result pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: var(--body);
  font-size: 14px;
  color: var(--muted);
  margin: 15px 0;
}
.request-result .button {
  font-size: 13px;
}
.request-result > .text-link {
  margin-left: 10px;
  font-size: 13px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.faq-layout > div > p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.8;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 77px;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:hover {
  color: var(--gold);
}
.faq-plus {
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}
.faq-plus:before,
.faq-plus:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: var(--gold);
  top: 5px;
  left: 0;
}
.faq-plus:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .faq-plus:after {
  transform: rotate(0);
}
/* While the answer is easing shut it is still [open]; turn the icon right away. */
details.is-closing .faq-plus:after {
  transform: rotate(90deg);
}
.faq-list details p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 25px 24px 0;
}
.site-footer {
  background: #101112;
  border-top: 1px solid #ffffff0b;
}
.footer-main {
  min-height: 133px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 30px;
  flex-wrap: wrap;
}
.footer-main > p {
  font-size: 14px;
  color: var(--muted);
}
.footer-main > .text-link {
  color: var(--gold);
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  min-height: 65px;
  border-top: 1px solid #ffffff0b;
  font-size: 12px;
  color: #959599;
}
.footer-bottom > a {
  padding-block: 14px;
  white-space: nowrap;
}
.footer-bottom > a:hover {
  color: var(--gold);
}
.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 24px;
  z-index: 20;
  min-width: 51px;
  height: 51px;
  padding: 0 12px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcb464;
  color: #17130b;
  border: 1px solid #f6d694;
  box-shadow: 0 4px 25px #0008;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 0.2s,
    background 0.2s,
    opacity 0.25s,
    visibility 0.25s;
}
.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: var(--gold-light);
}
.floating-whatsapp .icon {
  width: 26px;
  height: 26px;
}
/* The label stays folded so the button never covers content; it opens on
   hover or keyboard focus, and permanently once the margins have room. */
.floating-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width 0.3s,
    margin 0.3s,
    opacity 0.2s;
}
.floating-whatsapp:hover .floating-label,
.floating-whatsapp:focus-visible .floating-label {
  max-width: 90px;
  margin: 0 8px 0 9px;
  opacity: 1;
}
.is-exploded .scene-label {
  opacity: 0;
  visibility: hidden;
}
#phone-scene canvas {
  animation: scene-in 0.7s ease both;
}
@keyframes scene-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.location-section {
  background: #101112;
  border-block: 1px solid #ffffff08;
  padding-block: 83px;
}
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.location-intro .eyebrow {
  margin-bottom: 20px;
}
.location-intro > p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 23px;
  line-height: 1.8;
  max-width: 400px;
}
.location-intro > .button {
  margin-top: 28px;
  color: var(--gold);
  background: #171612;
  border-color: #53452c;
}
.info-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.info-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:first-child {
  padding-top: 6px;
}
.info-list li:last-child {
  border: 0;
  padding-bottom: 0;
}
.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--gold);
  background: #e9ba6010;
  border: 1px solid #e9ba601c;
  border-radius: 12px;
}
.info-list h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
}
.info-list p,
.info-list address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
  margin-top: 6px;
}
.footer-info {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}
.footer-info b {
  display: block;
  color: var(--text);
  font-weight: 600;
}
.floating-whatsapp.is-away {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
@media (min-width: 1600px) {
  .floating-label {
    max-width: 90px;
    margin: 0 8px 0 9px;
    opacity: 1;
  }
  .hero-grid {
    min-height: 720px;
  }
  .hero-visual {
    height: 670px;
  }
  h1 {
    font-size: 60px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-copy {
    padding-bottom: 45px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 60px);
  }
  .main-nav {
    gap: 22px;
  }
  .main-nav a {
    font-size: 13px;
  }
  .hero-grid {
    grid-template-columns: 1.03fr 1fr;
    min-height: 590px;
  }
  .hero-visual {
    height: 570px;
    margin-right: -15px;
  }
  h1 {
    font-size: 45px;
    letter-spacing: -2.3px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding-inline: 16px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-reassurance {
    gap: 8px 16px;
    font-size: 12px;
  }
  /* Narrower stage: park this note above the rear phone, clear of the clock. */
  .note-screen {
    left: 12px;
    right: auto;
    top: 9%;
    font-size: 12px;
    padding: 10px 12px;
  }
  .note-care {
    left: 12px;
    bottom: 24%;
    font-size: 12px;
    padding: 10px 12px;
  }
  .scene-label {
    right: 10px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .service-art {
    height: 220px;
  }
  .service-text {
    padding: 7px 25px 25px;
  }
  .service-text p {
    min-height: 48px;
  }
  .process-layout,
  .faq-layout,
  .location-layout {
    gap: 60px;
  }
  .contact-copy {
    padding: 43px;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-form {
    margin: 20px;
    padding: 25px;
  }
}
@media (max-width: 850px) {
  html {
    scroll-padding-top: 95px;
  }
  .header-inner {
    height: 80px;
    gap: 18px;
  }
  .header-contact {
    margin-left: auto;
  }
  .header-contact > .arrow-small {
    display: none;
  }
  .brand img {
    width: 53px;
    height: 48px;
  }
  .brand-wordmark {
    font-size: 21px;
  }
  .brand-wordmark small {
    font-size: 7px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: transparent;
    gap: 6px;
    order: 3;
  }
  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--text);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px 30px 22px;
    background: #121315;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 25px #0005;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
  }
  .main-nav a {
    font-size: 16px;
    min-height: 48px;
    padding: 8px;
  }
  .hero-grid {
    min-height: 560px;
  }
  .hero-visual {
    height: 540px;
    margin-left: -80px;
    margin-right: -20px;
  }
  h1 {
    font-size: 39px;
    letter-spacing: -2px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-copy .eyebrow {
    font-size: 11px;
    letter-spacing: 1.3px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-reassurance {
    flex-direction: column;
    gap: 8px;
    margin-top: 21px;
  }
  .note-screen {
    left: 80px;
  }
  .note-care {
    left: 80px;
    bottom: 25%;
  }
  .scene-controls {
    left: 60%;
    bottom: 27px;
  }
  .scene-caption {
    left: 60%;
    bottom: 4px;
  }
  .specialty-item {
    font-size: 14px;
  }
  .specialty-inner {
    gap: 14px;
  }
  .specialty-inner > span:first-child {
    font-size: 12px;
  }
  .section {
    padding-block: 78px;
  }
  .process-layout,
  .faq-layout,
  .location-layout {
    gap: 38px;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    padding: 38px 32px;
  }
  .contact-copy h2 {
    font-size: 36px;
  }
  .contact-form {
    margin: 0 15px 15px;
    padding: 26px 24px;
  }
  .footer-main > p {
    display: none;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 44px);
  }
  .header-inner {
    height: 76px;
    gap: 14px;
  }
  .brand img {
    width: 51px;
    height: 45px;
  }
  .brand-wordmark {
    font-size: 22px;
  }
  .header-contact {
    width: 44px;
    min-height: 44px;
    padding: 0;
    gap: 0;
    font-size: 0;
  }
  .header-contact > .icon {
    width: 20px;
    height: 20px;
  }
  .main-nav {
    padding-inline: 22px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    align-self: stretch;
    padding: 46px 0 0;
  }
  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(35px, 8.7vw, 53px);
    letter-spacing: -2.1px;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.75;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 26px;
  }
  .hero-actions .button {
    font-size: 15px;
    min-height: 54px;
  }
  .hero-actions .text-link {
    font-size: 14px;
    align-self: center;
  }
  .hero-reassurance {
    flex-direction: row;
    gap: 8px 18px;
    margin-top: 18px;
    font-size: 13px;
  }
  .hero-visual {
    width: calc(100% + 25px);
    height: 480px;
    margin: 5px -12px 0;
    align-self: center;
  }
  #phone-scene {
    inset: 0 -10px;
  }
  .scene-label {
    top: 12px;
    right: 22px;
    font-size: 10px;
    letter-spacing: 1.6px;
  }
  .note-screen {
    top: 10%;
    right: auto;
    left: 7px;
  }
  .note-care {
    left: 7px;
    bottom: 24%;
  }
  .scene-controls {
    left: 50%;
    bottom: 36px;
  }
  .scene-caption {
    left: 50%;
    bottom: 9px;
    font-size: 10px;
    letter-spacing: 1.6px;
  }
  .hero-bottom {
    justify-content: center;
    padding: 4px 0 8px;
  }
  .hero-bottom > span {
    display: none;
  }
  .specialty-inner {
    min-height: 115px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    padding-block: 22px;
  }
  .specialty-inner > span:first-child {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }
  .specialty-inner > span:first-child br {
    display: none;
  }
  .specialty-inner > span:first-child b {
    margin-left: 5px;
  }
  .specialty-item {
    font-size: 14px;
    gap: 6px;
    letter-spacing: -0.2px;
  }
  .specialty-item .icon {
    width: 17px;
    height: 17px;
  }
  .strip-star {
    font-size: 11px;
  }
  .section {
    padding-block: 65px;
  }
  .process-section,
  .location-section {
    padding-block: 60px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1.5px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .section-heading .eyebrow {
    margin-bottom: 17px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .service-card {
    display: grid;
    grid-template-columns: 132px 1fr;
  }
  .service-art {
    height: auto;
    min-height: 178px;
  }
  .service-text {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px 6px;
  }
  .service-text h3 {
    font-size: 17px;
    letter-spacing: -0.5px;
  }
  .service-text p {
    line-height: 1.6;
    min-height: 0;
    margin: 8px 0 14px;
  }
  .service-link {
    margin-top: auto;
    padding-top: 12px;
  }
  .screen-part {
    width: 73px;
    height: 117px;
    left: calc(50% - 36px);
    top: 25px;
  }
  .battery-part {
    transform: scale(0.85) rotateX(20deg) rotateY(-25deg) rotateZ(-21deg);
    top: 22px;
  }
  .energy-ring {
    transform: scale(0.8) rotate(-30deg);
    top: 73px;
  }
  .energy-ring-two {
    top: 65px;
  }
  .cable-plug {
    transform: scale(0.85) rotate(28deg);
    top: 62px;
  }
  .cable-wire {
    top: 120px;
  }
  .port-halo {
    transform: scale(0.8) rotate(-25deg);
    top: 24px;
  }
  .circuit-board {
    transform: scale(0.8) rotateX(40deg) rotateY(-14deg) rotateZ(-30deg);
    top: 32px;
  }
  .services-help {
    flex-direction: column;
    gap: 3px;
    padding-top: 24px;
    text-align: center;
  }
  .services-help > span {
    align-items: flex-start;
  }
  .process-layout,
  .faq-layout,
  .location-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-steps li {
    grid-template-columns: 33px 1fr 20px;
    gap: 14px;
    padding-block: 23px;
  }
  .info-list li {
    gap: 14px;
    padding-block: 22px;
  }
  .process-steps h3,
  .info-list h3 {
    font-size: 17px;
  }
  .process-steps p {
    max-width: none;
  }
  .process-steps li:first-child,
  .info-list li:first-child {
    padding-top: 0;
  }
  .contact-panel {
    border-radius: 20px;
  }
  .contact-copy {
    padding: 33px 26px 35px;
  }
  .contact-copy > p {
    margin-top: 20px;
  }
  .direct-contact {
    margin-top: 25px;
  }
  .contact-orbit {
    left: 150px;
    bottom: 0;
    width: 300px;
    height: 130px;
    transform: rotate(-50deg);
  }
  .contact-form {
    margin: 0 12px 12px;
    padding: 24px 18px;
  }
  .contact-form > h3 {
    font-size: 20px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 15px;
  }
  .field select {
    min-height: 48px;
  }
  .select-wrap:after {
    top: 20px;
  }
  .form-submit {
    min-height: 54px;
    padding-inline: 14px;
    gap: 8px;
    white-space: normal;
  }
  .faq-list summary {
    font-size: 15px;
    min-height: 68px;
  }
  .faq-list details p {
    font-size: 14px;
    padding-right: 8px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-block: 36px;
  }
  .footer-socials {
    flex-wrap: wrap;
    gap: 2px 22px;
  }
  .footer-bottom {
    min-height: 70px;
    gap: 18px;
    padding-bottom: 10px;
  }
  .floating-whatsapp {
    width: 52px;
    min-width: 0;
    height: 52px;
    padding: 0;
    right: 15px;
    bottom: 17px;
  }
  .floating-label {
    display: none;
  }
  .floating-whatsapp .icon {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-inner {
    gap: 10px;
  }
  .brand-wordmark small {
    letter-spacing: 1.2px;
  }
  .hero-visual {
    height: 425px;
  }
  .note-screen,
  .note-care {
    font-size: 11px;
  }
  .scene-controls button {
    padding: 7px 9px;
    gap: 6px;
  }
  .service-card {
    grid-template-columns: 110px 1fr;
  }
  .contact-copy {
    padding-inline: 20px;
  }
  .contact-copy h2 {
    font-size: 30px;
  }
  .contact-form {
    margin-inline: 8px;
    padding-inline: 14px;
  }
  .form-submit > .icon:last-child {
    display: none;
  }
  .specialty-inner {
    gap: 9px;
  }
  .specialty-item {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .service-card:hover {
    transform: none;
  }
  .service-card:hover .screen-glass {
    transform: rotateX(24deg) rotateY(-27deg) rotateZ(23deg);
  }
}
@media (forced-colors: active) {
  * {
    scrollbar-color: auto;
  }
  a,
  button,
  input,
  select,
  textarea,
  .service-card,
  .contact-panel {
    border-color: ButtonText;
  }
  .gold-text,
  .eyebrow,
  .text-link {
    color: LinkText;
  }
  .service-art,
  .hero-visual .orbit {
    forced-color-adjust: none;
  }
  .button-gold {
    background: ButtonFace;
    color: ButtonText;
  }
  .floating-whatsapp {
    background: ButtonFace;
    color: ButtonText;
  }
  .faq-plus:before,
  .faq-plus:after,
  .menu-toggle span {
    background: ButtonText;
  }
}
