/* =====================================================================
   CAERING — ultra luxury design system
   Fonts: Fraunces (display) · Outfit (body)
   Themes: porcelain (light, default) · obsidian (dark)
   ===================================================================== */

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

:root {
  /* brand gold — shared */
  --gold-1: #f4dda6;
  --gold-2: #d2a65a;
  --gold-3: #a87b32;
  --gold-deep: #8a6325;
  --gold-sheen: linear-gradient(115deg, #a87b32 0%, #e9d08f 28%, #fff4d2 50%, #d8b167 72%, #9c7029 100%);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-silk: cubic-bezier(.65, .05, 0, 1);
  --header-h: 84px;
  --maxw: 1320px;
}

/* ---------- LIGHT : porcelain ---------- */
:root, [data-theme="light"] {
  --bg-1: #f7f2e8;
  --bg-2: #ede5d4;
  --bg-3: #fbf8f1;
  --bg-deep: #e3d9c5;
  --ink: #1a160f;
  --ink-soft: #5c5344;
  --ink-faint: #948a77;
  --line: rgba(26, 22, 15, .12);
  --line-strong: rgba(26, 22, 15, .22);
  --surface: rgba(255, 255, 255, .62);
  --surface-solid: #fffdf8;
  --surface-deep: rgba(255, 255, 255, .8);
  --shadow: 0 30px 70px -25px rgba(60, 44, 18, .32);
  --shadow-soft: 0 14px 40px -18px rgba(60, 44, 18, .25);
  --chip-bg: rgba(255, 253, 248, .85);
  --accent-soft: rgba(184, 137, 58, .12);
  --halo: rgba(210, 166, 90, .35);
  --violet: #6f5ff0;
  --rose: #dd5e86;
  --teal: #1aa89a;
  --grid-line: rgba(26, 22, 15, .07);
}

/* ---------- DARK : obsidian ---------- */
[data-theme="dark"] {
  --bg-1: #16120b;
  --bg-2: #1f180f;
  --bg-3: #0e0c08;
  --bg-deep: #080705;
  --ink: #f3eddf;
  --ink-soft: #b4a994;
  --ink-faint: #837968;
  --line: rgba(243, 237, 223, .12);
  --line-strong: rgba(243, 237, 223, .24);
  --surface: rgba(255, 255, 255, .045);
  --surface-solid: #18130c;
  --surface-deep: rgba(255, 255, 255, .08);
  --shadow: 0 30px 80px -25px rgba(0, 0, 0, .75);
  --shadow-soft: 0 14px 44px -16px rgba(0, 0, 0, .6);
  --chip-bg: rgba(28, 22, 13, .82);
  --accent-soft: rgba(210, 166, 90, .14);
  --halo: rgba(210, 166, 90, .22);
  --grid-line: rgba(243, 237, 223, .06);
  color-scheme: dark;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-1);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  transition: background-color .6s ease, color .6s ease;
  -webkit-font-smoothing: antialiased;
}

/* layered porcelain / obsidian atmosphere */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 800px at 82% -10%, var(--bg-3) 0%, transparent 60%),
    radial-gradient(900px 700px at -10% 30%, var(--bg-2) 0%, transparent 55%),
    radial-gradient(1200px 900px at 50% 110%, var(--bg-deep) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-1));
  transition: opacity .6s ease;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ol, ul { list-style: none; }
em { font-style: italic; }

::selection { background: var(--gold-2); color: #1a1408; }

/* scrollbar — gold themed */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  border-radius: 10px; border: 2.5px solid var(--bg-2);
}

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--maxw), calc(100% - 56px)); margin-inline: auto; }

/* ---------------- typography ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-sheen);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 12px var(--gold-2);
  animation: dotPulse 2.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.h2 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin-top: 22px;
}
.h2 em {
  font-weight: 400;
  background: var(--gold-sheen);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheenMove 7s ease-in-out infinite;
}
@keyframes sheenMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section { position: relative; padding: clamp(90px, 12vh, 150px) 0; }
.section__head { max-width: 760px; margin-bottom: clamp(48px, 7vh, 84px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ---------------- ambient ---------------- */
.ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ambient__blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: .55; will-change: transform;
}
.ambient__blob--1 {
  width: 56vw; height: 56vw; top: -20vw; right: -14vw;
  background: radial-gradient(circle, var(--halo), transparent 65%);
}
.ambient__blob--2 {
  width: 44vw; height: 44vw; bottom: -18vw; left: -12vw;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  opacity: .8;
}
.ambient__grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: overlay;
  animation: grainShift 9s steps(10) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------------- preloader ---------------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  background:
    radial-gradient(900px 600px at 50% 30%, var(--bg-3), transparent 70%),
    var(--bg-1);
  transition: opacity .9s var(--ease-out), visibility .9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }

