*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:  #071E3D;
  --navy2: #0b2a52;
  --blue:  #1455A4;
  --sky:   #2196F3;
  --aqua:  #00C8E0;
  --teal:  #00B4C8;
  --white: #FFFFFF;
  --off:   #F2F7FF;
  --text:  #14243C;
  --muted: #5C6F8A;
  --light: #E8F4FF;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(7,30,61,0.97); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  border-bottom: 1px solid rgba(0,200,224,.12);
  transition: background .3s;
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 40px; width: auto; object-fit: contain;
  border-radius: 10px;
}
.nav-logo span { display: none; }
.nav-logo-text { display: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.72); text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--aqua); }
.nav-links a.active { color: var(--aqua); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--aqua);
}
.nav-cta {
  background: var(--aqua); color: var(--navy);
  padding: .5rem 1.3rem; border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: .82rem;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,200,224,.4); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s;
  z-index: 2200;
  position: relative;
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DRAWER OVERLAY ─── */
.nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 2000;
  background: rgba(4,14,32,.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── MOBILE DRAWER ─── */
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  min-height: -webkit-fill-available;
  z-index: 2100;
  background: #071E3D;
  box-shadow: 8px 0 60px rgba(0,0,0,.8);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.4rem 1.6rem 1.2rem;
  border-bottom: 1px solid rgba(0,200,224,.13);
  display: flex; align-items: center; gap: .75rem;
}
.drawer-logo-img {
  height: 42px; width: auto;
  object-fit: contain; border-radius: 6px;
}
.drawer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: #fff; letter-spacing: -.01em; line-height: 1.2;
}
.drawer-logo-text span { color: var(--aqua); display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.drawer-phone {
  margin: 1.2rem 1.6rem .4rem;
  background: rgba(0,200,224,.1);
  border: 1px solid rgba(0,200,224,.25);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
  transition: background .2s;
}
.drawer-phone:hover { background: rgba(0,200,224,.18); }
.drawer-phone-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--aqua); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.drawer-phone-label {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.drawer-phone-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--aqua); letter-spacing: .01em;
}

.drawer-links {
  list-style: none;
  padding: .8rem 0;
  flex: 1;
}
.drawer-links li a {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.drawer-links li a:hover,
.drawer-links li a.active {
  color: var(--aqua);
  background: rgba(0,200,224,.06);
  border-left-color: var(--aqua);
}
.drawer-links li a .dl-icon { font-size: 1.1rem; flex-shrink: 0; }

.drawer-cta {
  margin: .5rem 1.6rem 2rem;
  background: var(--aqua); color: var(--navy);
  padding: .9rem 1.4rem; border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: .9rem;
  text-decoration: none; text-align: center;
  display: block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,200,224,.25);
}
.drawer-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,200,224,.4); }

.drawer-address {
  padding: 1.2rem 1.6rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: 'Manrope', sans-serif;
  font-size: .72rem; color: rgba(255,255,255,.38);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   HERO — with rich background image
   ═══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      110deg,
      rgba(5, 18, 40, 0.91) 0%,
      rgba(7, 30, 61, 0.82) 38%,
      rgba(7, 30, 61, 0.45) 65%,
      rgba(0, 60, 80, 0.30) 100%
    );
}

.hero-colour-wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 65% 90% at 68% 50%,
    rgba(0,200,224,.13) 0%,
    transparent 70%
  );
}

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,200,224,.10) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute; z-index: 3; pointer-events: none;
  width: 700px; height: 700px;
  top: -180px; right: -140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,224,.09) 0%, transparent 65%);
}
.hero-glow2 {
  position: absolute; z-index: 3; pointer-events: none;
  width: 400px; height: 400px;
  bottom: 60px; left: -80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,85,164,.15) 0%, transparent 65%);
}

