:root {
  --paper: #f6f1ea;
  --paper-soft: #ebe4d8;
  --surface: #efe8dc;
  --ink: #1c1916;
  --ink-soft: #2c2620;
  --muted: #6b645b;
  --subtle: #8a8278;
  --border: #d7cfc3;
  --accent: #4a5d54;
  --accent-hover: #3d4e46;
  --wa: #2f6b4f;
  --wa-hover: #245540;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --radius: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
button, [type="submit"] { cursor: pointer; font-family: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 20px;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.site-header.is-home { background: color-mix(in srgb, var(--ink) 80%, transparent); border-color: rgba(246,241,234,.12); color: var(--paper); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; }
.brand-name { font-family: var(--display); font-size: 1.1rem; letter-spacing: .08em; font-weight: 600; }
.brand-sub { display: block; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; opacity: .6; margin-top: 2px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { text-decoration: none; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }
.nav a:hover { opacity: 1; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 8px; border: 1px solid transparent;
  text-decoration: none; font-size: .9rem; font-weight: 500;
}
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-inverse { background: var(--paper); color: var(--ink); }
.btn-outline { border-color: var(--border); background: transparent; }
.btn-wa { background: var(--wa); color: var(--paper); }
.btn-wa:hover { background: var(--wa-hover); }
.hero { position: relative; min-height: 88svh; color: var(--paper); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, #1c1916, rgba(28,25,22,.5), rgba(28,25,22,.25)); }
.hero-inner { position: relative; padding: 120px 0 72px; }
.kicker { font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; opacity: .75; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 16ch; margin-top: 16px; }
.lead { max-width: 38rem; margin-top: 18px; opacity: .85; font-size: 1.05rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section { padding: 72px 0; }
.section-head { margin-bottom: 36px; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.card { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--paper); display: flex; flex-direction: column; }
.card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.muted { color: var(--muted); }
.subtle { color: var(--subtle); font-size: .8rem; }
.price { margin: 14px 0; }
.card-actions { display: flex; gap: 8px; margin-top: auto; }
.card-actions .btn { flex: 1; }
.band { background: var(--surface); }
.band-ink { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.quote { border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.quote p { font-family: var(--display); font-size: 1.35rem; line-height: 1.3; margin: 0; }
.faq dt { font-weight: 500; }
.faq dd { margin: 6px 0 18px; color: var(--muted); }
.site-footer { background: var(--ink); color: var(--paper); padding: 56px 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.site-footer a { color: rgba(246,241,234,.8); text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 12px 0 0; }
.site-footer li { margin: 8px 0; }
.copy { border-top: 1px solid rgba(246,241,234,.12); padding: 16px 0; font-size: .8rem; opacity: .5; }
.form { border: 1px solid var(--border); border-radius: 20px; padding: 24px; background: var(--paper); }
label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 12px 0 6px; }
input, select, textarea {
  width: 100%; height: 44px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--paper); color: var(--ink); padding: 0 12px; font: inherit;
}
textarea { height: 110px; padding: 10px 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 16px; border-radius: 999px;
  background: var(--wa); color: var(--paper); text-decoration: none; font-size: .9rem;
}
.page-hero { position: relative; min-height: 42svh; color: var(--paper); display: flex; align-items: flex-end; background: var(--ink); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.map { width: 100%; height: 220px; border: 0; border-radius: 12px; }
.menu-toggle { display: none; background: none; border: 0; color: inherit; font-size: 1.2rem; min-width: 44px; min-height: 44px; }
@media (max-width: 860px) {
  .grid-3, .grid-2, .form-row, .split, .foot-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 68px; background: var(--paper); color: var(--ink); padding: 16px; border-bottom: 1px solid var(--border); }
  .site-header.is-home .nav.open { background: var(--ink); color: var(--paper); }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header { position: sticky; }
  .hero h1 { font-size: 2.3rem; }
}
