/* =========================================================
   AtWork — Premium Managed Office & Coworking
   Palette: deep navy · crisp white · blue accents
   ========================================================= */

:root {
  /* Color — deep navy dark sections + blue accents over white */
  --navy-900: #0f3a66;
  --navy-800: #16467a;
  --navy-700: #1d5390;
  --navy-600: #2a649f;
  --navy-500: #5078a4;
  --ink: #11294a;
  --white: #ffffff;
  --paper: #eef3f9;
  --paper-2: #dfe8f3;
  --muted: #5a6e8c;
  --muted-light: #9fb6d2;
  --line: rgba(17, 41, 74, 0.10);
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Blue accent palette */
  --accent: #2f86d4;
  --accent-bright: #6fb0e6;
  --accent-deep: #0d5c9c;
  --accent-grad: linear-gradient(135deg, #5aa6e2 0%, #2f86d4 50%, #145fa6 100%);

  --wa: #25d366;
  --wa-dark: #128c4b;

  /* Type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px rgba(20,22,26,.06);
  --shadow-md: 0 18px 50px -18px rgba(20,22,26,.30);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.55);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 140px); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--accent { color: var(--accent-deep); }
.section--dark .eyebrow { color: var(--accent); }

.section__head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(28px, 4.4vw, 50px); }
.section__lead { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-top: 18px; }
.section--dark .section__lead { color: var(--muted-light); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --bg: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 100px; border: 1px solid transparent;
  background: var(--bg); color: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, border-color .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--whatsapp { background: var(--accent); color: #fff; box-shadow: 0 12px 28px -10px rgba(47,134,212,.7); }
.btn--whatsapp:hover { background: #2475c0; box-shadow: 0 18px 36px -12px rgba(47,134,212,.85); }

.btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { box-shadow: var(--shadow-md); }

.ico-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 14px;
  background: var(--white);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
}
.nav.is-scrolled {
  background: var(--white);
  padding-block: 10px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(17,41,74,.5);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Brand logo */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 30px; width: auto; display: block; }
.footer .brand__logo { height: 34px; }

/* Brand tiles (recreated @WORK logo — used in footer) */
.brand__tiles { display: inline-flex; gap: 5px; }
.brand__tile {
  width: 26px; height: 26px; display: grid; place-items: center;
  background: #fff; color: var(--navy-900);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  border-radius: 4px;
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.brand__tile--at { font-size: 16px; }
.brand:hover .brand__tile { background: var(--accent); color: var(--navy-900); }
.brand:hover .brand__tile:nth-child(1) { transform: translateY(-2px); }
.brand:hover .brand__tile:nth-child(3) { transform: translateY(-2px); }
.brand:hover .brand__tile:nth-child(5) { transform: translateY(-2px); }
.brand__tiles--sm .brand__tile { width: 30px; height: 30px; font-size: 17px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; padding: 8px 14px; font-size: 15px; font-weight: 500;
  color: rgba(17,41,74,.72); border-radius: 8px; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px; padding: 10px; border-radius: 10px;
}
.nav__toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(47,134,212,.16) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #fff;
  padding-top: clamp(120px, 17vw, 180px);
  padding-bottom: clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.hero__title { font-size: clamp(34px, 5.6vw, 64px); letter-spacing: -0.03em; }
.hero__sub { color: #cbdcf0; font-size: clamp(16px, 1.8vw, 20px); margin-top: 22px; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats { list-style: none; margin: 48px 0 0; padding: 28px 0 0; display: flex; gap: clamp(24px, 5vw, 56px); border-top: 1px solid var(--line-dark); }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 600; color: #fff; }
.hero__stats span { font-size: 13.5px; color: var(--muted-light); letter-spacing: .02em; }
.hero__stats strong { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero__media { position: sticky; top: clamp(96px, 11vh, 124px); }
.hero__media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.10);
  aspect-ratio: 4 / 5;
}
.hero__media-frame::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, transparent 55%, rgba(11,32,58,.45) 100%); pointer-events:none; }
/* Carousel slides (cross-fade) */
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__slide.is-active { opacity: 1; }
/* Carousel dots */
.hero__dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.hero__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 100px; background: rgba(255,255,255,.5); cursor: pointer; transition: width .35s var(--ease), background .3s; }
.hero__dot.is-active { width: 22px; background: #fff; }
.hero__dot:hover { background: rgba(255,255,255,.82); }
.hero__dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hero__badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.96); color: var(--ink);
  padding: 12px 18px; border-radius: 100px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-md); backdrop-filter: blur(6px);
}
.hero__badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.22); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--white); color: var(--ink); padding-block: clamp(40px, 5vw, 60px); border-top: 1px solid var(--line); overflow: hidden; }
.marquee__label { text-align: center; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 30px; }
.marquee__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(34px, 4.5vw, 68px); padding-right: clamp(34px, 4.5vw, 68px); }
.marquee__logo {
  flex-shrink: 0; display: grid; place-items: center;
  transition: transform .35s var(--ease);
}
.marquee__logo:hover { transform: translateY(-3px); }
.marquee__logo img { max-height: 72px; max-width: 210px; width: auto; height: auto; object-fit: contain; display: block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   WORKSPACES
   ========================================================= */
.workspaces { background: var(--white); }
.workspace {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; margin-top: clamp(40px, 6vw, 80px);
}
.workspace:first-of-type { margin-top: 0; }
.workspace--reverse .workspace__media { order: 2; }
.workspace__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; background: var(--paper-2);
}
.workspace__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.workspace:hover .workspace__media img { transform: scale(1.05); }
.workspace__index {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .1em;
  color: #fff; background: rgba(11,32,58,.55); backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.18);
}
.workspace__title { font-size: clamp(26px, 3.2vw, 38px); margin-top: 4px; }
.workspace__desc { color: var(--muted); margin-top: 16px; max-width: 46ch; }
.workspace__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; }
.workspace__tags li {
  font-size: 13.5px; font-weight: 600; font-family: var(--font-display);
  color: var(--ink); background: var(--paper); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 100px;
}
.workspace__tags li::before { content: "\2014"; color: var(--accent-deep); margin-right: 7px; }

