:root {
  --brown: #5b3a1e;
  --brown-dark: #3b2510;
  --cream: #f6efe2;
  --gold: #c9a14a;
  --gold-dark: #a8842f;
  --ink: #2a1f12;
  --muted: #6b5c4a;
  --line: #e3d9c4;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fjalla One', 'Oswald', 'Impact', sans-serif;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

a { color: var(--brown); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: 'Fjalla One', sans-serif; font-size: 1.15rem; color: var(--brown-dark); letter-spacing: .04em; text-transform: uppercase; }
.brand-text .tag { font-size: .8rem; color: var(--muted); }

nav.primary ul { list-style: none; display: flex; gap: 6px; flex-wrap: wrap; }
nav.primary a {
  display: inline-block;
  padding: 10px 14px;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .92rem;
  color: var(--brown-dark);
  border-radius: 4px;
}
nav.primary a:hover, nav.primary a.active { background: var(--brown); color: var(--cream); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--brown-dark); margin: 5px 0; border-radius: 2px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.primary { display: none; width: 100%; }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; gap: 2px; padding-top: 10px; }
  nav.primary a { display: block; }
  .nav-wrap { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  background: #2a1f12 url('../images/hero.jpg') center/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
}
.hero-inner { position: relative; z-index: 1; padding: 80px 24px; max-width: 900px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero p.lede {
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #f4eddd;
}
.hero .cta-row { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero.compact { min-height: 36vh; }
.hero.compact .hero-inner { padding: 50px 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .95rem;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.btn-primary { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--brown-dark); }
.btn-dark { background: var(--brown-dark); color: var(--cream); border-color: var(--brown-dark); }
.btn-dark:hover { background: var(--brown); border-color: var(--brown); color: #fff; }

/* ---------- Layout / Sections ---------- */
.section { padding: 72px 24px; }
.section.tight { padding: 48px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 48px; }

.bg-cream { background: var(--cream); }
.bg-white { background: #fff; }
.bg-dark { background: var(--brown-dark); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }

.divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 24px; border: 0; }

/* ---------- Tiles / Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(60,38,16,.3); }
.tile .thumb { aspect-ratio: 4/3; background: #ddd center/cover no-repeat; }
.tile .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tile h3 { font-size: 1.4rem; margin-bottom: 8px; }
.tile p { color: var(--muted); flex: 1; }
.tile .more { margin-top: 14px; font-family: 'Fjalla One', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: var(--gold-dark); }

/* ---------- Feature blocks ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  margin-bottom: 56px;
}
.feature-row.reverse > .feature-img { order: 2; }
.feature-img img { border-radius: 6px; box-shadow: 0 20px 50px -25px rgba(60,38,16,.5); }
.feature-text h3 { font-size: 1.8rem; margin-bottom: 14px; }
.feature-text ul { list-style: none; }
.feature-text li { padding: 6px 0 6px 26px; position: relative; }
.feature-text li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
}
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .feature-row.reverse > .feature-img { order: 0; }
}

/* ---------- Pricing ---------- */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 30px;
  text-align: center;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price { font-family: 'Fjalla One', sans-serif; font-size: 2.4rem; color: var(--gold-dark); margin: 12px 0 6px; }
.price-card .unit { color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.price-card .desc { color: var(--muted); margin-top: 14px; font-size: .95rem; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 14px rgba(60,38,16,.06); }
.price-table caption { font-family: 'Fjalla One', sans-serif; font-size: 1.3rem; text-align: left; padding: 18px 22px; background: var(--brown-dark); color: #fff; }
.price-table th, .price-table td { padding: 14px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: #faf4e6; font-family: 'Fjalla One', sans-serif; font-weight: 400; }
.price-table td.amt { text-align: right; font-family: 'Fjalla One', sans-serif; color: var(--brown-dark); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { color: var(--muted); font-size: .9rem; text-align: center; margin-top: 12px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a { display: block; aspect-ratio: 4/3; background: #ddd center/cover no-repeat; border-radius: 4px; overflow: hidden; }
.gallery a:hover { opacity: .9; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { margin-bottom: 10px; }
.contact-info .label { font-family: 'Fjalla One', sans-serif; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); font-size: .85rem; margin-top: 18px; }

.contact-form { background: #fff; padding: 30px; border-radius: 6px; border: 1px solid var(--line); }
.contact-form label { display: block; font-family: 'Fjalla One', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: var(--brown-dark); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px;
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--ink); margin-bottom: 16px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); background: #fff; }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-dark); color: var(--cream);
  padding: 56px 24px 28px;
  margin-top: 0;
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid a { color: var(--cream); }
.footer-grid a:hover { color: var(--gold); }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 4px 0; }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

.copyright {
  max-width: 1200px; margin: 36px auto 0;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .85rem; color: rgba(246,239,226,.7); text-align: center;
}

/* ---------- Calendar embed ---------- */
.calendar-frame {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(60,38,16,.06);
}
.calendar-frame iframe { width: 100%; height: 700px; border: 0; display: block; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.lightbox button { position: absolute; top: 20px; right: 24px; background: transparent; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
