/* ============================================================
   Skyline HVAC — Premium Glassmorphism
   Palette: deep navy / cool sky / warm coral accent
   ============================================================ */

:root {
  /* Base */
  --bg:           #eef3f8;
  --bg-2:         #dde7f1;
  --paper:        #ffffff;
  --ink:          #0b1f3a;
  --ink-soft:     #233a5c;
  --ink-mute:     #5b6c84;
  --ink-faint:    #94a3b8;

  /* Glass */
  --glass:        rgba(255, 255, 255, 0.55);
  --glass-2:      rgba(255, 255, 255, 0.30);
  --glass-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 30px 80px -30px rgba(11, 31, 58, 0.35),
                  0 12px 30px -12px rgba(11, 31, 58, 0.18);

  /* Accents — cool sky + warm coral */
  --sky-1:        #76c8ff;
  --sky-2:        #2f8fd6;
  --sky-3:        #1a5fa8;
  --coral:        #ff7a59;
  --coral-2:      #ff5d36;
  --coral-deep:   #d33b1a;

  /* Mesh stops */
  --mesh-1:       #c7e0f5;   /* pale sky */
  --mesh-2:       #ffd0b8;   /* peach */
  --mesh-3:       #b5d3ff;   /* powder */
  --mesh-4:       #e8e3f5;   /* lavender mist */

  /* Lines */
  --line:         rgba(11, 31, 58, 0.10);
  --line-2:       rgba(11, 31, 58, 0.18);

  /* Type */
  --display:      'Fraunces', 'Times New Roman', serif;
  --body:         'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Easing */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  /* Radius */
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 36px;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea, button { font: inherit; color: inherit; }

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

/* ============== SPLASH ============== */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; gap: 1.2rem;
  background: var(--ink);
  color: #f4f9ff;
  animation: splashSafety .01s 4.2s forwards;
  transition: opacity .8s var(--ease-out), clip-path .9s var(--ease-out);
}
.splash.is-out {
  opacity: 0; pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-mark {
  display: grid; place-items: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(118, 200, 255, 0.10);
  border: 1px solid rgba(118, 200, 255, 0.25);
  animation: splashPulse 1.6s var(--ease-in-out) infinite;
}
.splash-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: .02em;
  color: rgba(244, 249, 255, .9);
}
@keyframes splashPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(118, 200, 255, .35); }
  50%      { transform: scale(1.06); box-shadow: 0 0 0 18px rgba(118, 200, 255, 0); }
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* ============== AMBIENT BACKGROUND ============== */
.ambient {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #f3f7fc 0%, var(--bg) 40%, #e7eef7 100%);
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px) saturate(140%);
  opacity: .85;
  will-change: transform;
}
.blob-1 {
  width: 65vw; height: 65vw; top: -25vw; left: -15vw;
  background: radial-gradient(circle, var(--mesh-3), transparent 70%);
  animation: blobDrift1 32s ease-in-out infinite;
}
.blob-2 {
  width: 55vw; height: 55vw; top: 30vh; right: -18vw;
  background: radial-gradient(circle, var(--mesh-2), transparent 70%);
  animation: blobDrift2 38s ease-in-out infinite;
}
.blob-3 {
  width: 60vw; height: 60vw; bottom: -25vw; left: 20vw;
  background: radial-gradient(circle, var(--mesh-4), transparent 70%);
  animation: blobDrift3 42s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(8vw, 6vh) scale(1.1); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-10vw, -4vh) scale(.95); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(5vw, -8vh) scale(1.08); }
}
.ambient-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.12 0 0 0 0 0.22 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04;
  mix-blend-mode: multiply;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); margin: 0; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); text-wrap: balance; }
h3 { font-size: 1.35rem; font-weight: 500; letter-spacing: -0.01em; }
h4 { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); }
em { font-style: italic; font-weight: 400; color: var(--sky-3); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--sky-3);
  margin: 0 0 1.2rem;
}

/* ============== GLASS PRIMITIVE ============== */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
}
.glass-strong {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
}
@supports not (backdrop-filter: blur(20px)) {
  .glass         { background: rgba(255,255,255,0.85); }
  .glass-strong  { background: rgba(255,255,255,0.94); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 500;
  font-size: .92rem;
  line-height: 1;
  letter-spacing: .005em;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out);
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 70%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(255, 93, 54, .45),
              inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(255, 93, 54, .55),
              inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-ghost {
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.85);
  border-color: var(--ink-soft);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2rem;
  margin: 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 40px -16px rgba(11,31,58,.25);
  transition: transform .45s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 48px -18px rgba(11,31,58,.32);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.nav-brand strong { font-weight: 700; }
.nav-brand-text { line-height: 1; }
.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: .25rem 0;
  transition: color .25s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1.5px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: .55rem; }