/* The preloader uses the authoritative CAERING logo assets — the shape is
   pixel-identical to the brand mark at every frame. A rotating conic mask
   reveals the C-ring along its arc; the heart sitting in the gap appears
   only as the circle completes. */
@property --preSweep {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.preloader__mark { width: 150px; }
.preloader__markimg {
  display: block; width: 100%; height: auto;
  --preSweep: 0deg;
  -webkit-mask-image: conic-gradient(from 106deg,
    #000 0deg calc(var(--preSweep) - 10deg),
    rgba(0,0,0,0) var(--preSweep));
  mask-image: conic-gradient(from 106deg,
    #000 0deg calc(var(--preSweep) - 10deg),
    rgba(0,0,0,0) var(--preSweep));
  -webkit-mask-position: 48.3% 49.8%;
  mask-position: 48.3% 49.8%;
  animation: preDraw 1.7s var(--ease-silk) forwards;
}
.preloader__wordimg {
  display: block; width: 150px; height: auto;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) 1.25s forwards;
}
/* black assets on cream become white on the dark preloader */
[data-theme="dark"] .preloader__markimg,
[data-theme="dark"] .preloader__wordimg { filter: invert(1); }
@keyframes preDraw { to { --preSweep: 360deg; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .preloader__markimg { --preSweep: 360deg; animation: none; }
  .preloader__wordimg { opacity: 1; animation: none; }
}

/* ---------------- custom cursor ---------------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 250;
  pointer-events: none; border-radius: 50%;
  mix-blend-mode: difference;
  display: none;
}
.cursor {
  width: 38px; height: 38px;
  border: 1.4px solid var(--gold-1);
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background-color .3s, border-color .3s;
}
.cursor-dot {
  width: 5px; height: 5px; background: var(--gold-1);
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 64px; height: 64px; background: rgba(244, 221, 166, .12); }
.cursor.is-down { width: 30px; height: 30px; }
@media (pointer: fine) { .cursor, .cursor-dot { display: block; } }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14.5px; font-weight: 500;
  letter-spacing: .02em;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s, background-color .4s, color .4s, border-color .4s;
  will-change: transform;
}
.btn .ic-arrow { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.btn:hover .ic-arrow { transform: translateX(4px); }

.btn--gold {
  color: #241a07;
  background: var(--gold-sheen);
  background-size: 180% 100%;
  box-shadow: 0 12px 30px -10px rgba(168, 123, 50, .55), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn--gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn--gold:hover { box-shadow: 0 18px 42px -10px rgba(168, 123, 50, .7), inset 0 1px 0 rgba(255, 255, 255, .5); }
.btn--gold:hover::after { transform: translateX(120%); }

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-deep); }
[data-theme="dark"] .btn--ghost:hover { color: var(--gold-1); }

.btn--lg { padding: 16px 30px; font-size: 15.5px; }
.btn--xl { padding: 20px 38px; font-size: 17px; }

.play-orb {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-sheen); color: #241a07;
  box-shadow: 0 6px 18px -6px rgba(168, 123, 50, .7);
}
.play-orb svg { width: 15px; height: 15px; margin-left: 2px; }

/* ---------------- header ---------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  transition: background-color .5s, box-shadow .5s, backdrop-filter .5s;
}
.header__inner {
  width: min(var(--maxw), calc(100% - 48px));
  height: var(--header-h);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header.is-scrolled {
  background: var(--surface);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -24px rgba(0, 0, 0, .25);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 38px; height: auto; flex: none; }
.brand__word { height: 19px; width: auto; }
[data-theme="dark"] .brand__mark,
[data-theme="dark"] .brand__word { filter: invert(1); }

.nav { display: flex; gap: 6px; margin-left: auto; margin-right: 8px; }
.nav__link {
  padding: 9px 17px; border-radius: 100px;
  font-size: 14px; font-weight: 400; color: var(--ink-soft);
  position: relative;
  transition: color .35s;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 1px; background: var(--gold-sheen);
  transform: translateX(-50%);
  transition: width .4s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 40%; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-soft);
  border: 1px solid transparent;
  transition: color .35s, border-color .35s, background-color .35s, transform .4s var(--ease-out);
}
.icon-btn .ic { width: 19px; height: 19px; position: absolute; }
.icon-btn:hover { color: var(--ink); border-color: var(--line); background: var(--surface); transform: translateY(-1px); }
[data-theme="light"] .ic-moon, [data-theme="dark"] .ic-sun { opacity: 0; transform: scale(.5) rotate(-90deg); }
[data-theme="light"] .ic-sun, [data-theme="dark"] .ic-moon { opacity: 1; transform: none; }
.ic-sun, .ic-moon { transition: opacity .45s var(--ease-out), transform .55s var(--ease-out); }
[data-theme="light"] .ic-sound-off, [data-theme="dark"] .ic-sound-off { display: none; }
.is-muted .ic-sound-on { display: none; }
.is-muted .ic-sound-off { display: block; }
.header__cta { padding: 12px 22px; }

.header__burger { display: none; position: relative; }
.header__burger span {
  position: absolute; width: 19px; height: 1.6px; background: currentColor;
  transition: transform .4s var(--ease-out);
}
.header__burger span:first-child { transform: translateY(-4px); }
.header__burger span:last-child { transform: translateY(4px); }

.header__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px; background: transparent; }
.header__progress span {
  display: block; height: 100%; width: 0;
  background: var(--gold-sheen);
  box-shadow: 0 0 10px var(--gold-2);
}

/* drawer */
.drawer {
  position: fixed; inset: 0; z-index: 115;
  background: var(--surface-solid);
  backdrop-filter: blur(30px);
  clip-path: circle(0% at calc(100% - 42px) 42px);
  transition: clip-path .7s var(--ease-silk);
  display: grid; place-items: center;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 42px) 42px); }
