:root {
  --ink: #241f1a;
  --muted: #6a6259;
  --paper: #f6f1ea;
  --paper-strong: #fffaf2;
  --wood: #81502e;
  --wood-dark: #4c2e1d;
  --sage: #2f6f5e;
  --terracotta: #b94a35;
  --gold: #d89b42;
  --line: rgba(36, 31, 26, 0.14);
  --shadow: 0 24px 70px rgba(36, 31, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 40px;
  color: #fffaf2;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 10px 30px rgba(36, 31, 26, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand-logo {
  width: 152px;
  height: auto;
  flex: 0 0 auto;
  filter: none;
}

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

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 13px;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  width: 18px;
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  color: #fffaf2;
  background: var(--sage);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 160px 40px 64px;
  color: #fffaf2;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=2200&q=86")
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.82), rgba(21, 18, 14, 0.58) 42%, rgba(21, 18, 14, 0.18)),
    linear-gradient(0deg, rgba(21, 18, 14, 0.7), rgba(21, 18, 14, 0) 54%);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fffaf2;
  background: var(--terracotta);
  box-shadow: 0 16px 36px rgba(185, 74, 53, 0.26);
}

.button.secondary {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.5);
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(10px);
}

.button.secondary-on-light {
  color: var(--sage);
  background: rgba(47, 111, 94, 0.1);
  border-color: rgba(47, 111, 94, 0.22);
  box-shadow: none;
}

.hero-panel {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: min(430px, calc(100% - 80px));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 250, 242, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.35;
}

.hero-panel a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: #fffaf2;
  background: var(--sage);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.intro,
.section,
.service-band,
.split-section,
.gallery-section,
.quote-section,
.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: 42px;
  padding: 58px 0 40px;
}

.section-copy h2,
.section-heading h2,
.split-content h2,
.quote-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.intro-stats div {
  padding: 22px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-stats strong,
.intro-stats span {
  display: block;
}

.intro-stats strong {
  color: var(--wood);
  font-size: 28px;
  line-height: 1;
}

.intro-stats span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 56px 0 74px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-weight: 800;
  white-space: nowrap;
}

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

.product-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.product-card div {
  padding: 22px;
}

.product-card h3,
.service-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.product-card p,
.service-list p,
.split-content p,
.quote-copy p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: 150px 40px 72px;
  color: #fffaf2;
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  background: var(--page-hero-image, url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1800&q=84")) center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.84), rgba(21, 18, 14, 0.55) 48%, rgba(21, 18, 14, 0.2)),
    linear-gradient(0deg, rgba(21, 18, 14, 0.72), rgba(21, 18, 14, 0) 58%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: #fffaf2;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: 19px;
}

.content-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.lead-grid,
.seo-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.lead-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: 46px;
}

.lead-copy h2,
.content-section h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.lead-copy p,
.content-section > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.seo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.seo-card,
.process-card,
.contact-card,
.related-card {
  padding: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-card img,
.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.seo-card h2,
.seo-card h3,
.process-card h3,
.contact-card h3,
.related-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.22;
}

.seo-card p,
.process-card p,
.contact-card p,
.related-card p {
  margin: 0;
  color: var(--muted);
}

.seo-card .text-link,
.related-card .text-link {
  margin-top: 16px;
}

.local-seo-section {
  padding-top: 72px;
}

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

.local-area-grid article,
.faq-list details {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.local-area-grid article {
  padding: 24px;
}

.local-area-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.22;
}

.local-area-grid p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  padding-top: 54px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.reference-overview {
  padding-bottom: 34px;
}

.reference-overview .seo-card {
  display: block;
}

.reference-overview .gallery-count {
  margin: 0 0 14px;
}

.gallery-carousel {
  scroll-margin-top: 96px;
}

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

.process-card strong {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 16px;
  color: #fffaf2;
  background: var(--sage);
  border-radius: 999px;
}

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

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
}

.contact-grid .seo-grid {
  grid-template-columns: 1fr;
}

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

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(36, 31, 26, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 94, 0.28);
  box-shadow: 0 28px 74px rgba(36, 31, 26, 0.14);
}

.catalog-image-link {
  display: block;
  margin: 24px 24px 0;
  overflow: hidden;
  border-radius: 8px;
}

