/* ========================================================
   COMPONENTS
   ======================================================== */

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s var(--ease-out);
}
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,124,135,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,124,135,0.22) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: loaderGridPulse 3s var(--ease-out) infinite;
  opacity: 0.06;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}
.loader-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(25,124,135,0.18));
  animation: loaderFloat 2s var(--ease-out) infinite alternate;
  position: relative;
  z-index: 2;
}
.loader-bar {
  position: relative;
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(23,49,58,0.10);
  border-radius: 999px;
  overflow: hidden;
  z-index: 2;
}
.loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: loaderBar 1.4s var(--ease-out) infinite;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out), padding 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(248,251,250,0.92);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: var(--line);
  padding: 12px var(--gutter);
  box-shadow: 0 8px 28px rgba(22,48,58,0.10);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease-out);
}
.navbar:not(.scrolled) .nav-link { color: rgba(242,246,247,0.82); }
.navbar:not(.scrolled) .nav-link:hover { color: #ffffff; }
.navbar:not(.scrolled) .hamburger span { background: #ffffff; }
.navbar:not(.scrolled) .hamburger { border-color: rgba(255,255,255,0.22); }
.navbar:not(.scrolled) .nav-phone {
  background: rgba(8,20,29,0.56);
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.navbar:not(.scrolled) .nav-phone:hover {
  background: #ffffff;
  color: var(--brand-dim);
  border-color: #ffffff;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-phone {
  margin-left: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-glow);
  color: var(--brand);
  border: 1px solid rgba(25,124,135,0.20);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s var(--ease-out);
}
.nav-phone:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: background 0.3s;
}
.hamburger:hover { background: rgba(25,124,135,0.06); }
.hamburger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, top 0.4s var(--ease-out);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(248,251,250,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px var(--gutter) 40px;
  gap: 14px;
  animation: fadeIn 0.3s var(--ease-out);
}
.mobile-menu a {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.25s, transform 0.25s var(--ease-out);
}
.mobile-menu a:hover { color: var(--brand); transform: translateX(8px); }
.mobile-menu-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-foot span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.mobile-menu-foot a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
}

@media (max-width: 840px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
  background: #0b1d25;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .ph {
  width: 100%; height: 100%;
  animation: heroZoom 20s var(--ease-out) infinite alternate;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  animation: heroZoom 20s var(--ease-out) infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,28,36,0.91) 0%, rgba(9,28,36,0.68) 38%, rgba(9,28,36,0.14) 100%),
    linear-gradient(0deg, rgba(9,28,36,0.78) 0%, rgba(9,28,36,0.10) 55%, rgba(9,28,36,0.30) 100%);
  pointer-events: none;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.85;
}
.mesh-blob.m1 {
  top: -10%; right: -5%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: rgba(25,124,135,0.14);
  animation: meshShift1 18s ease-in-out infinite;
}
.mesh-blob.m2 {
  bottom: -15%; left: -10%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: rgba(182,128,61,0.10);
  animation: meshShift2 22s ease-in-out infinite;
}
.mesh-blob.m3 {
  top: 30%; left: 30%;
  width: 40vw; height: 40vw;
  max-width: 600px; max-height: 600px;
  background: rgba(92,128,138,0.12);
  animation: meshShift3 15s ease-in-out infinite;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-text { max-width: 900px; }
.hero h1,
.hero .hero-lead,
.hero .btn-ghost {
  color: #f2f6f7;
}
.hero .eyebrow { color: #74c1c8; }
.hero .eyebrow::before { background: #74c1c8; }
.hero h1 {
  font-size: clamp(30px, 4.2vw, 62px);
  margin-bottom: 28px;
}
.hero-lead {
  max-width: 580px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.glass-panel {
  border: 1px solid rgba(25,124,135,0.18);
  border-top: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  background: rgba(248,251,250,0.90);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  padding: 32px;
  box-shadow: 0 24px 54px rgba(9,28,36,0.24), inset 0 1px 0 rgba(255,255,255,0.65);
}
/* glass panel head */
.glass-panel-head { margin-bottom: 20px; }
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #73c58a;
  margin-bottom: 12px;
}
.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73c58a;
  flex-shrink: 0;
  animation: availPulse 2s ease-in-out infinite;
}
.glass-panel-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.glass-panel-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.glass-panel-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
/* contact items */
.glass-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s var(--ease-out);
  margin-bottom: 4px;
}
.glass-contact-item:hover { background: rgba(25,124,135,0.07); }
.glass-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(25,124,135,0.09);
  border: 1px solid rgba(25,124,135,0.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.glass-contact-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.glass-contact-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.glass-panel-hours-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--muted);
  padding: 0 10px;
  margin: 14px 0 18px;
}
.glass-panel-hours-note svg { flex-shrink: 0; color: var(--brand); opacity: 0.7; }
.glass-panel .btn {
  width: 100%;
  justify-content: center;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--brand) 0%, transparent 100%);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .glass-panel { display: none; }
  .scroll-indicator { display: none; }
  .hero-bg img { object-position: 68% 50%; }
  .hero-bg::after {
    background:
      linear-gradient(0deg, rgba(9,28,36,0.90) 0%, rgba(9,28,36,0.55) 45%, rgba(9,28,36,0.15) 100%);
  }
}