.btn-phone svg { color: var(--coral); }
.nav-burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line-2);
  position: relative;
}
.nav-burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease-out), top .35s var(--ease-out);
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 18px; }
.nav-burger span:nth-child(3) { top: 23px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-quote { display: none; }
  .nav-burger { display: block; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + .5rem); left: 0; right: 0;
    padding: 1.4rem 1.6rem 1.6rem;
    border-radius: var(--r-lg);
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    gap: 1.1rem;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .nav { padding: .7rem .9rem .7rem 1.1rem; margin: .6rem; gap: .8rem; }
  .btn-phone span { display: none; }
  .btn-phone { padding: .65rem; }
}

/* ============== LAYOUT ============== */
main { padding-top: 6rem; }
.section {
  position: relative;
  padding: 8rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .section { padding: 5rem 1.2rem; }
}

.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .kicker { justify-content: center; display: flex; }
.section-title { margin-bottom: 1.2rem; }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); }

/* ============== HERO ============== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 4rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  min-height: 86vh;
  min-height: 86svh;
}
.hero-inner { padding-top: 2rem; }
.hero-meta {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  letter-spacing: .005em;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, .22);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46,204,113,.22); }
  50%      { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
}
.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 1.6rem;
  text-wrap: balance;
}
.hero-title span { display: block; }
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--coral) 0%, var(--sky-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.12rem;
  max-width: 50ch;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.trust-rating {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .6rem 1rem;
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}
.stars { color: #f5a623; letter-spacing: 0.05em; font-size: .95rem; }
.trust-numbers { font-size: .85rem; color: var(--ink-soft); display: inline-flex; gap: .4rem; align-items: baseline; }
.trust-numbers strong { color: var(--ink); font-weight: 600; }
.trust-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  font-size: .82rem;
  color: var(--ink-soft);
}
.trust-pill svg { color: var(--sky-2); }

.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 720px;
}
.hero-figure-glow {
  position: absolute;
  inset: -8% -8%;
  background:
    radial-gradient(40% 40% at 70% 30%, rgba(255, 122, 89, .35), transparent 70%),
    radial-gradient(50% 50% at 25% 70%, rgba(118, 200, 255, .55), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero-figure-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 50px 100px -30px rgba(11,31,58,.5),
    0 20px 40px -15px rgba(11,31,58,.3),
    inset 0 1px 0 rgba(255,255,255,.6);
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transition: transform .8s var(--ease-out);
}
.hero-figure-frame:hover {
  transform: perspective(1400px) rotateY(-1deg) rotateX(1deg) translateY(-6px);
}
.hero-figure-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.hero-figure-frame:hover img { transform: scale(1.04); }
.hero-figure-badge {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  padding: .7rem 1.1rem;
  border-radius: var(--r);
  background: rgba(11, 31, 58, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  display: flex; flex-direction: column; gap: .15rem;
}
.badge-eyebrow { font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--sky-1); }
.badge-title { font-size: .92rem; font-weight: 500; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 2rem 1.2rem 4rem; }
  .hero-figure { aspect-ratio: 4 / 3; max-height: 520px; }
  .hero-figure-frame { transform: none; }
}

/* ============== MARQUEE ============== */
.marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2rem 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 2.4rem;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink-soft);
  animation: marqueeSlide 38s linear infinite;
  padding-left: 2.4rem;
}
.marquee-track span:nth-child(even) { color: var(--coral); }
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== SERVICES ============== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.service-card {
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .35s var(--ease-out);
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -28px rgba(11,31,58,.42);
  border-color: rgba(255,255,255,.95);
}
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(118, 200, 255, .25), rgba(255, 122, 89, .25));
  color: var(--ink);
  margin-bottom: .4rem;
}
.service-card h3 { margin: 0; }
.service-card p { margin: 0; font-size: .95rem; }
.service-bullets {
  list-style: none; margin: .4rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .85rem; color: var(--ink-soft);
}
.service-bullets li {
  position: relative;
  padding-left: 1.2rem;
}
.service-bullets li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
}
.service-cta {
  margin-top: 2.4rem;
  text-align: center;
  font-size: .95rem;
}
.service-cta a {
  color: var(--sky-3);
  border-bottom: 1px solid currentColor;
  transition: color .25s var(--ease-out);
}
.service-cta a:hover { color: var(--coral); }