.drawer__nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.drawer__link {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 10vw, 3.4rem);
  font-weight: 350;
  padding: 6px;
  transition: color .3s, transform .4s var(--ease-out);
}
.drawer__link:hover { color: var(--gold-3); transform: translateX(6px); }
.drawer__link--cta { font-style: italic; background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  /* desert-dawn sky — dunes are rendered in 3D on the canvas above */
  background:
    linear-gradient(180deg,
      #b6c3cc 0%, #c8c2b2 18%, #e5d3b2 38%,
      #f2d9a4 52%, var(--hero-fog, #efd9ac) 60%, #efd9ac 78%, #e6cd9e 100%);
}
[data-theme="dark"] .hero {
  --hero-fog: #241a10;
  background:
    linear-gradient(180deg,
      #0a0d16 0%, #141020 22%, #241722 40%,
      #2e1c10 52%, #241a10 60%, #1d1409 78%, #140d06 100%);
}
/* low sun glow sitting on the horizon */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(52% 34% at 50% 60%,
    rgba(255,250,228,.95) 0%, rgba(255,238,196,.55) 42%, transparent 72%);
  animation: sunBreathe 9s ease-in-out infinite alternate;
}
[data-theme="dark"] .hero::before {
  background: radial-gradient(52% 34% at 50% 60%,
    rgba(255,178,92,.4) 0%, rgba(255,140,60,.14) 48%, transparent 75%);
}
@keyframes sunBreathe { from { opacity: .85; } to { opacity: 1; } }

.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 40%, transparent 55%, rgba(60,40,12,.18) 100%);
}

