:root {
  --paper: #fcf8f3;
  --cream: #f7f0e7;
  --cream-deep: #efe4d8;
  --terra: #df8667;
  --terra-dark: #c96f53;
  --brown: #51443d;
  --muted: #81736b;
  --sage: #7f8b70;
  --line: #e5d8cc;
  --white: #fffdf9;
  --display: Georgia, 'Times New Roman', serif;
  --body: Arial, Helvetica, sans-serif;
  --script: 'Brush Script MT', 'Segoe Script', cursive;
  --max: 1180px;
  --shadow: 0 18px 45px rgba(81, 68, 61, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin-top: 0; font-family: var(--display); font-weight: 400; line-height: 1.1; }
:focus-visible { outline: 3px solid var(--terra-dark); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 15px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--brown);
  color: white;
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.eyebrow {
  color: var(--terra-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.script { font-family: var(--script); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 248, 243, .97);
}
.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 76px; height: 68px; object-fit: contain; }
.brand-name, .brand-sub, .brand-person { display: block; }
.brand-name { font-family: var(--display); font-size: 18px; line-height: 1.02; letter-spacing: .09em; }
.brand-sub { margin-top: 4px; color: var(--terra-dark); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.brand-person { margin-top: 1px; color: var(--muted); font-size: 18px; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { transform: scaleX(1); }
.site-nav a[aria-current='page'] { color: var(--terra-dark); }
.nav-cta { padding: 11px 17px !important; border-radius: 999px; background: var(--terra); color: white; }
.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--brown);
  font-size: 28px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 700 13px/1 var(--body);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terra); color: white; }
.btn-primary:hover { background: var(--terra-dark); }
.btn-secondary { border-color: #b9aa9e; background: transparent; color: var(--brown); }
.btn-secondary:hover { border-color: var(--terra-dark); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.home-hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 680px;
  background: var(--cream);
}
.home-hero > * { min-width: 0; }
.hero-copy { align-self: center; padding: 92px max(7vw, 34px); }
.home-hero h1 { max-width: 760px; margin: 14px 0 26px; font-size: clamp(48px, 6vw, 78px); }
.lead { max-width: 650px; color: #6d5e56; font-size: 20px; }
.hero-signature { margin-top: 38px; color: #8b7669; font-size: 28px; }
.person-signature { margin-top: 8px; color: #6f625a; font-size: 34px; }
.hero-image { min-height: 680px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.tagline {
  padding: 17px 24px;
  border-block: 1px solid var(--line);
  background: var(--cream-deep);
  color: #74645b;
  text-align: center;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
}

.section { padding: 94px 0; }
.section-tinted { background: #f1e7dc; }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section h2, .page-hero h1 { margin: 12px 0 17px; font-size: clamp(36px, 4.2vw, 56px); }
.section-head p, .page-lead { color: var(--muted); font-size: 18px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.card img, .card svg { width: 48px; height: 48px; margin-bottom: 18px; }
.card h2, .card h3 { margin-bottom: 11px; font-size: 23px; }
.card p { margin: 0; color: var(--muted); }
.card-link { display: flex; height: 100%; flex-direction: column; }
.card-link .more { margin-top: auto; padding-top: 22px; color: var(--terra-dark); font-weight: 700; font-size: 13px; }
.card-link:hover { border-color: #d7b4a5; transform: translateY(-3px); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 64px; }
.logo-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8efe7;
  box-shadow: var(--shadow);
}
.logo-panel img { width: min(66%, 310px); }
.copy p { color: #6e6058; font-size: 18px; }
.quote {
  margin-top: 28px;
  padding: 25px 28px;
  border: 1px solid #dbcabd;
  border-radius: 18px;
  background: #faf4ed;
  color: #68574d;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.4;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { padding: 20px 0; }
.step-number { color: var(--terra); font-family: var(--display); font-size: 42px; }
.step h2, .step h3 { margin: 4px 0 10px; font-size: 25px; }
.step p { color: var(--muted); }

.page-hero { padding: 90px 0 74px; border-bottom: 1px solid var(--line); background: var(--cream); }
.page-hero .wrap { max-width: 900px; margin-left: max(24px, calc((100vw - var(--max)) / 2)); }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--terra-dark); }
.page-hero h1 { max-width: 780px; }
.page-lead { max-width: 700px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 64px; }
.prose { max-width: 720px; }
.prose h2 { margin-top: 42px; font-size: 32px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #6e6058; font-size: 17px; }
.prose ul { padding-left: 20px; }
.fact-box { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.fact-box h2 { font-size: 24px; }
.fact { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.fact:first-of-type { border-top: 0; }
.fact span:first-child { color: var(--muted); }
.fact span:last-child { text-align: right; font-weight: 700; }

.service-list { display: grid; gap: 24px; }
.service {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.service-number { color: var(--terra); font-family: var(--display); font-size: 42px; }
.service h2 { margin-bottom: 10px; font-size: 29px; }
.service p { max-width: 720px; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; }
.contact-copy p { color: var(--muted); font-size: 18px; }
form { display: grid; gap: 9px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
label { margin-top: 6px; font-weight: 700; font-size: 14px; }
input, textarea, select {
  width: 100%;
  padding: 13px;
  border: 1px solid #dacabe;
  border-radius: 10px;
  background: white;
  color: var(--brown);
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.form-note, #formularstatus { color: var(--muted); font-size: 13px; }
#formularstatus { padding: 10px 12px; border-radius: 10px; background: var(--cream); }

.cta-band { padding: 56px 0; background: var(--cream-deep); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { margin-bottom: 8px; font-size: clamp(28px, 3vw, 40px); }
.cta-inner p { margin: 0; color: var(--muted); }

.site-footer { padding: 34px 0; background: #4f433c; color: #eee4dc; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 52px; height: 48px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: white; text-decoration: underline; }

@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 430px; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .fact-box { max-width: 600px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 88px; }
  .brand img { width: 58px; height: 56px; }
  .brand-name { font-size: 15px; }
  .brand-sub { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { display: flex; min-height: 44px; align-items: center; }
  .nav-cta { justify-content: center; margin-top: 8px; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .cta-inner, .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 36px, var(--max)); }
  .brand { gap: 9px; }
  .brand-person { font-size: 15px; }
  .home-hero h1 { font-size: clamp(38px, 11.2vw, 44px); overflow-wrap: break-word; }
  .hero-copy { padding: 68px 23px; }
  .lead { font-size: 18px; }
  .hero-image { min-height: 330px; }
  .section { padding: 72px 0; }
  .page-hero { padding: 64px 0 54px; }
  .page-hero .wrap { margin-inline: auto; }
  .page-hero h1, .section h2 { font-size: clamp(34px, 10vw, 44px); }
  .card-grid { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; gap: 5px; padding: 25px 22px; }
  .logo-panel { min-height: 300px; }
  .quote { padding: 22px; font-size: 21px; }
  form { padding: 24px 20px; }
  .footer-links { flex-direction: column; gap: 8px; }
}

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