:root {
  --ink: #221b16;
  --muted: #6d625a;
  --paper: #faf8f4;
  --cream: #efe8dc;
  --cedar: #9a5d32;
  --cedar-dark: #64391f;
  --sage: #576b5a;
  --blue: #38566b;
  --line: rgba(34, 27, 22, 0.14);
  --shadow: 0 20px 50px rgba(34, 27, 22, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(100, 57, 31, 0.34);
  background: var(--cedar-dark);
  color: #fff8ef;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--cedar-dark);
}

.hero {
  min-height: calc(100svh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(239, 232, 220, 0.82), rgba(250, 248, 244, 0.97)),
    var(--cream);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-service-area {
  margin-top: 14px !important;
  color: var(--cedar-dark) !important;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--cedar-dark);
  color: #fff8ef;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #4f2b18;
}

.button.secondary {
  border-color: rgba(100, 57, 31, 0.28);
  background: rgba(255, 255, 255, 0.45);
  color: var(--cedar-dark);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.trust-strip div {
  min-height: 118px;
  padding: 28px clamp(20px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.premium-services {
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.premium-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.premium-grid span {
  color: var(--blue);
  font-weight: 900;
}

.premium-grid h3 {
  margin-top: auto;
}

.premium-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 10px 28px rgba(34, 27, 22, 0.08);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-card div {
  padding: 20px;
}

.work-card p,
.service-list p,
.steps p,
.split > div > p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 7vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2eee6;
}

.split > div > p {
  max-width: 56ch;
  margin-top: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-list div {
  padding: 22px;
  border-left: 4px solid var(--sage);
  background: rgba(255, 253, 248, 0.72);
}

.process {
  max-width: 1180px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.steps div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(30px, 6vw, 72px);
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.credentials h2 {
  max-width: 480px;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credential-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list strong {
  color: var(--cedar-dark);
}

.credential-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 7vw, 90px);
  padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: #fff8ef;
}

.contact-copy {
  max-width: 540px;
}

.contact-copy .eyebrow {
  color: #d7b48d;
}

.contact-copy p {
  margin-top: 20px;
  color: rgba(255, 248, 239, 0.73);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a {
  padding-bottom: 3px;
  color: #fff8ef;
  font-weight: 800;
  text-decoration-color: rgba(255, 248, 239, 0.34);
  text-underline-offset: 5px;
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 239, 0.16);
}

.owner-card img {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 248, 239, 0.32);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.owner-card strong,
.owner-card span {
  display: block;
}

.owner-card strong {
  color: #fff8ef;
  font-size: 1rem;
}

.owner-card span {
  margin-top: 3px;
  color: rgba(255, 248, 239, 0.64);
  font-size: 0.9rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 239, 0.22);
  border-radius: 4px;
  background: rgba(255, 248, 239, 0.96);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(255, 248, 239, 0.62);
  font-size: 0.88rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 54px);
  background: #18120f;
  color: rgba(255, 248, 239, 0.7);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff8ef;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand strong,
  .brand small {
    white-space: normal;
  }

  .hero,
  .split,
  .credentials,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    min-height: 200px;
    max-height: 25svh;
  }

  .hero-copy {
    padding: 28px 22px 24px;
  }

  .trust-strip,
  .work-grid,
  .premium-grid,
  .credential-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .premium-grid article {
    min-height: 0;
  }

  .trust-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .service-list,
  .quote-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.1rem);
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 44px;
  }

  .hero-actions .secondary {
    display: none;
  }

  .button {
    width: 100%;
  }
}
