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

:root {
  --navy: #0d2438;
  --navy-2: #163b55;
  --teal: #1fa59a;
  --teal-dark: #16847c;
  --sand: #f3eadb;
  --cream: #fbf8f2;
  --white: #ffffff;
  --ink: #17202a;
  --muted: #687582;
  --line: rgba(13,36,56,.12);
  --shadow: 0 22px 55px rgba(13,36,56,.13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.eyebrow { color: var(--teal-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
h1,h2,h3 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.03em; }
h3 { font-size: 1.55rem; }
p { margin-top: 0; color: var(--muted); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: .3s ease; }
.site-header.scrolled { background: rgba(251,248,242,.94); backdrop-filter: blur(16px); box-shadow: 0 10px 30px rgba(13,36,56,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: conic-gradient(from 220deg, var(--teal), #6ed3c8, var(--sand), var(--teal)); position: relative; box-shadow: inset 0 0 0 6px rgba(255,255,255,.55); }
.brand-mark::after { content: ''; position: absolute; width: 17px; height: 17px; background: var(--navy); border-radius: 50%; inset: 50%; transform: translate(-50%,-50%); }
.brand small { display: block; font-size: .68rem; letter-spacing: .16em; color: var(--teal-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--navy); font-size: .94rem; font-weight: 600; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--teal); transition: .25s; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-toggle { display:none; width:44px; height:44px; border:0; background: var(--white); border-radius:50%; box-shadow: 0 8px 22px rgba(13,36,56,.12); cursor:pointer; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:52px; padding:0 24px; border-radius:999px; border:1px solid transparent; font-weight:700; cursor:pointer; transition:.25s ease; }
.btn-primary { background: var(--teal); color:var(--white); box-shadow:0 12px 30px rgba(31,165,154,.28); }
.btn-primary:hover { background:var(--teal-dark); transform:translateY(-2px); }
.btn-secondary { background:transparent; border-color:rgba(13,36,56,.2); color:var(--navy); }
.btn-secondary:hover { background:var(--white); }

.hero { min-height: 100vh; display:grid; align-items:center; position:relative; overflow:hidden; background: linear-gradient(120deg, rgba(251,248,242,.98) 0 45%, rgba(251,248,242,.55) 65%, rgba(13,36,56,.18)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=85') center/cover; }
.hero::before { content:''; position:absolute; width:440px; height:440px; border-radius:50%; border:1px solid rgba(31,165,154,.22); top:16%; left:-10%; box-shadow:0 0 0 60px rgba(31,165,154,.05),0 0 0 120px rgba(31,165,154,.03); }
.hero-content { max-width: 760px; padding-top:90px; position:relative; z-index:1; }
.hero p { max-width:610px; font-size:1.12rem; color:#4f5e69; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin:30px 0 42px; }
.hero-badges { display:flex; gap:28px; flex-wrap:wrap; }
.hero-badge strong { display:block; color:var(--navy); font-size:1.18rem; }
.hero-badge span { color:var(--muted); font-size:.88rem; }

.booking-bar { position:relative; margin-top:-58px; z-index:10; }
.booking-card { background:rgba(255,255,255,.96); border-radius:24px; box-shadow:var(--shadow); padding:18px; display:grid; grid-template-columns:1.1fr 1.1fr .8fr auto; gap:12px; }
.field { display:flex; flex-direction:column; gap:6px; padding:4px 10px; }
.field label { font-size:.76rem; text-transform:uppercase; letter-spacing:.1em; font-weight:700; color:var(--teal-dark); }
.field input,.field select,.form-control { width:100%; border:1px solid var(--line); border-radius:14px; background:var(--white); padding:14px 15px; outline:none; color:var(--navy); }
.field input,.field select { border:0; padding:0; background:transparent; }
.form-control:focus { border-color:var(--teal); box-shadow:0 0 0 4px rgba(31,165,154,.1); }

.split { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.image-stack { position:relative; min-height:560px; }
.image-stack .img-main { position:absolute; inset:0 15% 8% 0; border-radius:var(--radius); object-fit:cover; width:85%; height:92%; box-shadow:var(--shadow); }
.image-stack .img-small { position:absolute; width:45%; height:42%; object-fit:cover; right:0; bottom:0; border:10px solid var(--cream); border-radius:22px; }
.floating-note { position:absolute; right:0; top:12%; background:var(--white); border-radius:18px; padding:18px 20px; box-shadow:var(--shadow); color:var(--navy); font-weight:700; }
.check-list { display:grid; gap:14px; margin:26px 0 34px; }
.check-list span { display:flex; align-items:center; gap:12px; color:var(--navy); }
.check-list span::before { content:'✓'; width:26px; height:26px; border-radius:50%; display:grid; place-items:center; background:rgba(31,165,154,.13); color:var(--teal-dark); font-weight:800; }

.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card { background:var(--white); border-radius:var(--radius); box-shadow:0 16px 40px rgba(13,36,56,.08); overflow:hidden; transition:.3s ease; }
.card:hover { transform:translateY(-8px); box-shadow:var(--shadow); }
.card-media { height:270px; object-fit:cover; width:100%; }
.card-body { padding:26px; }
.card-meta { display:flex; justify-content:space-between; color:var(--teal-dark); font-size:.82rem; font-weight:700; margin-bottom:10px; }
.card h3 { margin-bottom:8px; }
.card-link { color:var(--navy); font-weight:700; display:inline-flex; gap:8px; align-items:center; }

.band { background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.band h2,.band h3 { color:var(--white); }
.band p { color:rgba(255,255,255,.72); }
.band::after { content:''; position:absolute; width:420px; height:420px; border-radius:50%; border:1px solid rgba(255,255,255,.12); right:-100px; top:-100px; box-shadow:0 0 0 55px rgba(255,255,255,.025),0 0 0 110px rgba(255,255,255,.02); }
.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat { padding:26px; border:1px solid rgba(255,255,255,.12); border-radius:20px; }
.stat strong { display:block; font-size:2.1rem; font-family:'Playfair Display',serif; color:#7ad7cf; }

.service-card { padding:32px; border:1px solid var(--line); border-radius:24px; background:rgba(255,255,255,.7); }
.service-icon { width:54px; height:54px; border-radius:17px; display:grid; place-items:center; background:var(--sand); font-size:1.5rem; margin-bottom:22px; }

.testimonial { background:var(--sand); border-radius:30px; padding:48px; display:grid; grid-template-columns:.8fr 1.2fr; gap:55px; align-items:center; }
.quote { font-family:'Playfair Display',serif; font-size:clamp(1.5rem,3vw,2.4rem); color:var(--navy); }

.page-hero { padding:165px 0 90px; background:linear-gradient(135deg,var(--sand),var(--cream)); position:relative; overflow:hidden; }
.page-hero h1 { font-size:clamp(3rem,6vw,5.4rem); max-width:850px; }
.page-hero p { max-width:700px; font-size:1.08rem; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:50px; }
.contact-card { background:var(--navy); color:var(--white); border-radius:28px; padding:38px; }
.contact-card h3 { color:var(--white); }
.contact-card p,.contact-card a { color:rgba(255,255,255,.75); }
.contact-item { padding:18px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-weight:700; color:var(--navy); font-size:.9rem; }
textarea.form-control { min-height:150px; resize:vertical; }
.form-status { margin-top:15px; color:var(--teal-dark); font-weight:700; }

.footer { background:#081926; color:var(--white); padding:70px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .8fr 1fr; gap:40px; }
.footer h3 { color:var(--white); font-size:1.1rem; font-family:'DM Sans',sans-serif; }
.footer p,.footer a { color:rgba(255,255,255,.64); }
.footer-links { display:grid; gap:10px; }
.footer-bottom { margin-top:45px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; font-size:.85rem; color:rgba(255,255,255,.5); }

.reveal { opacity:0; transform:translateY(26px); transition:.7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .nav-toggle { display:grid; place-items:center; }
  .nav-links { position:fixed; top:82px; left:20px; right:20px; background:var(--white); padding:24px; border-radius:20px; box-shadow:var(--shadow); flex-direction:column; align-items:flex-start; opacity:0; pointer-events:none; transform:translateY(-12px); transition:.25s; }
  .nav-links.open { opacity:1; pointer-events:auto; transform:none; }
  .booking-card { grid-template-columns:1fr 1fr; }
  .booking-card .btn { grid-column:1/-1; }
  .split,.contact-grid,.testimonial { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .stats { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 24px,1160px); }
  .section { padding:72px 0; }
  .hero { min-height:920px; background-position:62% center; }
  .hero-content { padding-top:110px; }
  .booking-card,.grid-3,.stats,.form-grid,.footer-grid { grid-template-columns:1fr; }
  .booking-card .btn,.form-group.full { grid-column:auto; }
  .image-stack { min-height:440px; }
  .testimonial { padding:30px 24px; }
  .footer-bottom { flex-direction:column; }
}
