:root {
  --ink: #1a2744;
  --ink-soft: #4a5d7a;
  --sun: #ff8a3d;
  --sun-hot: #ff6b1a;
  --lemon: #ffd84d;
  --sky: #3db8f5;
  --sky-deep: #1e8fd6;
  --coral: #ff6f61;
  --mist: #eaf7ff;
  --cloud: #fff8f1;
  --line: rgba(26, 39, 68, 0.12);
  --accent: var(--sun);
  --accent-hover: var(--sun-hot);
  --on-dark: #fffdf8;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(1200px 680px at 12% -10%, rgba(255, 186, 120, 0.28), transparent 60%),
    radial-gradient(1100px 620px at 92% 0%, rgba(90, 178, 230, 0.42), transparent 56%),
    radial-gradient(900px 520px at 78% 48%, rgba(120, 196, 235, 0.22), transparent 58%),
    radial-gradient(1000px 560px at 18% 100%, rgba(92, 184, 92, 0.32), transparent 58%),
    radial-gradient(820px 480px at 70% 92%, rgba(126, 200, 110, 0.22), transparent 60%),
    linear-gradient(180deg, #d8effc 0%, #eaf6fb 28%, #f7faf4 62%, #e4f2d8 100%);
  background-size: 125% 125%, 120% 120%, 115% 115%, 120% 120%, 115% 115%, 100% 100%;
  background-position: 0% 0%, 100% 0%, 60% 40%, 10% 100%, 80% 100%, center;
  animation: sky-drift 36s ease-in-out infinite alternate;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  isolation: isolate;
}

@keyframes sky-drift {
  0% {
    background-position: 0% 0%, 100% 0%, 58% 42%, 8% 100%, 78% 100%, center;
  }
  50% {
    background-position: 8% 6%, 90% 4%, 62% 48%, 16% 96%, 72% 98%, center;
  }
  100% {
    background-position: 4% 10%, 96% 2%, 55% 38%, 12% 100%, 84% 94%, center;
  }
}

/* Soft atmosphere layer */
.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.58;
  will-change: transform;
}

.orb-sun {
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  top: -10%;
  left: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 220, 170, 0.95) 0%, rgba(255, 186, 120, 0.4) 42%, transparent 74%);
  animation: orb-drift-a 26s var(--ease) infinite alternate;
}

.orb-sky {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: -4%;
  right: -10%;
  background: radial-gradient(circle at 45% 40%, rgba(150, 214, 245, 0.95) 0%, rgba(74, 176, 235, 0.5) 46%, transparent 74%);
  opacity: 0.7;
  animation: orb-drift-b 30s var(--ease) infinite alternate;
}

.orb-lemon {
  width: min(44vw, 440px);
  height: min(44vw, 440px);
  bottom: 6%;
  left: 10%;
  background: radial-gradient(circle at 50% 50%, rgba(150, 210, 120, 0.9) 0%, rgba(92, 184, 92, 0.45) 44%, transparent 72%);
  opacity: 0.62;
  animation: orb-drift-c 28s var(--ease) infinite alternate;
}

.orb-coral {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  bottom: -8%;
  right: 8%;
  background: radial-gradient(circle at 50% 45%, rgba(170, 220, 140, 0.85) 0%, rgba(110, 190, 100, 0.4) 48%, transparent 74%);
  opacity: 0.5;
  animation: orb-drift-a 32s var(--ease) infinite alternate-reverse;
}

.beam {
  position: absolute;
  width: min(64vw, 640px);
  height: 140px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.2;
  transform: rotate(-18deg);
}

.beam-a {
  top: 22%;
  left: -10%;
  background: linear-gradient(90deg, transparent, rgba(130, 200, 240, 0.65), transparent);
  animation: beam-sweep 22s ease-in-out infinite alternate;
}

.beam-b {
  bottom: 18%;
  right: -14%;
  background: linear-gradient(90deg, transparent, rgba(120, 190, 100, 0.55), transparent);
  transform: rotate(14deg);
  animation: beam-sweep 26s ease-in-out infinite alternate-reverse;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

@keyframes orb-drift-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(5vw, 4vh, 0) scale(1.06);
  }
}

