:root {
  --ink: #17201d;
  --muted: #5f6b66;
  --line: #dce5df;
  --paper: #fbfbf7;
  --soft: #eef4ef;
  --coast: #2e635f;
  --coast-dark: #1e4542;
  --cedar: #8a4f2b;
  --gold: #f2b94b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 32, 29, 0.16);
}

* {
  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.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(242, 185, 75, 0.95);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(251, 251, 247, 0.94);
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 12px rgba(23, 32, 29, 0.12);
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 26px);
  font-size: 0.94rem;
}

.nav-links a,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--coast);
}

.header-call {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--coast);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--coast-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 22, 20, 0.78) 0%, rgba(11, 22, 20, 0.48) 46%, rgba(11, 22, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 22, 20, 0.48) 0%, rgba(11, 22, 20, 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 136px 0 clamp(36px, 7vh, 72px);
  color: var(--white);
}

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

.hero .eyebrow,
.contact-section .eyebrow {
  color: #f5c96f;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 8vw, 5.7rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.04rem, 2vw, 1.26rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--cedar);
  color: var(--white);
}

.button.primary:hover,
.header-call:hover {
  background: #734222;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button.secondary.dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.rating-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-contact a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 20px clamp(16px, 4vw, 44px);
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span {
  color: var(--muted);
  font-size: 0.86rem;
}

.quick-contact strong {
  font-size: clamp(1rem, 2.4vw, 1.32rem);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) 0;
}

.services,
.reviews,
.contact-section {
  scroll-margin-top: 86px;
}

.intro,
.checklist {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
}

.intro-text p:last-child,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.intro-points span,
.check-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 700;
}

.personal {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-top: 0;
}

.personal-image-wrap {
  overflow: hidden;
  align-self: stretch;
  min-height: clamp(360px, 44vw, 560px);
  border-radius: 8px;
  background: var(--coast-dark);
  box-shadow: var(--shadow);
}

.personal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 24%;
}

.personal-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.personal-stats span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-left: 4px solid var(--cedar);
  border-radius: 6px;
  background: var(--soft);
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.services .section-heading {
  display: block;
}

.service-grid,
.review-grid,
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-card,
.answer-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(23, 32, 29, 0.07);
}

.service-card img {
  width: 100%;
  height: clamp(220px, 23vw, 300px);
  object-fit: cover;
}

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

.service-card p,
.review-card p,
.answer-grid p {
  color: var(--muted);
}

.answer-grid article {
  padding: 22px;
}

.answer-grid h3 {
  font-size: 1.12rem;
}

.answer-grid p {
  margin: 12px 0 0;
}

.checklist {
  width: 100%;
  max-width: none;
  padding: clamp(44px, 6vw, 72px) max(16px, calc((100vw - 1160px) / 2));
  background: var(--soft);
}

.checklist > div,
.check-list {
  min-width: 0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cedar);
}

.reviews-heading {
  align-items: center;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--coast);
  font-weight: 800;
}

.review-card {
  padding: 22px;
}

.review-card p {
  min-height: 96px;
  margin: 12px 0 18px;
  font-size: 1.05rem;
}

.review-card strong {
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 6vw, 64px) clamp(16px, 4vw, 44px);
  color: var(--white);
  background: var(--coast-dark);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-actions {
  margin-top: 0;
  justify-content: end;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(16px, 4vw, 44px);
  color: var(--muted);
  background: var(--white);
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--coast);
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.social-links a {
  min-height: 32px;
  font-size: 0.92rem;
}

.site-credit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
}

.site-credit a {
  min-height: 0;
  display: inline;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 22, 20, 0.82) 0%, rgba(11, 22, 20, 0.56) 56%, rgba(11, 22, 20, 0.18) 100%),
      linear-gradient(90deg, rgba(11, 22, 20, 0.52) 0%, rgba(11, 22, 20, 0.08) 100%);
  }

  .quick-contact,
  .intro,
  .personal,
  .checklist,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .personal {
    padding-top: clamp(20px, 4vw, 36px);
  }

  .personal-image-wrap {
    min-height: 460px;
  }

  .personal-stats {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact a:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .review-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .service-card img {
    height: 100%;
    min-height: 178px;
    aspect-ratio: auto;
  }

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 7px;
  }

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

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

  .header-call {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero-content {
    width: min(760px, calc(100vw - 24px));
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 3rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .intro-points,
  .check-list,
  .personal-stats {
    grid-template-columns: 1fr;
  }

  .personal-image-wrap {
    min-height: min(520px, 132vw);
  }

  .personal-image-wrap img {
    object-position: 52% 8%;
  }

  .section-heading {
    display: block;
  }

  .service-card {
    display: block;
  }

  .service-card img {
    height: 230px;
  }

  .review-card p {
    min-height: 0;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    display: block;
    margin-top: 10px;
  }

  .footer-links > a {
    margin-top: 10px;
  }

  .social-links {
    margin-top: 6px;
  }

  .site-credit {
    display: flex;
    min-height: 28px;
  }
}
