:root {
  --bg: #f6f2ea;
  --bg-warm: #ede5d4;
  --panel: #ffffff;
  --text: #1f2a22;
  --text-soft: #4a564c;
  --muted: #707a6f;
  --border: #d9d1c0;
  --border-soft: #e6dfd0;
  --accent: #2a5340;
  --accent-dark: #1c3e2e;
  --accent-soft: #dbe6dc;
  --accent-warm: #b48a4f;
  --shadow-sm: 0 4px 14px rgba(31, 42, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(31, 42, 34, 0.08);
  --shadow-lg: 0 28px 70px rgba(31, 42, 34, 0.14);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(246, 242, 234, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 209, 192, 0.6);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 4px;
}
.site-header nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-left: auto;
}
.site-header nav a {
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.site-header nav a:hover { color: var(--text); }
.site-header nav a:hover::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(28, 62, 46, 0.28);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--accent-dark); box-shadow: 0 10px 24px rgba(28, 62, 46, 0.36); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  padding: 100px clamp(20px, 6vw, 90px) 130px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #1c3e2e;
  background-image:
    linear-gradient(180deg, rgba(16, 30, 23, 0.52) 0%, rgba(16, 30, 23, 0.34) 38%, rgba(16, 30, 23, 0.74) 100%),
    linear-gradient(90deg, rgba(16, 30, 23, 0.64) 0%, rgba(16, 30, 23, 0.30) 55%, rgba(16, 30, 23, 0.12) 100%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.hero-content {
  max-width: 760px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(10, 20, 15, 0.45);
  animation: heroIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.hero .eyebrow { color: #e8d8a8; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 7.4vw, 88px);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: #fff;
}
h1 em {
  font-style: italic;
  color: #ead09a;
  font-weight: 400;
}
h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 50px);
  font-variation-settings: "opsz" 100, "SOFT" 50;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.hero-subtitle {
  max-width: 580px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-platforms {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 22px;
}
.hero-platforms a { color: #ead09a; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(234, 208, 154, 0.5); }
.hero-platforms a:hover { border-color: #ead09a; }
.hero-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===== Buttons ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.large { min-height: 58px; padding: 16px 34px; font-size: 16.5px; }
.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(28, 62, 46, 0.32);
}
.button.primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 32px rgba(28, 62, 46, 0.4);
}
.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.button.full { width: 100%; }

/* ===== Quick Facts ===== */
.quick-facts {
  width: min(1140px, calc(100% - 40px));
  margin: -66px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--border-soft);
  box-shadow: var(--shadow-lg);
}
.quick-facts div {
  background: var(--panel);
  padding: 26px 24px;
}
.quick-facts strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.quick-facts span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

/* ===== Sections ===== */
.section {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}
.intro, .book {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.intro-text p { color: var(--text-soft); font-size: 18px; line-height: 1.65; }
.intro-text p + p { margin-top: 16px; }
.section-title { max-width: 760px; margin-bottom: 40px; }
.section-title.centered { margin: 0 auto 48px; text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 13.5px; }

/* ===== Why book direct ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.why-card p { color: var(--text-soft); font-size: 15px; margin: 0; line-height: 1.6; }

/* ===== Feature list ===== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-list.compact { margin-top: 24px; }
.feature-list div {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-list div:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.feature-list strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.feature-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13.5px;
}

/* ===== Photos ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 236px;
  gap: 14px;
}
.photo-card {
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-sm);
  background-color: #2a5340;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.photo-card:hover { transform: scale(1.015); }
.photo-card.large { grid-row: span 2; }
.photo-card span {
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 36, 28, 0) 50%, rgba(20, 36, 28, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ===== Location cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cards article {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cards article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cards article p:last-child {
  color: var(--text-soft);
  font-size: 14.5px;
  margin: 0;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: 999px;
  margin: 0 0 12px;
}

/* ===== Reviews ===== */
.reviews { background: linear-gradient(180deg, transparent 0%, var(--bg-warm) 22%, var(--bg-warm) 78%, transparent 100%); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.review-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  color: var(--accent-warm);
  font-size: 16px;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
}
.review-card .quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 16px;
  flex: 1;
}
.review-card .reviewer {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ===== Book Direct ===== */
.book { align-items: start; background: var(--bg-warm); border-radius: var(--radius-lg); padding: clamp(40px, 5vw, 64px); width: min(1140px, calc(100% - 40px)); }
.book-intro h2 { margin-bottom: 16px; }
.steps { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.steps strong { display: block; font-family: var(--display); font-weight: 600; font-size: 16.5px; }
.steps span { display: block; color: var(--text-soft); font-size: 14.5px; margin-top: 2px; }
.platform-fallback { margin: 28px 0 0; font-size: 14px; color: var(--muted); }
.platform-fallback a { color: var(--accent); font-weight: 600; }

/* ===== Book form ===== */
.book-form {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  gap: 15px;
  box-shadow: var(--shadow-md);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.optional { font-weight: 400; color: var(--muted); font-size: 12.5px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
input::placeholder, textarea::placeholder { color: #a8aea3; font-weight: 400; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(42, 83, 64, 0.12);
}
.form-fineprint { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; text-align: center; }

/* ===== Form thank-you state ===== */
.form-thank-you {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 52px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: thankYouIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.form-thank-you .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 22px;
  animation: checkPop 0.6s 0.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.form-thank-you .checkmark svg { width: 32px; height: 32px; }
.form-thank-you h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.form-thank-you p {
  max-width: 440px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.55;
}
@keyframes thankYouIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes checkPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

/* ===== Footer ===== */
footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-soft);
  margin-top: 60px;
}
.footer-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
  transition: color 0.18s ease;
}
.footer-links a:hover { color: var(--accent); }
.copyright { justify-self: end; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .photo-card.large { grid-row: span 2; grid-column: span 2; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { flex-wrap: wrap; gap: 12px; padding: 14px 20px; }
  .site-header nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 2px; gap: 16px; margin-left: 0; }
  .site-header nav::-webkit-scrollbar { display: none; }
  .header-cta { margin-left: auto; }
  .hero { min-height: 580px; padding: 74px 24px 104px; }
  .quick-facts { margin-top: -52px; }
  .section { padding: 72px 0; }
  .intro, .book { grid-template-columns: 1fr; gap: 28px; }
  .book { padding: 32px 22px; }
  .feature-list { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .photo-card.large { grid-row: auto; grid-column: auto; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; justify-items: start; gap: 18px; }
  .footer-links { justify-content: flex-start; }
  .copyright { justify-self: start; }
  .hero-actions .button { width: 100%; }
}
@media (max-width: 480px) {
  .quick-facts { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
