:root {
  color-scheme: light;
  --ink: #171713;
  --muted: #686b61;
  --paper: #f6f0e6;
  --white: #fffdf8;
  --charcoal: #181a18;
  --line: #ded6c7;
  --green: #195143;
  --green-dark: #102f2b;
  --gold: #f6bd2f;
  --blue: #dcecef;
  --clay: #c7683f;
  --shadow: 0 22px 58px rgba(24, 26, 24, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#services,
#work,
#gallery,
#process,
#reviews,
#contact {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(24, 26, 24, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(24, 26, 24, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  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;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(24, 26, 24, 0.86);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
}

.brand span {
  display: grid;
  gap: 0.05rem;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.82rem;
  line-height: 1.2;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: rgba(255, 253, 248, 0.76);
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  font-size: 0.96rem;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-call,
.btn,
.request-link,
.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.header-call {
  padding: 0.72rem 1rem;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.header-call svg,
.btn svg,
.request-link svg,
.mobile-call svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  padding: 0.7rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 64px));
  display: grid;
  align-items: end;
  padding: clamp(4rem, 9vw, 7.5rem) max(1rem, calc((100vw - var(--max)) / 2)) clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-screen,
.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(0.72) contrast(1.08);
}

.hero-screen {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.93) 0%, rgba(8, 11, 10, 0.72) 42%, rgba(8, 11, 10, 0.12) 78%),
    linear-gradient(180deg, rgba(8, 11, 10, 0.26) 0%, rgba(8, 11, 10, 0.46) 100%);
}

.hero-lines {
  z-index: -1;
  opacity: 0.72;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(246, 189, 47, 0.86) 58% 59%, transparent 59%),
    linear-gradient(120deg, transparent 0 67%, rgba(255, 253, 248, 0.24) 67% 67.35%, transparent 67.35%);
}

.hero-copy {
  width: min(720px, 100%);
  min-width: 0;
}

.hero-brand {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.9rem;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.15rem;
  font-size: 4.8rem;
}

.hero-lede {
  max-width: 42rem;
  margin-bottom: 1.55rem;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.28rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.45rem;
}

.btn {
  padding: 0.84rem 1.08rem;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.42);
  backdrop-filter: blur(10px);
}

.contact-section .btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--line);
}