.catalog-image-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(36, 31, 26, 0.16);
  transition: transform 220ms ease;
}

.catalog-image-link:hover img {
  transform: scale(1.03);
}

.catalog-icon-link {
  position: absolute;
  top: 36px;
  right: 36px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fffaf2;
  background: rgba(36, 31, 26, 0.76);
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(36, 31, 26, 0.24);
  backdrop-filter: blur(10px);
}

.catalog-icon-link:hover {
  background: var(--sage);
}

.catalog-body {
  display: grid;
  gap: 12px;
  flex: 1;
  padding: 20px 24px 24px;
}

.catalog-body h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.18;
}

.catalog-body p {
  margin: 0;
  color: var(--muted);
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--sage);
  background: rgba(47, 111, 94, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.catalog-body .text-link {
  margin-top: 2px;
}

.service-band {
  width: 100%;
  padding: 68px max(24px, calc((100% - 1180px) / 2)) 74px;
  background: #ebe2d5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.service-list article {
  padding: 24px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(36, 31, 26, 0.1);
  border-radius: 8px;
}

.service-list svg {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--sage);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 78px 0;
}

.split-image {
  min-height: 560px;
  background:
    url("https://images.unsplash.com/photo-1617103996702-96ff29b1c467?auto=format&fit=crop&w=1200&q=84")
    center / cover no-repeat;
  border-radius: 8px;
}

.split-content p {
  margin-top: 20px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--sage);
  margin-top: 2px;
}

.gallery-section {
  padding: 18px 0 78px;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(36, 31, 26, 0.08);
}

.gallery-carousel + .gallery-carousel {
  margin-top: 24px;
}

.gallery-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 26px 30px 0;
}

.gallery-info h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.gallery-info p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.gallery-count {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--sage);
  background: rgba(47, 111, 94, 0.12);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.gallery-frame {
  position: relative;
  padding: 26px 78px 28px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 6);
  gap: 16px;
  min-height: 220px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-color: rgba(36, 31, 26, 0.38) rgba(36, 31, 26, 0.08);
  scrollbar-width: thin;
  padding-bottom: 16px;
}

.gallery-track::-webkit-scrollbar {
  height: 10px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(36, 31, 26, 0.08);
  border-radius: 999px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(36, 31, 26, 0.38);
  border-radius: 999px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ded6ca;
  border-radius: 8px;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--muted);
  background: #f0e8dc;
  border: 1px dashed rgba(36, 31, 26, 0.24);
  border-radius: 8px;
  text-align: center;
}

.gallery-empty svg {
  width: 34px;
  height: 34px;
  color: var(--sage);
}

.gallery-empty strong {
  color: var(--ink);
  font-size: 18px;
}

.gallery-empty span {
  max-width: 320px;
  font-size: 14px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 92px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(36, 31, 26, 0.13);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(36, 31, 26, 0.13);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow:hover {
  color: var(--sage);
}

.gallery-arrow-left {
  left: 20px;
}

.gallery-arrow-right {
  right: 20px;
}

.gallery-carousel.is-empty .gallery-arrow {
  opacity: 0.34;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 32px;
  color: #fffaf2;
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 14, 0.88);
  backdrop-filter: blur(12px);
}

.gallery-lightbox-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, auto) 56px;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(100%, 1480px);
  max-height: calc(100vh - 64px);
}

.gallery-lightbox-topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gallery-lightbox-label,
.gallery-lightbox-topbar strong {
  display: block;
}

.gallery-lightbox-label {
  color: rgba(255, 250, 242, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-lightbox-topbar strong {
  margin-top: 4px;
  font-size: 18px;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: rgba(255, 250, 242, 0.2);
}

.gallery-lightbox-close {
  width: 46px;
  height: 46px;
}

.gallery-lightbox-nav {
  width: 56px;
  height: 96px;
}

.gallery-lightbox-prev {
  grid-column: 1;
}

.gallery-lightbox-next {
  grid-column: 3;
}

.gallery-lightbox-figure {
  grid-column: 2;
  margin: 0;
  display: grid;
  place-items: center;
  min-width: 0;
}

.gallery-lightbox-figure img {
  display: block;
  height: min(800px, calc(100vh - 180px));
  width: auto;
  max-width: calc(100vw - 220px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: start;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.quote-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.quote-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(36, 31, 26, 0.08);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--wood-dark);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 31, 26, 0.18);
  border-radius: 8px;
  outline: none;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 13px;
}

.quote-form input[type="file"] {
  min-height: auto;
  padding: 11px 13px;
  background: #fff;
  cursor: pointer;
}

.quote-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--sage);
  box-shadow: none;
  cursor: pointer;
}

