:root {
  --green: #17352f;
  --green-2: #27584d;
  --sand: #f4eadc;
  --cream: #fbf7ef;
  --terracotta: #bd6b48;
  --ink: #17211f;
  --muted: #66706d;
  --line: rgba(23, 33, 31, .13);
  --shadow: 0 24px 70px rgba(23, 33, 31, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(23, 53, 47, .93);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.brand strong { display: block; font-size: 1rem; letter-spacing: .01em; }
.brand small { display: block; color: rgba(255,255,255,.75); font-size: .78rem; margin-top: -2px; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: .93rem; }
.site-nav a { color: rgba(255,255,255,.88); }
.site-nav a:hover { color: white; }
.nav-cta { border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: 10px 16px; }
.nav-toggle { display: none; background: none; border: 0; color: white; font-size: 1.8rem; }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(23,53,47,.12), rgba(189,107,72,.18)),
    url('photos/hero.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,25,22,.88), rgba(10,25,22,.42) 50%, rgba(10,25,22,.12)); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  padding: 150px clamp(20px, 6vw, 72px) 46px;
  color: white;
}
.eyebrow { text-transform: uppercase; letter-spacing: .16em; color: var(--terracotta); font-size: .76rem; font-weight: 800; margin: 0 0 12px; }
.hero .eyebrow { color: #f0c28d; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.05; margin: 0; }
h1 { max-width: 850px; font-size: clamp(3.1rem, 8vw, 7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -.04em; }
h3 { margin: 0 0 8px; font-size: 1.05rem; }
.hero-text { max-width: 640px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 2vw, 1.32rem); margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 54px; }
.button { display: inline-flex; justify-content: center; align-items: center; border-radius: 999px; padding: 14px 22px; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.button.primary { background: var(--terracotta); color: white; box-shadow: 0 14px 34px rgba(189,107,72,.34); }
.button.ghost { border-color: rgba(255,255,255,.46); color: white; }
.button.full { width: 100%; border: 0; font-size: 1rem; }
.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1050px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.24);
}
.fact-strip li { padding: 20px; background: rgba(255,255,255,.1); }
.fact-strip strong, .fact-strip span { display: block; }
.fact-strip span { color: rgba(255,255,255,.7); font-size: .9rem; }

.notice {
  margin: -28px clamp(20px, 6vw, 72px) 0;
  position: relative;
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 22px;
  background: #fff8ea;
  border: 1px solid rgba(189,107,72,.25);
  box-shadow: 0 18px 45px rgba(23,33,31,.08);
}
.notice strong { color: var(--terracotta); white-space: nowrap; }
.notice span { color: #5c5147; }

.section { padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 72px); }
.section-heading { max-width: 840px; margin-bottom: 38px; }
.section-heading.compact { max-width: 720px; text-align: center; margin-inline: auto; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 80px); max-width: 1120px; color: var(--muted); font-size: 1.08rem; }
.cards { display: grid; gap: 18px; margin-top: 38px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card, .feature, .map-card, .contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(23,33,31,.06);
}
.card { padding: 28px; }
.card span { color: var(--terracotta); font-weight: 900; }
.card p, .feature p { color: var(--muted); margin: 0; }

.visual-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; padding: 0 clamp(20px, 6vw, 72px) clamp(76px, 10vw, 132px); }
.visual-copy { background: var(--green); color: white; padding: clamp(34px, 5vw, 64px); border-radius: 36px; display: flex; flex-direction: column; justify-content: center; }
.visual-copy p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.text-link { color: #f0c28d; font-weight: 800; margin-top: 16px; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-height: 520px; }
.photo {
  border-radius: 34px;
  min-height: 220px;
  display: flex;
  align-items: end;
  padding: 20px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #34685c, #e0b277);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.photo:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.55)); }
.photo span { position: relative; }
.ph-1 { grid-row: span 2; background-image: url('photos/pool.jpg'); }
.ph-2 { background-image: url('photos/outdoor.jpg'); }
.ph-3 { background-image: url('photos/living.jpg'); }
.ph-4 { background-image: url('photos/bedroom.jpg'); }

.warm { background: var(--sand); }
.feature { padding: 24px; }

.progress-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.progress-grid figure {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(23,33,31,.07);
}
.progress-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.progress-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.split { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(30px, 6vw, 88px); align-items: center; }
.check-list { padding: 0; margin: 28px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li:before { content: "✓"; color: var(--terracotta); font-weight: 900; margin-right: 10px; }
.map-card { min-height: 360px; display: grid; place-items: center; text-align: center; padding: 36px; background: linear-gradient(145deg, #fff, #f3e6d4); }
.map-card span { font-family: "Playfair Display", serif; font-size: 2rem; }
.map-card p { color: var(--muted); max-width: 320px; }
.testimonials { background: var(--green); color: white; }
.testimonials h2 { color: white; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.86); font-size: 1.08rem; }
.booking { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.contact-form { padding: 26px; display: grid; gap: 16px; }
label { display: grid; gap: 7px; font-size: .9rem; color: var(--muted); font-weight: 700; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; font: inherit; background: #fffdf9; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin: 0; color: var(--muted); font-size: .82rem; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 36px clamp(20px, 6vw, 72px); background: #102721; color: white; }
.site-footer p { color: rgba(255,255,255,.65); margin: 4px 0 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 76px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 22px; background: rgba(23,53,47,.98); }
  .site-nav.open { display: flex; }
  .fact-strip, .cards.three, .cards.four, .intro-grid, .visual-section, .split, .quotes, .booking, .progress-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .mosaic { min-height: unset; }
  .ph-1 { grid-row: auto; }
}
@media (max-width: 560px) {
  .hero-content { padding-bottom: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .notice { align-items: flex-start; flex-direction: column; }
}