/* giant title behind the ring */
.hero__title {
  position: absolute; inset: 0;
  margin: 0; z-index: 1;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: .055em;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
}
.hero__word {
  position: absolute; left: 50%; top: 36%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.2rem, 14vw, 14rem);
  background: linear-gradient(180deg, #43300e 0%, #8a5f20 50%, #c9a154 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 22px rgba(255, 244, 214, .35));
  transition: opacity 1.1s ease, transform 1.1s ease, filter 1.1s ease;
}
[data-theme="dark"] .hero__word {
  background: linear-gradient(180deg, rgba(255,247,228,.95), rgba(212,180,116,.8));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 22px rgba(0, 0, 0, .5));
}
/* timed background-word swap — TAKE CARE softly gives way to ALWAYS */
.hero__word--always {
  opacity: 0;
  filter: blur(10px);
  animation: wordSwapIn 1.8s var(--ease-silk) 8s forwards;
}
.hero__word--take {
  animation: wordSwapOut 1.8s var(--ease-silk) 8s forwards;
}
@keyframes wordSwapIn {
  to { opacity: 1; filter: blur(0); }
}
@keyframes wordSwapOut {
  to { opacity: 0; filter: blur(10px); }
}
body.is-loaded .hero__title {
  animation: heroTitleIn 1.7s var(--ease-silk) .1s forwards;
}
@keyframes heroTitleIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* full-bleed canvas (ring + liquid) */
.hero__canvas {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  cursor: grab; touch-action: pan-y;
}
.hero__canvas:active { cursor: grabbing; }