.btn:hover,
.header-call:hover,
.request-link:hover,
.mobile-call:hover {
  transform: translateY(-2px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.hero-note {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.15rem 0.75rem;
  max-width: min(88vw, 18rem);
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(24, 26, 24, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-note img {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-note span,
.quick-strip span,
.contact-details span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-note span {
  color: rgba(255, 253, 248, 0.64);
}

.hero-note strong {
  color: var(--white);
  font-size: 1rem;
}

.quick-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: -1.4rem auto 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip div {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem;
  background: var(--white);
}

.quick-strip strong,
.contact-details strong {
  color: var(--ink);
  font-size: 1rem;
}

.quick-strip a,
.contact-details a {
  text-decoration-color: rgba(25, 81, 67, 0.32);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.4rem 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.1rem;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading h2,
.work-copy h2,
.gallery-intro h2,
.review-copy h2,
.contact-copy h2 {
  margin-bottom: 0.85rem;
  font-size: 3.75rem;
}

.section-heading p:not(.eyebrow),
.work-copy p,
.gallery-intro p:not(.eyebrow),
.review-copy p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: services;
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(24, 26, 24, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(24, 26, 24, 0.07);
}

.service-card::before {
  counter-increment: services;
  content: "0" counter(services);
  position: absolute;
  right: 0.95rem;
  top: 0.6rem;
  color: rgba(24, 26, 24, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.service-card:nth-child(even) {
  transform: translateY(1.25rem);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.15rem;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--gold);
}

.icon-wrap svg {
  width: 1.36rem;
  height: 1.36rem;
  fill: currentColor;
}

.service-card h3 {
  position: relative;
  margin-bottom: 0.58rem;
  font-size: 1.28rem;
}

.service-card p,
.value-item p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.work-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 4.9rem max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.work-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(246, 189, 47, 0.14) 44% 45.5%, transparent 45.5%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.06) 1px, transparent 1px) 0 0 / 96px 96px;
  pointer-events: none;
}

.work-copy,
.work-photo {
  position: relative;
}

.work-copy {
  max-width: 540px;
}

.work-copy .eyebrow {
  color: var(--gold);
}

.work-copy p {
  color: rgba(255, 253, 248, 0.74);
}

.text-link {
  color: var(--gold);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.work-photo {
  margin: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
}

.work-photo::before {
  content: "";
  position: absolute;
  inset: -0.7rem 1.6rem 1.4rem -0.9rem;
  z-index: -1;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.work-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.work-photo figcaption {
  margin-top: 0.6rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
}

.gallery-section {
  position: relative;
  padding: 4.9rem max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(199, 104, 63, 0.14) 32% 33.4%, transparent 33.4%),
    linear-gradient(180deg, rgba(25, 81, 67, 0.08), transparent 48%);
  pointer-events: none;
}

.gallery-intro,
.gallery-showcase {
  position: relative;
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.gallery-intro {
  max-width: 830px;
  margin-bottom: 2.1rem;
}

.gallery-intro .eyebrow {
  color: var(--clay);
}

.gallery-showcase:focus-visible {
  outline: 3px solid rgba(246, 189, 47, 0.72);
  outline-offset: 0.4rem;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.68rem 0.85rem;
  border: 1px solid rgba(24, 26, 24, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(24, 26, 24, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-tab span {
  display: inline-grid;
  min-width: 1.75rem;
  min-height: 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(24, 26, 24, 0.08);
  font-size: 0.72rem;
  line-height: 1;
}

.gallery-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 26, 24, 0.3);
}

.gallery-tab.is-active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.gallery-tab.is-active span {
  background: var(--gold);
  color: var(--ink);
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1rem;
  align-items: stretch;
}

.gallery-stage {
  position: relative;
  min-width: 0;
}

.gallery-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: clamp(440px, 68svh, 720px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 26, 24, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 189, 47, 0.13), transparent 42%),
    var(--charcoal);
  box-shadow: 0 28px 64px rgba(24, 26, 24, 0.2);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #11130f;
  filter: saturate(0.98) contrast(1.04);
}

.gallery-frame figcaption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  background:
    linear-gradient(120deg, rgba(246, 189, 47, 0.12), transparent 48%),
    var(--charcoal);
  color: var(--white);
}

.gallery-frame span,
.gallery-group-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-frame strong {
  min-width: 0;
  max-width: 48rem;
  font-size: 1.16rem;
  line-height: 1.15;
}

.gallery-frame small {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.gallery-controls {
  position: absolute;
  inset: 50% 0.75rem auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.gallery-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: var(--radius);
  background: rgba(24, 26, 24, 0.78);
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gallery-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 189, 47, 0.75);
  background: rgba(24, 26, 24, 0.92);
}

.gallery-arrow svg {
  width: 1.22rem;
  height: 1.22rem;
  fill: currentColor;
}

.gallery-panel {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  min-height: 0;
  padding: 1rem;
  border: 1px solid rgba(24, 26, 24, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(220, 236, 239, 0.48), transparent 38%),
    rgba(255, 253, 248, 0.82);
  box-shadow: 0 22px 52px rgba(24, 26, 24, 0.12);
}

.gallery-group-label {
  margin: 0 0 0.34rem;
  color: var(--clay);
}

.gallery-panel h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.gallery-panel p:not(.gallery-group-label) {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-progress {
  height: 5px;
  margin: 0.9rem 0 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24, 26, 24, 0.12);
}

.gallery-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  transition: width 180ms ease;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  min-height: 0;
  max-height: 460px;
  overflow: auto;
  padding-right: 0.2rem;
}

.gallery-thumb {
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--charcoal);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.gallery-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(24, 26, 24, 0.18);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values {
  padding-bottom: 3.2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.value-item {
  padding: 1.3rem 1.2rem;
  background: rgba(255, 253, 248, 0.76);
}

.value-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--green-dark);
  font-size: 1.15rem;
}

.process {
  padding: 4.7rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--blue);
}

.process .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process .eyebrow {
  color: var(--clay);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 232px;
  padding: 1.25rem;
  border: 1px solid rgba(25, 81, 67, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 34px rgba(25, 81, 67, 0.08);
}

.process-list span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.process-list strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.reviews-section {
  position: relative;
  padding: 4.9rem max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(246, 189, 47, 0.18) 54% 55.4%, transparent 55.4%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.07) 1px, transparent 1px) 0 0 / 88px 88px;
  pointer-events: none;
}

.reviews-wrap {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.review-copy {
  max-width: 560px;
}

.review-copy .eyebrow {
  color: var(--gold);
}

.review-copy h2 {
  color: var(--white);
}

.review-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
}

