:root {
  --ink: #191715;
  --ink-2: #2b2823;
  --cream: #f7f2e8;
  --paper: #fffaf0;
  --gold: #f4b834;
  --gold-dark: #c98212;
  --green: #263b2e;
  --stone: #d8cec0;
  --muted: #756d62;
  --line: rgba(25, 23, 21, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(25, 23, 21, 0.16);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  padding-bottom: 0;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

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

h1 {
  font-size: 2.85rem;
  max-width: 11ch;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 242, 232, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 9px 11px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(244, 184, 52, 0.22);
}

.header-call {
  background: var(--ink);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 12px 16px;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
  background:
    linear-gradient(135deg, rgba(25, 23, 21, 0.98), rgba(38, 59, 46, 0.94)),
    var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(247, 242, 232, 0), var(--cream));
  pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.form-layout,
.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-answer {
  color: var(--white) !important;
  font-weight: 700;
}

.hero-actions,
.cta-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 900;
  line-height: 1.1;
  padding: 13px 18px;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(244, 184, 52, 0.22);
}

.button-secondary {
  border-color: rgba(25, 23, 21, 0.22);
  background: var(--paper);
  color: var(--ink);
}

.hero .button-secondary,
.button-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.quick-note {
  margin-top: 16px;
  font-size: 0.95rem !important;
}

.quick-note a,
.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.dark-link {
  color: var(--ink);
}

.hero-media {
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  inset: 20px 62px 84px 0;
}

.hero-photo-small {
  width: 46%;
  height: 32%;
}

.hero-photo-small.top {
  top: 0;
  right: 0;
}

.hero-photo-small.bottom {
  right: 28px;
  bottom: 28px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 48px;
  margin-top: -12px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-grid div {
  min-height: 94px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-weight: 900;
  padding: 18px;
  text-align: center;
}

.proof-grid div:last-child {
  border-right: 0;
}

.section {
  padding: 76px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
}

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

.service-card,
.gallery-card,
.info-card,
.area-cards article,
.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(25, 23, 21, 0.08);
}

.service-card {
  overflow: hidden;
}

.service-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  text-decoration: none;
}

.service-image img,
.gallery-card img,
.page-hero-grid > img,
.feature-photo,
.image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image span {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--gold);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 9px;
}

.gallery-card span {
  display: inline-flex;
  width: fit-content;
  background: var(--gold);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  padding: 6px 9px;
}

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

.service-card h3 a {
  text-decoration: none;
}

.service-card p,
.info-card p,
.area-cards p {
  color: var(--muted);
}

.feature-photo,
.page-hero-grid > img {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 34px;
  background: var(--green);
  border-radius: var(--radius);
  color: var(--white);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 184, 52, 0.16);
}

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

.gallery-grid.compact {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: var(--white);
}

.gallery-card img {
  position: absolute;
  inset: 0;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, rgba(25, 23, 21, 0), rgba(25, 23, 21, 0.88));
}

.gallery-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.gallery-card h3,
.gallery-card h2 {
  font-size: 1.05rem;
}

.gallery-card.large {
  min-height: 360px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.area-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-weight: 800;
}

.service-area-band .area-list li {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list.wide {
  max-width: 900px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 72px 0;
  background: var(--ink);
  color: var(--white);
}

.page-hero.simple {
  text-align: center;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero.simple h1 {
  max-width: none;
}

.contact-hero a {
  color: var(--gold);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  padding: 16px;
  text-decoration: none;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.74);
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-cards article,
.info-card {
  padding: 26px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-row img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.form-layout {
  align-items: start;
}

.quote-form {
  padding: 24px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-note a {
  font-weight: 900;
}

.cta-band {
  padding: 56px 0;
  background: var(--green);
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 58px 0 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 42px;
}

.footer-brand .brand-mark {
  background: var(--gold);
}

.footer-brand small,
.site-footer p,
.footer-list,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-list a {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 44px;
  padding-top: 18px;
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 15;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(25, 23, 21, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.mobile-sticky-cta a {
  flex: 1;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.mobile-sticky-cta a + a {
  background: var(--white);
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 2.35rem;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    padding: 13px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-call {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .form-layout,
  .cta-band-inner,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 480px;
  }

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

  .gallery-grid,
  .gallery-grid.compact,
  .area-cards,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-grid div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    padding-bottom: 68px;
  }

  h1 {
    font-size: 2rem;
    max-width: none;
  }

  h2 {
    font-size: 1.65rem;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero,
  .page-hero {
    padding: 42px 0;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-answer {
    font-size: 0.98rem !important;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-note {
    margin-top: 14px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-photo-main {
    inset: 0 0 120px;
  }

  .hero-photo-small {
    width: 54%;
    height: 34%;
  }

  .hero-photo-small.top {
    top: auto;
    right: auto;
    left: 0;
    bottom: 20px;
  }

  .hero-photo-small.bottom {
    right: 0;
    bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .heading-row {
    display: grid;
  }

  .service-grid,
  .gallery-grid,
  .gallery-grid.compact,
  .area-cards,
  .image-row,
  .footer-grid,
  .form-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    min-height: 66px;
    border-right: 0;
  }

  .quote-panel,
  .quote-form {
    padding: 22px;
  }

  .page-hero-grid > img,
  .feature-photo {
    min-height: 270px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.86rem;
    line-height: 1.08;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-copy p {
    margin-bottom: 0.82rem;
  }
}
