@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Franklin:wght@400;500;600&display=swap');

:root {
  --ink: #191c1a;
  --muted: #626761;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d9d8d1;
  --forest: #244d3d;
  --forest-dark: #173529;
  --gold: #c49a57;
  --stone: #ebe8df;
  --max: 1180px;
  --shadow: 0 16px 45px rgba(17, 24, 20, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  transform: translateY(-150%);
  background: var(--white);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 790px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-white { background: var(--white); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #e0bd7f; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: 'Libre Franklin', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.65rem, 5.8vw, 5.6rem); }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.5vw, 3.3rem); }
h3 { margin-bottom: 12px; font-size: 1.25rem; }
.lead { color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.25rem); }
.section-dark .lead { color: #c8ccc8; }
.rule { width: 54px; height: 2px; margin: 24px 0; background: var(--gold); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.site-header.inner { position: relative; color: var(--ink); background: var(--paper); border-color: var(--line); }
.nav-wrap { display: flex; align-items: center; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 13px; margin-right: auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,.35);
}
.site-header.inner .brand-mark { color: var(--white); }
.brand-name { font-family: 'Libre Franklin', sans-serif; font-size: 1.07rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.brand-sub { display: block; margin-top: -2px; font-size: .61rem; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; font-size: .86rem; font-weight: 500; }
.nav-links a:not(.button)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 19px;
  color: var(--white);
  font-size: .84rem;
  font-weight: 600;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { background: var(--forest-dark); border-color: var(--forest-dark); }
.button svg { width: 17px; height: 17px; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }
.button-outline { color: inherit; background: transparent; border-color: currentColor; }
.button-outline:hover { color: var(--white); background: var(--forest); border-color: var(--forest); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(850px, 92vh);
  color: var(--white);
  background: #31566a url('hero-resort.png') center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,18,16,.82) 0%, rgba(10,18,16,.55) 42%, rgba(10,18,16,.08) 72%), linear-gradient(0deg, rgba(10,18,16,.52), transparent 55%);
}
.hero-content { position: relative; width: min(760px, 100%); padding: 190px 0 92px; }
.hero h1 { max-width: 730px; margin-bottom: 24px; }
.hero .lead { max-width: 610px; margin-bottom: 34px; color: rgba(255,255,255,.86); }
.hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-index .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-index div { padding: 19px 22px; border-left: 1px solid rgba(255,255,255,.2); }
.hero-index div:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.hero-index span { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.hero-index strong { font-size: .87rem; font-weight: 500; }

.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 48%;
  height: 100%;
  background: url('hero-resort.png') center / cover;
  opacity: .42;
}
.page-hero .container { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 94px; }
.page-hero h1 { max-width: 860px; margin-bottom: 20px; font-size: clamp(2.8rem, 5vw, 4.9rem); }
.page-hero .lead { max-width: 680px; color: #d6d9d6; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: start; }
.split-balanced { grid-template-columns: 1fr 1fr; }
.intro-note { padding: 32px 0 0 32px; border-left: 1px solid var(--gold); }
.intro-note p:last-child { margin-bottom: 0; }
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { padding: 34px 28px; border-left: 1px solid var(--line); }
.metric:last-child { border-right: 1px solid var(--line); }
.metric strong { display: block; margin-bottom: 5px; font-family: 'Libre Franklin', sans-serif; font-size: 1.25rem; font-weight: 500; }
.metric span { color: var(--muted); font-size: .86rem; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3d423f; border-left: 1px solid #3d423f; }
.capability {
  min-height: 290px;
  padding: 32px;
  border-right: 1px solid #3d423f;
  border-bottom: 1px solid #3d423f;
}
.capability svg { width: 24px; height: 24px; margin-bottom: 50px; color: #e0bd7f; }
.capability p { margin-bottom: 0; color: #adb3ae; font-size: .92rem; }
.capability a { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: #e0bd7f; font-size: .79rem; font-weight: 600; }
.capability a svg { width: 14px; height: 14px; margin: 0; }

.sector-list { border-top: 1px solid var(--line); }
.sector-row { display: grid; grid-template-columns: 60px 1fr 1.2fr auto; gap: 26px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.sector-row > span { color: var(--gold); font-size: .78rem; }
.sector-row h3, .sector-row p { margin: 0; }
.sector-row p { color: var(--muted); font-size: .92rem; }
.sector-row svg { width: 18px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; counter-reset: process; }
.process-step { counter-increment: process; }
.process-step::before {
  content: '0' counter(process);
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .12em;
}
.process-step p { color: var(--muted); font-size: .9rem; }

.service-stack { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 70px 1fr 1.1fr; gap: 28px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--gold); font-size: .76rem; }
.service-item ul, .detail-list { margin: 0; padding: 0; list-style: none; }
.service-item li, .detail-list li { position: relative; margin-bottom: 9px; padding-left: 18px; color: var(--muted); font-size: .92rem; }
.service-item li::before, .detail-list li::before { content: ''; position: absolute; top: .7em; left: 0; width: 6px; height: 1px; background: var(--gold); }

.band { padding: 60px 0; color: var(--white); background: var(--forest); }
.band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.band h2 { max-width: 700px; margin: 0; font-size: clamp(1.75rem, 3vw, 2.65rem); }

.profile { display: grid; grid-template-columns: 320px 1fr; gap: 70px; }
.profile-aside { padding: 28px; background: var(--stone); border-top: 3px solid var(--forest); }
.profile-aside .monogram { display: grid; place-items: center; width: 86px; height: 86px; margin-bottom: 25px; color: var(--white); font-family: 'Libre Franklin', sans-serif; font-size: 1.7rem; background: var(--forest); }
.profile-aside p { margin-bottom: 4px; }
.profile-aside small { color: var(--muted); }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 34px; background: var(--line); border: 1px solid var(--line); }
.principle { padding: 26px; background: var(--paper); }
.principle p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.form-shell { padding: 40px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.ghl-form-shell { min-width: 0; min-height: 1152px; overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.ghl-form-shell iframe { display: block; width: 100%; min-height: 1152px; border: 0; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 20px; }
.field-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(36,77,61,.22); border-color: var(--forest); }
textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .77rem; }
.form-status { display: none; margin: 18px 0 0; padding: 12px 14px; color: var(--forest-dark); background: #e5eee8; border-left: 3px solid var(--forest); }
.form-status.visible { display: block; }
.form-status.error { color: #6d201d; background: #f7e7e5; border-color: #9b342f; }
.form-status a { font-weight: 600; text-decoration: underline; }
.button:disabled { cursor: wait; opacity: .65; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--forest); }
.consent label { margin: 0; color: var(--muted); font-size: .78rem; font-weight: 400; }
.check-list { margin: 30px 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; margin-bottom: 15px; }
.check-list svg { flex: 0 0 auto; width: 18px; margin-top: 4px; color: var(--forest); }
.contact-list { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list svg { width: 19px; color: var(--forest); }

.footer { padding: 64px 0 26px; color: #d5d8d5; background: #111412; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 45px; }
.footer .brand { margin-bottom: 20px; color: var(--white); }
.footer p { max-width: 360px; color: #969d98; font-size: .84rem; }
.footer h3 { margin-bottom: 18px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 9px; font-size: .84rem; }
.footer a:hover { color: #e0bd7f; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 22px; color: #777e79; font-size: .72rem; border-top: 1px solid #303531; }


.footer-legal { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-top: 42px; padding-top: 22px; border-top: 1px solid #303531; }
.footer-legal p { max-width: 900px; margin: 0; font-size: .74rem; line-height: 1.55; }
.footer-legal a { flex: 0 0 auto; color: #e0bd7f; font-size: .76rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal + .footer-bottom { margin-top: 22px; }
.legal-copy h2 { margin-top: 38px; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.legal-copy p { color: var(--muted); }
.legal-updated { margin-bottom: 30px; color: var(--muted); font-size: .84rem; }

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

@media (max-width: 920px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 40px 40px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .nav-open .nav-links { z-index: 10; opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.35rem; }
  .nav-toggle { position: relative; z-index: 11; }
  .split, .profile, .form-layout { grid-template-columns: 1fr; gap: 45px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .section-tight { padding: 48px 0; }
  .nav-wrap { min-height: 72px; }
  .brand-name { font-size: .95rem; }
  .hero { min-height: 760px; background-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(10,18,16,.84), rgba(10,18,16,.34)), linear-gradient(0deg, rgba(10,18,16,.7), transparent 70%); }
  .hero-content { padding: 140px 0 190px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4.1rem); }
  .hero-index .container { grid-template-columns: 1fr; }
  .hero-index div { padding: 9px 14px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
  .hero-index span { display: inline; margin-right: 8px; }
  .page-hero::after { width: 80%; opacity: .22; }
  .page-hero .container { padding-top: 78px; padding-bottom: 72px; }
  .metric-strip, .capability-grid, .process-grid, .principles, .field-grid { grid-template-columns: 1fr; }
  .metric { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .capability { min-height: 240px; }
  .sector-row { grid-template-columns: 38px 1fr auto; gap: 16px; }
  .sector-row p { grid-column: 2 / -1; }
  .service-item { grid-template-columns: 42px 1fr; }
  .service-item > div:last-child { grid-column: 2; }
  .band .container { align-items: flex-start; flex-direction: column; }
  .profile-aside { max-width: none; }
  .form-shell { padding: 25px 20px; }
  .ghl-form-shell, .ghl-form-shell iframe { min-height: 1260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 14px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
