:root {
  --paper: #f7f4ee;
  --paper-2: #efe9df;
  --ink: #1a1714;
  --ink-soft: #4f463d;
  --line: #ddd4c6;
  --accent: #b4502a;
  --accent-deep: #8f3c1d;
  --ok: #2f7d4f;
  --radius: 16px;
  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #e9a06a, var(--accent) 55%, var(--accent-deep));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn span { transition: transform 0.2s var(--ease); }
.btn:hover span { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--accent) 80%, transparent);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 33em;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Brand health card */
.brand-health {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 30px 60px -34px rgba(26, 23, 20, 0.4);
}
.bh-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.bh-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ok) 18%, transparent);
}
.bh-status {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--ok);
  background: color-mix(in srgb, var(--ok) 12%, transparent);
  padding: 3px 10px;
  border-radius: 999px;
}
.bh-list { list-style: none; margin: 0; padding: 14px 0 0; }
.bh-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--paper-2);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.bh-list li:last-child { border-bottom: 0; }
.bh-list b { font-weight: 600; }
.bh-list .ok { color: var(--ok); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stat span { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--paper-2); }

.section-head { max-width: 40em; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-sub {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.section-sub a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.card-num {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -30px rgba(26, 23, 20, 0.4);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 40px;
}
.trust-item h3 { font-size: 1.22rem; margin-bottom: 10px; }
.trust-item p { color: var(--ink-soft); font-size: 0.98rem; }

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step h3 { font-size: 1.32rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq-head { margin-bottom: 0; position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  color: var(--ink-soft);
  padding: 0 40px 24px 0;
  font-size: 1rem;
  max-width: 46em;
}

/* Contact */
.contact { padding-bottom: 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 56px;
}
.contact-grid .eyebrow { color: #e9a06a; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.contact-copy .section-sub { color: color-mix(in srgb, var(--paper) 75%, transparent); }

.contact-details {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details li { display: flex; flex-direction: column; gap: 4px; }
.cd-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--paper) 55%, transparent);
}
.contact-details a, .contact-details span:not(.cd-label) {
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-details a:hover { color: #e9a06a; }

.contact-form {
  background: color-mix(in srgb, var(--paper) 8%, var(--ink));
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-radius: 18px;
  padding: 30px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: color-mix(in srgb, var(--paper) 80%, transparent);
}
.field input, .field textarea {
  width: 100%;
  background: rgba(247, 244, 238, 0.06);
  border: 1px solid rgba(247, 244, 238, 0.16);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #e9a06a;
  background: rgba(247, 244, 238, 0.1);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.9rem; min-height: 1.2em; }
.form-note.success { color: #8fd6a8; }
.form-note.error { color: #f0a48b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 26em;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 24px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-health { max-width: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .cards, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
  .contact-grid { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--paper-2); }
  .nav-cta { text-align: center; margin-top: 10px; border-bottom: 0 !important; }
  .section { padding: 64px 0; }
  .cards, .trust-grid, .steps, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { padding: 32px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
