@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =========================================================
   THEME TOKENS
   ========================================================= */
:root {
  /* Surfaces */
  --bg: #F7F4EE;
  /* sand-pearl */
  --soft: #EEF3F4;
  /* airy coastal mist */
  --card: #FFFFFF;

  /* Text */
  --text: #0D1B24;
  /* deep ink navy */
  --muted: #4D6473;
  /* slate blue-gray */

  /* Brand */
  --accent: #1D6F75;
  /* sea-glass teal */
  --accent2: #0B2A3A;
  /* deep coastal navy */
  --gold: #C8A55B;
  /* sunlit gold */

  /* Lines / radii / shadows */
  --line: rgba(13, 27, 36, 0.12);
  --radius: 16px;
  --shadow: 0 10px 25px rgba(13, 27, 36, 0.08);
  --shadow2: 0 14px 34px rgba(13, 27, 36, 0.12);

  /* Accent surface helpers (used by pills/chips, etc.) */
  --accent-soft: rgba(29, 111, 117, 0.10);
  --accent-soft-strong: rgba(29, 111, 117, 0.16);

  /* Raised text shadow colors */
  --shadow-deep: rgba(11, 42, 58, 0.90);
  --shadow-sea: rgba(29, 111, 117, 0.45);
}

/* =========================================================
   BASE / RESET
   ========================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Barlow, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
  z-index: 999;
}

/* Layout container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1 {
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(2.15rem, 2.7vw + 1rem, 3.25rem);
  line-height: 1.10;
  margin: 0 0 12px;
}

h2,
h3 {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
  color: var(--accent2);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.muted {
  color: var(--muted);
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   HEADER + NAV (FUN / REACTIVE)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(13, 27, 36, 0.08);

  transition: box-shadow 200ms ease, background 200ms ease, transform 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.80);
  box-shadow: 0 10px 28px rgba(13, 27, 36, 0.12);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header.is-scrolled .header-inner {
  min-height: 78px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;

  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 27, 36, 0.08);
  box-shadow: 0 8px 18px rgba(13, 27, 36, 0.10);
}

.brand-logo {
  height: clamp(54px, 6vw, 82px);
  width: auto;
  filter: drop-shadow(0 2px 2px rgba(13, 27, 36, 0.18));
}

/* Nav pill container */
.site-nav {
  display: flex;
  gap: 10px;
  align-items: center;

  position: relative;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(13, 27, 36, 0.10);
  box-shadow: 0 10px 22px rgba(13, 27, 36, 0.10);
  backdrop-filter: blur(14px) saturate(160%);
}

/* Nav links */
.nav-link {
  position: relative;
  z-index: 2;
  overflow: hidden;

  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;

  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1px;

  transition: transform 200ms ease, color 200ms ease, filter 200ms ease;
}

.nav-link:hover {
  color: var(--accent2);
  transform: translateY(-2px) rotate(-0.25deg);
  filter: saturate(1.1);
}

.nav-link:active {
  transform: translateY(0) scale(0.98);
}

.nav-link.active {
  color: var(--accent2);
  background: var(--accent-soft-strong);
}

/* Animated underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;

  background: linear-gradient(90deg,
      rgba(29, 111, 117, 0),
      rgba(29, 111, 117, 0.9),
      rgba(200, 165, 91, 0.65),
      rgba(29, 111, 117, 0.9),
      rgba(29, 111, 117, 0));

  transform: translateX(-120%);
  opacity: 0;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  animation: linkWave 650ms ease forwards;
}

@keyframes linkWave {
  to {
    transform: translateX(120%);
  }
}

/* Indicator */
.nav-indicator {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 80px;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(29, 111, 117, 0.22), rgba(200, 165, 91, 0.14));
  border: 1px solid rgba(29, 111, 117, 0.25);
  box-shadow: 0 14px 30px rgba(13, 27, 36, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.55);

  transform: translateX(0) scale(1);
  opacity: 1;

  transition:
    transform 520ms cubic-bezier(0.12, 1.2, 0.22, 1),
    width 520ms cubic-bezier(0.12, 1.2, 0.22, 1),
    opacity 200ms ease;
}

