
:root{
  --green:#28563f;
  --green-soft:#7d9c8c;
  --teal:#348f92;
  --cream:#f7f3eb;
  --ink:#183027;
  --muted:#6e7974;
  --line:rgba(24,48,39,.14);
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Georgia,"Times New Roman",serif;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1240px,92%);margin:0 auto}

.site-header{
  background:rgba(255,255,255,.98);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  min-height:140px;
  display:flex;
  align-items:center;
  gap:28px;
}
.logo-wrap{
  flex:0 0 260px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.logo-wrap img{
  width:240px;
  height:auto;
}
.nav{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  font:500 16px Inter,Arial,sans-serif;
  color:#254236;
}
.nav a{
  padding:10px 0;
  position:relative;
}
.nav a:first-child:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;
  background:var(--green);
}
.book{
  flex:0 0 auto;
  padding:15px 30px;
  border-radius:32px;
  background:var(--green);
  color:#fff;
  font:700 15px Inter,Arial,sans-serif;
}
.tagline{
  padding:0 4px 12px;
  text-align:right;
  color:#8ba49a;
  font:italic 20px Georgia,serif;
}

.hero{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(7,27,22,.20),rgba(7,27,22,.20)),
    url("assets/hero.jpg") center 48%/cover no-repeat;
}
.hero-inner{
  width:min(1120px,92%);
  padding:80px 20px 90px;
  margin-top:-18px;
}
.hero-kicker{
  margin-bottom:12px;
  font:800 13px Inter,Arial,sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hero h1{
  margin:0 auto 18px;
  font-family:"Freestyle Script","Brush Script MT","Segoe Script",cursive;
  font-weight:400;
  font-size:clamp(65px,7vw,106px);
  line-height:.82;
  text-shadow:0 3px 16px rgba(0,0,0,.28);
}
.hero h1 span{display:block;white-space:nowrap}
.hero-sub{
  margin:0 0 10px;
  font-size:27px;
  text-shadow:0 2px 10px rgba(0,0,0,.26);
}
.hero-tag{
  margin:0 0 28px;
  font:400 17px Inter,Arial,sans-serif;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}
.ctas{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.cta{
  border-radius:32px;
  padding:15px 27px;
  font:700 15px Inter,Arial,sans-serif;
}
.cta-air{background:var(--green);color:#fff}
.cta-book{background:#fff;color:#153c66}

.highlights{
  background:#fff;
  padding:0;
}
.highlights-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:0;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.highlight{
  min-height:145px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:18px 20px;
  border-right:1px solid var(--line);
}
.highlight:last-child{border-right:0}
.icon{
  color:var(--green);
  font-size:38px;
  line-height:1;
  margin-bottom:7px;
}
.highlight h3{margin:3px 0 4px;font-size:19px;font-weight:400}
.highlight p{margin:0;color:#8b9692;font:14px Inter,Arial,sans-serif}

.section{padding:95px 0}
.section.alt{background:var(--cream)}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
}
.split img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 18px 46px rgba(18,34,28,.12);
}
.eyebrow{
  color:var(--teal);
  font:800 12px Inter,Arial,sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.section h2{
  margin:8px 0 18px;
  color:var(--green);
  font:400 clamp(40px,4.4vw,61px)/1.05 Georgia,serif;
}
.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}
.specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:24px;
}
.spec{
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  font:600 14px Inter,Arial,sans-serif;
}
.spec span{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-weight:400;
  font-size:12px;
}

.gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-auto-rows:235px;
  gap:14px;
  margin-top:26px;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}
.gallery .large{grid-row:span 2}

.areas{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:30px;
}
.area{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px;
}
.area h3{margin:0 0 8px;font-size:21px;font-weight:400}
.area p{margin:0;color:var(--muted);line-height:1.6;font:15px Inter,Arial,sans-serif}

.contact{
  background:var(--green);
  color:#fff;
}
.contact .eyebrow{color:#a9ded0}
.contact h2{color:#fff}
.contact .lead{color:rgba(255,255,255,.76)}
.contact-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:45px;
  align-items:start;
}
.contact-box{
  padding:26px;
  border-radius:18px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.15);
  font:15px Inter,Arial,sans-serif;
}
.contact-box strong{display:block;margin-bottom:7px}

.footer{
  padding:34px 0 48px;
  color:var(--muted);
  font:13px Inter,Arial,sans-serif;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:20px;
}

@media(max-width:980px){
  .header-inner{min-height:104px}
  .logo-wrap{flex:0 0 190px}.logo-wrap img{width:175px}
  .nav{gap:18px;font-size:13px}
  .nav a:nth-child(3),.nav a:nth-child(4){display:none}
  .book{padding:12px 20px}
  .split,.contact-grid{grid-template-columns:1fr}
  .highlights-inner{grid-template-columns:1fr 1fr}
  .highlight:nth-child(2){border-right:0}
  .highlight:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .areas{grid-template-columns:1fr}
  .hero{min-height:650px}
}
@media(max-width:640px){
  .header-inner{min-height:84px}
  .logo-wrap{flex:0 0 118px}.logo-wrap img{width:112px}
  .nav{gap:12px;font-size:12px}
  .nav a:nth-child(n+2){display:none}
  .book{padding:10px 15px;font-size:12px}
  .tagline{display:none}
  .hero h1{font-size:62px}
  .hero h1 span{white-space:normal}
  .hero-sub{font-size:22px}
  .highlights-inner{grid-template-columns:1fr}
  .highlight{border-right:0!important;border-bottom:1px solid var(--line)}
  .highlight:last-child{border-bottom:0}
  .specs{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr;grid-auto-rows:210px}
  .gallery .large{grid-row:auto}
}
