:root {
  --bg: #fbf8f4;
  --paper: #fffdf9;
  --soft: #f1ece6;
  --ink: #2c2a28;
  --muted: #6d6965;
  --accent: #7d6c64;
  --accent-dark: #5f514b;
  --line: #ded7d0;
  --shadow: 0 22px 60px rgba(68, 52, 43, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, 100%); margin: 0 auto; }
.section { padding: 96px 0; }
.soft { background: var(--soft); }
.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,248,244,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222,215,208,.75);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.brand-sub {
  margin-top: 5px;
  font-size: .76rem;
  letter-spacing: .02em;
  color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent-dark); }
.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.6rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 104px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 600;
}
h1, .section-title, .hero-card h2, blockquote {
  font-family: "Playfair Display", serif;
}
h1 {
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0;
  max-width: 860px;
  font-weight: 500;
}
.hero-lead {
  font-size: 1.18rem;
  max-width: 690px;
  color: var(--muted);
  margin: 30px 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--accent-dark); color: white; }
.button.primary:hover { background: #4d423d; }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.4); }
.button.full { width: 100%; }
.hero-proof {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--muted);
  font-size: .84rem;
}
.hero-proof span::before { content: "•"; margin-right: 8px; color: var(--accent); }

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255,253,249,.88);
  border: 1px solid rgba(222,215,208,.9);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.card-kicker {
  color: var(--accent-dark);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 600;
}
.hero-card h2 {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 500;
}
.hero-card ul { list-style: none; padding: 0; margin: 28px 0 0; }
.hero-card li { padding: 20px 0; border-top: 1px solid var(--line); }
.hero-card strong { display: block; margin-bottom: 4px; }
.hero-card span { color: var(--muted); font-size: .92rem; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .55;
}
.orb-one {
  width: 520px; height: 520px;
  right: -180px; top: 20px;
  background: radial-gradient(circle at 30% 30%, #e4d3c8, #cdb8ad 65%, transparent 66%);
}
.orb-two {
  width: 330px; height: 330px;
  left: -150px; bottom: -140px;
  background: radial-gradient(circle at 60% 35%, #d7dfda, #bfcac4 65%, transparent 66%);
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0 0 22px;
}
.section-lead { color: var(--muted); font-size: 1.1rem; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}
.section-sidecopy { color: var(--muted); margin: 0 0 10px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  min-height: 100%;
}
.service-number {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--soft);
  font-size: .8rem;
  margin-bottom: 28px;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1.15;
  margin: 0 0 16px;
}
.service-card p { color: var(--muted); }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li {
  border-top: 1px solid var(--line);
  padding: 11px 0;
  font-size: .92rem;
}
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--accent-dark); }

.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 74px; align-items: center; }
.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: .82;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(222,215,208,.9);
}
.about p { color: var(--muted); }
.credential-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.credential-row div { border-top: 1px solid var(--line); padding-top: 16px; }
.credential-row strong, .credential-row span { display: block; }
.credential-row span { color: var(--muted); font-size: .88rem; margin-top: 5px; }

.quote-section { background: #e9e3dc; }
blockquote {
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.14;
  letter-spacing: -.03em;
  margin: 20px 0 30px;
  font-weight: 500;
}

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 74px; }
.contact-note {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.contact-note strong, .contact-note span { display: block; }
.contact-note span { margin-top: 5px; color: var(--muted); font-size: .9rem; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-disclaimer, .form-status { color: var(--muted); font-size: .78rem; }
.form-status { margin-top: 10px; min-height: 20px; }
.form-status:not(:empty) {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: .82rem;
  line-height: 1.5;
}
.form-status.is-success { border-color: #b9cbb4; background: #eef4ec; color: #3f5b3c; }
.form-status.is-error { border-color: #ddb9b2; background: #f8eeec; color: #7c3f34; }
.form-status.is-pending { color: var(--muted); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
button[type="submit"][disabled] { opacity: .6; cursor: progress; }

.footer {
  background: #2e2a28;
  color: #f4efea;
  padding: 46px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}
.footer p, .footer a { color: #cfc6c0; font-size: .86rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { text-decoration: none; }
.footer-meta { text-align: right; }

@media (max-width: 920px) {
  .hero-grid, .section-heading, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 78px; }
  .hero-card { max-width: 680px; }
  .about-portrait { max-width: 520px; width: 100%; margin: 0 auto; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 24px 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  h1 { font-size: 3.35rem; }
  .hero-card, .service-card, .contact-form { padding: 24px; border-radius: 20px; }
  .form-row, .credential-row, .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .brand-sub { display: none; }
}

.about-more-actions { margin-top: 30px; }

/* About page (about.html) */
.about-page-hero { padding: 128px 0 20px; }
.about-hero-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 74px;
  align-items: center;
}
.about-hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: .85;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(222,215,208,.9);
}
.about-hero-title {
  font-size: clamp(2.2rem, 3.7vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0 0 26px;
}
.about-hero-copy p { color: var(--muted); }

.about-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-detail-list { list-style: none; padding: 0; margin: 26px 0 0; }
.about-detail-list li { border-top: 1px solid var(--line); padding: 20px 0; }
.about-detail-list strong { display: block; margin-bottom: 6px; }
.about-detail-list span { display: block; color: var(--muted); font-size: .92rem; }

.about-cta-section { padding-top: 12px; }
.about-cta-card {
  max-width: 62%;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow);
  text-align: left;
}
.about-cta-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 500;
  margin: 0 0 16px;
}
.about-cta-card p { color: var(--muted); margin: 0 0 26px; }
.about-cta-card .button { margin-bottom: 18px; }
.about-cta-note { color: var(--muted); font-size: .8rem; margin: 0; }

@media (max-width: 920px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-hero-portrait img { max-width: 460px; margin: 0 auto; aspect-ratio: .9; }
  .about-details-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-cta-card { margin: 0; max-width: 100%; }
  .about-page-hero { padding-top: 84px; }
}

@media (max-width: 640px) {
  .about-cta-card { padding: 26px; border-radius: 20px; }
}