.hero-inner {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; position: relative; z-index: 4;
  max-width: 1440px; width: 100%; margin: 0 auto;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 7%; gap: 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(0,200,224,.1); border: 1px solid rgba(0,200,224,.25);
  color: var(--aqua); font-family: 'Manrope', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 4px; margin-bottom: 2rem;
  width: fit-content; opacity: 0;
  animation: rise .6s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); flex-shrink: 0; }
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 800;
  color: #fff; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1.6rem;
}
.hero-h1 .word { display: block; overflow: hidden; }
.hero-h1 .word span {
  display: block; transform: translateY(110%);
  animation: word-up .7s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-h1 .word:nth-child(1) span { animation-delay: .3s; }
.hero-h1 .word:nth-child(2) span { animation-delay: .45s; }
.hero-h1 .word:nth-child(3) span { animation-delay: .6s; color: var(--aqua); }
.hero-sub {
  font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.7);
  line-height: 1.8; max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: rise .6s ease .85s forwards;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem;
  opacity: 0; animation: rise .6s ease 1s forwards;
}
.hero-pill {
  font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: .38rem .85rem; border-radius: 4px;
  transition: border-color .2s, color .2s, background .2s;
  backdrop-filter: blur(6px);
}
.hero-pill:hover { border-color: var(--aqua); color: var(--aqua); background: rgba(0,200,224,.10); }
.hero-btns {
  display: flex; gap: .9rem; flex-wrap: wrap;
  opacity: 0; animation: rise .6s ease 1.1s forwards;
}
.btn-aqua {
  background: var(--aqua); color: var(--navy);
  padding: .9rem 2rem; border-radius: 6px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,200,224,.3);
}
.btn-aqua:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,224,.45); }
.btn-outline {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.9);
  padding: .9rem 2rem; border-radius: 6px;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.28);
  transition: border-color .2s, background .2s, color .2s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.13); }
.hero-right {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 5rem 7% 5rem 2rem;
  opacity: 0; animation: rise .8s ease .5s forwards;
}
.hero-collage { position: relative; width: 100%; max-width: 500px; height: 480px; }
.hc-main {
  position: absolute; top: 0; left: 5%; width: 72%; height: 68%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12);
}
.hc-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hc-main::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--aqua), transparent);
}
.hc-sec {
  position: absolute; bottom: 5%; right: 0; width: 55%; height: 52%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.12);
}
.hc-sec img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hc-badge {
  position: absolute; top: 52%; left: -4%;
  background: var(--aqua); color: var(--navy);
  border-radius: 8px; padding: 1rem 1.3rem; text-align: center;
  box-shadow: 0 12px 32px rgba(0,200,224,.4); z-index: 5;
}
.hc-badge .big { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; display: block; }
.hc-badge .sm { font-family: 'Manrope', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: block; margin-top: .2rem; color: rgba(7,30,61,.7); }
.hc-tag {
  position: absolute; top: 14%; right: -2%;
  background: rgba(7,30,61,.92); border: 1px solid rgba(0,200,224,.35);
  color: #fff; border-radius: 6px; padding: .7rem 1rem;
  font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  box-shadow: 0 8px 24px rgba(0,0,0,.35); z-index: 5; backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite;
}
.hc-tag span { color: var(--aqua); margin-right: .3rem; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hc-cross { position: absolute; width: 20px; height: 20px; }
.hc-cross::before, .hc-cross::after { content: ''; position: absolute; background: rgba(0,200,224,.4); }
.hc-cross::before { width: 100%; height: 1px; top: 50%; left: 0; }
.hc-cross::after { height: 100%; width: 1px; left: 50%; top: 0; }
.hc-c1 { top: 12%; right: 30%; }
.hc-c2 { bottom: 28%; left: 2%; }

.hero-stats {
  position: relative; z-index: 4;
  display: flex;
  background: rgba(5, 18, 40, 0.72);
  border-top: 1px solid rgba(0,200,224,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.stat-item { flex: 1; padding: 1.3rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--aqua); line-height: 1; }
.stat-label { font-family: 'Manrope', sans-serif; font-size: .65rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .35rem; line-height: 1.4; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes word-up { from { transform: translateY(110%); } to { transform: translateY(0); } }

/* ═══ SHARED ═══ */
.section-label { display: inline-block; color: var(--aqua); font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .7rem; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -.02em; }
.section-title.light { color: #fff; }
.section-sub { font-family: 'Manrope', sans-serif; font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 400; }
.section-sub.light { color: rgba(255,255,255,.6); }
.btn-primary { background: var(--aqua); color: var(--navy); padding: .9rem 2.2rem; border-radius: 6px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .9rem; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(0,200,224,.25); display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,200,224,.4); }

/* Inner-page header used on About/Services/Airbnb/Contact (so they don't start under the fixed nav) */
.page-header {
  position: relative;
  padding: 130px 5% 70px;
  background:
    linear-gradient(110deg, rgba(5,18,40,.92) 0%, rgba(7,30,61,.85) 60%, rgba(0,60,80,.55) 100%),
    url('https://images.unsplash.com/photo-1604335399105-a0c585fd81a1?q=80&w=1600&auto=format&fit=crop') center/cover;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,200,224,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; letter-spacing: -.02em; margin-top: .6rem;
}
.page-header p {
  margin-top: 1rem;
  font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,.72);
  font-size: 1rem; line-height: 1.8;
}
.crumbs {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.crumbs a { color: var(--aqua); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ─── PHOTO STRIP ─── */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 260px; overflow: hidden; }
.photo-strip div { overflow: hidden; position: relative; }
.photo-strip div img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.photo-strip div:hover img { transform: scale(1.06); }
.photo-strip div::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,30,61,.45) 100%); }

