:root {
  --ink: #201D18;
  --stone: #6E6558;
  --stone-light: #8C8375;
  --paper: #FBF9F4;
  --paper-white: #FFFFFF;
  --line: #DDD5C7;

  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--stone);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 84px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.wordmark span {
  color: var(--stone);
  font-weight: 400;
  font-style: italic;
}

.nav {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.phone-pill svg { display: none; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 0;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-large {
  padding: 16px 34px;
  font-size: 14px;
}

/* Hero — quiet editorial two-column */

.hero {
  padding: 96px 0 108px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  font-family: var(--sans);
  color: var(--stone-light);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 600;
  max-width: 15ch;
  color: var(--ink);
}

.hero .lede {
  font-size: 17px;
  color: var(--stone);
  font-weight: 400;
  max-width: 46ch;
  margin: 22px 0 36px;
}

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

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 24px 48px rgba(32, 29, 24, 0.14);
}

/* Services */

.services {
  background: var(--paper-white);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services h2, .about h2, .contact h2 {
  font-size: 32px;
}

.section-lede {
  color: var(--stone);
  font-size: 16px;
  margin: 0 0 56px;
  max-width: 54ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  padding: 36px 28px 0 0;
}

.service-card:last-child {
  border-right: none;
}

.service-icon {
  color: var(--ink);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--stone);
  margin: 0;
}

/* About */

.about {
  padding: 100px 0;
}

.about-inner {
  max-width: 680px;
}

.about p {
  font-size: 17px;
  color: var(--stone);
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
  padding-left: 24px;
  border-left: 2px solid var(--ink);
}

/* Contact */

.contact {
  background: var(--paper-white);
  color: var(--ink);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.contact h2 { color: var(--ink); }

.contact .section-lede {
  color: var(--stone);
}

.contact-card {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.footer-inner a {
  text-decoration: none;
  color: var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
}

/* Responsive */

@media (max-width: 860px) {
  .nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-art { order: -1; margin-bottom: 40px; }

  .hero h1 { font-size: 34px; max-width: none; }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 20px 28px 0;
  }
}

@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; padding-right: 0; }
  .hero { padding: 64px 0 72px; }
  .services, .about, .contact { padding: 64px 0; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