/* =========================================================
   AMENITIES
   ========================================================= */
.section--dark { background: var(--navy-900); color: #fff; position: relative; }
.section--dark .section__title { color: #fff; }
.amenities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
.amenity { background: var(--navy-800); padding: clamp(28px, 3.4vw, 44px); transition: background .35s var(--ease); }
.amenity:hover { background: var(--navy-700); }
.amenity__icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: rgba(47,134,212,.10); border: 1px solid rgba(47,134,212,.25); color: var(--accent-bright);
  margin-bottom: 22px; transition: transform .4s var(--ease), background .3s;
}
.amenity:hover .amenity__icon { transform: translateY(-3px); background: rgba(47,134,212,.18); }
.amenity__icon svg { width: 28px; height: 28px; }
.amenity__title { font-size: 20px; }
.amenity__text { color: var(--muted-light); font-size: 15px; margin-top: 10px; }

/* =========================================================
   ABOUT / WHY
   ========================================================= */
.about { background: var(--paper); }
.about__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.about__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__lead { color: var(--muted); margin-top: 18px; font-size: 17px; }
.about__list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 14px; }
.about__list li { position: relative; padding-left: 34px; color: var(--muted); }
.about__list li strong { color: var(--ink); }
.about__list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/72% no-repeat;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact .section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.contact__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }

.contact__form {
  background: var(--navy-800); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 40px);
  display: grid; gap: 18px; align-content: center;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--muted-light); font-family: var(--font-display); }
.field input, .select-wrap select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px; color: #fff;
  background: var(--navy-700); border: 1px solid rgba(255,255,255,.12); border-radius: 11px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder { color: rgba(255,255,255,.35); }
