:root {
  --pine-950: #10201d;
  --pine-900: #152923;
  --pine-800: #223a33;
  --pine-700: #334c45;
  --ink: #17251f;
  --muted: #61716b;
  --sand: #f3efe6;
  --paper: #fffdf8;
  --white: #ffffff;
  --copper: #cf7131;
  --copper-dark: #ab5222;
  --copper-pale: #f1dbc9;
  --sage: #dfe5da;
  --line: #dbded6;
  --shadow: 0 24px 60px rgba(16, 32, 29, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--pine-950);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.55rem, 4.7vw, 4.1rem);
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 26px;
  width: 100%;
}

#services,
#reputation,
#area,
#contact {
  scroll-margin-top: 98px;
}

.skip-link {
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  left: 16px;
  padding: 13px 18px;
  position: fixed;
  top: -60px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  background: var(--pine-950);
  color: #f1f2eb;
  font-size: 0.84rem;
}

.announcement-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 45px;
}

.announcement p {
  align-items: center;
  color: #d5ddd6;
  display: flex;
  font-weight: 500;
  gap: 10px;
}

.status-dot {
  background: #68ad71;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(104, 173, 113, 0.16);
  height: 8px;
  width: 8px;
}

.announcement a {
  color: var(--white);
}

.announcement strong {
  margin-left: 8px;
}

.site-header {
  background: rgba(243, 239, 230, 0.93);
  border-bottom: 1px solid rgba(16, 32, 29, 0.06);
  position: sticky;
  top: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  z-index: 20;
}

.site-header.scrolled {
  background: var(--sand);
  box-shadow: 0 12px 34px rgba(16, 32, 29, 0.08);
}

.navigation {
  align-items: center;
  display: flex;
  height: 88px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 15px;
}

.roof-mark {
  background: var(--pine-900);
  border-radius: 4px;
  display: block;
  height: 48px;
  overflow: hidden;
  position: relative;
  width: 53px;
}

.roof-mark::before {
  background: var(--copper);
  clip-path: polygon(0 47%, 50% 7%, 100% 47%, 100% 59%, 50% 20%, 0 60%);
  content: "";
  height: 30px;
  left: 7px;
  position: absolute;
  top: 8px;
  width: 39px;
}

.roof-mark span {
  background: var(--paper);
  bottom: 9px;
  height: 15px;
  left: 21px;
  position: absolute;
  width: 11px;
}

.brand-type strong {
  color: var(--pine-950);
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.68rem;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-type small {
  color: var(--copper-dark);
  display: block;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.29em;
  margin-top: 8px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links > a:not(.button) {
  color: var(--pine-700);
  transition: color 0.2s ease;
}

.nav-links > a:not(.button):hover {
  color: var(--copper-dark);
}

.button {
  align-items: center;
  background: var(--copper);
  border: 2px solid var(--copper);
  border-radius: 5px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.91rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 55px;
  padding: 0 27px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-links a:focus-visible,
.directions-link:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(207, 113, 49, 0.4);
  outline-offset: 4px;
}

.button svg {
  fill: none;
  height: 19px;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.button-small {
  min-height: 48px;
  padding: 0 21px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.47);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: var(--white);
}

.button-dark {
  background: var(--pine-900);
  border-color: var(--pine-900);
}

.button-dark:hover {
  background: var(--pine-700);
  border-color: var(--pine-700);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 46px;
  padding: 9px;
  width: 46px;
}

.menu-toggle span:not(.sr-only) {
  background: var(--pine-950);
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero {
  color: var(--white);
  min-height: 694px;
  overflow: hidden;
  position: relative;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 24, 21, 0.91) 0%, rgba(12, 24, 21, 0.8) 34%, rgba(12, 24, 21, 0.2) 64%, rgba(12, 24, 21, 0.14) 100%),
    linear-gradient(0deg, rgba(12, 24, 21, 0.47), transparent 45%);
}

.hero-layout {
  align-items: end;
  display: grid;
  gap: clamp(40px, 7vw, 92px);
  grid-template-columns: minmax(400px, 1fr) 329px;
  min-height: 694px;
  padding-bottom: 57px;
  padding-top: 57px;
  position: relative;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4rem, 6.8vw, 5.8rem);
  margin-bottom: 23px;
  max-width: 575px;
}

