:root {
  --green: #12372a;
  --green-2: #1f4a39;
  --teal: #1a7772;
  --orange: #e98b2a;
  --cream: #f7f1e8;
  --paper: #fffaf2;
  --charcoal: #20231f;
  --muted: #68706a;
  --line: rgba(18, 55, 42, .16);
  --shadow: 0 22px 55px rgba(18, 55, 42, .18);
  --radius: 24px;
}

* { 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(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 232, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link img { width: 230px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; }
.nav-links a { text-decoration: none; color: var(--green); }
.nav-links a:hover { color: var(--orange); }
.nav-toggle { display: none; border: 0; background: var(--green); color: #fff; padding: 10px 13px; border-radius: 12px; font-size: 21px; }
.button, .button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button { background: var(--orange); color: #1e160c; box-shadow: 0 10px 24px rgba(233,139,42,.26); }
.button:hover, .button-outline:hover { transform: translateY(-2px); }
.button-outline { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.button.dark { background: var(--green); color: #fff; box-shadow: none; }
.button.light { background: #fff; color: var(--green); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,55,42,.93), rgba(18,55,42,.64), rgba(18,55,42,.30)), url('../images/exterior-wide.jpg') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--cream));
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; padding: 76px 0 120px; }
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.1; margin: 0; color: var(--green); }
.hero h1 { color: #fff; font-size: clamp(2.7rem, 6vw, 5.7rem); letter-spacing: -.055em; max-width: 860px; }
.hero .lead { max-width: 650px; color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 2vw, 1.28rem); margin: 24px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.quick-card {
  background: rgba(255, 250, 242, .94);
  border-radius: var(--radius);
  color: var(--charcoal);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}
.quick-card h2 { font-size: 1.55rem; margin-bottom: 12px; }
.quick-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.quick-list li { display: flex; gap: 10px; align-items: flex-start; }
.quick-list li::before { content: "✓"; color: var(--orange); font-weight: 900; }
.phone-big { display: block; font-size: 1.65rem; font-weight: 900; color: var(--green); text-decoration: none; margin-top: 4px; }

.section { padding: 82px 0; }
.section.alt { background: var(--paper); }
.section-header { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 34px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.035em; }
.section-header p { max-width: 540px; color: var(--muted); margin: 12px 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .room-card, .review-card, .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18,55,42,.08);
}
.feature-card { padding: 28px; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(233,139,42,.12); color: var(--orange); font-size: 24px; margin-bottom: 16px; }
.feature-card h3, .room-card h3, .review-card h3, .info-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature-card p, .review-card p, .info-card p { color: var(--muted); margin: 0; }

.room-card img { width: 100%; height: 245px; object-fit: cover; }
.room-content { padding: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tags span { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font-weight: 700; font-size: .82rem; color: var(--green); }
.photo-strip { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; margin-top: 34px; }
.photo-strip img { height: 260px; width: 100%; object-fit: cover; border-radius: 22px; box-shadow: 0 12px 26px rgba(18,55,42,.12); }

.cta-band { background: var(--green); color: #fff; border-radius: 34px; padding: 42px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.82); margin: 12px 0 0; max-width: 680px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 26px; }
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 12px; }
.review-card cite { display: block; margin-top: 18px; font-style: normal; font-weight: 800; color: var(--green); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.split img { border-radius: 30px; box-shadow: var(--shadow); width: 100%; height: 450px; object-fit: cover; }
.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; color: var(--muted); }
.checks li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 10px; }

.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(18,55,42,.08); }
.form-grid { display: grid; gap: 14px; }
label { font-weight: 800; color: var(--green); }
input, textarea, select { width: 100%; margin-top: 6px; border: 1px solid var(--line); border-radius: 16px; padding: 14px 15px; font: inherit; background: #fffaf5; }
textarea { min-height: 140px; resize: vertical; }
.map-wrap { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); min-height: 420px; background: #ddd; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.footer { background: #0d281f; color: rgba(255,255,255,.84); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; align-items: start; }
.footer img { width: 230px; margin-bottom: 18px; }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 18px; font-size: .9rem; color: rgba(255,255,255,.66); }

@media (max-width: 900px) {
  .nav { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 18px; right: 18px; top: 74px; display: none; flex-direction: column; align-items: stretch; background: #fffaf2; padding: 18px; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-inner, .split, .contact-panel, .cta-band { grid-template-columns: 1fr; }
  .grid-3, .review-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-header { display: block; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 240px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 0 90px; }
  .logo-link img { width: 190px; }
  .cta-band { padding: 28px; }
}
