:root {
  --ink: #171410;
  --ink-2: #2f2a23;
  --muted: #6f675c;
  --paper: #fffdf8;
  --soft: #f5efe4;
  --line: #ded4c4;
  --bronze: #b48643;
  --bronze-dark: #7a5525;
  --sage: #4f5d4a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 20, 16, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(180, 134, 67, 0.55);
  outline-offset: 3px;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(222, 212, 196, 0.85);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 30px rgba(23, 20, 16, 0.08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

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

.brand-logo {
  flex: 0 0 auto;
  width: 82px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(23, 20, 16, 0.18));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ink), #3a3127);
  color: var(--bronze);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  border-radius: 6px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  padding: 10px 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover {
  background: rgba(180, 134, 67, 0.12);
  color: var(--bronze-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
  white-space: nowrap;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
}

.btn-primary:hover {
  background: #c49755;
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 148px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.85s ease, transform 6.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 20, 16, 0.84) 0%, rgba(23, 20, 16, 0.62) 46%, rgba(23, 20, 16, 0.24) 100%),
    linear-gradient(180deg, rgba(23, 20, 16, 0.2), rgba(23, 20, 16, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(46px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 5.1vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

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

.hero-phone {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.hero-phone a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(180, 134, 67, 0.8);
  text-underline-offset: 5px;
}

.hero-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(23, 20, 16, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.hero-arrow,
.hero-dots button {
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(180, 134, 67, 0.8);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 26px;
  background: var(--bronze);
}

.trust-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #13110e;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #13110e;
  padding: 22px;
}

.trust-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
  position: relative;
}

.trust-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  left: 5px;
  top: 6px;
  border-left: 2px solid var(--bronze);
  border-bottom: 2px solid var(--bronze);
  transform: rotate(-45deg);
}

.trust-grid strong {
  font-size: 15px;
  line-height: 1.3;
}

.section {
  padding-block: clamp(72px, 9vw, 118px);
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(79, 93, 74, 0.22), rgba(23, 20, 16, 0) 40%),
    var(--ink);
  color: var(--white);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 28%, rgba(180, 134, 67, 0.18), transparent 28%),
    radial-gradient(circle at 78% 64%, rgba(79, 93, 74, 0.28), transparent 30%),
    linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.055) 49%, transparent 62%);
  background-size: 100% 100%, 100% 100%, 220% 100%;
  animation: darkSectionDrift 14s ease-in-out infinite alternate;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-layout h2,
.about-copy h2,
.faq-layout h2,
.contact-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 3.8vw, 2.875rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-layout p,
.about-copy p,
.faq-layout > div > p,
.contact-copy > p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.section-dark .split-layout p,
.section-dark .reason-list p {
  color: rgba(255, 255, 255, 0.78);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(222, 212, 196, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(23, 20, 16, 0.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.54), transparent 0),
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.48) 42%, transparent 64%),
    linear-gradient(0deg, rgba(180, 134, 67, 0.18), rgba(180, 134, 67, 0));
  opacity: 0;
  transform: scale(0.76);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  transform-origin: center;
  transition: filter 0.28s ease, transform 0.28s ease;
}

.service-card img:hover,
.service-card img:focus-visible {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.service-card img:focus-visible {
  outline: 3px solid rgba(180, 134, 67, 0.7);
  outline-offset: -6px;
}

.service-card.is-image-active img {
  animation: serviceImagePop 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.is-image-active::after {
  animation: serviceImageRipple 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card div {
  flex: 1;
  padding: 22px 22px 10px;
}

.service-card h3,
.process-grid h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-card p,
.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-card a {
  margin: 4px 22px 22px;
  color: var(--bronze-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(180, 134, 67, 0.4);
  text-underline-offset: 5px;
}

@keyframes serviceImagePop {
  0% {
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }

  38% {
    transform: scale(1.07);
    filter: saturate(1.2) contrast(1.08);
  }

  100% {
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }
}

@keyframes serviceImageRipple {
  0% {
    opacity: 0;
    transform: scale(0.62);
    background-size: 0 0, 220% 100%, 100% 100%;
    background-position: 50% 50%, 140% 0, 0 0;
  }

  42% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
    background-size: 220% 220%, 220% 100%, 100% 100%;
    background-position: 50% 50%, -90% 0, 0 0;
  }
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: zoom-in;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(23, 20, 16, 0.76), rgba(23, 20, 16, 0));
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(180, 134, 67, 0.7);
  outline-offset: 4px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(180, 134, 67, 0.16), transparent 34%),
    rgba(12, 10, 8, 0.88);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(780px, calc(100svh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 15, 12, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 14px 12px 18px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 850;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 26px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--bronze);
  color: var(--ink);
}

.lightbox-figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #080706;
}

.lightbox-figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px clamp(18px, 4vw, 34px);
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0));
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
  font-weight: 900;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

body.lightbox-open {
  overflow: hidden;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(38px, 8vw, 92px);
  align-items: start;
}

.reason-list {
  display: grid;
  gap: 10px;
}

