:root {
  --ink: #18211a;
  --green: #1c4937;
  --green2: #2f6b4f;
  --paper: #f3efdf;
  --cream: #fffdf4;
  --wine: #7d2635;
  --gold: #d2a73d;
  --line: #b7b09a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.utility {
  height: 34px;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1240px) / 2));
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.utility a {
  text-decoration: none;
}
.masthead {
  height: 106px;
  background: var(--cream);
  border-bottom: 5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1240px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 3px 0 #0002;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-seal {
  width: 58px;
  height: 58px;
  border: 4px double var(--green);
  display: grid;
  place-items: center;
  background: var(--gold);
  font:
    900 22px Georgia,
    serif;
  color: var(--green);
  box-shadow: 3px 3px 0 var(--wine);
}
.brand strong {
  display: block;
  font:
    700 26px Georgia,
    serif;
  color: var(--green);
}
.brand small {
  display: block;
  color: #5d625c;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.masthead nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.masthead nav > a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.nav-call {
  padding: 13px 16px !important;
  background: var(--green);
  color: #fff;
  box-shadow: 3px 3px 0 var(--gold);
}
.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #101a14f5 0,
    #101a14d9 38%,
    #101a1440 65%,
    transparent
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: auto;
  color: #fff;
}
.hero-copy > * {
  max-width: 650px;
}
.edition,
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.edition {
  color: #f7d875;
  border-bottom: 1px solid #ffffff55;
  padding-bottom: 9px;
  width: max-content;
}
.hero h1 {
  font:
    700 clamp(42px, 6vw, 78px) / 0.98 Georgia,
    serif;
  letter-spacing: 0;
  margin: 0 0 24px;
  max-width: 720px;
}
.hero-copy > p:not(.edition) {
  font-size: 19px;
  max-width: 590px;
}
.call-button {
  display: inline-flex;
  flex-direction: column;
  margin-top: 16px;
  padding: 15px 25px;
  background: var(--gold);
  color: #172217;
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: 6px 6px 0 var(--wine);
}
.call-button span {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
}
.call-button strong {
  font:
    700 25px Georgia,
    serif;
}
.hero-notes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-notes span {
  padding: 7px 10px;
  border: 1px solid #ffffff80;
  background: #14251dcc;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}
.quick-check {
  background: var(--gold);
  border-top: 4px solid var(--wine);
  border-bottom: 4px solid var(--wine);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 19px max(24px, calc((100% - 1240px) / 2));
}
.quick-check strong {
  font:
    700 19px Georgia,
    serif;
}
.quick-check p {
  margin: 0;
  font-size: 14px;
}
.quick-check a {
  background: var(--wine);
  color: #fff;
  padding: 11px 20px;
  text-decoration: none;
  font-weight: 800;
}
.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}
.section-title {
  max-width: 790px;
  margin-bottom: 35px;
}
.section-title > p {
  color: var(--wine);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
}
.section h2 {
  font:
    700 clamp(33px, 4.5vw, 54px) / 1.05 Georgia,
    serif;
  letter-spacing: 0;
  margin: 8px 0 14px;
  color: var(--green);
}
.section-title > span {
  color: #62655f;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catalog article {
  position: relative;
  border: 1px solid var(--line);
  border-top: 9px solid var(--green);
  background: var(--cream);
  padding: 28px;
  min-height: 330px;
  box-shadow: 5px 5px 0 #c9c2aa;
}
.catalog article:nth-child(2) {
  border-top-color: var(--wine);
}
.catalog article:nth-child(3) {
  border-top-color: var(--gold);
}
.catalog-no {
  position: absolute;
  right: 20px;
  top: 14px;
  font:
    700 48px Georgia,
    serif;
  color: #777264;
}
.label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: var(--wine);
}
.catalog h3 {
  font:
    700 27px/1.1 Georgia,
    serif;
  color: var(--green);
  max-width: 230px;
}
.catalog article > a {
  display: inline-block;
  margin-top: 16px;
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid;
}
.feature {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}
.feature-photo {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 12px;
  box-shadow: 9px 9px 0 var(--green);
}
.feature-photo img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-photo span {
  display: block;
  padding: 12px 8px 4px;
  font:
    italic 15px Georgia,
    serif;
}
.feature-copy > p:not(.eyebrow) {
  font-size: 17px;
}
.feature-copy ul {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.feature-copy li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.text-call {
  color: var(--wine);
  font-weight: 800;
}
.local {
  width: 100%;
  max-width: none;
  background: var(--green);
  color: #fff;
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.local h2 {
  color: #fff;
  margin-bottom: 0;
}
.local > p {
  font-size: 18px;
  margin: auto;
}
.steps > h2 {
  margin-bottom: 34px;
}
.steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.steps li {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--cream);
  border-right: 1px solid var(--line);
}
.steps li:last-child {
  border: 0;
}
.steps li > span {
  font:
    700 42px Georgia,
    serif;
  color: var(--wine);
}
.steps h3 {
  font:
    700 20px Georgia,
    serif;
  margin: 4px 0;
}
.steps p {
  margin: 5px 0;
  color: #62655f;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 55px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 4px;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font:
    700 19px Georgia,
    serif;
  color: var(--green);
}
.faq-list p {
  margin-bottom: 0;
}
.final-call {
  background: var(--wine);
  color: #fff;
  padding: 60px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 9px solid var(--gold);
}
.final-call p {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.final-call h2 {
  font:
    700 44px Georgia,
    serif;
  margin: 5px 0;
}
.final-call > a {
  display: flex;
  flex-direction: column;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 25px;
  text-decoration: none;
  border: 2px solid #fff;
  font:
    700 27px Georgia,
    serif;
  box-shadow: 5px 5px 0 var(--green);
}
.final-call small {
  font:
    800 11px Arial,
    sans-serif;
  text-transform: uppercase;
}
footer {
  background: #131c16;
  color: #fff;
  padding: 48px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer a {
  text-decoration: none;
}
.footer-phone {
  font:
    700 24px Georgia,
    serif;
  color: #f1d06a;
}
.service-hero {
  background: var(--green);
  color: #fff;
  padding: 75px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.service-hero > * {
  min-width: 0;
}
.service-hero .edition {
  width: auto;
}
.service-hero figure {
  max-width: 100%;
}
.service-hero h1 {
  font:
    700 clamp(42px, 6vw, 70px) / 1 Georgia,
    serif;
  letter-spacing: 0;
  margin: 8px 0 20px;
}
.service-hero p {
  font-size: 18px;
}
.service-hero figure {
  margin: 0;
  background: var(--cream);
  padding: 11px;
  box-shadow: 8px 8px 0 var(--gold);
  color: var(--ink);
}
.service-hero figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-hero figcaption {
  padding: 10px 5px 2px;
  font:
    italic 14px Georgia,
    serif;
}
.service-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 55px;
}
.service-body article > p {
  font-size: 17px;
}
.service-body h2 {
  font-size: 38px;
  margin-top: 38px;
}
.symptom-list {
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--cream);
}
.symptom-list li {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}
.symptom-list li:last-child {
  border: 0;
}
.service-aside {
  background: var(--cream);
  border-top: 8px solid var(--wine);
  padding: 25px;
  height: max-content;
  box-shadow: 6px 6px 0 #cac3ac;
}
.service-aside h2 {
  font-size: 28px;
  margin-top: 0;
}
.service-aside ul {
  padding-left: 20px;
}
.service-aside .call-button {
  width: 100%;
  text-align: center;
  align-items: center;
}
.related {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 26px;
}
.related a {
  color: var(--wine);
  font-weight: 800;
}
.mobile-call {
  display: none;
}
@media (max-width: 850px) {
  body {
    padding-bottom: 70px;
  }
  .utility {
    display: none;
  }
  .masthead {
    height: 78px;
    padding: 0 16px;
  }
  .brand-seal {
    width: 45px;
    height: 45px;
    font-size: 17px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand small,
  .masthead nav > a:not(.nav-call) {
    display: none;
  }
  .nav-call {
    font-size: 11px !important;
    padding: 9px 7px !important;
    white-space: nowrap;
  }
  .hero {
    min-height: 690px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 64% center;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #101a14fa 0,
      #101a14d5 50%,
      #101a1410 88%
    );
  }
  .hero-copy {
    width: calc(100% - 32px);
    padding-bottom: 44px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-copy > p:not(.edition) {
    font-size: 16px;
  }
  .quick-check {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .quick-check a {
    text-align: center;
  }
  .section {
    width: calc(100% - 32px);
    padding: 65px 0;
  }
  .catalog-grid,
  .feature,
  .local,
  .steps ol,
  .faq,
  .service-hero,
  .service-body {
    grid-template-columns: 1fr;
  }
  .catalog article {
    min-height: 0;
  }
  .feature {
    gap: 35px;
  }
  .local {
    width: 100%;
    padding: 58px 20px;
    gap: 20px;
  }
  .steps li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-hero {
    padding: 55px 20px;
    gap: 35px;
  }
  .service-hero h1 {
    font-size: 45px;
  }
  .final-call {
    padding: 50px 20px;
    display: block;
  }
  .final-call h2 {
    font-size: 36px;
  }
  .final-call > a {
    margin-top: 24px;
    width: max-content;
    font-size: 23px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 45px 20px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold);
    border-top: 3px solid var(--wine);
    padding: 8px 14px;
  }
  .mobile-call a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .mobile-call span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
  }
  .mobile-call strong {
    font:
      700 21px Georgia,
      serif;
  }
}