.select-wrap select:invalid { color: rgba(255,255,255,.35); }
.field input:focus, .select-wrap select:focus {
  outline: none; border-color: var(--accent); background: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(47,134,212,.15);
}
.field input:user-invalid { border-color: #c9534a; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select-wrap option { color: #fff; background: var(--navy-700); }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--accent-bright); border-bottom: 2px solid var(--accent-bright);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.contact__note { font-size: 13px; color: var(--muted-light); margin: 2px 0 0; text-align: center; }
.contact__note.is-error { color: #f0a39c; }
.contact__note.is-ok { color: var(--wa); }

.contact__info { display: grid; gap: 20px; }
.info-card { background: var(--navy-800); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); }
.info-card__title { font-size: 22px; margin-bottom: 22px; color: #fff; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; }
.info-list__ico { flex-shrink: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(47,134,212,.10); border: 1px solid rgba(47,134,212,.22); color: var(--accent-bright); }
.info-list__ico svg { width: 22px; height: 22px; }
.info-list strong { display: block; font-family: var(--font-display); font-size: 14px; color: #fff; margin-bottom: 3px; }
.info-list span { font-size: 14.5px; color: var(--muted-light); }
.info-list a:hover { color: var(--accent-bright); }

.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); height: 240px; filter: grayscale(.25) contrast(1.05); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-frame--full { grid-column: 1 / -1; height: clamp(280px, 32vw, 400px); }
/* Crop the Google My Maps title bar by pushing the iframe up and clipping it */
.map-frame--full iframe { height: calc(100% + 78px); margin-top: -78px; }
/* Overlay blocks scroll-zoom by default; a click unlocks the map so pins are clickable */
.map-frame__overlay { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; background: transparent; cursor: pointer; display: grid; place-items: end center; padding: clamp(10px, 1.6vw, 16px); }
.map-frame.is-active .map-frame__overlay { pointer-events: none; }
.map-frame__overlay:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.map-frame__hint {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 500; font-size: 12px; color: rgba(255,255,255,.9);
  background: rgba(15, 58, 102, 0.55); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  padding: 7px 13px; border-radius: 100px; border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.map-frame__hint svg { width: 13px; height: 13px; color: var(--accent-bright); }
.map-frame.is-active .map-frame__hint { opacity: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy-900); color: #fff; padding-top: clamp(56px, 8vw, 88px); border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer__brand p { color: var(--muted-light); font-size: 15px; margin-top: 20px; max-width: 34ch; }
.footer__col h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 600; }
.footer__col a:not(.btn) { display: block; color: var(--muted-light); font-size: 15px; margin-bottom: 11px; transition: color .25s; }
.footer__col a:not(.btn):hover { color: #fff; }
.footer__col p { color: var(--muted-light); font-size: 15px; margin: 0 0 12px; }
.footer__col .btn { margin-top: 4px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.07); padding-block: 22px; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.fab-wa {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  transition: transform .35s var(--ease), box-shadow .35s;
  animation: fab-pulse 2.8s ease-in-out infinite;
}
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }
.fab-wa:hover { transform: scale(1.08); box-shadow: 0 18px 38px -10px rgba(37,211,102,.85); }
@keyframes fab-pulse { 0%, 100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0); } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: .08s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee__track, .fab-wa { animation: none !important; }
}

/* =========================================================
   WORKSPACES CTA (homepage)
   ========================================================= */
.workspaces__cta {
  margin-top: clamp(44px, 6vw, 76px);
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.workspaces__cta-text { color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); max-width: 46ch; margin: 0; }
.btn__arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   ACTIVE / SOLID NAV (sub-pages)
   ========================================================= */
.nav--solid { background: var(--white); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* =========================================================
   PAGE HERO (sub-page header)
   ========================================================= */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(120% 90% at 85% -20%, rgba(47,134,212,.16) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding-top: clamp(118px, 16vw, 168px);
  padding-bottom: clamp(48px, 7vw, 84px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(75% 70% at 60% 20%, #000 0%, transparent 78%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero__title { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.03em; }
.page-hero__sub { color: var(--muted-light); font-size: clamp(16px, 1.7vw, 19px); margin-top: 20px; max-width: 620px; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted-light); margin-bottom: 20px; }
.crumbs a { transition: color .25s; }
.crumbs a:hover { color: var(--accent-bright); }
.crumbs span[aria-hidden] { color: var(--navy-500); }

/* =========================================================
   GALLERY GRID (masonry)
   ========================================================= */
.gallery { background: var(--white); }
/* Per-location gallery sections */
.gallery-loc { padding-block: clamp(56px, 8vw, 104px); background: var(--white); }
.gallery-loc--alt { background: var(--paper); }
.gallery-loc .section__head { margin-bottom: clamp(32px, 5vw, 52px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  grid-auto-flow: row dense;
  gap: 18px;
  align-items: start;
}
.gallery-item {
  position: relative; margin: 0;
  grid-row-end: span 12; /* fallback before JS measures the image */
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: var(--paper-2); box-shadow: var(--shadow-sm);
}
.gallery-item img { display: block; width: 100%; height: auto; transition: transform 1s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  border-radius: var(--radius); pointer-events: none;
}
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 48px 16px 15px; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  background: linear-gradient(transparent, rgba(11,32,58,.85));
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover .gallery-item__cap,
.gallery-item:focus-within .gallery-item__cap { opacity: 1; transform: none; }
.gallery-item__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy-900); background: var(--accent-bright);
  padding: 4px 10px; border-radius: 100px;
}
.gallery-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Gallery CTA band */
.gallery-cta {
  margin-top: clamp(48px, 7vw, 88px); text-align: center;
  background:
    radial-gradient(120% 120% at 50% -30%, rgba(47,134,212,.16) 0%, transparent 60%),
    var(--navy-900);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 48px);
}
.gallery-cta__title { font-size: clamp(24px, 3.4vw, 40px); color: #fff; }
.gallery-cta__text { color: var(--muted-light); margin: 14px auto 28px; max-width: 52ch; }
.gallery-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 28px); align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--navy-800); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--navy-700);
  border-color: rgba(47,134,212,.55);
  box-shadow: 0 30px 70px -32px rgba(0,0,0,.6);
}
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-900); background: var(--accent-grad);
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(47,134,212,.7);
}
.price-card__name { font-size: 22px; color: #fff; }
.price-card__for { color: var(--muted-light); font-size: 14px; margin-top: 5px; }
.price-card__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; margin: 22px 0 6px; }
.price-card__from { width: 100%; font-size: 13px; color: var(--muted-light); letter-spacing: .04em; }
.price-card__currency { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #fff; align-self: flex-start; margin-top: 4px; }
.price-card__amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 4.5vw, 50px); line-height: 1; color: #fff; }
.price-card__period { color: var(--muted-light); font-size: 14px; }
.price-card__note { color: var(--muted-light); font-size: 13px; margin: 0; }
.price-card__features { list-style: none; padding: 22px 0 0; margin: 22px 0 28px; display: grid; gap: 13px; flex: 1; border-top: 1px solid var(--line-dark); }
.price-card__features li { position: relative; padding-left: 28px; color: var(--muted-light); font-size: 14.5px; line-height: 1.5; }
.price-card__features li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px;
  background: var(--accent-bright);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing__foot { text-align: center; margin-top: clamp(28px, 4vw, 46px); color: var(--muted-light); font-size: 15px; }