.reason-list div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateY(18px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.reason-list div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(180, 134, 67, 0.2), transparent 34%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 48%, transparent 58%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, 180% 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.reason-list.is-visible div {
  animation: reasonLift 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reason-list.is-visible div:nth-child(2) {
  animation-delay: 0.08s;
}

.reason-list.is-visible div:nth-child(3) {
  animation-delay: 0.16s;
}

.reason-list.is-visible div:nth-child(4) {
  animation-delay: 0.24s;
}

.reason-list.is-visible div:nth-child(5) {
  animation-delay: 0.32s;
}

.reason-list.is-visible div:hover {
  border-color: rgba(180, 134, 67, 0.42);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.reason-list.is-visible div:hover::before {
  opacity: 1;
  animation: reasonSheen 2.6s ease-in-out infinite;
}

.reason-list span,
.process-number {
  color: var(--bronze);
  font-size: 13px;
  font-weight: 900;
}

.reason-list p {
  margin: 0;
  font-weight: 750;
  line-height: 1.35;
}

@keyframes darkSectionDrift {
  0% {
    transform: translate3d(-1.4%, -1%, 0);
    background-position: 0 0, 0 0, 110% 0;
  }

  100% {
    transform: translate3d(1.4%, 1%, 0);
    background-position: 0 0, 0 0, -80% 0;
  }
}

@keyframes reasonLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reasonSheen {
  0% {
    background-position: 0 0, 180% 0;
  }

  100% {
    background-position: 0 0, -100% 0;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(222, 212, 196, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 20, 16, 0.045);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--bronze), rgba(180, 134, 67, 0.08));
  opacity: 0.75;
}

.process-grid article:hover {
  border-color: rgba(180, 134, 67, 0.55);
  box-shadow: 0 18px 46px rgba(23, 20, 16, 0.09);
  transform: translateY(-4px);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  letter-spacing: 0.08em;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(180, 134, 67, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(180, 134, 67, 0.24), rgba(180, 134, 67, 0.08)),
    var(--paper);
  color: var(--bronze-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 24px rgba(180, 134, 67, 0.12);
}

.process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
}

.area-badge {
  display: inline-flex;
  margin-top: 24px;
  border: 1px solid rgba(180, 134, 67, 0.5);
  border-radius: 6px;
  background: rgba(180, 134, 67, 0.12);
  color: var(--bronze-dark);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 850;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: start;
}

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

.faq-list details {
  background: var(--paper);
  border: 1px solid rgba(222, 212, 196, 0.95);
  border-radius: var(--radius);
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--bronze-dark);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 20, 16, 0.92), rgba(23, 20, 16, 0.78)),
    linear-gradient(135deg, rgba(180, 134, 67, 0.24), rgba(79, 93, 74, 0.28)),
    url("assets/images/brickKitchen.webp") center / cover no-repeat;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.contact-card span {
  display: block;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: inline-block;
  margin: 4px 0 0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.contact-form .full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--sage);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer {
  background: #100e0b;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 1fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  width: 96px;
  height: 92px;
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 430px;
  font-size: 0.95rem;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.site-footer a,
.site-footer span {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--bronze);
}

.footer-phone a {
  display: inline;
  color: var(--white);
  font-weight: 850;
}

.careers {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.careers span {
  color: var(--bronze);
  font-weight: 850;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  max-width: none;
  font-size: 0.9rem;
}

.footer-credit {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
  display: inline;
  width: auto;
  margin: 0;
  color: var(--bronze);
  font-weight: 850;
}

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

@media (max-width: 1060px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

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

  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }

  .brand-logo {
    width: 66px;
    height: 62px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    justify-self: end;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
    order: 2;
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px;
  }

  .hero {
    min-height: calc(100svh - 128px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(23, 20, 16, 0.86) 0%, rgba(23, 20, 16, 0.68) 72%, rgba(23, 20, 16, 0.52) 100%),
      linear-gradient(180deg, rgba(23, 20, 16, 0.12), rgba(23, 20, 16, 0.28));
  }

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

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

  .split-layout,
  .about-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 60px;
    height: 56px;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    order: initial;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 2.625rem);
    max-width: 11ch;
  }

  .hero-lede {
    font-size: 1.03rem;
  }

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

  .hero-slider-controls {
    width: 100%;
    max-width: 320px;
    justify-content: space-between;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 78px;
    padding: 18px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-feature,
  .gallery-tall {
    aspect-ratio: 4 / 3;
  }

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

  .lightbox {
    padding: 12px;
  }

  .lightbox-panel {
    height: calc(100svh - 24px);
  }

  .lightbox-toolbar {
    min-height: 54px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 70px;
    width: 40px;
    height: 44px;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-card-top {
    margin-bottom: 20px;
  }

  .reason-list div {
    grid-template-columns: 44px 1fr;
  }
}

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

  .section-dark::before,
  .reason-list div::before {
    display: none;
  }

  .reason-list div {
    opacity: 1;
    transform: none;
  }
}
