:root {
  --navy: #0c1c2f;
  --navy-deep: #08121f;
  --gold: #b89a5e;
  --gold-soft: #d7c29a;
  --cream: #f8f5ee;
  --stone: #e7e0d2;
  --text: #1f2a35;
  --muted: #68717c;
  --white: #ffffff;
  --card: rgba(255,255,255,0.84);
  --line: rgba(12, 28, 47, 0.12);
  --shadow: 0 24px 60px rgba(5, 15, 28, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f3efe6 0%, #faf8f3 28%, #ffffff 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-block;
  background: none;
  padding: 0;
  letter-spacing: 0.15em;
  color: #c8a96a;
}
.eyebrow.gold { color: var(--gold-soft); }
h1, h2, h3, .brand, .image-caption strong { font-family: 'Cinzel', serif; letter-spacing: 0.02em; font-weight: 500; }
h1 { font-size: clamp(42px, 6vw, 88px); line-height: 0.98; margin: 0 0 22px; color: var(--white); }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; margin: 0 0 18px; color: var(--navy); }
h3 { font-size: 22px; line-height: 1.15; margin: 0 0 12px; color: var(--navy); }
p { margin: 0 0 16px; font-size: 16px; color: var(--text); }
.lead { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 760px; }
.muted { color: var(--muted); }
.section-intro { max-width: 840px; margin-bottom: 28px; }
.topbar {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(8, 18, 31, 0.72); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { color: var(--white); font-size: 21px; letter-spacing: 0.12em; text-transform: uppercase; }
.brand small {
  display: block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; color: rgba(255,255,255,0.62); margin-top: 3px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,0.86); font-size: 14px; font-weight: 500; white-space: nowrap; }