.review-source {
  display: inline-block;
  margin-top: 0.4rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  position: relative;
  min-height: 232px;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.review-card::before {
  content: "\"";
  position: absolute;
  right: 0.8rem;
  bottom: -1rem;
  color: rgba(246, 189, 47, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}

.review-card:nth-child(2),
.review-card:nth-child(4) {
  background: rgba(199, 104, 63, 0.16);
}

.review-meta {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-meta span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-meta strong {
  max-width: 12rem;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
  text-align: right;
}

.review-card p {
  position: relative;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.18;
}

.review-card small {
  position: relative;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.7rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy {
  max-width: 680px;
}

.contact-copy .eyebrow {
  color: var(--clay);
}

.contact-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.contact-details div,
.request-link {
  background: var(--white);
}

.contact-details div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
}

.request-link {
  justify-content: space-between;
  min-height: 58px;
  padding: 1rem;
  color: var(--green-dark);
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.8rem 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
  text-decoration-color: rgba(25, 81, 67, 0.32);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-call {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: var(--radius);
    background: var(--charcoal);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu a {
    padding: 0.85rem;
    color: var(--white);
  }

  .nav-menu a::after {
    display: none;
  }

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

  .hero {
    min-height: 720px;
    padding-top: 4.2rem;
  }

  .hero-brand {
    font-size: 5rem;
  }

  h1 {
    font-size: 3.65rem;
  }

  .section-heading h2,
  .work-copy h2,
  .gallery-intro h2,
  .review-copy h2,
  .contact-copy h2 {
    font-size: 2.9rem;
  }

  .hero-screen {
    background:
      linear-gradient(90deg, rgba(8, 11, 10, 0.94) 0%, rgba(8, 11, 10, 0.76) 56%, rgba(8, 11, 10, 0.28) 100%),
      linear-gradient(180deg, rgba(8, 11, 10, 0.12) 0%, rgba(8, 11, 10, 0.52) 100%);
  }

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

  .work-band,
  .reviews-wrap,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-strip,
  .value-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) {
    transform: none;
  }

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

  .gallery-panel {
    min-height: auto;
  }

  .gallery-thumbs {
    display: flex;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    padding-right: 0;
    scroll-snap-type: x proximity;
  }

  .gallery-thumb {
    flex: 0 0 5.35rem;
    scroll-snap-align: start;
  }

  .review-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .nav-wrap {
    width: min(100% - 1rem, var(--max));
    min-height: 68px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .brand small {
    max-width: 12rem;
    font-size: 0.75rem;
  }

  .nav-menu {
    top: 76px;
  }

  .section,
  .contact-section,
  .gallery-intro,
  .gallery-showcase,
  .reviews-wrap,
  .quick-strip,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .hero {
    width: 100%;
    min-height: 700px;
    padding: 3.4rem 0.5rem 7.7rem;
  }

  .hero-bg {
    object-position: 72% 50%;
  }

  .hero-screen {
    background:
      linear-gradient(180deg, rgba(8, 11, 10, 0.78) 0%, rgba(8, 11, 10, 0.92) 72%),
      linear-gradient(90deg, rgba(8, 11, 10, 0.82), rgba(8, 11, 10, 0.2));
  }

  .hero-lines {
    opacity: 0.48;
    background:
      linear-gradient(120deg, transparent 0 70%, rgba(246, 189, 47, 0.78) 70% 72%, transparent 72%);
  }

  .hero-brand {
    font-size: 3.15rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section-heading h2,
  .work-copy h2,
  .gallery-intro h2,
  .review-copy h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-note {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 1.1rem;
    max-width: none;
  }

  .quick-strip {
    margin-top: 0;
    margin-bottom: 1.6rem;
  }

  .section,
  .process,
  .gallery-section,
  .reviews-section,
  .contact-section,
  .work-band {
    padding-top: 3.1rem;
    padding-bottom: 3.1rem;
  }

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

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .work-band {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .work-photo {
    padding: 0.5rem;
  }

  .work-photo::before {
    inset: -0.45rem 1rem 1rem -0.5rem;
  }

  .work-photo img {
    aspect-ratio: 1 / 1;
  }

  .gallery-section,
  .reviews-section {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .gallery-tab {
    justify-content: space-between;
    padding: 0.62rem 0.7rem;
    font-size: 0.84rem;
  }

  .gallery-frame {
    height: clamp(360px, 58svh, 500px);
  }

  .gallery-frame figcaption {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .gallery-frame small {
    grid-row: auto;
    grid-column: 1;
    white-space: normal;
  }

  .gallery-controls {
    inset: 50% 0.75rem auto;
    transform: translateY(-50%);
  }

  .gallery-panel {
    padding: 0.85rem;
  }

  .gallery-thumbs {
    gap: 0.4rem;
  }

  .gallery-thumb {
    flex-basis: 4.8rem;
  }

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

  .review-meta {
    display: grid;
    gap: 0.35rem;
  }

  .review-meta strong {
    max-width: none;
    text-align: left;
  }

  .review-card p {
    font-size: 1.35rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-call {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 12;
    display: inline-flex;
    min-height: 54px;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 36px rgba(24, 26, 24, 0.3);
  }
}

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