:root {
  --ink: #171411;
  --muted: #675f58;
  --paper: #fffaf4;
  --soft: #f1e6d8;
  --line: #e5d8c7;
  --clay: #a94d35;
  --sage: #2f6f67;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(38, 28, 19, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip { position: absolute; left: -999px; top: 1rem; background: var(--ink); color: white; padding: .7rem 1rem; z-index: 30; }
.skip:focus { left: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 244, .92);
  border-bottom: 1px solid rgba(229, 216, 199, .9);
  backdrop-filter: blur(16px);
}
.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: grid; gap: 2px; font-weight: 850; letter-spacing: 0; }
.brand small { color: var(--clay); font-weight: 750; font-size: .78rem; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 18px; color: #3c342e; font-weight: 720; font-size: .95rem; }
.nav-links a { padding: .45rem .15rem; }
.nav-links a:hover { color: var(--clay); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 6px; padding: .5rem .65rem; font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .72rem 1.05rem; border-radius: 6px; border: 1px solid transparent; font-weight: 850; }
.btn.primary { background: var(--ink); color: white; }
.btn.primary:hover { background: #342b24; }
.btn.secondary { border-color: var(--ink); color: var(--ink); background: rgba(255,255,255,.64); }
.btn.secondary:hover { background: white; }
.hero { min-height: 78vh; display: grid; align-items: end; position: relative; overflow: hidden; background: #241a15; color: white; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,13,9,.76), rgba(20,13,9,.33) 45%, rgba(20,13,9,.12)); }
.hero-inner { position: relative; z-index: 1; width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 112px 0 72px; }
.kicker { color: #b8472d; font-weight: 900; text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; }
.hero .kicker { color: #ffd1bd; }
h1, h2, h3 { line-height: 1.04; letter-spacing: 0; margin: 0; }
h1 { max-width: 780px; margin-top: 12px; font-size: clamp(2.35rem, 6.5vw, 5.8rem); }
.hero p { max-width: 650px; margin: 22px 0 0; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #fff0e7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.section { padding: 76px 0; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section-title { max-width: 760px; margin-bottom: 32px; }
.section-title p { margin: 14px 0 0; color: var(--muted); font-size: 1.08rem; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 0 rgba(0,0,0,.03); }
.card-body { padding: 22px; }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0 0 12px; }
.band { background: var(--soft); border-block: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.split img { border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.list li { display: flex; gap: 10px; color: #3e362f; }
.list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--sage); margin-top: .55rem; flex: 0 0 auto; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price { padding: 24px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.price strong { display: block; font-size: 2rem; margin: 10px 0; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 850; }
.faq p { color: var(--muted); margin-bottom: 0; }
.cta { background: var(--ink); color: white; padding: 58px 0; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta p { color: #eaded2; margin: 12px 0 0; max-width: 620px; }
.site-footer { padding: 34px 0; background: #0f0d0b; color: #e9ddd1; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.breadcrumb { margin: 24px 0 0; color: var(--muted); font-size: .94rem; }
.page-hero { padding: 70px 0 52px; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { color: var(--ink); font-size: clamp(2.1rem, 4.8vw, 4.7rem); }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.16rem; }
.editable table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.editable th, .editable td { text-align: left; border-bottom: 1px solid var(--line); padding: 14px; }
.editable th { background: #f8efe5; }
@media (max-width: 860px) {
  .nav { min-height: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 64px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); padding: 12px 24px 22px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 0; }
  .grid.three, .grid.two, .pricing, .split { grid-template-columns: 1fr; }
  .hero { min-height: 74vh; }
  .cta .wrap { display: block; }
}