.hero-intro {
  color: #e2e5de;
  font-size: 1.02rem;
  max-width: 502px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 37px;
}

.listing-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 29px 29px 27px;
}

.card-label,
.panel-label {
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.rating-row {
  align-items: baseline;
  display: flex;
  gap: 13px;
  margin-bottom: 17px;
}

.rating-row strong {
  color: var(--pine-950);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 3.35rem;
  line-height: 1;
}

.stars {
  color: var(--copper);
  font-size: 0.89rem;
  letter-spacing: 2px;
}

.card-title {
  color: var(--pine-950);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 7px;
}

.card-meta {
  font-size: 0.85rem;
}

.card-divider {
  background: var(--line);
  height: 1px;
  margin: 22px 0 20px;
}

.address {
  color: var(--pine-700);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.directions-link,
.text-link {
  align-items: center;
  color: var(--copper-dark);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

.directions-link span,
.text-link span {
  transition: transform 0.2s ease;
}

.directions-link:hover span,
.text-link:hover span {
  transform: translateX(5px);
}

.quick-facts {
  background: var(--pine-900);
  color: var(--white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts-grid div {
  padding: 29px 28px 30px;
  position: relative;
}

.facts-grid div:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.14);
  bottom: 29px;
  content: "";
  position: absolute;
  right: 0;
  top: 29px;
  width: 1px;
}

.facts-grid strong {
  color: var(--white);
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.facts-grid span {
  color: #adbab3;
  font-size: 0.78rem;
}

.section {
  padding: 92px 0;
}

.section-intro {
  margin-bottom: 48px;
  max-width: 670px;
}

.section-intro h2 {
  margin-bottom: 19px;
}

.service-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--paper);
  border: 1px solid #ebe6db;
  border-radius: var(--radius-md);
  min-height: 359px;
  padding: 35px 31px 31px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 17px 40px rgba(16, 32, 29, 0.08);
  transform: translateY(-3px);
}

.card-number {
  color: #bac4bb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  position: absolute;
  right: 30px;
  top: 35px;
}

.service-card svg {
  fill: none;
  height: 53px;
  margin-bottom: 41px;
  stroke: var(--copper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 53px;
}

.service-card h3 {
  font-size: 2.05rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.91rem;
}

.reputation {
  background: var(--paper);
}

.reputation-grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 92px);
  grid-template-columns: 1.02fr 0.88fr;
}

.reputation-copy h2 {
  margin-bottom: 20px;
  max-width: 560px;
}

.reputation-copy > p:not(.eyebrow) {
  max-width: 550px;
}

.link-row {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 35px;
}

.facebook-panel {
  background: var(--pine-900);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: clamp(34px, 5vw, 50px);
  position: relative;
}

.facebook-panel::before {
  color: rgba(207, 113, 49, 0.28);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 8rem;
  left: 30px;
  line-height: 0.7;
  position: absolute;
  top: 45px;
}

.facebook-panel blockquote {
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 60px 0 25px;
  max-width: 410px;
  position: relative;
  text-transform: uppercase;
}

.facebook-panel .panel-note {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #bac6bf;
  font-size: 0.86rem;
  margin-bottom: 26px;
  padding-top: 23px;
}

.facebook-panel a {
  color: #f0a269;
  font-size: 0.9rem;
  font-weight: 800;
}

.facebook-panel a span {
  margin-left: 8px;
}

.coverage {
  background: var(--sage);
}

.coverage-grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.87fr;
}

.area-card,
.location-card {
  border-radius: var(--radius-lg);
  padding: clamp(35px, 5vw, 53px);
}

.area-card {
  background: transparent;
  padding-left: 0;
}

.area-card h2 {
  margin-bottom: 20px;
  max-width: 620px;
}