/* no-WebGL fallback: dune horizon + dark ring */
.hero__fallback {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0; pointer-events: none;
  background:
    radial-gradient(90% 34% at 50% 74%, rgba(196,148,78,.55) 0%, transparent 70%),
    linear-gradient(transparent 60%, rgba(196,148,78,.8) 70%, #a97e3f 82%, #7c5522 100%);
}
.hero__fallback::before {
  content: ""; position: absolute; left: 50%; top: 42%;
  width: min(62vw, 420px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 210deg, #3a3a40, #0b0b0d 20%, #4a4a52 35%, #111114 55%, #2c2c32 75%, #08080a);
  -webkit-mask: radial-gradient(circle, transparent 57.5%, #000 58.5%);
  mask: radial-gradient(circle, transparent 57.5%, #000 58.5%);
}
.no-webgl .hero__fallback, .no-module .hero__fallback { opacity: 1; }

/* ---------------- statement strip ---------------- */
.strip { padding: 34px 0; border-block: 1px solid var(--line); position: relative; }
.strip__inner {
  width: min(var(--maxw), calc(100% - 56px)); margin-inline: auto;
  display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 60px);
  flex-wrap: wrap;
}
.strip__inner p {
  font-family: var(--font-display); font-style: italic; font-weight: 360;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  color: var(--ink-soft);
}
.strip__inner span { color: var(--gold-2); font-size: .8rem; }

/* ---------------- technology : exploded assembly ---------------- */
.techx {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #f6f6f8;
  background:
    radial-gradient(1200px 720px at 50% 36%, #181820 0%, #0f0f13 52%, #0b0b0d 100%);
}
.techx__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.techx__content { position: absolute; inset: 0; }
.techx__title {
  position: absolute; top: 9%; left: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #f7f7f9;
}
.techx__title em { font-style: normal; }
.techx__note {
  position: absolute; bottom: 11%; right: 0;
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #8e8e98;
}
[data-parallax-img] { transform: translateZ(0); }


/* ---------------- wellbeing pillars ---------------- */
.wellbeing { background: linear-gradient(180deg, transparent, var(--accent-soft) 18%, transparent 82%); }
.pillars {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.pillars__tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.ptab {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 24px 12px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative;
  transition: color .4s, background-color .4s;
}
.ptab svg { width: 19px; height: 19px; transition: transform .45s var(--ease-out); }
.ptab::after {
  content: ""; position: absolute; bottom: -1px; left: 50%;
  width: 0; height: 2px; background: var(--gold-sheen);
  transform: translateX(-50%); border-radius: 2px;
  transition: width .5s var(--ease-out);
}
.ptab:hover { color: var(--ink); }
.ptab:hover svg { transform: translateY(-3px) scale(1.08); }
.ptab.is-active { color: var(--ink); }
.ptab.is-active::after { width: 46px; }

.ppanel { display: none; grid-template-columns: 1.3fr 1fr; min-height: 380px; }
.ppanel.is-active { display: grid; animation: panelIn .7s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ppanel__chart { position: relative; padding: 24px; border-right: 1px solid var(--line); min-width: 0; }
.ppanel__chart canvas { position: absolute; inset: 14px; width: auto; height: auto; min-height: 0; }
.ppanel__info { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.ppanel__kicker { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-3); }
.ppanel__metrics { display: flex; gap: 34px; }
.ppanel__metrics div { display: flex; flex-direction: column; }
.ppanel__metrics b {
  font-family: var(--font-display); font-weight: 380;
  font-size: 2.7rem; line-height: 1;
}
.ppanel__metrics i { font-style: normal; font-size: 12px; color: var(--ink-faint); margin-top: 6px; }
.ppanel__note { color: var(--ink-soft); font-size: .98rem; border-left: 2px solid var(--gold-2); padding-left: 14px; }

/* ---------------- craft ---------------- */
.craft { padding: 0; }
.craft__visual {
  position: absolute; top: 0; right: 0;
  width: 46%; height: 100%;
  overflow: hidden;
}
.craft__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  will-change: transform;
}
.craft__container { position: relative; }
.craft__content { padding: clamp(90px, 13vh, 160px) 0; max-width: 640px; }
.craft__lead { color: var(--ink-soft); margin-top: 24px; max-width: 520px; font-size: 1.06rem; }
.specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 44px;
}
.spec {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .45s var(--ease-out), border-color .4s, box-shadow .4s;
}
.spec:hover { transform: translateY(-4px); border-color: var(--gold-2); box-shadow: var(--shadow-soft); }
.spec b {
  display: block;
  font-family: var(--font-display); font-weight: 400;
  font-size: 2.1rem; line-height: 1;
  background: var(--gold-sheen);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.spec span { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 9px; }

/* ---------------- finishes ---------------- */
.finishes__layout {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.finishes__viewer {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 45%, var(--halo), transparent 62%),
    var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.finishes__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  cursor: grab; touch-action: none;
}
.finishes__canvas:active { cursor: grabbing; }
.finishes__fallback {
  position: absolute; left: 50%; top: 50%;
  width: 62%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%; opacity: 0; pointer-events: none;
  background: conic-gradient(from 210deg, #3a3a40, #0b0b0d 20%, #4a4a52 35%, #111114 55%, #2c2c32 75%, #08080a);
  -webkit-mask: radial-gradient(circle, transparent 57.5%, #000 58.5%);
  mask: radial-gradient(circle, transparent 57.5%, #000 58.5%);
}
.no-webgl .finishes__fallback, .no-module .finishes__fallback { opacity: 1; }
.finishes__hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-faint);
  display: flex; align-items: center; gap: 8px;
}
.finishes__hint::before, .finishes__hint::after { content: "‹"; font-size: 15px; }
.finishes__hint::after { content: "›"; }

.finishes__options { display: flex; flex-direction: column; gap: 12px; }
.finish {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
  transition: border-color .4s, background-color .4s, transform .45s var(--ease-out), box-shadow .4s;
}
.finish:hover { transform: translateX(5px); border-color: var(--line-strong); }
.finish.is-active { border-color: var(--gold-2); background: var(--surface-deep); box-shadow: var(--shadow-soft); }
.finish__swatch { width: 46px; height: 46px; border-radius: 50%; flex: none; box-shadow: inset 0 2px 4px rgba(255,255,255,.4), inset 0 -3px 6px rgba(0,0,0,.25), 0 6px 14px -6px rgba(0,0,0,.35); }
.finish__txt { display: flex; flex-direction: column; flex: 1; }
.finish__txt b { font-size: 15px; font-weight: 500; }
.finish__txt i { font-style: normal; font-size: 12.5px; color: var(--ink-faint); }
.finish__check {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-3); opacity: 0; transform: scale(.5);
  transition: opacity .35s, transform .45s var(--ease-out);
}
.finish__check svg { width: 16px; }
.finish.is-active .finish__check { opacity: 1; transform: scale(1); }

.finishes__package {
  margin-top: clamp(50px, 7vh, 90px);
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 22px; align-items: stretch;
}
.finishes__package figure {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
}
.finishes__package img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.finishes__package figure:hover img { transform: scale(1.05); }
.finishes__note {
  grid-column: 1 / -1; text-align: center;
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--ink-soft); max-width: 760px; margin: 18px auto 0;
}
.finishes__note em { color: var(--gold-3); }

/* ---------------- app ---------------- */
.app { background: linear-gradient(180deg, transparent, var(--accent-soft) 25%, transparent 78%); }
.app__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.app__lead { color: var(--ink-soft); margin-top: 24px; max-width: 480px; }
.app__list { display: flex; flex-direction: column; gap: 16px; margin-top: 34px; }
.app__list li { display: flex; align-items: center; gap: 14px; font-size: .99rem; }
.tick {
  width: 27px; height: 27px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--gold-3);
}
.tick svg { width: 14px; }
.tick--lg { width: 54px; height: 54px; }
.tick--lg svg { width: 26px; }

.app__stores { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.store:hover { transform: translateY(-3px); border-color: var(--gold-2); box-shadow: var(--shadow-soft); }
.store svg { width: 22px; height: 22px; color: var(--ink); }
.store span { display: flex; flex-direction: column; line-height: 1.2; }
.store i { font-style: normal; font-size: 10px; color: var(--ink-faint); letter-spacing: .06em; }
.store b { font-size: 14px; font-weight: 500; }

.app__phone { position: relative; display: grid; place-items: center; perspective: 1400px; }
.phone {
  position: relative; z-index: 2;
  width: min(340px, 82%);
  aspect-ratio: 340 / 690;
  border-radius: 52px;
  background: linear-gradient(160deg, #3a3a40, #101013);
  padding: 12px;
  box-shadow: 0 60px 110px -35px rgba(0, 0, 0, .6), inset 0 1px 1px rgba(255,255,255,.22);
  transform-style: preserve-3d;
}
.phone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 26px; border-radius: 100px;
  background: #08080a; z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 42px; overflow: hidden;
  background:
    radial-gradient(500px 300px at 80% -5%, rgba(210,166,90,.25), transparent 60%),
    linear-gradient(180deg, #191510, #0f0d09);
  color: #f2ecdf;
  padding: 58px 22px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.phone__top { display: flex; flex-direction: column; }
.phone__top span:first-child { font-size: 16px; font-weight: 500; }
.phone__date { font-size: 11.5px; color: rgba(242,236,223,.55); }
.phone__rings { display: flex; justify-content: space-between; gap: 8px; }
.ringg { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ringg i {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-style: normal; font-size: 16px; font-weight: 500;
  font-family: var(--font-display);
  position: relative;
}
.ringg i small { font-size: 10px; }
.ringg--1 i { background: conic-gradient(from 200deg, #7c6cf0 0 82%, rgba(255,255,255,.1) 82%); -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%); mask: radial-gradient(circle, transparent 62%, #000 63%); }
.ringg--2 i { background: conic-gradient(from 20deg, #dd5e86 0 74%, rgba(255,255,255,.1) 74%); -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%); mask: radial-gradient(circle, transparent 62%, #000 63%); }
.ringg--3 i { background: conic-gradient(from 120deg, #d2a65a 0 90%, rgba(255,255,255,.1) 90%); -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%); mask: radial-gradient(circle, transparent 62%, #000 63%); }
.ringg span { font-size: 10px; color: rgba(242,236,223,.6); letter-spacing: .08em; }
.phone__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.phone__spark { width: 22px; flex: none; color: var(--gold-1); margin-top: 2px; }
.phone__card p { font-size: 12px; line-height: 1.55; color: rgba(242,236,223,.82); }
.phone__battery {
  margin-top: auto;
  background: rgba(255,255,255,.05);
  border-radius: 18px; padding: 14px 16px;
}
.phone__battery span { font-size: 11.5px; display: flex; align-items: center; gap: 7px; }
.phone__battery span svg { width: 13px; color: var(--gold-1); }
.phone__battery b { display: block; font-size: 11px; color: rgba(242,236,223,.6); font-weight: 400; margin: 5px 0 9px; }
.battery-bar { height: 5px; border-radius: 10px; background: rgba(255,255,255,.1); overflow: hidden; }
.battery-bar i { display: block; height: 100%; border-radius: 10px; background: var(--gold-sheen); box-shadow: 0 0 8px var(--gold-2); animation: batteryFill 2s var(--ease-out) .8s both; transform-origin: left; }
@keyframes batteryFill { from { transform: scaleX(0); } }
.app__phone-glow {
  position: absolute; z-index: 1;
  width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--halo), transparent 65%);
  filter: blur(36px);
}

/* ---------------- stories ---------------- */
.stories__grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px; align-items: start;
}
.story {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px; overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.story:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.story--feature { transform: translateY(22px); }
.story--feature:hover { transform: translateY(15px); }
.story__img { aspect-ratio: 16 / 10; overflow: hidden; }
.story__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.story:hover .story__img img { transform: scale(1.06); }
.story p { padding: 24px 24px 18px; font-size: .98rem; color: var(--ink-soft); line-height: 1.6; }
.story__who { padding: 0 24px; display: flex; flex-direction: column; }
.story__who b { font-size: 14px; font-weight: 500; }
.story__who i { font-style: normal; font-size: 12px; color: var(--ink-faint); }
.story__stars { padding: 14px 24px 22px; color: var(--gold-2); font-size: 12px; letter-spacing: 2px; }

/* ---------------- reserve ---------------- */
.reserve__card {
  position: relative;
  max-width: 820px; margin-inline: auto;
  text-align: center;
  padding: clamp(50px, 7vw, 84px) clamp(26px, 6vw, 80px);
  border-radius: 36px;
  background:
    radial-gradient(700px 360px at 50% -10%, var(--halo), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  overflow: hidden;
}
.reserve__mark { width: 72px; margin: 0 auto 10px; color: var(--gold-3); }
.reserve__mark circle { stroke: currentColor; }
.reserve__mark path { fill: currentColor; }
.reserve__card .h2 { margin-top: 8px; }
.reserve__card > p { color: var(--ink-soft); max-width: 520px; margin: 18px auto 0; }
.reserve__form {
  display: flex; gap: 10px; margin-top: 34px;
  background: var(--surface-deep);
  border: 1px solid var(--line);
  border-radius: 100px; padding: 7px;
  max-width: 540px; margin-inline: auto;
}
.reserve__form input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  padding: 11px 18px; color: var(--ink); font: inherit; font-size: 15px;
}
.reserve__form input::placeholder { color: var(--ink-faint); }
.reserve__form .btn { flex: none; }

.reserve__done { display: none; flex-direction: column; align-items: center; gap: 8px; margin-top: 30px; }
.reserve__done.is-visible { display: flex; animation: panelIn .6s var(--ease-out); }
.reserve__done b { font-size: 1.2rem; font-weight: 500; }
.reserve__done i { font-style: normal; color: var(--ink-soft); font-size: .92rem; max-width: 380px; }
.reserve__done .tick { color: var(--gold-3); background: var(--accent-soft); margin-bottom: 8px; }

.reserve__trust {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px; margin-top: 34px;
  font-size: 12.5px; color: var(--ink-faint);
}
.reserve__trust i { color: var(--gold-2); font-size: 9px; }

/* ---------------- faq ---------------- */
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq__intro .h2 { margin-bottom: 34px; }
.faq__img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.faq__img img { width: 100%; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem); font-weight: 500;
  list-style: none; cursor: pointer;
  transition: color .35s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-3); }
.faq__plus { position: relative; width: 17px; height: 17px; flex: none; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--gold-2);
  top: 50%; left: 0; width: 100%; height: 1.6px;
  transform: translateY(-50%); border-radius: 2px;
  transition: transform .45s var(--ease-out), rotate .45s var(--ease-out);
}
.faq__plus::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translateY(-50%) rotate(0); }
.faq__item p { padding: 0 36px 26px 4px; color: var(--ink-soft); font-size: .97rem; max-width: 620px; animation: fadeUp .5s var(--ease-out); }

/* ---------------- final cta ---------------- */
.final {
  position: relative;
  padding: clamp(120px, 20vh, 230px) 0;
  text-align: center; overflow: hidden;
}
.final__glow {
  position: absolute; top: 50%; left: 50%;
  width: min(900px, 90vw); aspect-ratio: 1;
  transform: translate(-50%, -52%);
  background: radial-gradient(circle, var(--halo), transparent 63%);
  filter: blur(30px);
}
.final__inner { position: relative; }
.final__title {
  font-family: var(--font-display);
  font-weight: 330;
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: 44px;
}
.final__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.final__title em {
  font-weight: 400;
  background: var(--gold-sheen); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: sheenMove 7s ease-in-out infinite;
}
.final__title .line__inner { transform: translateY(115%); }
.final__title.is-visible .line__inner { animation: lineUp 1.2s var(--ease-silk) forwards; }
.final__title.is-visible .line:nth-child(2) .line__inner { animation-delay: .15s; }
.final__whisper { margin-top: 34px; font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------------- footer ---------------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(60px, 8vh, 90px); position: relative; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  padding-bottom: 60px;
}
.footer__tag { margin: 18px 0 24px; font-family: var(--font-display); font-style: italic; color: var(--ink-soft); }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: color .35s, border-color .35s, transform .4s var(--ease-out);
}
.footer__social a:hover { color: var(--gold-3); border-color: var(--gold-2); transform: translateY(-3px); }
.footer__social svg { width: 17px; }
.footer__col h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; font-weight: 500; }
.footer__col a { display: block; padding: 6px 0; font-size: 14px; color: var(--ink-soft); transition: color .3s, padding-left .35s var(--ease-out); }
.footer__col a:hover { color: var(--gold-3); padding-left: 6px; }
.footer__base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-block: 26px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-faint);
}
.footer__quiet { font-family: var(--font-display); font-style: italic; }

/* ---------------- modal ---------------- */
.modal {
  position: fixed; inset: 0; z-index: 180;
  background: rgba(10, 8, 5, .78);
  backdrop-filter: blur(18px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__frame {
  position: relative;
  width: min(1000px, 92vw); aspect-ratio: 16 / 9;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, .8);
  transform: scale(.94);
  transition: transform .6s var(--ease-out);
}
.modal.is-open .modal__frame { transform: scale(1); }
.modal__frame video, .modal__poster { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal__poster img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.modal__coming { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px; text-align: center; padding: 20px; }
.modal__coming span { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.6rem); color: #f4eddf; }
.modal__coming p { color: rgba(244, 237, 223, .7); font-size: .95rem; }
.modal__close {
  position: absolute; top: 26px; right: 30px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: #f4eddf;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255,255,255,.14);
  transition: background-color .35s, transform .4s var(--ease-out);
}
.modal__close:hover { background: rgba(255, 255, 255, .18); transform: rotate(90deg); }
.modal__close svg { width: 18px; }

/* ---------------- reveal base ---------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 1080px) {
  .finishes__layout { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .story--feature { transform: none; }
  .story--feature:hover { transform: translateY(-7px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .craft__visual { width: 55%; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .header__burger { display: grid; }
  .hero__word { top: 42%; font-size: clamp(2.9rem, 17vw, 7rem); letter-spacing: .04em; }
  .ppanel { grid-template-columns: 1fr; }
  .ppanel__chart { border-right: 0; border-bottom: 1px solid var(--line); min-height: 260px; }
  .app__grid { grid-template-columns: 1fr; }
  .app__phone { order: -1; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__img { display: none; }
  .finishes__package { grid-template-columns: 1fr; }
  .craft__visual {
    position: relative; width: 100%; height: 56vh;
  }
  /* mobile: the ring-focused crop fills the band as-is */
  .craft__visual img { object-position: center; }
  .specs { grid-template-columns: 1fr; }
  .techx { min-height: 640px; }
  .techx__img { object-fit: contain; object-position: center 58%; }
  .techx__title { top: 15%; font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .techx__note { bottom: 6%; max-width: 240px; font-size: .82rem; }
}

@media (max-width: 520px) {
  .container, .strip__inner { width: calc(100% - 36px); }
  .header__inner { width: calc(100% - 30px); }
  .pillars__tabs { grid-template-columns: 1fr 1fr; }
  .ptab { padding: 18px 8px; font-size: 13px; }
  .ppanel__info { padding: 30px 26px; }
  .reserve__form { flex-direction: column; background: transparent; border: 0; padding: 0; }
  .reserve__form input { background: var(--surface-deep); border: 1px solid var(--line); border-radius: 100px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__base { justify-content: center; text-align: center; }
}

/* gate hero title until preloader lifts */
body:not(.is-loaded) .hero__title { animation-play-state: paused; opacity: 0; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .line__inner { opacity: 1 !important; transform: none !important; }
}
