:root {
  --ink: #07141d;
  --ink-2: #0b1e29;
  --ink-3: #102a38;
  --paper: #f5f4ef;
  --white: #fff;
  --muted: #66747c;
  --line: rgba(7, 20, 29, .13);
  --line-light: rgba(255, 255, 255, .17);
  --teal: #04aaac;
  --blue: #0b8ead;
  --orange: #f27720;
  --yellow: #f3b615;
  --pink: #ed135f;
  --purple: #aa3192;
  --shadow: 0 28px 80px rgba(7, 20, 29, .15);
  --radius: 24px;
  --display: "Manrope", "Segoe UI", sans-serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
p, h1, h2, h3 { margin: 0; }
.container { width: min(1220px, calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-150%); background: var(--white); padding: 12px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

/* Loader */
.loader { position: fixed; inset: 0; z-index: 300; display: grid; place-content: center; justify-items: center; gap: 25px; background: var(--ink); transition: opacity .7s ease, visibility .7s ease; }
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { width: min(430px, calc(100vw - 48px)); position: relative; display: grid; place-items: center; padding: 14px 18px; overflow: visible; border-radius: 22px; background: var(--white); box-shadow: 0 28px 90px rgba(0,0,0,.36); }
.loader-mark img { width: 100%; position: relative; z-index: 2; border-radius: 10px; animation: loader-logo 1.2s cubic-bezier(.2,.8,.2,1) both; }
.loader-mark > span { position: absolute; width: 9px; height: 9px; border-radius: 99px; animation: loader-dot 1.25s ease-in-out infinite; }
.loader-mark > span:nth-child(1) { top: -9px; left: 50%; background: var(--orange); }
.loader-mark > span:nth-child(2) { left: -9px; bottom: -9px; background: var(--teal); animation-delay: -.42s; }
.loader-mark > span:nth-child(3) { right: -9px; bottom: -9px; background: var(--pink); animation-delay: -.84s; }
.loader p { color: rgba(255,255,255,.68); font: 600 .72rem/1 var(--display); letter-spacing: .2em; text-transform: uppercase; }
@keyframes loader-logo { from { opacity: 0; transform: scale(.78) rotate(-4deg); } to { opacity: 1; transform: none; } }
@keyframes loader-dot { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 currentColor; } 50% { transform: scale(1.7); box-shadow: 0 0 30px 6px currentColor; } }

/* Shared */
.section { padding: 130px 0; }
.kicker { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font: 700 .72rem/1 var(--display); letter-spacing: .17em; text-transform: uppercase; }
.kicker > span { width: 36px; height: 2px; border-radius: 10px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--yellow), var(--pink), var(--purple)); }
.kicker.dark { color: #66767f; }
.section-heading h2, .virtual-copy h2, .process-copy h2, .faq-heading h2, .contact-copy h2 { margin-top: 23px; font: 700 clamp(2.5rem, 5vw, 5.4rem)/.99 var(--display); letter-spacing: -.065em; }
h1 em, h2 em { color: transparent; background: linear-gradient(100deg, var(--orange), var(--yellow) 38%, var(--pink) 72%, var(--purple)); -webkit-background-clip: text; background-clip: text; font-style: normal; }
.section-intro { color: var(--muted); font-size: 1.08rem; line-height: 1.78; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid rgba(7,20,29,.35); font: 700 .92rem/1 var(--display); }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 24px; border: 1px solid transparent; border-radius: 99px; font: 700 .9rem/1 var(--display); cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: linear-gradient(125deg, var(--orange), var(--pink) 58%, var(--purple)); box-shadow: 0 14px 34px rgba(237,19,95,.28); }
.button-primary:hover { background: linear-gradient(125deg, #f58b40, #f42c72 58%, #b5419f); box-shadow: 0 18px 40px rgba(237,19,95,.35); }
.button-glass { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.play { width: 26px; height: 26px; display: grid; place-items: center; padding-left: 2px; border-radius: 50%; color: var(--ink); background: var(--white); font-size: .55rem; }
.teal-bg { background: var(--teal); }
.orange-bg { background: var(--orange); }
.pink-bg { background: var(--pink); }

/* Header */
.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 19px 42px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.13); transition: padding .3s ease, background .3s ease, box-shadow .3s ease; }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,13,19,.8), transparent); pointer-events: none; }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: linear-gradient(90deg, var(--teal) 0 20%, var(--orange) 20% 40%, var(--yellow) 40% 60%, var(--pink) 60% 80%, var(--purple) 80% 100%); transform: scaleX(.28); transform-origin: right; opacity: .88; transition: transform .45s ease; }
.site-header.scrolled { padding-block: 11px; background: rgba(7,20,29,.92); backdrop-filter: blur(18px); box-shadow: 0 12px 40px rgba(0,0,0,.16); }
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled::after { transform: scaleX(1); }
.brand { display: flex; align-items: center; }
.brand-wordmark { width: 185px; display: block; padding: 6px 9px; overflow: hidden; border: 1px solid rgba(255,255,255,.72); border-radius: 14px; background: var(--white); box-shadow: 0 10px 28px rgba(0,0,0,.18); transition: transform .25s ease, box-shadow .25s ease; }
.brand-wordmark img { width: 100%; border-radius: 7px; }
.brand:hover .brand-wordmark { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.24); }
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav > a { padding: 12px 14px; color: rgba(255,255,255,.78); font: 600 .82rem/1 var(--display); transition: color .2s ease; }
.site-nav > a:not(.nav-button):hover { color: var(--white); }
.site-nav .nav-button { position: relative; overflow: hidden; margin-left: 12px; padding: 13px 19px 13px 24px; color: var(--ink); background: var(--white); border-radius: 99px; }
.site-nav .nav-button::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, var(--teal), var(--orange), var(--pink), var(--purple)); }
.nav-button span { color: var(--orange); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.06); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .25s ease; }
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 880px; height: 100vh; display: grid; align-items: center; color: var(--white); overflow: hidden; background: var(--ink); }
.hero-image, .hero-shade, .hero-grid-lines { position: absolute; inset: 0; }
.hero-image { background: url("assets/virtual-office-reception.webp") center 42%/cover no-repeat; transform: scale(1.04); animation: hero-push 15s ease-out both; }
.hero-shade { background: linear-gradient(90deg, rgba(3,13,19,.96) 0%, rgba(3,13,19,.77) 43%, rgba(3,13,19,.18) 78%), linear-gradient(0deg, rgba(3,13,19,.79), transparent 43%, rgba(3,13,19,.2)); }
.hero-grid-lines { opacity: .12; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 120px 120px; mask-image: linear-gradient(90deg, #000, transparent 62%); }
.hero-brand-ring { position: absolute; z-index: 1; width: 760px; height: 760px; right: -410px; bottom: -420px; border-radius: 50%; opacity: .5; background: conic-gradient(from 25deg, var(--teal), var(--orange), var(--yellow), var(--pink), var(--purple), var(--teal)); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 38px), #000 0); mask: radial-gradient(farthest-side, transparent calc(100% - 38px), #000 0); animation: brand-turn 28s linear infinite; pointer-events: none; filter: drop-shadow(0 0 24px rgba(237,19,95,.16)); }
@keyframes brand-turn { to { transform: rotate(1turn); } }
@keyframes hero-push { from { transform: scale(1.09); } to { transform: scale(1.04); } }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .58fr; gap: 90px; align-items: end; padding-top: 90px; }
.hero-content { max-width: 780px; }
.hero-wordmark { width: min(370px, 72vw); margin-bottom: 25px; padding: 11px 15px; overflow: hidden; border: 1px solid rgba(255,255,255,.75); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: 0 24px 65px rgba(0,0,0,.28), 0 0 0 5px rgba(255,255,255,.06); }
.hero-wordmark img { width: 100%; border-radius: 10px; }
.hero h1 { margin-top: 27px; font: 700 clamp(4rem, 7.2vw, 7.6rem)/.9 var(--display); letter-spacing: -.075em; }
.hero h1 em { display: block; }
.hero-lead { max-width: 660px; margin-top: 30px; color: rgba(255,255,255,.73); font-size: 1.16rem; line-height: 1.74; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-panel { width: 100%; max-width: 390px; justify-self: end; padding: 15px; border: 1px solid rgba(255,255,255,.17); border-radius: 26px; background: rgba(7,20,29,.64); backdrop-filter: blur(21px); box-shadow: 22px 22px 75px rgba(4,170,172,.12), -18px -12px 70px rgba(237,19,95,.11), 0 30px 80px rgba(0,0,0,.22); }
.hero-panel > p { padding: 8px 10px 13px; color: rgba(255,255,255,.56); font: 700 .68rem/1 var(--display); text-transform: uppercase; letter-spacing: .16em; }
.hero-panel > a { display: grid; grid-template-columns: 44px 1fr auto; gap: 13px; align-items: center; padding: 15px 10px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-panel > a > span:nth-child(2) { min-width: 0; }
.hero-panel strong, .hero-panel small { display: block; }
.hero-panel strong { font: 600 .83rem/1.25 var(--display); }
.hero-panel small { margin-top: 5px; color: rgba(255,255,255,.53); font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-panel b { color: rgba(255,255,255,.52); font-weight: 400; transition: transform .25s ease, color .25s ease; }
.hero-panel a:hover b { color: var(--orange); transform: translate(3px,-3px); }
.panel-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; font: 700 .67rem/1 var(--display); }
.panel-icon.teal { color: #6ee7e8; background: rgba(4,170,172,.25); }
.panel-icon.orange { color: #ffad72; background: rgba(242,119,32,.25); }
.panel-icon.pink { color: #ff78a7; background: rgba(237,19,95,.25); }
.hero-bottom { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.14); }
.hero-bottom-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.hero-proof { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 11px; }
.proof-dot { grid-row: 1/3; width: 11px; height: 11px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 7px rgba(4,170,172,.15); }
.hero-proof strong { font: 600 .78rem/1 var(--display); }
.hero-proof small { margin-top: 5px; color: rgba(255,255,255,.5); font-size: .7rem; }
.scroll-hint { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.5); font: 600 .67rem/1 var(--display); text-transform: uppercase; letter-spacing: .12em; }
.scroll-hint i { width: 27px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; position: relative; }
.scroll-hint i::after { content: ""; position: absolute; left: 50%; top: 9px; width: 3px; height: 7px; border-radius: 99px; background: var(--white); transform: translateX(-50%); animation: scroll-dot 1.7s ease infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,13px); } }

/* Intro */
.intro-strip { position: relative; padding: 42px 0; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); }
.intro-strip::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--teal) 0 20%, var(--orange) 20% 40%, var(--yellow) 40% 60%, var(--pink) 60% 80%, var(--purple) 80% 100%); }
.intro-strip-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.intro-strip p { color: rgba(255,255,255,.62); font-size: .95rem; }
.intro-strip p strong { color: var(--white); font-weight: 600; }
.intro-points { display: flex; gap: 34px; }
.intro-points span { display: flex; align-items: center; gap: 10px; font: 600 .76rem/1 var(--display); }
.intro-points i { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.05), 0 0 22px currentColor; }
.intro-points i.teal-bg { color: var(--teal); }
.intro-points i.orange-bg { color: var(--orange); }
.intro-points i.pink-bg { color: var(--pink); }

