:root {
  --bg: #f7f3ea;
  --bg-2: #efe8da;
  --ink: #1a1a1a;
  --muted: #5c564c;
  --line: #d9d0bf;
  --accent: #c48a3a;
  --btn: #1a1a1a;
  --btn-ink: #f7f3ea;
  --card: rgba(255, 252, 246, 0.88);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  position: relative;
  min-height: 100vh;
}

/* Lightly faded logo watermark */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.55) 0%, rgba(247, 243, 234, 0.72) 45%, rgba(247, 243, 234, 0.88) 100%),
    url("logo.png") center 18% / min(720px, 78vw) no-repeat;
  opacity: 1;
}

body > * {
  position: relative;
  z-index: 1;
}

.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 243, 234, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}

.logo {
  display: flex; align-items: center; text-decoration: none; line-height: 0;
}

.logo img {
  height: 64px; width: auto; display: block; border-radius: 4px;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04);
}

nav { display: flex; gap: 22px; align-items: center; }
nav a {
  color: var(--muted); text-decoration: none;
  font-family: system-ui, sans-serif; font-size: 13px;
}
nav a:hover { color: var(--ink); }

.hero {
  padding: 100px 0 84px;
  border-bottom: 1px solid transparent;
}

.hero-inner {
  max-width: 640px;
  background: rgba(255, 252, 246, 0.55);
  border: 1px solid rgba(217, 208, 191, 0.55);
  border-radius: 12px;
  padding: 28px 28px 24px;
  backdrop-filter: blur(2px);
}

.eyebrow {
  font-family: system-ui, sans-serif; letter-spacing: .22em; text-transform: uppercase;
  font-size: 11px; color: var(--accent); margin: 0 0 16px;
}

h1 { font-size: clamp(40px, 7vw, 68px); line-height: 1.02; margin: 0 0 18px; font-weight: 500; }
h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 18px; font-weight: 500; }
h3 { margin: 0 0 8px; font-size: 20px; }

.lede { max-width: 560px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }

.btn {
  display: inline-block; background: var(--btn); color: var(--btn-ink); text-decoration: none;
  font-family: system-ui, sans-serif; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 18px; border: 0; cursor: pointer; border-radius: 2px;
}
.btn-sm { padding: 8px 12px; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}

.pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.pills li {
  font-family: system-ui, sans-serif; font-size: 12px; color: var(--muted);
  border: 1px solid var(--line); background: rgba(255,252,246,.7); padding: 6px 10px;
}

.fine { color: var(--muted); font-size: 12px; font-family: system-ui, sans-serif; }

.section { padding: 72px 0; }
.section-alt {
  background: rgba(239, 232, 218, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 28px;
}

.card {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--card);
  border-radius: 8px;
}
.card p, .panel p { color: var(--muted); margin: 0; }

.split { display: grid; grid-template-columns: 1.3fr .8fr; gap: 32px; }
.steps { padding-left: 18px; color: var(--muted); }
.steps li { margin-bottom: 12px; }
.steps strong { color: var(--ink); }

.panel {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--card);
  border-radius: 8px;
}
.panel h3 { margin-top: 18px; }
.panel h3:first-child { margin-top: 0; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
form { display: grid; gap: 12px; }
label {
  font-family: system-ui, sans-serif; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); display: grid; gap: 6px;
}
input, textarea {
  font: 16px/1.4 Georgia, serif;
  background: #fffdf8; color: var(--ink);
  border: 1px solid var(--line); padding: 10px 12px; width: 100%;
  border-radius: 4px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 12px;
  background: rgba(247, 243, 234, 0.9);
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .split, .contact { grid-template-columns: 1fr; }
  nav a:not(.btn) { display: none; }
  body::before { background-size: min(520px, 92vw); background-position: center 8%; }
  .hero-inner { padding: 22px 18px; }
}
