/* ===== Design tokens ===== */
:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f1ece2;
  --color-surface: #ffffff;
  --color-text: #2a2622;
  --color-text-muted: #6b6459;
  --color-border: #e6ddcf;
  --color-accent: #b4602e;
  --color-accent-dark: #8f4a22;
  --color-accent-soft: #f4e4d5;

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(42, 38, 34, 0.18);
  --container-width: 1120px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 760px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
  margin-bottom: 32px;
  text-align: center;
}
h3 { font-size: 1.25rem; margin-bottom: 12px; }

.section { padding: 88px 0; }
.section.alt { background: var(--color-bg-alt); }
.section h2 + p { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent-dark); transform: translateY(-1px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-mark { font-size: 1.3rem; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--color-accent-dark); }

.header-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(1200px 500px at 15% -10%, var(--color-accent-soft), transparent 60%),
    var(--color-bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 14px;
}

.hero h1 { margin-bottom: 20px; }

.lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-facts li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.hero-facts strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
}

.hero-media { min-width: 0; }

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

/* ===== Media placeholder (fallback if a photo is missing) ===== */
.media-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1.5px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-muted);
  box-shadow: var(--shadow);
}
.media-placeholder span { font-size: 2rem; }
.media-placeholder p { font-size: 0.85rem; font-weight: 500; }

/* ===== Intro ===== */
.intro p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}
.intro p:last-child { margin-bottom: 0; }

/* ===== Check lists ===== */
.check-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--color-text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.check-list.two-col {
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card ul { display: flex; flex-direction: column; gap: 10px; }
.card li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ===== Price box ===== */
.price-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  text-align: center;
}
.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent-dark);
  margin-bottom: 4px;
}
.price span { font-size: 1.1rem; color: var(--color-text-muted); font-family: var(--font-body); font-weight: 500; }
.price-note { color: var(--color-text-muted); margin-bottom: 24px; }
.price-box .check-list { text-align: left; margin-bottom: 32px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.address {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.location-text p { color: var(--color-text-muted); margin-bottom: 24px; }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.location-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ===== Contact ===== */
.contact { text-align: center; }
.contact p { color: var(--color-text-muted); margin-bottom: 28px; }
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text);
  color: #ece7dd;
  padding: 40px 0;
}
.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}
.footer-inner a { text-decoration: underline; text-underline-offset: 3px; }
.footer-inner .copyright { color: #a39d8f; margin-top: 8px; font-size: 0.82rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px 24px;
    gap: 18px;
  }

  .section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .price-box { padding: 32px 24px; }
}