/* ============== WORK GRID ============== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem;
}
.work-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px -18px rgba(11,31,58,.3);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.work-card.work-large { grid-column: span 2; grid-row: span 2; }
.work-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .6s var(--ease-out);
  filter: saturate(1.04);
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -22px rgba(11,31,58,.45); }
.work-card:hover img { transform: scale(1.05); filter: saturate(1.12); }
.work-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.4rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,58,.85) 100%);
  display: flex; flex-direction: column; gap: .2rem;
}
.work-card figcaption .kicker {
  margin: 0; color: var(--sky-1); font-size: .68rem;
}
.work-card figcaption strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
}

@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .work-card.work-large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .work-card.work-large { grid-column: span 1; }
}

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 4rem;
  align-items: center;
}
.about-text p { font-size: 1.05rem; max-width: 60ch; }
.about-quote {
  margin: 2rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--coral);
  border-radius: var(--r);
}
.about-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 .5rem;
  line-height: 1.35;
}
.about-quote footer {
  font-size: .82rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.about-cta {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat {
  padding: 1.8rem 1.4rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.stat-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: .15rem;
}
.stat-unit {
  font-size: .55em;
  color: var(--coral);
  font-style: italic;
}
.stat-label {
  font-size: .82rem;
  color: var(--ink-mute);
  letter-spacing: .02em;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============== REVIEWS ============== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.review-card {
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -30px rgba(11,31,58,.4); }
.review-stars { color: #f5a623; letter-spacing: 0.1em; font-size: 1.05rem; }
.review-card p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.review-card footer {
  font-size: .82rem;
  color: var(--ink-mute);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.review-card footer strong { color: var(--ink); font-weight: 600; }

/* ============== ÁREA ============== */
.area-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 3rem;
  padding: 3.5rem;
  align-items: center;
}
.area-text h2 { margin-bottom: 1.2rem; }
.area-text p { font-size: 1.05rem; }
.area-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.info-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-mute);
  margin-bottom: .4rem;
}
.info-value {
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.45;
}
.info-value a { color: var(--coral); font-weight: 500; }
.area-cities {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
  align-content: flex-start;
}
.area-cities li {
  padding: .55rem 1rem;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-soft);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.area-cities li:hover {
  background: rgba(255,255,255,.9);
  border-color: var(--sky-2);
  color: var(--ink);
}
@media (max-width: 900px) {
  .area-inner { grid-template-columns: 1fr; padding: 2rem 1.6rem; }
  .area-info { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ============== FAQ ============== */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-item {
  padding: 1.4rem 1.6rem;
  transition: background .3s var(--ease-out);
}
.faq-item[open] { background: rgba(255,255,255,.85); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--coral);
  transition: transform .35s var(--ease-out);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin: .8rem 0 0;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .faq-list { grid-template-columns: 1fr; }
}

/* ============== CTA / FORM ============== */
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 3.5rem;
  align-items: start;
}
.cta-text .section-title { margin-bottom: 1rem; }
.cta-direct {
  display: flex; gap: .7rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex; flex-direction: column; gap: .4rem;
}
.field-full { grid-column: span 2; }
.field span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  padding: .85rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.7);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
  font-family: var(--body);
}
.field textarea { resize: vertical; min-height: 90px; font-family: var(--body); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(118, 200, 255, .22);
}
.form-note {
  grid-column: span 2;
  font-size: .75rem;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}
.form-success {
  grid-column: span 2;
  margin: 0;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  background: rgba(46, 204, 113, .12);
  color: #1b6b3f;
  font-size: .92rem;
  border: 1px solid rgba(46, 204, 113, .25);
}
@media (max-width: 900px) {
  .cta-card { grid-template-columns: 1fr; padding: 2rem 1.6rem; }
  .cta-form { grid-template-columns: 1fr; }
  .field-full { grid-column: span 1; }
  .form-note, .form-success { grid-column: span 1; }
}

/* ============== FOOTER ============== */
.footer {
  margin-top: 6rem;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,58,.06) 100%);
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  font-size: .9rem;
  color: var(--ink-mute);
  margin: 1rem 0 0;
}
.footer h4 {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.footer ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .55rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.footer a { transition: color .25s var(--ease-out); }
.footer a:hover { color: var(--coral); }
.footer-bar {
  max-width: 1320px;
  margin: 1.5rem auto 0;
  display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .78rem;
  color: var(--ink-mute);
  letter-spacing: .03em;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============== REVEAL ============== */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .25s; }

/* Defensive — never let split or stagger leave content invisible */
.reveal[data-split],
.reveal-stagger[data-split] {
  opacity: 1;
  transform: none;
}

/* ============== UTILITY ============== */
::selection { background: rgba(255, 122, 89, .35); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .ambient-blob,
  .marquee-track,
  .splash-mark,
  .hero-meta .dot { animation: none !important; }
}
