/* ============================================================
   DENSPARK STUDIO — about.css
   Colors: White bg, Black/Blue nav+footer, Primary Blue btns
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --blue:        #1A56DB;
  --blue-dark:   #1240A8;
  --blue-light:  #3B82F6;
  --black:       #0A0A0A;
  --navy:        #0F172A;
  --white:       #FFFFFF;
  --off-white:   #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-800:    #1F2937;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);

  --nav-h: 72px;

  /* Aliases for convenience */
  --max-w: 1280px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Cursor ─────────────────────────────────────────────────── */
.cursor,
.cursor-follower {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
  }

  .cursor-follower {
    display: block;
    position: fixed;
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(26, 86, 219, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: left 0.12s var(--ease-out), top 0.12s var(--ease-out), transform 0.3s, opacity 0.2s;
  }

  body:hover .cursor,
  body:hover .cursor-follower { opacity: 1; }

  a:hover ~ #cursor,
  button:hover ~ #cursor { transform: translate(-50%, -50%) scale(2); }
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  height: 64px;
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 600; letter-spacing: 0.12em; color: var(--white);
}
.logo-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--blue-light); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85); padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--blue-light);
  transform: scaleX(0); transition: transform var(--transition); border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-book {
  display: inline-flex; align-items: center;
  background: var(--blue); color: var(--white);
  font-size: 0.85rem; font-weight: 500;
  padding: 10px 22px; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.03em;
}
.btn-book:hover {
  background: var(--blue-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 7px;
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: #c8d9ee; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SERVICES MEGA MENU ──────────────────────────────────── */
.services-chevron {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid #7fa3d4;
  border-bottom: 1.5px solid #7fa3d4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.has-mega:hover .services-chevron,
.has-mega.open  .services-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #0e1f3d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px;
  width: 660px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.mega-arrow {
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #0e1f3d;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.has-mega:hover .mega-menu,
.has-mega.open  .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Hide desktop mega completely on mobile */
@media (max-width: 900px) {
  .has-mega .mega-menu { display: none !important; }
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mega-column h4 {
  font-size: 10px; font-weight: 600; color: #4a90d9;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin: 0 0 10px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(74,144,217,0.2);
}
.mega-column a {
  display: block; color: #a8c2e0; font-size: 12.5px;
  padding: 4px 0; text-decoration: none;
  transition: color 0.15s, padding-left 0.15s; line-height: 1.5;
}
.mega-column a:hover { color: #ffffff; padding-left: 6px; }
.mega-footer {
  margin-top: 18px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 10px; color: #3d6a9c;
  letter-spacing: 1px; text-transform: uppercase; text-align: center;
}

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  background: #0a1628;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0 20px 24px;
  max-height: calc(100vh - 64px); /* never taller than the viewport */
  overflow-y: auto;               /* scroll if content overflows    */
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }

.mobile-nav-links { list-style: none; padding: 8px 0 0; margin: 0; }

.mobile-nav-links > li > a,
.mobile-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  color: #c8d9ee; font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; font-family: inherit;
  transition: color 0.2s;
}
.mobile-nav-links > li > a:hover,
.mobile-services-toggle:hover { color: #ffffff; }

.mobile-services-chevron {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid #4a90d9;
  border-bottom: 2px solid #4a90d9;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mobile-services-toggle.open .mobile-services-chevron,
.mobile-services-item.open .mobile-services-chevron {
  transform: rotate(-135deg);
}

/* Mobile mega accordion */
.mobile-mega {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 12px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-services-item.open .mobile-mega {
  max-height: 1200px;           /* enough room for all links        */
  opacity: 1;
  padding: 8px 0 4px 12px;
}
.mobile-mega .mega-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
.mobile-mega .mega-column h4 { font-size: 10px; }
.mobile-mega .mega-column a {
  font-size: 12px; padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-mega .mega-column a:last-child { border-bottom: none; }
/* ═══ WHAT WE DO DROPDOWN — matches Services mega-menu style ═══ */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--t) var(--ease);
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.nav-drop-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform var(--t);
  border-radius: 2px;
}
.nav-drop-btn:hover,
.nav-drop-btn[aria-expanded="true"] { color: var(--white); }
.nav-drop-btn:hover::after,
.nav-drop-btn[aria-expanded="true"]::after { transform: scaleX(1); }

.nav-drop-chevron {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid #7fa3d4;
  border-bottom: 1.5px solid #7fa3d4;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.nav-drop-btn[aria-expanded="true"] .nav-drop-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 660px;
  background: #0e1f3d;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  z-index: 1001;
}
.nav-drop-panel::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #0e1f3d;
  border-left: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-drop-panel.open,
.nav-dropdown:hover .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-drop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.nav-drop-col h5 {
  font-size: 10px;
  font-weight: 600;
  color: #4a90d9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(74,144,217,.2);
}
.nav-drop-col a {
  display: block;
  color: #a8c2e0;
  font-size: 12.5px;
  padding: 4px 0;
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  line-height: 1.5;
}
.nav-drop-col a:hover { color: #ffffff; padding-left: 6px; }
.nav-drop-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 10px;
  color: #3d6a9c;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 900px) {
      .nav-dropdown { display: none; }
      .mobile-whatwedo-item { display: list-item; }
    }
/* Mobile CTA */
.btn-book-mobile {
  display: block; margin-top: 16px;
  background: #2563b0; color: #ffffff;
  text-align: center; padding: 13px; border-radius: 9px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.btn-book-mobile:hover { background: #1d50a0; }

.mobile-info {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-info span { font-size: 11px; color: #3d6a9c; }

/* ── Responsive breakpoint ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-book  { display: none; }
  .menu-toggle { display: flex; }
}

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease-out) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 4rem;
  animation: heroFadeUp 1s var(--ease-out) 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.bc-sep { color: rgba(255, 255, 255, 0.3); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero-title em {
  font-style: italic;
  color: var(--blue-light);
}

.page-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  line-height: 1.7;
}

.page-hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: heroFadeUp 1s var(--ease-out) 0.7s both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scrollLine 1.8s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ── Shared Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Story Section ─────────────────────────────────────────── */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.story-image-wrap:hover .story-img-frame img {
  transform: scale(1.04);
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.story-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--blue);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.35);
  z-index: 2;
}

.badge-year {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  text-align: center;
}

.story-accent-box {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  border: 2px solid var(--blue);
  opacity: 0.25;
  z-index: 0;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.story-title em {
  font-style: italic;
  color: var(--blue);
}

.story-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.sig-line {
  width: 40px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.sig-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sig-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  font-style: italic;
}

.sig-role {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Story Services ─────────────────────────────────────────── */
.story-intro p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.story-services {
  margin: 2.5rem 0;
}

.services-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
  letter-spacing: 0.05em;
}

.services-intro {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.services-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
}

.services-list strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}

/* ── Mission / Vision / Values ─────────────────────────────── */
.mvv-section {
  padding: 90px 0;
  background: var(--gray-100);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.mvv-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s;
}

.mvv-card:hover .mvv-icon-wrap {
  background: var(--blue);
}

.mvv-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  transition: stroke 0.25s;
}

.mvv-card:hover .mvv-icon-wrap svg {
  stroke: var(--white);
}

.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.mvv-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.mvv-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease;
}

.mvv-card:hover .mvv-expand {
  max-height: 400px;
  opacity: 1;
}

.mvv-more {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  cursor: pointer;
  transition: opacity 0.25s;
}

.mvv-card:hover .mvv-more { opacity: 0; }

.mvv-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mvv-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-600);
  position: relative;
  padding-left: 1rem;
}

.mvv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.mvv-list strong { color: var(--black); }

@media (hover: none) {
  .mvv-expand { max-height: none; opacity: 1; }
  .mvv-more { display: none; }
}

/* ── Stats Section ─────────────────────────────────────────── */
.stats-section {
  position: relative;
  padding: 90px 0;
  background: var(--navy);
  overflow: hidden;
}

.stats-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition-delay: var(--delay, 0s);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-sup {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--blue);
  vertical-align: super;
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* ── Values Section ────────────────────────────────────────── */
.values-section {
  padding: 100px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.value-card:hover::before { transform: scaleX(1); }

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.value-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.25s;
}

.value-card:hover .value-icon-wrap {
  background: var(--blue);
}

.value-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  transition: stroke 0.25s;
}

.value-card:hover .value-icon-wrap svg {
  stroke: var(--white);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── Team Section ──────────────────────────────────────────── */
.team-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.team-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.team-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--gray-100) 25%,
    var(--gray-200) 50%,
    var(--gray-100) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 0;
}

.team-img-wrap.loaded::before { display: none; }

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.team-card:hover .team-img-wrap img { transform: scale(1.06); }

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  z-index: 2;
}

.team-card:hover .team-img-overlay { opacity: 1; }

.team-info {
  padding: 1.1rem 1.25rem 1.4rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.team-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.4;
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  flex-shrink: 0;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  font-style: italic;
}

.marquee-content .dot {
  color: var(--blue);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80%; left: 5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.cta-inner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.footer-logo span { color: var(--blue); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li,
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255, 255, 255, 0.6); }

/* ── Chat Widget ───────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
}

.chat-toggle-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
  transition: background 0.25s, transform 0.3s var(--ease-out), box-shadow 0.25s;
  position: relative;
}

.chat-toggle-btn:hover {
  background: var(--blue-dark);
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.45);
}

.chat-toggle-btn svg { width: 22px; height: 22px; }

.chat-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.chat-window {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: chatOpen 0.3s var(--ease-out) both;
}

.chat-window.open { display: flex; }

@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
  background: var(--navy);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.chat-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-close-btn {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  padding: 0.2rem;
  transition: color 0.2s;
}

.chat-close-btn:hover { color: var(--white); }

.chat-messages {
  padding: 1.1rem;
  min-height: 120px;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--off-white);
}

.chat-msg {
  font-size: 0.84rem;
  line-height: 1.55;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  max-width: 85%;
}

.chat-msg.received {
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-msg.sent {
  background: var(--blue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

#chatInput {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 0.5rem 0.9rem;
  font-size: 0.84rem;
  font-family: var(--font-body);
  color: var(--black);
  outline: none;
  background: var(--gray-100);
  transition: border-color 0.2s;
}

#chatInput:focus { border-color: var(--blue); }

#chatSend {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.2s;
}

#chatSend:hover {
  background: var(--blue-dark);
  transform: scale(1.08);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 3rem; max-width: 640px; margin: 0 auto; }
  .story-img-badge { bottom: -1rem; right: -0.5rem; }

  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.07); }
  .stat-item:last-child { border-bottom: none; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-inner { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
  .cta-inner p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .btn-book { display: none; }
  .menu-toggle { display: flex; }
  .nav-container { height: 64px; }
  .mobile-menu { top: 64px; }

  .page-hero { height: 60vh; min-height: 400px; }
  .page-hero-content { padding: 0 1.25rem 2.5rem; }
  .page-hero-scroll { display: none; }

  .story-section { padding: 60px 0; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

  .chat-window { width: 290px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { padding: 2rem 1.25rem; }
  .chat-widget { bottom: 1rem; right: 1rem; }
  .chat-window { width: calc(100vw - 2rem); right: 0; }
  .story-img-badge { right: 0; bottom: -0.75rem; }
}