.area-card > p:not(.eyebrow) {
  color: #53655e;
  max-width: 560px;
}

.location-card {
  align-items: flex-start;
  background: var(--paper);
  display: flex;
  gap: 22px;
}

.location-icon {
  align-items: center;
  background: var(--copper-pale);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 57px;
  justify-content: center;
  width: 57px;
}

.location-icon svg {
  fill: none;
  height: 28px;
  stroke: var(--copper-dark);
  stroke-width: 1.7;
  width: 28px;
}

.location-card address {
  color: var(--pine-950);
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 19px;
}

.hours {
  color: #30713a;
  font-size: 0.87rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.hours span {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
}

.callout {
  background: var(--pine-950);
  color: var(--white);
  padding: 80px 0;
}

.callout-grid {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 94px);
  grid-template-columns: 1fr 0.76fr;
}

.callout h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.callout p:not(.eyebrow) {
  color: #bbc6c0;
  max-width: 550px;
}

.contact-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: clamp(30px, 6vw, 72px);
}

.contact-panel span {
  color: #b4c1ba;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-phone {
  color: var(--white);
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.7rem, 4.5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 30px;
}

.site-footer {
  background: #0b1714;
  color: var(--white);
  padding-top: 52px;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding-bottom: 45px;
}

.footer-brand .roof-mark {
  background: #1a3029;
}

.footer-brand .brand-type strong {
  color: var(--white);
}

.footer-brand .brand-type small {
  color: #dc8a4e;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  justify-content: center;
}

.footer-links a {
  color: #b0bbb5;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: right;
}

.footer-contact a {
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 700;
}

.footer-contact span {
  color: #abb7b1;
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 25px;
}

.footer-bottom p {
  color: #85938c;
  font-size: 0.74rem;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(17px);
  transition: opacity 0.46s ease, transform 0.46s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1010px) {
  .nav-links {
    gap: 22px;
  }

  .hero-layout {
    align-items: center;
    grid-template-columns: 1fr;
    padding-bottom: 47px;
    padding-top: 62px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 24, 21, 0.91), rgba(12, 24, 21, 0.5)),
      linear-gradient(0deg, rgba(12, 24, 21, 0.6), transparent);
  }

  .listing-card {
    max-width: 335px;
  }

  .facts-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-grid div:nth-child(2)::after {
    display: none;
  }

  .facts-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .reputation-grid,
  .coverage-grid,
  .callout-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    padding: 0;
  }

  .contact-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 33px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 67px;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement p {
    display: none;
  }

  .navigation {
    height: 76px;
  }

  .roof-mark {
    height: 44px;
    width: 48px;
  }

  .roof-mark::before {
    left: 6px;
    top: 7px;
    width: 36px;
  }

  .roof-mark span {
    bottom: 8px;
    left: 19px;
  }

  .brand-type strong {
    font-size: 1.47rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 35px rgba(16, 32, 29, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 25px 24px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .nav-links .button {
    margin-top: 19px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero,
  .hero-layout {
    min-height: 675px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 24, 21, 0.91), rgba(12, 24, 21, 0.48)),
      linear-gradient(0deg, rgba(12, 24, 21, 0.82), rgba(12, 24, 21, 0.05) 65%);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 285px;
  }

  .facts-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 23px 0;
  }

  .facts-grid div:last-child {
    border-bottom: 0;
  }

  .facts-grid div::after {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .service-card {
    min-height: auto;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .location-card {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-call {
    align-items: center;
    background: var(--copper);
    bottom: 0;
    color: var(--white);
    display: flex;
    font-size: 0.93rem;
    font-weight: 800;
    height: 67px;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }
}

@media (max-width: 510px) {
  .container {
    padding: 0 19px;
  }

  .hero-layout {
    padding-bottom: 30px;
    padding-top: 45px;
  }

  .listing-card {
    padding: 25px 23px;
  }

  .facebook-panel,
  .location-card {
    padding: 31px 24px;
  }

  .callout {
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