@keyframes orb-drift-b {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-4vw, 5vh, 0) scale(0.96);
  }
}

@keyframes orb-drift-c {
  from {
    transform: translate3d(0, 0, 0) scale(0.98);
  }
  to {
    transform: translate3d(4vw, -4vh, 0) scale(1.05);
  }
}

@keyframes beam-sweep {
  from {
    transform: translate3d(0, 0, 0) rotate(-18deg);
    opacity: 0.14;
  }
  to {
    transform: translate3d(8vw, 3vh, 0) rotate(-14deg);
    opacity: 0.26;
  }
}

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

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

h1,
h2,
h3,
.brand-mark,
.logo,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

p {
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  color: var(--on-dark);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 248, 241, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-phone {
  background: rgba(255, 122, 26, 0.12);
  border-color: rgba(255, 122, 26, 0.28);
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--on-dark);
  perspective: 1200px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.06);
  animation: hero-ken 18s var(--ease) forwards;
  filter: saturate(1.15) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 44, 72, 0.3) 0%, rgba(28, 44, 72, 0.08) 38%, rgba(22, 34, 58, 0.66) 100%),
    linear-gradient(115deg, rgba(255, 150, 100, 0.32) 0%, transparent 46%),
    linear-gradient(250deg, rgba(110, 180, 200, 0.28) 0%, transparent 48%);
}

/* 3D shapes stage */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1400px;
}

.shape-stage {
  position: absolute;
  right: clamp(2%, 6vw, 10%);
  top: 18%;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-18deg);
  transition: transform 0.4s var(--ease);
}

.shape {
  position: absolute;
  transform-style: preserve-3d;
}

/* Cube — sunny orange */
.shape-cube {
  width: 120px;
  height: 120px;
  left: 12%;
  top: 22%;
  animation: spin-cube 14s linear infinite;
}

.shape-cube .face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backface-visibility: hidden;
}

