:root {
  --linen: #FAF6F1;
  --white: #FFFFFF;
  --tint: #F2EAE1;
  --border: #E5DACE;
  --ink: #241A14;
  --dark-card: #2C211B;
  --dark-border: #3E2F27;
  --text-secondary: #6E5D52;
  --text-secondary-dark: #B3A296;
  --brass: #8A6A3B;
  --brass-dark: #D9AE76;
  --primary: #7A2E3E;
  --primary-hover: #5E2330;
  --alt-btn: #8A3B4C;
  --alt-btn-text: #FFF7F0;
  --cream: #F4EDE5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: Figtree, -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  margin: 0;
}

p { margin: 0; }

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--linen);
}
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--primary);
  color: var(--alt-btn-text);
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand-name {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand-inc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brass);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav-link {
  color: var(--ink);
  text-decoration: none;
}
.nav-link:hover { color: var(--primary); text-decoration: none; }
.nav-link.active { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
}
.nav-cta:hover { background: var(--primary-hover); color: #FFFFFF; text-decoration: none; }

main { flex: 1; }

/* Eyebrow label */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow-dark { color: var(--brass-dark); }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}
.btn-primary:hover { background: var(--primary-hover); color: #FFFFFF; text-decoration: none; }
.btn-alt {
  background: var(--alt-btn);
  color: var(--alt-btn-text);
}
.btn-alt:hover { background: var(--primary); color: var(--alt-btn-text); text-decoration: none; }
.link-arrow { font-weight: 600; font-size: 15px; }

/* Hero */
.hero {
  padding: 88px 24px 72px;
}
.hero-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
}
.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Facts strip */
.facts {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.facts-grid {
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-value {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 28px;
}
.fact-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Generic section */
.section {
  padding: 72px 24px;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head h2 { font-size: 32px; line-height: 1.2; }
.section-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(36, 26, 20, .10);
}
.card h3 { font-size: 19px; }
.card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Dark section */
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark .section-head p { color: var(--text-secondary-dark); }
.card-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card-dark {
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px;
  background: var(--dark-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-dark h3 { font-size: 19px; color: var(--cream); }
.card-dark p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary-dark);
}
.card-dark .phase-num {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--brass-dark);
  font-variant-numeric: tabular-nums;
}

/* CTA (centered) */
.cta {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta h2 { font-size: 32px; line-height: 1.2; }
.cta p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* CTA banner (dark, split) */
.cta-banner {
  background: var(--ink);
  color: var(--cream);
}
.cta-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
}
.cta-banner h2 { font-size: 28px; line-height: 1.2; }
.cta-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary-dark);
}

/* Page intro (Services / About / Contact) */
.intro {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 48px;
}
.intro-inner {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.intro p.ink { color: var(--ink); line-height: 1.65; }
.intro p.secondary { color: var(--text-secondary); line-height: 1.65; }

/* Service detail cards */
.service-list {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(36, 26, 20, .10);
}
.service-card-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card-left h2 { font-size: 22px; line-height: 1.25; }
.service-card-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-right .lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.service-card-right .detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Company facts (About) */
.facts-wide-grid {
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.fact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-item-value {
  font-size: 15px;
  font-weight: 600;
}

/* Contact page */
.contact-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-left h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.contact-left p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.contact-left p.note { font-size: 14px; }
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 1px 3px rgba(36, 26, 20, .10);
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-field .email-link {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 22px;
}
.contact-field .value {
  font-size: 15px;
  font-weight: 600;
}
.contact-field .value.tabular { font-variant-numeric: tabular-nums; }
.btn-block { text-align: center; }
.checklist-card {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--text-secondary-dark);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-company-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--alt-btn);
  color: var(--alt-btn-text);
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-company-name {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--cream);
}
.footer-company a {
  color: var(--brass-dark);
}
.footer-company a:hover { color: var(--cream); }
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  font-weight: 600;
}
.footer-nav a { color: var(--text-secondary-dark); }
.footer-nav a:hover { color: var(--cream); }
.footer-copy { align-self: flex-end; }

/* Responsive */
@media (max-width: 700px) {
  .hero h1 { font-size: 32px; }
  .intro h1, .contact-left h1 { font-size: 30px; }
  .facts-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; justify-content: center; row-gap: 12px; }
  .nav-links { gap: 16px; }
}
