/* Sandmartins landing page — mobile-first, fast, no framework. */
:root {
  --forest: #1f3d2b;
  --forest-deep: #16291d;
  --cream: #f6f1e7;
  --sand: #e7dcc5;
  --charcoal: #2b2b2b;
  --gold: #b08d57;
  --max: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.1; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 2px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: #9c7c4a; }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.7); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(22,41,29,0.75) 100%);
}
.hero__content { position: relative; max-width: var(--max); margin: 0 auto; padding: 2rem 1.5rem; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; margin: 0 0 1rem; opacity: 0.9; }
.hero__title { font-size: clamp(2.4rem, 7vw, 4.8rem); margin: 0 0 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero__sub { font-size: clamp(1.05rem, 2.5vw, 1.4rem); max-width: 36ch; margin: 0 0 2rem; }
.hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__price { margin: 1.4rem 0 0; font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; }
.hero__scroll { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.5rem; text-decoration: none; opacity: 0.8; animation: bob 2s infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Stats bar */
.stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem;
  background: var(--forest); color: var(--cream);
  padding: 2rem 1.5rem;
}
.stats__item { display: flex; flex-direction: column; align-items: center; min-width: 90px; }
.stats__num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #fff; }
.stats__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.85; }

/* Lead */
.lead { max-width: 720px; margin: 0 auto; padding: 4rem 1.5rem 2rem; text-align: center; }
.lead__title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--forest); margin: 0 0 1.5rem; }
.lead__text { font-size: 1.1rem; margin: 0 0 1.2rem; }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px; padding: 2rem 0;
}
.gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* Facts */
.facts { max-width: var(--max); margin: 0 auto; padding: 3rem 1.5rem; }
.facts__title { font-size: 2rem; color: var(--forest); text-align: center; margin: 0 0 2rem; }
.facts__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem 2rem; }
.facts__list li { border-bottom: 1px solid var(--sand); padding-bottom: 0.6rem; }
.facts__list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }

/* Viewing */
.viewing { background: var(--forest-deep); color: var(--cream); text-align: center; padding: 4rem 1.5rem; }
.viewing__title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin: 0 0 1rem; }
.viewing__text { max-width: 46ch; margin: 0 auto 2rem; }
.viewing__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.viewing__contact { margin: 1.6rem auto 0; font-size: 0.95rem; color: var(--sand); max-width: 46ch; }
.viewing__contact a { color: #fff; text-decoration: underline; }

/* Footer */
.footer { background: #12201a; color: var(--sand); text-align: center; padding: 2rem 1.5rem; }
.footer p { margin: 0.2rem 0; }
.footer__small { font-size: 0.85rem; opacity: 0.7; }
