/* ===== Design tokens ===== */
:root {
  --forest: #2f3d2f;
  --forest-dark: #1e281e;
  --cream: #faf6ee;
  --sand: #f0e6d2;
  --rust: #c1592c;
  --rust-dark: #a3491f;
  --ink: #2a2a26;
  --muted: #6b6a63;
  --radius: 14px;
  --max-width: 1080px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--forest-dark);
}

p { line-height: 1.6; color: var(--muted); }

img { max-width: 100%; display: block; }

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-size: 1.05rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: var(--rust);
  color: #fff;
  box-shadow: 0 6px 20px rgba(193, 89, 44, 0.35);
}

.btn--primary:hover,
.btn--primary:active {
  background: var(--rust-dark);
  transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 40, 30, 0.15) 0%, rgba(20, 26, 20, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.hero__content h1 {
  color: #fff;
  font-size: clamp(1.75rem, 6vw, 3rem);
  max-width: 20ch;
}

.hero__subhead {
  color: #f0ece2;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ===== Trust strip ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  background: var(--sand);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--forest-dark);
  font-size: 0.95rem;
}

.trust-icon {
  width: 32px;
  height: 32px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon svg circle {
  fill: var(--cream);
  stroke: none;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gallery img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ===== Feature list ===== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rust);
}

/* ===== Reviews ===== */
.review-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-stars {
  display: block;
  color: var(--rust);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.review-card p {
  color: var(--ink);
  font-style: italic;
  margin: 0 0 0.75rem;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

/* ===== Location section ===== */
.location {
  background: var(--forest);
  border-radius: var(--radius);
  max-width: calc(var(--max-width) - 2.5rem);
  color: var(--cream);
}

.location h2 { color: var(--cream); }
.location p { color: #dcdfd2; }

/* ===== Final CTA ===== */
.final-cta {
  text-align: center;
}

.final-cta p {
  margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p { margin: 0.25rem 0; color: var(--muted); }

/* ===== Responsive: tablet/desktop ===== */
@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