.face-front {
  background: linear-gradient(145deg, #ffb067, var(--sun));
  transform: translateZ(60px);
  box-shadow: 0 20px 40px rgba(255, 107, 26, 0.35);
}
.face-back {
  background: linear-gradient(145deg, var(--sun-hot), #e85a00);
  transform: rotateY(180deg) translateZ(60px);
}
.face-right {
  background: linear-gradient(145deg, #ff9a4a, var(--sun-hot));
  transform: rotateY(90deg) translateZ(60px);
}
.face-left {
  background: linear-gradient(145deg, #ffc078, #ff8a3d);
  transform: rotateY(-90deg) translateZ(60px);
}
.face-top {
  background: linear-gradient(145deg, var(--lemon), #ffc94d);
  transform: rotateX(90deg) translateZ(60px);
}
.face-bottom {
  background: linear-gradient(145deg, #e86a20, #c44e0a);
  transform: rotateX(-90deg) translateZ(60px);
}

/* Pyramid — lemon / coral */
.shape-pyramid {
  width: 0;
  height: 0;
  left: 58%;
  top: 8%;
  transform-style: preserve-3d;
  animation: float-tilt 9s var(--ease) infinite;
}

.py-face {
  position: absolute;
  width: 110px;
  height: 110px;
  left: -55px;
  top: -55px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.92;
  transform-origin: 50% 100%;
}

.py-front {
  background: linear-gradient(180deg, var(--lemon), var(--sun));
  transform: rotateX(30deg) translateZ(38px);
}
.py-right {
  background: linear-gradient(180deg, #ffe08a, var(--coral));
  transform: rotateY(90deg) rotateX(30deg) translateZ(38px);
}
.py-left {
  background: linear-gradient(180deg, #ffd060, #ff8a3d);
  transform: rotateY(-90deg) rotateX(30deg) translateZ(38px);
}
.py-back {
  background: linear-gradient(180deg, #ffb84d, #ff6b1a);
  transform: rotateY(180deg) rotateX(30deg) translateZ(38px);
}

/* Sphere — sky blue glass */
.shape-sphere {
  width: 150px;
  height: 150px;
  left: 48%;
  top: 48%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 50% 50%, #7ed4ff 0%, var(--sky) 45%, var(--sky-deep) 78%, #0f6fb0 100%);
  box-shadow:
    inset -18px -22px 40px rgba(10, 60, 110, 0.35),
    inset 12px 14px 28px rgba(255, 255, 255, 0.45),
    0 28px 50px rgba(30, 143, 214, 0.45);
  animation: float-bob 6s var(--ease) infinite;
  transform: translateZ(40px);
}

/* Prism — cyan block */
.shape-prism {
  width: 90px;
  height: 140px;
  left: 8%;
  top: 55%;
  transform-style: preserve-3d;
  animation: spin-y 18s linear infinite;
}

.pr-face {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pr-front,
.pr-back {
  width: 90px;
  height: 140px;
  left: 0;
  top: 0;
}
.pr-front {
  background: linear-gradient(160deg, #6ed0ff, var(--sky-deep));
  transform: translateZ(28px);
  box-shadow: 0 24px 40px rgba(61, 184, 245, 0.35);
}
.pr-back {
  background: linear-gradient(160deg, var(--sky-deep), #156aa8);
  transform: rotateY(180deg) translateZ(28px);
}
.pr-right,
.pr-left {
  width: 56px;
  height: 140px;
  left: 17px;
  top: 0;
}
.pr-right {
  background: linear-gradient(160deg, #4ab8ef, #1a7fc4);
  transform: rotateY(90deg) translateZ(45px);
}
.pr-left {
  background: linear-gradient(160deg, #8adfff, #3db8f5);
  transform: rotateY(-90deg) translateZ(45px);
}
.pr-top,
.pr-bottom {
  width: 90px;
  height: 56px;
  left: 0;
  top: 42px;
}
.pr-top {
  background: linear-gradient(160deg, #b8ecff, #6ed0ff);
  transform: rotateX(90deg) translateZ(70px);
}
.pr-bottom {
  background: linear-gradient(160deg, #1e8fd6, #0f5f96);
  transform: rotateX(-90deg) translateZ(70px);
}

/* Ring / torus-like */
.shape-ring {
  width: 160px;
  height: 160px;
  left: 62%;
  top: 62%;
  border-radius: 50%;
  border: 22px solid transparent;
  border-top-color: var(--coral);
  border-right-color: var(--lemon);
  border-bottom-color: var(--sky);
  border-left-color: var(--sun);
  box-shadow:
    0 20px 40px rgba(255, 111, 97, 0.3),
    inset 0 0 24px rgba(255, 255, 255, 0.25);
  transform: rotateX(68deg) rotateZ(20deg) translateZ(-20px);
  animation: spin-ring 12s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(6.5rem, 14vh, 8rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 7vh, 4rem);
  opacity: 0;
  transform: translateY(28px);
  animation: rise-in 1s var(--ease) 0.25s forwards;
}

.brand-mark {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(255, 107, 26, 0.35);
}

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 253, 248, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  transform-style: preserve-3d;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(145deg, #ffb067 0%, var(--sun) 45%, var(--sun-hot) 100%);
  color: #fff;
  box-shadow:
    0 10px 0 #d45510,
    0 18px 28px rgba(255, 107, 26, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #ffc078 0%, var(--sun) 40%, #ff5a00 100%);
  box-shadow:
    0 12px 0 #c44a0c,
    0 22px 32px rgba(255, 107, 26, 0.48);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 0 #d45510,
    0 8px 16px rgba(255, 107, 26, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--on-dark);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(30, 143, 214, 0.2);
}

.btn-ghost:hover {
  background: rgba(61, 184, 245, 0.22);
  border-color: #fff;
}

/* Sections */
.section {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

.section-intro {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.section-intro p,
.location-copy > p,
.contact-intro > p {
  color: var(--ink-soft);
}

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

/* Spaces */
.spaces-list {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.space-item {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  perspective: 1000px;
}

.space-item--reverse {
  grid-template-columns: 1fr 1.15fr;
}

.space-item--reverse .space-visual {
  order: 2;
}

.space-item--reverse .space-copy {
  order: 1;
}

.space-visual {
  position: relative;
  min-height: clamp(220px, 36vw, 380px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
  transform: rotateY(-6deg) rotateX(4deg);
  box-shadow:
    24px 28px 0 rgba(61, 184, 245, 0.25),
    0 30px 50px rgba(26, 39, 68, 0.18);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.space-item:hover .space-visual {
  transform: rotateY(-2deg) rotateX(1deg) translateY(-6px);
  box-shadow:
    18px 36px 0 rgba(255, 138, 61, 0.28),
    0 36px 60px rgba(26, 39, 68, 0.22);
}

.space-item--reverse .space-visual {
  transform: rotateY(6deg) rotateX(4deg);
  box-shadow:
    -24px 28px 0 rgba(255, 138, 61, 0.28),
    0 30px 50px rgba(26, 39, 68, 0.18);
}

.space-item--reverse:hover .space-visual {
  transform: rotateY(2deg) rotateX(1deg) translateY(-6px);
  box-shadow:
    -18px 36px 0 rgba(61, 184, 245, 0.28),
    0 36px 60px rgba(26, 39, 68, 0.22);
}

.space-visual--cabinet {
  background-image:
    linear-gradient(135deg, rgba(90, 178, 230, 0.18), transparent 45%),
    linear-gradient(225deg, rgba(92, 184, 92, 0.16), transparent 50%),
    url("assets/cabinet.jpg");
}

.space-visual--open {
  background-image:
    linear-gradient(225deg, rgba(90, 178, 230, 0.2), transparent 48%),
    linear-gradient(135deg, rgba(110, 190, 100, 0.14), transparent 52%),
    url("assets/open.jpg");
}

.space-copy p {
  color: var(--ink-soft);
  max-width: 28rem;
}

.space-meta {
  margin-top: 1rem !important;
  font-weight: 700;
  color: var(--sun-hot) !important;
}

/* Why */
.why {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(120, 196, 235, 0.22), transparent 62%),
    radial-gradient(640px 260px at 90% 100%, rgba(110, 190, 100, 0.2), transparent 60%);
  border-radius: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.spaces::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 8% -4% auto;
  height: 55%;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
}

.spaces::before {
  background: radial-gradient(circle, rgba(90, 178, 230, 0.28), transparent 70%);
}

.contact::before {
  inset: auto -6% 5%;
  height: 48%;
  background: radial-gradient(circle, rgba(92, 184, 92, 0.26), transparent 70%);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

.why-list li {
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) 1fr;
  gap: 1rem 2rem;
  padding: 1.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  border-radius: 1rem;
  opacity: 0;
  transform: translateY(20px) translateZ(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background 0.3s, box-shadow 0.3s;
}

.why-list li:first-child {
  border-top: none;
  padding-top: 1.25rem;
}

.why-list li:hover {
  background: linear-gradient(120deg, rgba(255, 216, 77, 0.18), rgba(61, 184, 245, 0.12));
  box-shadow: 0 16px 32px rgba(61, 184, 245, 0.12);
  transform: translateY(-2px);
}

.why-list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sky-deep);
}

.why-list span {
  color: var(--ink-soft);
}

/* Location */
.location {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  min-height: clamp(360px, 55vh, 520px);
  background:
    radial-gradient(600px 400px at 0% 100%, rgba(255, 138, 61, 0.45), transparent 55%),
    linear-gradient(145deg, #1a5f9e 0%, #1570c4 45%, #0f4f8a 100%);
  color: var(--on-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.location-copy p {
  color: rgba(255, 253, 248, 0.86);
  max-width: 26rem;
}

.location-map {
  min-height: 320px;
  background: #0f4f8a;
  transform: perspective(900px) rotateY(-2deg);
  transform-origin: left center;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: saturate(1.15) contrast(1.05);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-intro {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.contact-direct {
  margin-top: 1.5rem;
}

.contact-direct a {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--sun-hot), var(--sky-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(234, 247, 255, 0.85));
  box-shadow:
    16px 20px 0 rgba(255, 138, 61, 0.18),
    0 24px 48px rgba(30, 143, 214, 0.12);
  transform: perspective(900px) rotateY(-3deg);
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.1s, transform 0.8s var(--ease) 0.1s;
}

.contact-form.is-visible {
  transform: perspective(900px) rotateY(-3deg) !important;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(61, 184, 245, 0.28);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(61, 184, 245, 0.22);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.form-note {
  min-height: 1.4em;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sky-deep);
}

.form-note.is-error {
  color: #c62828;
}

/* Footer */
.site-footer {
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  background: linear-gradient(180deg, transparent, rgba(61, 184, 245, 0.08));
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--sun-hot), var(--sky-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Motion */
@keyframes hero-ken {
  to {
    transform: scale(1);
  }
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes spin-cube {
  from {
    transform: rotateX(-18deg) rotateY(0deg);
  }
  to {
    transform: rotateX(-18deg) rotateY(360deg);
  }
}

@keyframes spin-y {
  from {
    transform: rotateX(8deg) rotateY(0deg);
  }
  to {
    transform: rotateX(8deg) rotateY(360deg);
  }
}

@keyframes spin-ring {
  from {
    transform: rotateX(68deg) rotateZ(0deg) translateZ(-20px);
  }
  to {
    transform: rotateX(68deg) rotateZ(360deg) translateZ(-20px);
  }
}

@keyframes float-bob {
  0%,
  100% {
    transform: translateZ(40px) translateY(0);
  }
  50% {
    transform: translateZ(40px) translateY(-18px);
  }
}

@keyframes float-tilt {
  0%,
  100% {
    transform: rotateZ(-8deg) translateY(0);
  }
  50% {
    transform: rotateZ(8deg) translateY(-14px);
  }
}

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

  .hero-media,
  .hero-content,
  .section-intro,
  .space-item,
  .why-list li,
  .contact-intro,
  .contact-form,
  .shape-cube,
  .shape-prism,
  .shape-sphere,
  .shape-ring,
  .shape-pyramid {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }

  .hero-content,
  .section-intro,
  .space-item,
  .why-list li,
  .contact-intro,
  .contact-form {
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .shape-stage {
    opacity: 0.55;
    right: -4%;
    top: 8%;
    width: 62vw;
    height: 62vw;
  }

  .space-item,
  .space-item--reverse {
    grid-template-columns: 1fr;
  }

  .space-item--reverse .space-visual,
  .space-item--reverse .space-copy {
    order: initial;
  }

  .space-visual,
  .space-item--reverse .space-visual,
  .space-item:hover .space-visual,
  .space-item--reverse:hover .space-visual {
    transform: none;
    box-shadow:
      12px 16px 0 rgba(61, 184, 245, 0.22),
      0 20px 36px rgba(26, 39, 68, 0.14);
  }

  .why-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .location-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .location-map {
    transform: none;
  }

  .contact-form,
  .contact-form.is-visible {
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .header-phone {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .shape-stage {
    display: none;
  }

  .call-widget {
    right: 1rem;
    bottom: 1rem;
  }

  .call-fab {
    width: 58px;
    height: 58px;
  }

  .call-panel {
    min-width: min(280px, calc(100vw - 2rem));
  }
}

/* Floating call widget */
.call-widget {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.call-fab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.call-fab-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, #ff9a3c 0%, #ff6a1a 100%);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(232, 77, 18, 0.35);
  white-space: nowrap;
  pointer-events: none;
}

.call-fab {
  position: relative;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background:
    radial-gradient(circle at 30% 28%, #ffd27a 0%, transparent 42%),
    linear-gradient(145deg, #ff9a3c 0%, #ff6a1a 48%, #e84d12 100%);
  box-shadow:
    0 10px 24px rgba(232, 77, 18, 0.42),
    0 2px 0 rgba(255, 255, 255, 0.35) inset,
    0 -3px 8px rgba(140, 40, 0, 0.25) inset;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.call-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 14px 28px rgba(232, 77, 18, 0.5),
    0 2px 0 rgba(255, 255, 255, 0.4) inset;
}

.call-fab:active {
  transform: scale(0.96);
}

.call-fab.is-open {
  background:
    radial-gradient(circle at 30% 28%, #ffc766 0%, transparent 42%),
    linear-gradient(145deg, #ff7a28 0%, #e8450f 100%);
}

.call-fab-icon {
  width: 34px;
  height: 34px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 1px 1px rgba(120, 40, 0, 0.35));
  animation: call-ring 3.2s ease-in-out infinite;
  transform-origin: 50% 55%;
}

.call-fab.is-open .call-fab-icon {
  animation: none;
  transform: rotate(135deg);
  transition: transform 0.3s var(--ease);
}

.call-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 140, 50, 0.65);
  animation: call-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.call-fab.is-open .call-fab-pulse {
  display: none;
}

@keyframes call-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes call-ring {
  0%,
  88%,
  100% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-12deg);
  }
  93% {
    transform: rotate(10deg);
  }
  96% {
    transform: rotate(-6deg);
  }
  98% {
    transform: rotate(4deg);
  }
}

.call-panel {
  width: min(320px, calc(100vw - 2.5rem));
  padding: 0.85rem;
  border-radius: 1.15rem;
  background: rgba(255, 250, 245, 0.96);
  border: 1px solid rgba(255, 150, 80, 0.28);
  box-shadow:
    0 18px 40px rgba(26, 39, 68, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.45rem;
  transform-origin: bottom right;
  animation: call-panel-in 0.28s var(--ease);
}

.call-panel[hidden] {
  display: none;
}

@keyframes call-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.call-panel-title {
  margin: 0 0.25rem 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(26, 39, 68, 0.55);
}

.call-panel-lead {
  margin: 0 0.25rem 0.65rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(26, 39, 68, 0.62);
}

.call-form {
  display: grid;
  gap: 0.65rem;
}

.call-destinations {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.4rem;
}

.call-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f1 100%);
  border: 1px solid rgba(255, 140, 60, 0.18);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.call-choice:has(input:checked) {
  border-color: rgba(255, 122, 26, 0.55);
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.12);
}

.call-choice input {
  margin-top: 0.2rem;
  accent-color: #ff6a1a;
}

.call-choice strong {
  display: block;
  font-size: 0.95rem;
}

.call-choice em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(26, 39, 68, 0.55);
}

.call-phone-label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(26, 39, 68, 0.65);
}

.call-phone-input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(61, 184, 245, 0.28);
  border-radius: 0.55rem;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.call-phone-input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(61, 184, 245, 0.22);
}

.call-submit {
  width: 100%;
  justify-self: stretch;
}

.call-hangup {
  width: 100%;
  justify-self: stretch;
  background: #c43d2e;
  color: #fff;
  border: none;
}

.call-hangup:hover {
  filter: brightness(1.05);
}

#call-remote-audio {
  display: none;
}

.call-status {
  min-height: 1.25em;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--sky-deep);
}

.call-status.is-error {
  color: #c43d2e;
}

.call-fallback {
  margin: 0.35rem 0.25rem 0;
  font-size: 0.8rem;
  color: rgba(26, 39, 68, 0.55);
}

.call-fallback a {
  color: var(--accent);
  font-weight: 600;
}

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

.call-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.85rem;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fff8f1 100%);
  border: 1px solid rgba(255, 140, 60, 0.18);
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}

.call-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.14);
}

.call-link-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.7 14.4c-.7-.4-1.5-.9-2.2-.6l-1 .5c-.4.2-.8.1-1.2-.2-1-.8-1.9-1.7-2.6-2.7-.3-.4-.4-.8-.2-1.2l.5-1c.3-.7 0-1.5-.5-2.2-.5-.7-1.1-1.4-1.8-1.8-.8-.5-1.6-.2-2.2.3L6.8 6c-.7.6-1 1.4-.9 2.2.1 2.4 1.4 5 3.6 7.2 2.2 2.2 4.8 3.5 7.2 3.6.8.1 1.6-.2 2.2-.9l.6-.7c.5-.6.8-1.4.3-2.2-.4-.7-1.1-1.3-1.8-1.8z'/%3E%3C/svg%3E")
      center / 18px 18px no-repeat,
    radial-gradient(circle at 35% 30%, #ffe6b0, transparent 45%),
    linear-gradient(145deg, #ff9f45, #ff6a1a);
  box-shadow: 0 4px 10px rgba(255, 106, 26, 0.35);
}

.call-link-icon::before {
  content: none;
}

.call-link-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.call-link-text strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.call-link-text em {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(26, 39, 68, 0.58);
}

@media (prefers-reduced-motion: reduce) {
  body,
  .orb,
  .beam,
  .call-fab-icon,
  .call-fab-pulse,
  .call-panel {
    animation: none !important;
  }
}