@media (max-width: 640px) {
  .hero-bg {
    bottom: auto;
    height: min(62dvh, 560px);
  }

  .hero-bg .ph,
  .hero-bg img {
    animation: none;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
  }

  .hero-bg::after {
    background:
      linear-gradient(0deg, #091c24 0%, rgba(9,28,36,0.92) 33%, rgba(9,28,36,0.44) 68%, rgba(9,28,36,0.20) 100%);
  }
}

/* ---------- STATS BAND ---------- */
.stats {
  background: var(--bg-surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 12px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-value.gold { color: var(--gold); }
.stat-value.small { color: var(--ink); }
.stat-label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 24px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .stat:last-child { border-bottom: 0; }
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg-surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-media-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(25,124,135,0.18);
  border-radius: calc(var(--radius-xl) + 12px);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(143,100,47,0.20);
  border: 4px solid var(--bg-surface);
}
.about-badge-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; }
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-badge { width: 90px; height: 90px; bottom: -16px; right: -16px; }
  .about-badge-num { font-size: 26px; }
}

/* ---------- MISSION ---------- */
.mission { background: var(--bg-base); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mission-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-radius: 10px;
  color: var(--brand);
  flex-shrink: 0;
}
.mission-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin: 0;
}
.mission-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.mission-values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mission-values li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.mission-values li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- SERVICES ---------- */
.services { background: var(--bg-deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(800px);
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(25,124,135,0.26);
  box-shadow: var(--shadow-brand);
}
.service-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img .ph { width: 100%; height: 100%; }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-img .chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(248,251,250,0.90);
  color: var(--brand-dim);
  border: 1px solid rgba(25,124,135,0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.service-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.service-body h3 { letter-spacing: -0.01em; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(25,124,135,0.12);
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---------- SPECIALTIES ---------- */
.specialties { background: var(--bg-surface); }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.specialty-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
}
.specialty-card .ph {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease-out);
}
.specialty-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.specialty-card:hover .ph { transform: scale(1.08); }
.specialty-card:hover img { transform: scale(1.08); }
.specialty-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,28,36,0.74) 0%, rgba(9,28,36,0.30) 45%, rgba(9,28,36,0.04) 100%);
  transition: background 0.5s var(--ease-out);
}
.specialty-card:hover .specialty-overlay {
  background: linear-gradient(0deg, rgba(9,28,36,0.82) 0%, rgba(9,28,36,0.38) 45%, rgba(25,124,135,0.12) 100%);
}
.specialty-title {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #ffffff;
}
.specialty-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink);
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.specialty-card:hover .specialty-arrow {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: rotate(-45deg);
}
@media (max-width: 720px) { .specialties-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- PROCESS ---------- */
.process { background: var(--bg-deep); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-card {
  position: relative;
  background: var(--bg-deep);
  padding: 40px 36px 44px;
  min-height: 220px;
}
.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--brand) 0%, var(--gold) 100%);
  transition: height 1s var(--ease-out);
  transition-delay: var(--draw-delay, 0ms);
}
.process-card.is-visible::before { height: 100%; }
.process-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.process-card h3 { margin-bottom: 10px; font-size: clamp(18px, 1.6vw, 22px); }
.process-card p { font-size: 14.5px; }
@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- RENTAL ---------- */
.rental { background: var(--bg-surface); }
.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.rental-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.4s var(--ease-out);
}
.rental-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25,124,135,0.26);
  box-shadow: var(--shadow-brand);
}
.rental-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.rental-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rental-img .chip { position: absolute; top: 16px; left: 16px; }
.rental-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.rental-body h3 { font-size: clamp(20px, 2vw, 26px); }
.rental-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rental-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.rental-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-glow);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}
.rental-card .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 900px) { .rental-grid { grid-template-columns: 1fr; } }

/* ---------- CATALOGS ---------- */
.catalogs { background: var(--bg-deep); }
.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.catalog-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.4s var(--ease-out);
  display: block;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
  border-color: rgba(25,124,135,0.28);
}
.catalog-card .ph { width: 100%; height: 100%; }
.catalog-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catalog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,28,36,0.82) 5%, rgba(9,28,36,0.46) 40%, rgba(9,28,36,0.12) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  gap: 8px;
}
.catalog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9dd2d6;
}
.catalog-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}
.catalog-cta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #dceff0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.catalog-card:hover .catalog-cta { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .catalogs-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CONTACT ---------- */
.contact { background: var(--bg-surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { margin-bottom: 32px; max-width: 480px; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-glow);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25,124,135,0.18);
}
.contact-item-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.contact-item a:hover .contact-item-value { color: var(--brand); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s;
}
.field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease-out);
}
.field:focus-within label { color: var(--brand); }
.field input,
.field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(25,124,135,0.10);
}
.contact-form .btn { margin-top: 8px; }
.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 6vw, 84px) var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 22px;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 14px;
  max-width: 320px;
  color: var(--muted);
}
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--brand); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-link { color: var(--muted); }
.footer-bottom-link:hover { color: var(--brand); }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatingPulse 3s ease-out infinite;
  transition: transform 0.4s var(--ease-spring), background 0.3s;
  cursor: pointer;
}
.floating-cta:hover {
  transform: translateY(-3px) scale(1.04);
  background: #238b96;
  animation-play-state: paused;
}
.floating-cta svg { width: 26px; height: 26px; }
.floating-cta-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.floating-cta:hover .floating-cta-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 600px) {
  .floating-cta { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .floating-cta-label { display: none; }
}

/* ---------- WEBKIT SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 999px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-dim); }