/* ─── ABOUT ─── */
.about-section { padding: 100px 5%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1140px; margin: 0 auto; }
.about-visual { position: relative; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: 16px; box-shadow: 0 24px 60px rgba(7,30,61,.15); }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--navy); border-radius: 12px; padding: 1.4rem 1.8rem; text-align: center; box-shadow: 0 12px 30px rgba(7,30,61,.35); }
.about-img-badge .big { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--aqua); line-height: 1; }
.about-img-badge .small { font-family: 'Manrope', sans-serif; font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .3rem; }
.about-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 1.8rem 0 1rem; }
.about-logo-text span { color: var(--aqua); }
.feature-list { display: flex; flex-direction: column; gap: .7rem; margin: 1.8rem 0; }
.feature-row { display: flex; align-items: flex-start; gap: .9rem; padding: .9rem 1.1rem; border-radius: 10px; background: var(--off); border-left: 3px solid var(--aqua); }
.feature-row .ico { font-size: 1.25rem; flex-shrink: 0; }
.feature-row .txt strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); font-family: 'Manrope', sans-serif; }
.feature-row .txt span { font-size: .83rem; color: var(--muted); font-family: 'Manrope', sans-serif; }

/* ─── SERVICES ─── */
.services-section { padding: 100px 5%; background: var(--off); }
.services-head { text-align: center; margin-bottom: 4rem; }
.services-head .section-sub { margin: .8rem auto 0; max-width: 520px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 1140px; margin: 0 auto; }
.svc-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(7,30,61,.07); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 16px 44px rgba(7,30,61,.13); }
.svc-img { width: 100%; height: 185px; object-fit: cover; display: block; }
.svc-img-placeholder { width: 100%; height: 185px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.svc-body { padding: 1.4rem; flex: 1; }
.svc-chip { display: inline-block; background: var(--light); color: var(--blue); font-family: 'Manrope', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .7rem; border-radius: 4px; margin-bottom: .75rem; }
.svc-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
.svc-card p { font-family: 'Manrope', sans-serif; font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ─── AIRBNB ─── */
.airbnb-section { padding: 100px 5%; background: var(--navy); position: relative; overflow: hidden; }
.airbnb-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,224,.07) 0%, transparent 70%); }
.airbnb-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1140px; margin: 0 auto; }
.airbnb-left { position: sticky; top: 100px; }
.airbnb-img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; margin-top: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.airbnb-cards { display: flex; flex-direction: column; gap: .9rem; }
.ab-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 1.2rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; transition: background .2s, transform .2s; }
.ab-card:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.ab-card-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; background: rgba(0,200,224,.13); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ab-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: .92rem; font-weight: 700; color: var(--aqua); margin-bottom: .25rem; }
.ab-card p { font-family: 'Manrope', sans-serif; font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.6; }
.airbnb-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.ab-tag { background: rgba(0,200,224,.08); border: 1px solid rgba(0,200,224,.22); color: var(--aqua); font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 600; padding: .35rem .8rem; border-radius: 4px; }