/* Shimmer */
.site-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;

  background: linear-gradient(115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.22) 35%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0.18) 65%,
      transparent 100%);

  transform: translateX(-120%);
  opacity: 0;
}

.site-nav:hover::after {
  opacity: 1;
  animation: navShimmer 900ms ease forwards;
}

@keyframes navShimmer {
  to {
    transform: translateX(120%);
  }
}

/* Mobile toggle button */
.nav-toggle {
  display: none;
  border: 1px solid rgba(13, 27, 36, 0.14);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 10px 22px rgba(13, 27, 36, 0.10);
}

/* Mobile nav */
@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 86px;

    flex-direction: column;
    align-items: stretch;

    min-width: 220px;
    padding: 12px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 27, 36, 0.10);
    box-shadow: var(--shadow2);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-indicator {
    display: none;
  }

  .nav-link {
    border-radius: 12px;
  }
}

/* =========================================================
   EFFECT: RAISED COASTAL TEXT
   ========================================================= */
.raised-text {
  display: inline-block;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;

  text-shadow:
    1px 1px 0 var(--shadow-deep),
    -1px 1px 0 var(--shadow-deep),
    1px -1px 0 var(--shadow-deep),
    -1px -1px 0 var(--shadow-deep),

    2px 2px 0 var(--shadow-deep),
    3px 3px 0 var(--shadow-deep),
    4px 4px 0 var(--shadow-sea),
    5px 5px 0 var(--shadow-sea),
    6px 6px 0 var(--shadow-sea),
    7px 7px 0 var(--shadow-sea),
    8px 8px 0 var(--shadow-sea);

  transition: transform 220ms ease, text-shadow 220ms ease;
  will-change: transform;
}

