/* Base */
:root {
  --bg: #fffaf3; /* warm ivory */
  --text: #172022;
  --muted: #5b6a6f;
  --brand: #0a5c3b; /* deep green */
  --brand-2: #0f7a50;
  --accent: #d4af37; /* gold */
  --card: #ffffff;
  --alt: #fbf7ef;
  --ring: rgba(13, 104, 67, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { width: min(1100px, 92vw); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; background: #fff; padding: .5rem .75rem; border-radius: .5rem; box-shadow: 0 6px 18px rgba(0,0,0,.12); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border-bottom: 1px solid #eee7d8; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; color: inherit; text-decoration: none; font-weight: 700; }
.brand .logo { width: 36px; height: 36px; }
.brand-text { font-family: "Playfair Display", Georgia, serif; font-weight: 700; letter-spacing: .2px; }

.nav-toggle { display: none; }
.nav-list { display: flex; gap: 1rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: inherit; text-decoration: none; padding: .5rem .6rem; border-radius: .5rem; }
.nav-list a:hover { background: #f3efe6; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid #e6e0d2; padding: .5rem .75rem; border-radius: .6rem; }
  .nav-list { position: absolute; right: 1rem; top: 64px; background: #fff; padding: .5rem; border-radius: .75rem; border: 1px solid #ecdfc2; box-shadow: 0 10px 30px rgba(0,0,0,.08); display: none; flex-direction: column; }
  .nav-list.open { display: flex; }
}

/* Typography */
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; color: #0c2d1e; line-height: 1.2; margin: 0 0 .5rem 0; }
h1 { font-size: clamp(1.9rem, 1.2rem + 2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem); }
h3 { font-size: 1.15rem; }
.lead { font-size: 1.1rem; color: var(--muted); }
.muted { color: var(--muted); }
.note { color: var(--muted); font-size: .95rem; margin-top: .75rem; }
.note.center { text-align: center; }

/* Sections */
.section { padding: clamp(2.5rem, 2.2rem + 1.2vw, 4rem) 0; }
.section.alt { background: var(--alt); border-top: 1px solid #efe6cf; border-bottom: 1px solid #efe6cf; }
.section-title { text-align: left; margin-bottom: .5rem; }
.section-subtitle { color: var(--muted); margin: 0 0 1.25rem 0; }

.grid-two { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
@media (max-width: 900px) { .grid-two { grid-template-columns: 1fr; } }

.hero { background: linear-gradient(120deg, #fefbf5 0%, #fffdf9 30%, #f5fff9 100%); }
.hero-copy .cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.trust { margin-top: .75rem; color: var(--muted); }

.hero-card { background: var(--card); border: 1px solid #efe6cf; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.06); }
.hero-photo { width: 100%; height: 260px; object-fit: cover; display: block; }
.card-caption { padding: .9rem 1rem; border-top: 1px solid #efe6cf; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 720px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid #efe6cf; border-radius: .9rem; padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,.04); }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 980px) { .pricing { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .pricing { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid #efe6cf; border-radius: 1rem; padding: 1rem; }
.price { font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; margin: .25rem 0 .5rem 0; }
.unit { font-size: .95rem; color: var(--muted); margin-left: .15rem; }
.features { margin: .5rem 0 1rem 1rem; color: var(--text); }
.features li { margin: .25rem 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { aspect-ratio: 4 / 3; border-radius: .75rem; border: 1px solid #efe6cf; overflow: hidden; background: #fff; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-card { border: 1px solid #efe6cf; border-radius: 1rem; display: grid; place-items: center; color: #0d6b45; background: #fff; font-weight: 700; min-height: 260px; }
.about-card.tall { min-height: 340px; }

.checklist { list-style: none; padding: 0; margin: .75rem 0 0 0; }
.checklist li { margin: .35rem 0; padding-left: 1.3rem; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* Forms */
.contact-form { background: #fff; border: 1px solid #efe6cf; border-radius: 1rem; padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,.04); }
.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 720px) { .grid-form { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; }
.field input, .field select, .field textarea { width: 100%; padding: .65rem .7rem; border-radius: .6rem; border: 1px solid #e6dfcd; background: #fff; font: inherit; color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }
.field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; gap: .75rem; margin-top: .75rem; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .6rem .9rem; border-radius: .7rem; text-decoration: none; font-weight: 600; border: 1px solid transparent; cursor: pointer; }
.btn:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-2); border-color: var(--brand-2); }
.btn-outline { background: #fff; color: var(--brand); border-color: #dfe6df; }
.btn-outline:hover { border-color: var(--brand); }
.btn-block { width: 100%; }

/* Footer */
.site-footer { padding: 2rem 0 5rem; background: #fff; border-top: 1px solid #efe6cf; margin-top: 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; align-items: start; }
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-links { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.brand-row { display: flex; align-items: center; gap: .5rem; }
.logo.small { width: 28px; height: 28px; }
.tiny { font-size: .9rem; }

/* Sticky mobile actions */
.sticky-actions { position: fixed; inset: auto 0 0 0; display: none; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #dfe6df; z-index: 60; }
.sticky-actions .action { background: #fff; padding: .8rem 1rem; text-align: center; font-weight: 700; text-decoration: none; color: var(--brand); }
.sticky-actions .action:hover { background: #f7fbf8; }
@media (max-width: 760px) { .sticky-actions { display: grid; } .site-footer { padding-bottom: 6.5rem; } }

/* Utility */
.center { text-align: center; }
.placeholder { background-image: url('/assets/img/pattern.svg'); background-size: 160px; }