.quote-form textarea {
  resize: vertical;
  padding: 13px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(47, 111, 94, 0.14);
}

.form-hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 0 12px;
  padding: 14px;
  color: var(--muted);
  background: rgba(47, 111, 94, 0.08);
  border: 1px solid rgba(47, 111, 94, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.form-consent a {
  color: var(--sage);
  font-weight: 900;
}

.quote-form .field-hidden {
  display: none !important;
}

.form-button {
  width: 100%;
}

.footer {
  color: #fffaf2;
  background: #241f1a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 54px 0 36px;
}

.footer-brand {
  color: #fffaf2;
  align-items: center;
}

.footer-brand .brand-logo {
  width: 150px;
}

.footer p {
  max-width: 340px;
  margin-top: 20px;
  color: rgba(255, 250, 242, 0.68);
}

.footer address,
.contact-list,
.hours {
  display: grid;
  align-content: start;
  gap: 7px;
  font-style: normal;
}

.footer strong {
  margin-bottom: 8px;
  color: var(--gold);
}

.footer a {
  color: #fffaf2;
}

.footer-year-link {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.footer-year-link:hover,
.footer-year-link:focus {
  color: inherit;
  text-decoration: none;
}

.footer span,
.footer small {
  color: rgba(255, 250, 242, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  font-size: 14px;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 15px 24px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 0 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    min-height: 86vh;
    padding: 136px 24px 166px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-panel {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel a {
    grid-column: 1 / -1;
  }

  .intro,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .service-list,
  .catalog-grid,
  .seo-grid,
  .local-area-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .gallery-lightbox {
    padding: 24px;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 48px minmax(0, auto) 48px;
    gap: 12px;
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
    max-height: none;
  }

  .gallery-lightbox-nav {
    width: 48px;
    height: 82px;
  }

  .gallery-lightbox-figure {
    height: 100%;
  }

  .gallery-lightbox-figure img {
    max-height: 100%;
    max-width: calc(100vw - 160px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 112px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 12px;
  }

  .hero {
    min-height: 90vh;
    padding: 126px 20px 178px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .page-hero {
    padding: 124px 20px 58px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-panel {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
  }

  .intro,
  .section,
  .split-section,
  .gallery-section,
  .quote-section,
  .content-section,
  .footer-main,
  .footer-bottom {
    width: min(100% - 32px, 1180px);
  }

  .intro {
    padding-top: 44px;
  }

  .section-copy h2,
  .section-heading h2,
  .split-content h2,
  .quote-copy h2 {
    font-size: 32px;
  }

  .intro-stats,
  .product-grid,
  .service-list,
  .catalog-grid,
  .seo-grid,
  .local-area-grid,
  .process-grid,
  .related-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .lead-copy h2,
  .content-section h2 {
    font-size: 32px;
  }

  .section-heading {
    display: grid;
  }

  .gallery-info {
    grid-template-columns: 1fr;
    padding: 22px 18px 0;
  }

  .gallery-info h3 {
    font-size: 24px;
  }

  .gallery-frame {
    padding: 22px 16px 24px;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    min-height: 190px;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 12px;
    height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
    max-height: none;
  }

  .gallery-lightbox-topbar,
  .gallery-lightbox-figure {
    grid-column: 1 / -1;
  }

  .gallery-lightbox-figure {
    height: 100%;
  }

  .gallery-lightbox-figure img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: calc(100vw - 32px);
  }

  .gallery-lightbox-nav {
    width: 100%;
    height: 52px;
  }

  .gallery-lightbox-prev {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-lightbox-next {
    grid-column: 2;
    grid-row: 3;
  }

  .split-image {
    min-height: 360px;
  }

  .quote-section {
    gap: 28px;
  }

  .quote-form {
    padding: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