.raised-text:hover,
.raised-text:focus-visible {
  transform: translate(-8px, -8px);
  text-shadow:
    1px 1px 0 var(--shadow-deep),
    -1px 1px 0 var(--shadow-deep),
    1px -1px 0 var(--shadow-deep),
    -1px -1px 0 var(--shadow-deep),

    2px 2px 0 var(--shadow-sea),
    3px 3px 0 var(--shadow-sea),
    4px 4px 0 var(--shadow-sea),
    5px 5px 0 var(--shadow-sea);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .raised-text {
    transition: none;
  }

  .raised-text:hover,
  .raised-text:focus-visible {
    transform: none;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 88px 0 66px;
  background:
    linear-gradient(180deg,
      rgba(247, 244, 238, 0.88) 0%,
      rgba(238, 243, 244, 0.78) 35%,
      rgba(247, 244, 238, 0.88) 100%),
    url("../images/hero-img-destin.png") center / cover no-repeat;

  border-bottom: 1px solid rgba(13, 27, 36, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}

/* =========================================================
   SECTIONS / CARDS
   ========================================================= */
.section {
  padding: 38px 0;
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid rgba(13, 27, 36, 0.06);
  border-bottom: 1px solid rgba(13, 27, 36, 0.06);
}

.section-head {
  margin-bottom: 14px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(13, 27, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-highlight {
  border: 1px solid rgba(29, 111, 117, 0.18);
  box-shadow: 0 18px 40px rgba(13, 27, 36, 0.14);
}

.card-title {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.divider {
  height: 1px;
  background: rgba(13, 27, 36, 0.10);
  margin: 14px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;

  border: 1px solid rgba(13, 27, 36, 0.12);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.c-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.c-btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  border-color: transparent;
}

.c-btn-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.c-btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent2);
}

.c-btn-ghost:hover {
  background: var(--accent-soft);
  border-color: rgba(29, 111, 117, 0.25);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* =========================================================
   LISTS / DOTS / SMALL TITLES
   ========================================================= */
.status-list,
.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.status-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.dot-ok {
  background: #2A9D8F;
}

/* sea */
.dot-wip {
  background: #E9C46A;
}

/* sand-gold */
.dot-lock {
  background: #8A9AA6;
}

/* slate */

.mini-title {
  font-family: "Albert Sans", system-ui, sans-serif;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--accent2);
}

/* =========================================================
   SPLIT ROW
   ========================================================= */
.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.split-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .split {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   BUYER JOURNEY PAGE
   ========================================================= */

.page-banner {
  margin: 14px auto 0;
  border-radius: 18px;
  overflow: hidden;

  /* outline + subtle lift */
  border: 1px solid rgba(13, 27, 36, .14);
  box-shadow:
    0 16px 34px rgba(13, 27, 36, .10),
    0 0 0 6px rgba(29, 111, 117, .08);
  /* soft outline ring */

  background: rgba(255, 255, 255, .55);
}

.page-banner-img {
  display: block;
  width: 100%;
  height: clamp(180px, 22vw, 320px);
  /* responsive height */
  object-fit: cover;
  object-position: center;

  /* small contrast lift */
  filter: saturate(1.03) contrast(1.02);
}

/* Tighter on small screens */
@media (max-width: 560px) {
  .page-banner {
    border-radius: 16px;
    box-shadow:
      0 12px 26px rgba(13, 27, 36, .10),
      0 0 0 5px rgba(29, 111, 117, .08);
  }

  .page-banner-img {
    height: 190px;
  }
}

/* Respect reduced motion (no animations used, but kept for consistency) */
@media (prefers-reduced-motion: reduce) {
  .page-banner-img {
    filter: none;
  }
}

/* =========================================================
   Buyer Journey — Coastal Timeline
   ========================================================= */

.buyer-timeline {
  position: relative;
  margin: 40px auto;
  max-width: 820px;
  display: grid;
  gap: 30px;
}

/* Vertical accent line */
.buyer-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
      var(--accent),
      rgba(29, 111, 117, .25));
}

/* Each item */
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
}

/* Number marker */
.timeline-marker {
  width: 36px;
  height: 36px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  font-weight: 800;
  font-size: 0.8rem;

  background: #ffffff;
  color: var(--accent2);

  border: 2px solid var(--accent);
  box-shadow: 0 6px 14px rgba(13, 27, 36, .12);
}

/* Card */
.timeline-card {
  background: var(--card);
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 27, 36, .08);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.timeline-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hover lift */
.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}

/* Responsive */
@media (max-width: 640px) {
  .buyer-timeline::before {
    left: 16px;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .timeline-card {
    padding: 16px;
  }
}


/* =========================================================
   FOOTER
   ========================================================= */
/* =========================================================
   Minimal Footer (Clean + Coastal)
   ========================================================= */

.site-footer-min {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.footer-min-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  align-items: flex-start;
}

.footer-min-brand {
  margin: 0;
  display: grid;
  gap: 2px;
  color: var(--accent2);
  line-height: 1.2;
}

.footer-min-brand strong {
  font-family: "Barlow", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-min-sub {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-min-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 44ch;
}

.footer-min-right {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-min-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-min-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-min-nav a:hover {
  background: rgba(29, 111, 117, 0.10);
  color: var(--accent2);
  transform: translateY(-1px);
}

.footer-min-social {
  display: flex;
  gap: 10px;
}

.footer-min-social a {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 27, 36, 0.10);

  color: var(--accent2);
  text-decoration: none;

  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.footer-min-social a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(29, 111, 117, 0.10);
}

.footer-min-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid rgba(13, 27, 36, 0.08);
}

.footer-min-loc {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 760px) {
  .footer-min-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-min-right {
    justify-items: start;
  }

  .footer-min-nav {
    justify-content: flex-start;
  }

  .footer-min-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}