:root {
  --paper: #faf7f2;
  --ink: #26231e;
  --sage: #5f7a5c;
  --clay: #c8794f;
  --muted: #7a746b;
  --line: #e5ded3;
}

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

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.shell { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 40px; }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.05; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; transition: transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage); color: #fff; }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line); }
.btn.big { padding: 17px 32px; font-size: 1.08rem; }

/* ---- nav ---- */
.nav { border-bottom: 1px solid var(--line); background: var(--paper); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; }
.nav-cta {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  border: 1.5px solid var(--line); padding: 9px 18px; border-radius: 999px;
}

/* ---- hero ---- */
.hero { padding: 72px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  font-weight: 600; color: var(--sage); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); letter-spacing: -0.015em; }
.lede { font-size: 1.22rem; color: var(--muted); margin-top: 24px; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.since { margin-top: 26px; font-size: .92rem; color: var(--muted); }

.hero-art svg { width: 100%; height: auto; display: block;
  filter: drop-shadow(0 18px 40px rgba(38,35,30,.14)); }

/* ---- generic blocks ---- */
.block { padding: 72px 0; border-top: 1px solid var(--line); }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; }
.section-title.light { color: var(--paper); }

.grid { display: grid; gap: 20px; margin-top: 38px; }
.services { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 24px; border-top: 4px solid var(--sage);
}
.card:nth-child(3n+2) { border-top-color: var(--clay); }
.card:nth-child(3n) { border-top-color: var(--ink); }
.card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 1rem; }

/* ---- credibility band ---- */
.band { background: var(--ink); color: var(--paper); padding: 76px 0; }
.band-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.band-lede { color: #cfc8bc; font-size: 1.2rem; margin-top: 18px; max-width: 22em; }
.cred { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.cred li { border-top: 2px solid var(--clay); padding-top: 14px; }
.cred strong { display: block; font-size: 1.08rem; }
.cred span { color: #b7b0a4; font-size: .96rem; }

/* ---- placeholder gallery ---- */
.placeholder-note { color: var(--muted); margin-top: 14px; font-size: 1rem; max-width: 42em; }
.gallery { grid-template-columns: repeat(3, 1fr); }
.shot {
  aspect-ratio: 4 / 3; border: 2px dashed var(--line); border-radius: 14px;
  background: repeating-linear-gradient(45deg, #fff, #fff 14px, #f4efe6 14px, #f4efe6 28px);
}
.shot-inner {
  height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
}
.shot-inner span { color: var(--muted); font-weight: 600; font-size: .92rem; letter-spacing: .01em; }

/* ---- contact ---- */
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.contact .lede { margin-top: 16px; }

/* ---- footer ---- */
footer { border-top: 1px solid var(--line); padding: 30px 0; }
.foot-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .9rem; color: var(--muted); }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .shell { padding: 0 22px; }
  .hero { padding: 44px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; max-width: 300px; }
  .band-grid { grid-template-columns: 1fr; gap: 32px; }
  .services { grid-template-columns: 1fr 1fr; }
  .cred { grid-template-columns: 1fr; gap: 20px; }
  .block, .band { padding: 52px 0; }
}
@media (max-width: 540px) {
  .services, .gallery { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
}
