:root {
  --ink: #352f2a;
  --ink-soft: #625a53;
  --paper: #fff;
  --warm: #f7f5f0;
  --warm-deep: #ece7df;
  --accent: #8a6a4f;
  --line: #d8d1c8;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: var(--max);
  min-height: 92px;
  margin: auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 1.15;
  display: inline-flex;
  flex-direction: column;
}
.brand span { font-family: Georgia, 'Times New Roman', serif; font-size: 1.18rem; font-weight: 700; }
.brand small { margin-top: .22rem; font-size: .62rem; letter-spacing: .38em; color: var(--ink-soft); }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { text-decoration: none; font-size: .82rem; text-transform: uppercase; letter-spacing: .11em; }
.site-nav a:hover { color: var(--accent); }
.menu-button { display: none; border: 0; background: none; padding: .7rem; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--ink); }

.hero {
  max-width: 1440px;
  min-height: 650px;
  margin: auto;
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--warm);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(36px, 6vw, 100px);
}
.hero-image {
  min-height: 650px;
  background-image: linear-gradient(rgba(45,38,32,.05), rgba(45,38,32,.05)), url('hero.webp');
  background-size: cover;
  background-position: center;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: .74rem;
  font-weight: 700;
}
h1, h2, h3 { margin-top: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.12; }
h1 { margin-bottom: 1.55rem; font-size: clamp(3rem, 5.4vw, 5.8rem); letter-spacing: -.045em; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.25rem, 4vw, 4.25rem); letter-spacing: -.03em; }
h3 { font-size: 1.65rem; }
.hero-lead { max-width: 610px; margin: 0 0 2rem; color: var(--ink-soft); font-size: 1.08rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .75rem;
  cursor: pointer;
  transition: .2s ease;
}
.button:hover { background: var(--accent); border-color: var(--accent); }

.section { padding: 110px 34px; }
.narrow { max-width: 870px; margin: auto; text-align: center; }
.narrow p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.mission { background: white; }
.section-title { max-width: 920px; margin: 0 auto 64px; text-align: center; }
.section-title h2 { margin-bottom: 0; }
.services { background: var(--warm); }
.service-list { max-width: 1070px; margin: auto; border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.8rem;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}
.service-number { font-family: Georgia, 'Times New Roman', serif; font-size: 2.25rem; color: var(--accent); }
.service-copy h3 { margin-bottom: 1rem; }
.service-copy p { max-width: 790px; margin: 0; color: var(--ink-soft); font-size: 1.04rem; }

.about { background: var(--ink); color: white; }
.about-panel { max-width: 1120px; margin: auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: start; }
.about .eyebrow { color: #d1af91; }
.about-heading h2 { margin-bottom: 0; }
.about-body p { margin-top: 0; color: #ddd5ce; font-size: 1.04rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.credentials span { padding: .5rem .75rem; border: 1px solid rgba(255,255,255,.3); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

.process { background: white; }
.process-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { padding: 44px 38px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid span { display: inline-block; margin-bottom: 1.7rem; color: var(--accent); font-family: Georgia, 'Times New Roman', serif; font-size: 2rem; }
.process-grid h3 { margin-bottom: .85rem; }
.process-grid p { color: var(--ink-soft); margin: 0; }

.contact { background: var(--warm-deep); display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-left: max(34px, calc((100vw - 1170px) / 2)); padding-right: max(34px, calc((100vw - 1170px) / 2)); }
.contact-intro p:not(.eyebrow) { color: var(--ink-soft); }
.contact-details { display: grid; gap: 1.4rem; margin-top: 2.2rem; }
.contact-details div { padding-top: 1.2rem; border-top: 1px solid #c8c0b7; }
.contact-details small { display: block; margin-bottom: .3rem; color: var(--accent); text-transform: uppercase; letter-spacing: .11em; }
.contact-details strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.15rem; font-weight: 500; }
.contact-form { padding: 42px; background: white; border: 1px solid var(--line); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; margin-bottom: 20px; color: var(--ink); font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
input, select, textarea { width: 100%; margin-top: .55rem; padding: .85rem .9rem; border: 1px solid #bfb7ae; border-radius: 0; background: white; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(138,106,79,.12); }
textarea { resize: vertical; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; font-weight: 700; }
.form-note { margin: .65rem 0 0; color: var(--ink-soft); font-size: .78rem; }

.site-footer { padding: 60px max(34px, calc((100vw - 1170px) / 2)) 35px; background: #27231f; color: #eee8e2; display: grid; grid-template-columns: 1fr auto; gap: 26px 50px; }
.site-footer strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; }
.site-footer p { margin: .5rem 0 0; color: #bbb2aa; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #eee8e2; text-decoration: none; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.disclaimer, .copyright { grid-column: 1 / -1; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; }
.copyright { margin-top: 0 !important; padding-top: .25rem; border-top: 0; }

@media (max-width: 900px) {
  .header-inner { min-height: 76px; padding: 0 22px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 1.1rem 22px; border-top: 1px solid var(--line); }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 520px; }
  .hero-image { min-height: 440px; order: -1; }
  .section { padding: 82px 24px; }
  .about-panel, .contact { grid-template-columns: 1fr; gap: 50px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero-copy { min-height: auto; padding: 64px 24px 72px; }
  .hero-image { min-height: 310px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .service-row { grid-template-columns: 1fr; gap: 1rem; padding: 38px 0; }
  .service-number { font-size: 1.5rem; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 27px 21px; }
  .contact { padding-left: 20px; padding-right: 20px; }
}

/* Spam-trap field for Netlify Forms. Hidden visually but available to bots. */
.honeypot {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}


/* Mobile usability enhancements */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.menu-button,
.button,
.site-nav a,
input,
select,
textarea {
  min-height: 44px;
}

@media (max-width: 900px) {
  .header-inner {
    width: 100%;
  }

  .site-nav {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-copy,
  .hero-image,
  .about-panel,
  .contact,
  .contact-form {
    min-width: 0;
  }

  .credentials span {
    line-height: 1.35;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand small {
    font-size: .56rem;
  }

  .hero-image {
    background-position: center 42%;
  }

  .hero-lead,
  .service-copy p,
  .about-body p,
  .narrow p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .button {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  input,
  select,
  textarea {
    font-size: 16px; /* Prevents iPhone form-field zoom */
  }

  .credentials {
    display: grid;
    grid-template-columns: 1fr;
  }

  .credentials span {
    width: 100%;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding-left: 16px;
    padding-right: 12px;
  }

  .hero-copy,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.42rem;
  }
}