/* ─── WHY ─── */
.why-section { padding: 100px 5%; }
.why-inner { max-width: 1140px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .section-sub { margin: .8rem auto 0; max-width: 500px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.why-card { text-align: center; padding: 2rem 1.2rem; border-radius: 14px; background: var(--off); transition: transform .2s, background .2s, box-shadow .2s; border-bottom: 3px solid transparent; }
.why-card:hover { transform: translateY(-5px); background: #fff; border-bottom-color: var(--aqua); box-shadow: 0 10px 32px rgba(7,30,61,.1); }
.why-icon { font-size: 2rem; margin-bottom: .8rem; }
.why-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* ─── INFO BAR ─── */
.info-bar { background: var(--navy); padding: 70px 5%; }
.info-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 1140px; margin: 0 auto; }
.info-block h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--aqua); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.info-block p, .info-block li { font-family: 'Manrope', sans-serif; font-size: .87rem; color: rgba(255,255,255,.58); line-height: 1.9; }
.info-block ul { list-style: none; }
.info-block a { color: var(--aqua); text-decoration: none; }
.info-block a:hover { text-decoration: underline; }
.info-block strong { color: rgba(255,255,255,.82); font-weight: 600; }

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 90px 5%; background: #fff; }
.contact-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: #fff; border-radius: 16px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 10px 40px rgba(7,30,61,.06);
  padding: 2.2rem;
}
.contact-form-wrap h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  margin-bottom: .4rem;
}
.contact-form-wrap > p { color: var(--muted); font-size: .92rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-field label {
  font-family: 'Manrope', sans-serif;
  font-size: .76rem; font-weight: 700; color: var(--navy);
  letter-spacing: .04em; margin-bottom: .35rem;
}
.form-field label .req { color: #d2454f; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Manrope', sans-serif;
  font-size: .92rem; color: var(--text);
  padding: .75rem .9rem;
  border: 1px solid #d6dfee; border-radius: 8px;
  background: #fbfcff;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--aqua); background: #fff;
  box-shadow: 0 0 0 3px rgba(0,200,224,.18);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit {
  margin-top: .4rem;
  background: var(--aqua); color: var(--navy);
  border: 0; cursor: pointer;
  padding: .9rem 2rem; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .92rem;
  box-shadow: 0 4px 20px rgba(0,200,224,.3);
  transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,224,.45); }

.alert {
  padding: .9rem 1.1rem; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: .9rem;
  margin-bottom: 1.4rem; line-height: 1.55;
}
.alert.ok    { background: #e6fbf3; color: #096b4a; border: 1px solid #b6ecd6; }
.alert.error { background: #fdecee; color: #8e1d27; border: 1px solid #f4c1c7; }

.contact-side {
  display: flex; flex-direction: column; gap: 1.4rem;
}
.contact-card {
  background: var(--navy); color: #fff;
  border-radius: 16px; padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 40px rgba(7,30,61,.18);
}
.contact-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; color: var(--aqua); font-weight: 700;
  margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem;
}
.contact-card p, .contact-card li {
  font-family: 'Manrope', sans-serif;
  font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.85;
}
.contact-card ul { list-style: none; }
.contact-card a { color: var(--aqua); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card strong { color: #fff; font-weight: 600; }

.map-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid #e6ecf5;
  box-shadow: 0 10px 40px rgba(7,30,61,.08);
  background: #f2f5fb;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ─── CTA ─── */
.cta-section { position: relative; overflow: hidden; padding: 90px 5%; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1521656693074-0ef32e80a5d5?w=900&q=80&auto=format&fit=crop'); background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,200,224,.92) 0%, rgba(20,85,164,.92) 100%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: .8rem; letter-spacing: -.02em; }
.cta-content p { font-family: 'Manrope', sans-serif; color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 2rem; }
.btn-dark { background: var(--navy); color: #fff; padding: .9rem 2.2rem; border-radius: 6px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .9rem; text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s; margin: .4rem; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,30,61,.4); }
.btn-white { background: #fff; color: var(--navy); padding: .9rem 2.2rem; border-radius: 6px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .9rem; text-decoration: none; display: inline-block; transition: transform .2s; margin: .4rem; }
.btn-white:hover { transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: #040E20; color: rgba(255,255,255,.38); text-align: center; padding: 2.2rem 5%; font-family: 'Manrope', sans-serif; font-size: .78rem; line-height: 1.9; }
footer a { color: rgba(255,255,255,.38); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 5% 2rem; }
  .hero-right { padding: 0 5% 4rem; justify-content: flex-start; }
  .hero-collage { max-width: 440px; height: 380px; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .airbnb-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-badge { right: 10px; bottom: -10px; }
  .airbnb-left { position: static; }
  .info-bar-inner { grid-template-columns: 1fr; gap: 2rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 340px; }
}
@media (max-width: 768px) {
  nav .nav-links  { display: none !important; }
  nav .nav-cta    { display: none; }
  .hamburger      { display: flex; }
  .form-row       { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 1.6rem; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-collage { height: 300px; }
  .hc-badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 260px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

body.nav-open { overflow: hidden; }