/* Services */
.services { background: var(--paper); }
.service-cards { display: grid; grid-template-columns: 1.12fr .94fr .94fr; gap: 20px; }
.service-card { min-height: 560px; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 34px; border-radius: var(--radius); }
.service-card::after { content: ""; position: absolute; z-index: 4; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--yellow), var(--pink), var(--purple)); }
.service-card p { margin-top: auto; color: var(--orange); font: 700 .7rem/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.service-card h3 { margin-top: 15px; font: 600 clamp(1.7rem,2.3vw,2.45rem)/1.12 var(--display); letter-spacing: -.04em; }
.service-card > a, .service-card-content > a { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 18px; border-top: 1px solid currentColor; font: 700 .78rem/1 var(--display); }
.service-card a b { transition: transform .25s ease; }
.service-card a:hover b { transform: translate(3px,-3px); }
.service-card-photo { color: var(--white); }
.service-card-photo > img, .service-photo-shade { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.service-photo-shade { background: linear-gradient(0deg, rgba(4,16,23,.94), rgba(4,16,23,.12) 72%); }
.service-card-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.service-card-content > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font: 600 .7rem/1 var(--display); }
.service-card-content p { margin-top: auto; }
.service-card-light { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.service-card-dark { color: var(--white); background: var(--ink-2); }
.service-card-light p, .service-card-dark p { margin-top: auto; }
.service-card-light ul, .service-card-dark ul { list-style: none; display: grid; gap: 11px; margin: 25px 0 0; padding: 0; }
.service-card-light li, .service-card-dark li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .88rem; }
.service-card-dark li { color: rgba(255,255,255,.59); }
.service-card li::before { content: ""; width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--teal); }
.service-card-dark li::before { background: var(--pink); }
.card-index { position: absolute; top: 37px; right: 34px; color: #89969c; font: 600 .68rem/1 var(--display); }
.service-symbol { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 24px; }
.orange-symbol { position: relative; background: rgba(242,119,32,.1); }
.orange-symbol span { position: absolute; display: block; border-radius: 12px; background: var(--orange); }
.orange-symbol span:nth-child(1) { width: 19px; height: 19px; top: 15px; left: 34px; }
.orange-symbol span:nth-child(2) { width: 17px; height: 48px; bottom: 12px; left: 20px; transform: rotate(32deg); }
.orange-symbol span:nth-child(3) { width: 17px; height: 48px; bottom: 12px; right: 20px; transform: rotate(-32deg); background: var(--pink); }
.pink-symbol { color: var(--pink); background: rgba(237,19,95,.1); font: 700 2rem/1 var(--display); }

/* Virtual office */
.virtual-office { background: var(--white); }
.virtual-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.virtual-visual { min-height: 720px; position: relative; overflow: hidden; border: 2px solid rgba(4,170,172,.48); border-radius: 30px; box-shadow: 26px 28px 80px rgba(4,170,172,.15), -18px -10px 65px rgba(237,19,95,.1), var(--shadow); }
.virtual-visual::before { content: ""; position: absolute; z-index: 4; left: 0; right: 0; top: 0; height: 7px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--yellow), var(--pink), var(--purple)); }
.virtual-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,18,25,.56), transparent 45%); }
.virtual-visual > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.visual-badge { position: absolute; z-index: 2; top: 26px; right: 26px; display: flex; align-items: center; gap: 12px; padding: 14px 17px; color: var(--ink); background: rgba(255,255,255,.91); border-radius: 17px; box-shadow: 0 16px 35px rgba(7,20,29,.15); backdrop-filter: blur(14px); }
.badge-check { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal); font-weight: 700; }
.visual-badge small, .visual-badge strong { display: block; }
.visual-badge small { color: var(--muted); font-size: .66rem; }
.visual-badge strong { margin-top: 4px; font: 700 .72rem/1 var(--display); }
.visual-label { position: absolute; z-index: 2; left: 30px; bottom: 30px; color: var(--white); }
.visual-label span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.65); font: 600 .67rem/1 var(--display); text-transform: uppercase; letter-spacing: .14em; }
.visual-label b { font: 600 1.2rem/1.25 var(--display); }
.virtual-copy .section-intro { margin-top: 27px; max-width: 570px; }
.feature-list { margin: 38px 0; border-top: 1px solid var(--line); }
.feature { display: grid; grid-template-columns: 45px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.feature > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: rgba(4,170,172,.1); font: 700 .65rem/1 var(--display); }
.feature strong { font: 700 1rem/1.2 var(--display); }
.feature p { margin-top: 8px; color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* Properties */
.properties { background: var(--paper); }
.property-heading { align-items: start; }
.property-heading > div:last-child { padding-top: 43px; }
.property-heading .text-link { margin-top: 25px; }
.property-gallery { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 300px); gap: 18px; }
.property-tile { position: relative; overflow: hidden; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); border-radius: var(--radius); }
.property-tile.large { grid-row: 1 / 3; }
.property-tile img, .tile-shade { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1); }
.property-tile.large img { object-position: 62% center; }
.property-tile:nth-child(2) img { object-position: center 54%; }
.property-tile:nth-child(3) img { object-position: center 55%; }
.property-tile:hover img { transform: scale(1.045); }
.tile-shade { background: linear-gradient(0deg, rgba(3,14,20,.85), rgba(3,14,20,.03) 72%); }
.property-tile > span, .property-tile h3, .property-tile p { position: relative; z-index: 1; }
.property-tile > span { margin-bottom: 9px; color: var(--orange); font: 700 .66rem/1 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.property-tile h3 { font: 600 clamp(1.5rem,2.4vw,2.4rem)/1.08 var(--display); letter-spacing: -.04em; }
.property-tile p { max-width: 360px; margin-top: 10px; color: rgba(255,255,255,.65); font-size: .85rem; }

/* Process */
.process { color: var(--white); background: var(--ink-2); }
.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 120px; align-items: start; }
.process-copy { position: sticky; top: 150px; }
.process-copy h2 { font-size: clamp(2.7rem,4.5vw,4.9rem); }
.process-copy > p:not(.kicker) { max-width: 470px; margin-top: 25px; color: rgba(255,255,255,.56); line-height: 1.7; }
.process-copy .button { margin-top: 32px; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: step; border-top: 1px solid rgba(255,255,255,.14); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 35px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.process-list li > span { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; color: var(--orange); border: 1px solid rgba(242,119,32,.45); font: 700 .65rem/1 var(--display); }
.process-list small, .process-list strong { display: block; }
.process-list small { color: rgba(255,255,255,.45); font: 600 .65rem/1 var(--display); text-transform: uppercase; letter-spacing: .13em; }
.process-list strong { margin-top: 10px; font: 600 1.45rem/1.2 var(--display); }
.process-list p { margin-top: 10px; color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.65; }

/* FAQ */
.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 145px; }
.faq-heading h2 { font-size: clamp(2.6rem,4.2vw,4.7rem); }
.faq-heading > p:last-child { max-width: 440px; margin-top: 25px; color: var(--muted); line-height: 1.7; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { padding: 26px 0; border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font: 600 1.05rem/1.35 var(--display); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 690px; padding: 18px 55px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* Contact */
.careers { background: #edf2f1; }
.careers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.careers-visual { min-height: 620px; position: relative; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.careers-visual::after { content: ""; position: absolute; z-index: 3; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--yellow), var(--pink), var(--purple)); }
.careers-visual > img, .careers-visual-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.careers-visual-shade { background: linear-gradient(0deg, rgba(4,16,23,.8), rgba(4,16,23,.03) 70%); }
.careers-visual-copy { position: absolute; z-index: 1; left: 32px; right: 32px; bottom: 32px; color: var(--white); }
.careers-visual-copy span { display: block; margin-bottom: 10px; color: var(--orange); font: 700 .67rem/1 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.careers-visual-copy strong { max-width: 470px; display: block; font: 600 clamp(1.55rem,2.5vw,2.5rem)/1.13 var(--display); letter-spacing: -.04em; }
.careers-copy h2 { margin-top: 23px; font: 700 clamp(2.5rem,4.6vw,5rem)/.99 var(--display); letter-spacing: -.065em; }
.careers-copy .section-intro { margin-top: 27px; }
.career-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.career-tags span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 99px; color: #53646c; background: rgba(255,255,255,.58); font: 600 .72rem/1 var(--display); }
.career-apply { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.career-apply small, .career-apply div > a { display: block; }
.career-apply small { color: var(--muted); font-size: .7rem; }
.career-apply div > a { margin-top: 7px; font: 700 .95rem/1 var(--display); }
.career-apply .button { flex: 0 0 auto; }

.contact { min-height: 820px; position: relative; display: grid; align-items: center; padding: 120px 0; color: var(--white); background: var(--ink); overflow: hidden; }
.contact-image, .contact-overlay { position: absolute; inset: 0; }
.contact-image { background: url("assets/contact-lounge.webp") center/cover no-repeat; }
.contact-overlay { background: linear-gradient(90deg, rgba(4,15,22,.95), rgba(4,15,22,.76) 50%, rgba(4,15,22,.36)), linear-gradient(0deg, rgba(4,15,22,.6), transparent); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.contact-copy h2 { font-size: clamp(3.4rem,5.6vw,6.1rem); }
.contact-copy > p:not(.kicker) { max-width: 500px; margin-top: 25px; color: rgba(255,255,255,.64); font-size: 1.04rem; line-height: 1.7; }
.contact-details { display: grid; gap: 10px; margin-top: 38px; }
.contact-details a { width: fit-content; display: grid; grid-template-columns: 62px auto; gap: 10px; align-items: center; }
.contact-details small { color: rgba(255,255,255,.45); font-size: .72rem; }
.contact-details strong { font: 600 .9rem/1 var(--display); }
.inquiry-form { position: relative; overflow: hidden; padding: 34px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.7); border-radius: 26px; box-shadow: 0 35px 90px rgba(0,0,0,.28); backdrop-filter: blur(15px); }
.inquiry-form::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--teal) 0 20%, var(--orange) 20% 40%, var(--yellow) 40% 60%, var(--pink) 60% 80%, var(--purple) 80% 100%); }
.form-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.form-head span { font: 700 1.35rem/1 var(--display); }
.form-head small { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inquiry-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.inquiry-form label > span { color: #607079; font: 600 .69rem/1 var(--display); text-transform: uppercase; letter-spacing: .08em; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 15px 16px; color: var(--ink); background: #f4f5f3; border: 1px solid transparent; border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: #9aa5aa; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(4,170,172,.1); }
.inquiry-form textarea { min-height: 96px; resize: vertical; }
.inquiry-form .button { width: 100%; border: 0; margin-top: 2px; }
.form-note { margin-top: 12px; color: #89959b; text-align: center; font-size: .68rem; }

/* Footer */
.site-footer { position: relative; padding: 53px 0 23px; color: var(--white); background: #041018; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--teal) 0 20%, var(--orange) 20% 40%, var(--yellow) 40% 60%, var(--pink) 60% 80%, var(--purple) 80% 100%); }
.footer-top { display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: center; padding-bottom: 40px; }
.footer-brand { width: 250px; display: block; padding: 9px 12px; overflow: hidden; border-radius: 16px; background: var(--white); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.footer-brand img { width: 100%; border-radius: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.56); font: 600 .72rem/1 var(--display); }
.footer-links a:hover { color: var(--white); }
.footer-cta { min-width: 145px; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; font: 600 .76rem/1 var(--display); }
.footer-cta b { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; color: rgba(255,255,255,.36); border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .site-header { padding-inline: 28px; }
  .brand-wordmark { width: 170px; }
  .site-nav > a { padding-inline: 9px; }
  .hero-layout { grid-template-columns: 1fr .52fr; gap: 45px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .service-card:first-child { grid-row: span 2; }
  .process-layout, .faq-layout { gap: 65px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 40px, 1220px); }
  .section { padding: 100px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 3px; padding: 100px 34px 40px; background: rgba(7,20,29,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s ease, visibility .3s ease, transform .3s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { padding: 16px 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .site-nav .nav-button { margin: 20px 0 0; padding: 17px 20px; border: 0; text-align: center; }
  .hero { min-height: 840px; height: auto; padding: 160px 0 120px; }
  .hero-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-content { max-width: 720px; }
  .hero-panel { max-width: 520px; justify-self: start; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .split-heading .section-intro { max-width: 650px; }
  .service-card { min-height: 520px; }
  .virtual-layout { grid-template-columns: 1fr; gap: 65px; }
  .virtual-visual { min-height: 620px; }
  .careers-layout { grid-template-columns: 1fr; gap: 60px; }
  .careers-visual { min-height: 560px; }
  .property-heading > div:last-child { padding-top: 0; }
  .process-layout, .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .process-copy, .faq-heading { position: static; }
  .process-copy { max-width: 650px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-links { grid-row: 2; grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1220px); }
  .section { padding: 78px 0; }
  .site-header { padding: 12px 15px; }
  .brand-wordmark { width: 150px; padding: 5px 7px; border-radius: 11px; }
  .hero { min-height: 780px; padding-top: 135px; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,13,19,.94), rgba(3,13,19,.55)), linear-gradient(0deg, rgba(3,13,19,.88), transparent 52%); }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5.1rem); }
  .hero-wordmark { width: min(310px, 82vw); margin-bottom: 22px; padding: 9px 12px; border-radius: 16px; }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-panel { display: none; }
  .hero-bottom-inner { min-height: 72px; }
  .scroll-hint span { display: none; }
  .intro-strip-grid { align-items: flex-start; flex-direction: column; gap: 24px; }
  .intro-points { width: 100%; justify-content: space-between; gap: 12px; }
  .intro-points span { font-size: .67rem; }
  .section-heading h2, .virtual-copy h2, .process-copy h2, .faq-heading h2, .contact-copy h2 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .service-cards { grid-template-columns: 1fr; }
  .service-card:first-child { grid-row: auto; }
  .service-card { min-height: 490px; padding: 27px; }
  .virtual-visual { min-height: 470px; border-radius: 22px; }
  .careers-visual { min-height: 450px; border-radius: 22px; }
  .careers-visual-copy { left: 24px; right: 24px; bottom: 24px; }
  .careers-copy h2 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .career-apply { align-items: stretch; flex-direction: column; }
  .career-apply .button { width: 100%; }
  .visual-badge { top: 16px; right: 16px; }
  .visual-label { left: 22px; bottom: 22px; }
  .feature { grid-template-columns: 40px 1fr; gap: 15px; }
  .property-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 390px); }
  .property-tile.large { grid-row: auto; }
  .process-list li { grid-template-columns: 52px 1fr; gap: 12px; }
  .process-list strong { font-size: 1.2rem; }
  .contact { min-height: 0; padding: 90px 0; }
  .contact-layout { gap: 55px; }
  .contact-details a { grid-template-columns: 52px auto; }
  .inquiry-form { padding: 23px; border-radius: 20px; }
  .form-head { display: grid; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { width: min(250px, 82vw); }
  .footer-links { grid-row: auto; grid-column: auto; flex-wrap: wrap; gap: 17px 22px; }
  .footer-cta { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