.nav-links a:hover, .nav-links a:focus { color: var(--gold-soft); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  margin-left: auto;
}
.menu-toggle:hover {
  background: rgba(255,255,255,0.1);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.button, .button-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button { background: linear-gradient(135deg, #cfb179 0%, #ab8850 100%); color: var(--white); box-shadow: 0 18px 30px rgba(171, 136, 80, 0.22); }
.button:hover, .button-ghost:hover { transform: translateY(-1px); }
.button-ghost { border: 1px solid rgba(255,255,255,0.22); color: var(--white); background: rgba(255,255,255,0.05); }
.hero {
  position: relative; overflow: hidden; min-height: 100vh;
  background: linear-gradient(110deg, rgba(5, 14, 22, 0.9) 0%, rgba(12, 28, 47, 0.74) 36%, rgba(23, 54, 41, 0.42) 100%), linear-gradient(180deg, #183425 0%, #0c1c2f 100%);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: scale(1.03); }
.hero::before, 


.hero-wrap {
  min-height: 88vh; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 42px; align-items: center;
  padding: 70px 0 130px; position: relative; z-index: 1;
}
.hero-panel {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-xl);
  padding: 28px; backdrop-filter: blur(10px); box-shadow: var(--shadow); align-self: end;
}
.hero-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hero-stat { padding: 20px; border-radius: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.hero-stat strong { display: block; font-family: 'Cinzel', serif; font-size: 24px; margin-bottom: 8px; color: var(--gold-soft); }
.hero-stat span { display: block; color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
section { padding: 100px 0; position: relative; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.quote-card, .pillars, .cta {
  border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.quote-card {
  background: linear-gradient(180deg, rgba(12,28,47,0.98) 0%, rgba(17,43,35,0.98) 100%);
  color: var(--white); padding: 38px;
}
.quote-card p { color: rgba(255,255,255,0.88); font-size: 18px; }
.quote-card strong { display: block; color: var(--gold-soft); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 18px; }
.timeline { display: grid; gap: 16px; margin-top: 28px; }
.timeline-item { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.timeline-item:first-child { border-top: 0; }
.timeline-year { font-family: 'Cinzel', serif; color: var(--gold-soft); font-size: 18px; padding-top: 2px; }
.grid-3, .grid-4, .image-grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.image-grid { grid-template-columns: 1.15fr 0.85fr 0.85fr; }
.feature-card {
  padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 26px rgba(8, 18, 31, 0.06);
}
.feature-card .icon {
  width: 54px; height: 54px; border-radius: 16px; display: inline-grid; place-items: center;
  background: linear-gradient(135deg, rgba(184,154,94,0.16), rgba(12,28,47,0.06));
  border: 1px solid rgba(184,154,94,0.18); margin-bottom: 18px; font-size: 22px;
}
.land-section { padding-top: 0; }
.landscape-band {
  border-radius: 34px; overflow: hidden; min-height: 360px; display: grid; align-items: end; padding: 42px;
  box-shadow: var(--shadow); background: linear-gradient(120deg, rgba(12,28,47,0.82), rgba(20,50,39,0.42)), url('../images/coastal.png') center/cover no-repeat;
}
.landscape-band h2, .landscape-band p { color: var(--white); max-width: 760px; }
.image-frame {
  position: relative; overflow: hidden; border-radius: 28px; min-height: 260px; box-shadow: var(--shadow); background: #d9d4c9;
}
.image-frame.tall { min-height: 550px; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,18,31,0.05) 0%, rgba(8,18,31,0.28) 100%); pointer-events: none; }
.image-caption { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: var(--white); }
.image-caption strong { display: block; font-size: 26px; margin-bottom: 6px; }
.image-caption span { display: block; color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.5; }
.pillars {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(247,243,235,0.92));
  padding: 40px; border: 1px solid rgba(12, 28, 47, 0.08);
}
.pillars ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.pillars li {
  padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,0.75); border: 1px solid rgba(12, 28, 47, 0.07); color: var(--text);
}
.cta { background: linear-gradient(180deg, rgba(12,28,47,1) 0%, rgba(8,18,31,1) 100%); color: var(--white); padding: 52px; }
.cta h2, .cta p { color: var(--white); }
.cta-copy { max-width: 860px; margin-bottom: 24px; }
.dark-grid { margin-top: 24px; }
.dark-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.dark-card h3, .dark-card p { color: var(--white); }
.dark-card p { color: rgba(255,255,255,0.76); }
.partnership-actions { margin-top: 30px; }
footer { padding: 34px 0 50px; color: var(--muted); font-size: 14px; }
.footer-wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(12, 28, 47, 0.08); padding-top: 24px;
}
@media (max-width: 1080px) {
  .hero-wrap, .split, .grid-4, .grid-3, .image-grid { grid-template-columns: 1fr; }
  .hero-wrap { min-height: auto; padding: 58px 0 120px; }
  .hero-panel-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .nav {
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    flex-direction: row;
    position: relative;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 12px;
  }
  .brand-text {
    min-width: 0;
  }
  .brand-text small {
    letter-spacing: 0.16em;
  }
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 14px;
    overflow: visible;
    background: rgba(8, 18, 31, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: 0 22px 40px rgba(0,0,0,0.28);
    scrollbar-width: none;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(255,255,255,0.06);
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .hero { min-height: auto; }
  .hero-wrap { gap: 24px; padding: 42px 0 92px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(34px, 11vw, 52px); line-height: 1.02; max-width: 100%; }
  .lead { font-size: 16px; max-width: 100%; }
  .hero-panel, .quote-card, .pillars, .cta, .landscape-band, .feature-card { padding: 24px; border-radius: 24px; }
  .hero-panel-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  section { padding: 78px 0; }
  .image-frame, .image-frame.tall { min-height: 240px; }
  .image-caption { left: 18px; right: 18px; bottom: 18px; }
  .image-caption strong { font-size: 22px; }
  .button, .button-ghost { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .brand { font-size: 18px; letter-spacing: 0.1em; }
  .brand small { letter-spacing: 0.2em; }
}



.hero-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(5, 14, 22, 0.55) 0%, rgba(12, 28, 47, 0.45) 36%, rgba(23, 54, 41, 0.25) 100%);
  pointer-events:none;
}

.hero{
  background:#0c1c2f;
}

.hero-wrap{
  position:relative;
  z-index:2;
}

.card-image{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px;
}


/* MOBILE ONLY – hero stats text refined luxury dark */
@media (max-width: 768px) {
  .hero-stat span {
    color: #0f2137 !important;
  }
}


/* MOBILE TYPOGRAPHY REFINEMENT */
@media (max-width: 768px) {
  .hero h1,
  .hero h2,
  .hero h3,
  .hero .lead,
  .hero-stat span,
  .hero-stat strong,
  .feature-card h3,
  .feature-card p,
  .section-intro,
  .muted,
  .carousel-caption strong,
  .carousel-caption span,
  .pillars li,
  .pillars li strong,
  .quote-card p,
  .quote-card strong,
  .timeline-item,
  .timeline-year,
  .landscape-band h2,
  .landscape-band p,
  .cta h2,
  .cta p,
  .dark-card h3,
  .dark-card p {
    color: #0f2137 !important;
  }

  .hero-panel,
  .quote-card,
  .cta,
  .dark-card,
  .landscape-band {
    background: #ffffff !important;
    border-color: rgba(15, 33, 55, 0.10) !important;
    box-shadow: 0 10px 30px rgba(15, 33, 55, 0.08) !important;
  }

  .hero-stat {
    background: rgba(255,255,255,0.96) !important;
    border-color: rgba(15, 33, 55, 0.10) !important;
  }

  .carousel-slide::after,
  .hero-media::after {
    display: none !important;
  }

  .carousel-button {
    color: #0f2137 !important;
    border-color: rgba(15, 33, 55, 0.18) !important;
    background: rgba(255,255,255,0.88) !important;
  }

  .button-ghost {
    color: #0f2137 !important;
    border-color: rgba(15, 33, 55, 0.18) !important;
    background: rgba(255,255,255,0.72) !important;
  }
}