.pricing__foot a { color: var(--accent-bright); font-weight: 600; }
.pricing__foot a:hover { text-decoration: underline; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--white); }
.testimonials .container { max-width: 1400px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.4vw, 32px); }
.testimonial {
  position: relative; display: flex; flex-direction: column; gap: 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(47,134,212,.4); }
.testimonial__mark {
  position: absolute; top: clamp(14px, 2vw, 22px); right: clamp(20px, 3vw, 30px);
  font-family: var(--font-display); font-weight: 700; font-size: 72px; line-height: 1;
  color: var(--accent); opacity: .28; pointer-events: none;
}
.testimonial__stars { display: flex; gap: 4px; color: var(--accent); }
.testimonial__stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial__text { margin: 0; color: var(--ink); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.65; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 14px; margin-top: 4px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial__avatar {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent-grad);
  color: var(--navy-900); font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.testimonial__meta { display: flex; flex-direction: column; }
.testimonial__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial__role { font-size: 13px; color: var(--muted); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 9, 11, 0.93);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; animation: lb-fade .25s var(--ease); }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { margin: 0; display: flex; flex-direction: column; gap: 14px; max-width: min(1100px, 92vw); }
.lightbox__stage img {
  display: block; margin-inline: auto; width: auto; height: auto;
  max-width: 100%; max-height: 78vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.lightbox__cap { text-align: center; color: var(--muted-light); font-family: var(--font-display); font-size: 14px; }
.lightbox__close, .lightbox__nav {
  position: absolute; border: 0; color: #fff; background: rgba(255,255,255,.10);
  display: grid; place-items: center; cursor: pointer; transition: background .25s, transform .25s;
}
.lightbox__close { top: clamp(12px, 3vw, 24px); right: clamp(12px, 3vw, 24px); width: 48px; height: 48px; border-radius: 50%; font-size: 30px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; }
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav--prev { left: clamp(8px, 2vw, 28px); }
.lightbox__nav--next { right: clamp(8px, 2vw, 28px); }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__count { position: absolute; bottom: clamp(14px, 3vw, 26px); left: 50%; transform: translateX(-50%); color: var(--muted-light); font-size: 13px; letter-spacing: .08em; }
.lightbox__close:focus-visible, .lightbox__nav:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
body.lb-open { overflow: hidden; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { position: static; max-width: 460px; margin-inline: auto; width: 100%; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { order: 2; max-width: 560px; }
  .contact__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    background: var(--white); padding: 96px 24px 32px;
    transform: translateX(105%); transition: transform .42s var(--ease);
    box-shadow: -30px 0 60px -20px rgba(17,41,74,.35); border-left: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { padding: 14px 16px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 16px 0 0; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; z-index: 99; background: rgba(8,9,11,.55); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .workspace, .workspace--reverse .workspace__media { grid-template-columns: 1fr; order: 0; }
  .workspace__media { order: -1; }
  .amenities__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 22px 36px; }
  .footer__bar-inner { justify-content: center; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item__cap { opacity: 1; transform: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --radius-lg: 18px; }
  .amenities__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-cta__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -18px; }
  .brand__tile { width: 23px; height: 23px; font-size: 13px; }
}
