:root {
  --clay: #8b4513;
  --clay-dark: #5c2e0a;
  --terracotta: #c4784a;
  --sand: #f5ebe0;
  --cream: #faf6f1;
  --wheat: #e8d5b7;
  --ink: #2c1810;
  --ink-soft: #4a3428;
  --muted: #7a6355;
  --sage: #6b7f5a;
  --sage-light: #e8efe3;
  --white: #fff;
  --shadow: rgba(44, 24, 16, 0.12);
  --radius: 12px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-dark); }
ul { list-style: none; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--clay); color: #fff; padding: 0.75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--wheat);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px var(--shadow);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--wheat); flex-shrink: 0; background: var(--sand);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.brand-tag { font-size: 0.72rem; color: var(--muted); font-style: italic; }
.nav-toggle {
  display: none; background: var(--sand); border: 1px solid var(--wheat);
  border-radius: 8px; padding: 0.5rem 0.75rem; cursor: pointer; color: var(--ink);
}
.site-nav ul { display: flex; gap: 0.25rem; flex-wrap: wrap; align-items: center; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft); padding: 0.45rem 0.85rem;
  border-radius: 999px; font-size: 0.92rem; font-weight: 500;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--sand); color: var(--clay-dark); }
.site-nav a.nav-cta { background: var(--clay); color: var(--white); }
.site-nav a.nav-cta:hover { background: var(--clay-dark); color: var(--white); }
main { flex: 1; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem; }
.page-hero {
  background-color: #5c2e0a; background-size: cover; background-position: center;
  color: var(--white); padding: 3.5rem 1.25rem; text-align: center;
}
.page-hero--home { padding: 4.5rem 1.25rem 4rem; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 2.85rem);
  margin-bottom: 0.6rem; text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.page-hero .lede {
  font-size: clamp(1rem, 2.5vw, 1.25rem); opacity: 0.95;
  max-width: 36rem; margin: 0 auto 1.5rem; font-style: italic;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--white); color: var(--clay-dark); }
.btn-primary:hover { background: var(--sand); color: var(--clay-dark); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-solid { background: var(--clay); color: var(--white); }
.btn-solid:hover { background: var(--clay-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--clay); border-color: var(--terracotta); }
.btn-outline:hover { background: var(--sand); color: var(--clay-dark); }
.section { padding: 2.75rem 0; }
.section-alt { background: var(--sand); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--clay-dark); margin-bottom: 0.5rem; text-align: center;
}
.section-sub { text-align: center; color: var(--muted); max-width: 36rem; margin: 0 auto 2rem; }
.divider { width: 64px; height: 3px; background: var(--terracotta); margin: 0.75rem auto 1.75rem; border-radius: 2px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: 0 4px 16px var(--shadow); border: 1px solid var(--wheat);
}
.card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--clay-dark); margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.feature-row img {
  border-radius: var(--radius); box-shadow: 0 8px 24px var(--shadow);
  width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--wheat);
}
.feature-copy h2 { font-family: var(--font-display); font-size: 1.65rem; color: var(--clay-dark); margin-bottom: 0.75rem; }
.feature-copy p { margin-bottom: 1rem; color: var(--ink-soft); }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.pill { background: var(--sage-light); color: var(--sage); padding: 0.3rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: step; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.25rem;
  text-align: center; border: 1px solid var(--wheat);
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; width: 2rem; height: 2rem; align-items: center; justify-content: center;
  background: var(--clay); color: #fff; border-radius: 50%; font-weight: 700; margin-bottom: 0.75rem;
}
.step h3 { font-family: var(--font-display); color: var(--clay-dark); margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
.gallery-grid a {
  margin: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 1;
  background: var(--wheat); box-shadow: 0 2px 8px var(--shadow);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s; }
.gallery-grid a:hover img { transform: scale(1.05); }
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(20, 10, 5, 0.92);
  z-index: 100; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 95vw; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.15);
  border: none; color: #fff; font-size: 1.5rem; width: 2.5rem; height: 2.5rem;
  border-radius: 50%; cursor: pointer;
}
.callout {
  background: var(--white); border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 16px var(--shadow); margin: 1.5rem 0;
}
.callout strong { color: var(--clay-dark); }
.checklist { margin: 1.25rem 0; }
.checklist li {
  padding: 0.65rem 0 0.65rem 2rem; position: relative;
  border-bottom: 1px solid var(--wheat); color: var(--ink-soft);
}
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.checklist li.no::before { content: "✗"; color: var(--terracotta); }
.about-historic { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 28px var(--shadow); margin: 1.5rem 0; }
.about-historic img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--wheat); }
.about-historic figcaption {
  background: var(--sand); padding: 0.85rem 1.25rem; font-size: 0.88rem;
  color: var(--muted); font-style: italic;
}
.logo-feature {
  display: flex; gap: 1.5rem; align-items: center; background: var(--white);
  padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--wheat); margin: 1.5rem 0;
}
.logo-feature img {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--wheat); flex-shrink: 0; background: var(--sand);
}
.inquire-form {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--wheat); box-shadow: 0 4px 16px var(--shadow);
  max-width: 560px; margin: 0 auto;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.35rem; color: var(--ink-soft); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 0.85rem; border: 1.5px solid var(--wheat);
  border-radius: 8px; font: inherit; background: var(--cream); color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--terracotta); background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.contact-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0 1rem; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white);
  border: 1px solid var(--wheat); padding: 0.65rem 1.1rem; border-radius: 999px;
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 0.92rem;
  box-shadow: 0 2px 8px var(--shadow);
}
.contact-chip:hover { border-color: var(--terracotta); color: var(--clay-dark); }
.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 2.5rem 1.25rem 1.5rem; margin-top: auto; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
.footer-brand { display: flex; gap: 0.85rem; align-items: flex-start; }
.footer-brand img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2); background: #444;
}
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin-bottom: 0.25rem; }
.footer-brand p { font-size: 0.85rem; opacity: 0.75; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--terracotta); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; padding: 0.2rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max); margin: 2rem auto 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; opacity: 0.6; text-align: center;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open { display: block; }
  .header-inner { flex-wrap: wrap; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 0.5rem 0 0.75rem; }
  .site-nav a { display: block; text-align: center; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row img { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .logo-feature { flex-direction: column; text-align: center; }
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

.reviews-note p { color: var(--ink-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--wheat);
  box-shadow: 0 4px 16px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-quote {
  margin: 0;
  position: relative;
  padding-left: 0.25rem;
}
.review-quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.55;
  position: absolute;
  top: -0.55rem;
  left: -0.15rem;
}
.review-quote p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.35rem;
  font-style: italic;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wheat);
}
.review-name {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--clay-dark);
  font-size: 1.05rem;
}
.review-date {
  font-size: 0.85rem;
  color: var(--muted);
}
.review-badge {
  display: inline-block;
  margin-top: 0.4rem;
  width: fit-content;
  background: var(--sage-light);
  color: var(--sage);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
