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

* {
  margin: 0;
}

:root {
  --ink: #1f2421;
  --ink-soft: #343a34;
  --paper: #f6f1e7;
  --cream: #fffaf0;
  --white: #ffffff;
  --red: #9e1f22;
  --red-dark: #651516;
  --gold: #c9912c;
  --gold-soft: #f6df9c;
  --green: #2d5d4d;
  --muted: #6f665c;
  --line: rgba(31, 36, 33, .16);
  --shadow: 0 18px 48px rgba(31, 36, 33, .14);
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --condensed: "Barlow Condensed", Impact, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --max: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body[data-site-theme="clean"] {
  --ink: #173a43;
  --ink-soft: #31545a;
  --paper: #f7f8f5;
  --cream: #ffffff;
  --red: #1d4d57;
  --red-dark: #12323a;
  --gold: #d1963a;
  --gold-soft: #f4d48a;
  --green: #49685d;
  --muted: #66777a;
  --line: rgba(23, 58, 67, .16);
}

body[data-site-theme="field"] {
  --ink: #202820;
  --ink-soft: #38443a;
  --paper: #f3f0e4;
  --cream: #fff7df;
  --red: #2d5d4d;
  --red-dark: #1c3d33;
  --gold: #d8a13c;
  --gold-soft: #f6dc95;
  --green: #24483c;
  --muted: #706c5d;
  --line: rgba(32, 40, 32, .18);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.topbar {
  background: #0e0f0d;
  color: rgba(255, 250, 240, .82);
  font-size: .84rem;
  font-weight: 700;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 8px;
}

.topbar-contact {
  white-space: nowrap;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 250, 240, .18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 250, 240, .06);
  white-space: nowrap;
  color: rgba(255, 250, 240, .72);
}

.visitor-counter strong {
  color: #fffaf0;
  font-variant-numeric: tabular-nums;
}

.footer-counter {
  font-size: .85rem;
  opacity: .78;
}

.topbar a {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(246, 223, 156, .16);
  background: rgba(14, 15, 13, .94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 250px;
  line-height: 1;
  min-width: 0;
  max-width: 250px;
  padding: 2px 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, var(--gold) 0 50%, var(--red) 50% 100%);
  box-shadow: 5px 5px 0 rgba(32, 28, 22, .13);
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(32, 28, 22, .28);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy > span {
  display: block;
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.brand-copy > span::before {
  content: none;
}

.brand strong {
  color: #d01218;
  font-family: var(--condensed);
  font-size: clamp(2.18rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: .74;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.brand em {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 250, 240, .82);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav .nav-cta {
  border-radius: 4px;
  background: var(--red);
  color: var(--cream);
  padding: 11px 14px;
  box-shadow: inset 0 -3px 0 var(--gold);
}

.button-call {
  display: inline-grid;
  gap: 4px;
  min-width: 178px;
  padding-block: 9px;
  line-height: 1;
}

.button-call span {
  font-size: .78rem;
  letter-spacing: .08em;
}

.button-call strong {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  place-items: center;
  gap: 4px;
  padding: 11px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.eyebrow {
  color: var(--red);
  font-family: var(--condensed);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  text-wrap: balance;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 78px 0 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(12, 13, 11, .96) 0%, rgba(62, 36, 25, .75) 50%, rgba(12, 13, 11, .5) 100%),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

body[data-site-layout="compact"] .hero {
  min-height: 560px;
  padding: 70px 0 54px;
}

body[data-site-layout="compact"] .hero-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

body[data-site-layout="compact"] h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.6vw, 5.7rem);
}

body[data-site-layout="compact"] .section {
  padding-block: 58px;
}

body[data-site-layout="showcase"] .hero {
  min-height: 760px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(31, 36, 33, .2) 0%, rgba(31, 36, 33, .82) 100%),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover;
}

body[data-site-layout="showcase"] .hero-grid {
  grid-template-columns: minmax(0, 850px);
}

body[data-site-layout="showcase"] .hero-panel {
  max-width: 720px;
}

body[data-site-layout="showcase"] .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 28px;
}

.hero .eyebrow,
.split-copy .eyebrow,
.cta-band .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-soft);
}

h1 {
  max-width: 820px;
  margin-top: 18px;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--cream);
}

.hero-lede {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 250, 240, .86);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  font-weight: 600;
}

.hero-portrait {
  align-self: end;
  justify-self: end;
  width: min(100%, 390px);
  margin: 0;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .42));
}

.hero-portrait img {
  width: 100%;
  max-height: 468px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  border: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 19px;
  cursor: pointer;
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.button-gold {
  background: var(--gold);
  color: #261405;
}

.button-red {
  background: var(--red);
  color: var(--cream);
}

.button-ghost {
  border-color: rgba(255, 250, 240, .58);
  color: var(--cream);
}

.hero-panel {
  border: 1px solid rgba(255, 250, 240, .24);
  border-top: 5px solid var(--gold);
  border-radius: 6px;
  background: rgba(31, 36, 33, .72);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.hero-owner-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, .2);
  border-radius: 6px;
  background: rgba(15, 16, 13, .82);
  box-shadow: 0 26px 74px rgba(0, 0, 0, .36);
}

.hero-owner-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 18%;
  border-bottom: 5px solid var(--gold);
}

.hero-owner-copy {
  padding: 22px 24px 18px;
}

.hero-owner-card span,
.hero-owner-card dt {
  color: var(--gold-soft);
  font-family: var(--condensed);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-owner-card strong {
  display: block;
  margin-top: 6px;
  color: var(--cream);
  font-family: var(--condensed);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .9;
  letter-spacing: 0;
}

.hero-owner-card p {
  margin-top: 10px;
  color: rgba(255, 250, 240, .76);
  font-weight: 700;
}

.hero-owner-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 250, 240, .13);
}

.hero-owner-card dl div {
  padding: 17px 20px;
}

.hero-owner-card dl div + div {
  border-left: 1px solid rgba(255, 250, 240, .13);
}

.hero-owner-card dd {
  margin-top: 4px;
  color: rgba(255, 250, 240, .88);
  font-size: .94rem;
  font-weight: 700;
}

.hero-panel span,
.hero-panel dt {
  color: var(--gold-soft);
  font-family: var(--condensed);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-panel p {
  margin-top: 12px;
  color: rgba(255, 250, 240, .78);
}

.hero-panel dl {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero-panel div + div,
.hero-panel dl div {
  border-top: 1px solid rgba(255, 250, 240, .14);
  padding-top: 14px;
}

.hero-panel dd {
  margin-top: 3px;
  color: rgba(255, 250, 240, .9);
}

.proof {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.service-strip {
  margin-top: 0;
  padding: 24px 0 28px;
  background: #f5ead5;
}

.strip-title {
  margin-bottom: 16px;
  color: var(--red-dark);
  font-family: var(--condensed);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.proof-grid div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.proof-grid span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.proof-grid strong {
  display: block;
  margin-top: 9px;
  font-family: var(--condensed);
  font-size: 1.08rem;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-grid p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .58fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 38px;
}

.section-head h2,
.split-copy h2,
.cta-band h2,
.estimate h2,
.page-hero h1 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: .96;
  letter-spacing: 0;
}

.section-head p:last-child,
.estimate > .wrap > div > p:last-child {
  color: var(--muted);
}

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

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

.service-card,
.fit article,
.steps article,
.estimate-form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(31, 36, 33, .08);
}

.service-card {
  min-height: 248px;
  padding: 24px;
  border-bottom: 5px solid var(--gold);
}

.service-card span,
.work-card span,
.gallery-card span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-card h3,
.fit h3,
.steps h3 {
  margin-top: 26px;
  font-family: var(--condensed);
  font-size: 1.78rem;
  line-height: .96;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-card p,
.fit li,
.steps p,
.gallery-card p,
.gallery-note p {
  margin-top: 12px;
  color: var(--muted);
}

.service-card-dark {
  background: var(--ink);
  color: var(--cream);
  border-bottom-color: var(--red);
}

.service-card-dark span {
  color: var(--gold-soft);
}

.service-card-dark p {
  color: rgba(255, 250, 240, .78);
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 600px;
  background: var(--ink);
  color: var(--cream);
}

.split-image {
  background:
    linear-gradient(90deg, rgba(31, 36, 33, .18), rgba(31, 36, 33, .02)),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover;
}

.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 6vw, 76px);
  background: linear-gradient(135deg, var(--ink), var(--red-dark) 62%, var(--red));
}

.split-copy p:not(.eyebrow),
.cta-band p:not(.eyebrow),
.page-hero p {
  margin-top: 18px;
  color: rgba(255, 250, 240, .78);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 250, 240, .9);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.work {
  background: #11120f;
  color: var(--cream);
}

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

.work-card {
  position: relative;
  min-height: 310px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.work-card.large {
  min-height: 420px;
  grid-column: span 6;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 36, 33, .05) 24%, rgba(31, 36, 33, .9));
}

.work-card div {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 24px;
  color: var(--cream);
}

.work-card span {
  color: var(--gold-soft);
}

.work-card h3 {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
}

.work-link {
  margin-top: 26px;
}

.project-stories .section-head p:last-child {
  color: rgba(255, 250, 240, .74);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.story-card {
  display: grid;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(246, 223, 156, .18);
  border-radius: 6px;
  background: #f5ead5;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .26);
}

.story-card.story-wide {
  grid-column: span 6;
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 5px solid var(--gold);
}

.story-card div {
  padding: 20px;
}

.story-card span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-top: 7px;
  font-family: var(--condensed);
  font-size: 1.8rem;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .94rem;
}

.fit {
  background: #efe5d2;
}

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

.fit article {
  padding: 28px;
}

.fit ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 20px;
}

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

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

.steps article {
  min-height: 230px;
  padding: 24px;
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #281506;
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: .12em;
}

.cta-band {
  padding: 76px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(31, 36, 33, .96), rgba(82, 61, 43, .74), rgba(45, 93, 77, .38)),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.phone {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.estimate {
  background: var(--white);
}

.estimate-grid {
  display: grid;
  grid-template-columns: .68fr 1fr;
  align-items: start;
  gap: 38px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--red-dark);
  font-family: var(--condensed);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 12px;
  font-family: var(--sans);
  font-size: .96rem;
}

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

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .92rem;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="fallback"] {
  color: var(--red);
}

.form-status a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note a {
  color: var(--red);
  font-weight: 800;
}

.page-hero {
  padding: clamp(88px, 12vw, 150px) 0 76px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(31, 36, 33, .9), rgba(82, 61, 43, .58), rgba(31, 36, 33, .12)),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover;
}

.story-gallery-grid {
  align-items: stretch;
}

.story-detail-card {
  background: #f5ead5;
  border-color: rgba(158, 31, 34, .28);
}

.story-detail-card div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.story-detail-card p {
  margin-top: 0;
}

.story-detail-card strong {
  color: var(--red-dark);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

.page-hero p {
  max-width: 720px;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  font-weight: 600;
}

.gallery-section {
  background: var(--white);
}

.gallery-card {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.gallery-card.gallery-wide {
  grid-column: 1 / -1;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ddd;
}

.gallery-wide img {
  aspect-ratio: 16 / 7;
}

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

.gallery-card h2 {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-note {
  margin-top: 28px;
  border-left: 5px solid var(--gold);
  background: var(--cream);
  padding: 20px;
}

.gallery-note strong {
  color: var(--red);
}

.footer {
  background: #171b19;
  color: rgba(255, 250, 240, .72);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .88rem;
}

.footer a {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #11120f;
    padding: 14px 20px 22px;
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    padding: 13px 14px;
    text-align: center;
  }

  .hero-grid,
  .section-head,
  .split-section,
  .cta-inner,
  .estimate-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-panel,
  .hero-owner-card {
    max-width: 520px;
  }

  .hero-owner-card {
    justify-self: start;
    width: min(100%, 440px);
  }

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

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

  .work-card,
  .work-card.large {
    grid-column: span 6;
    min-height: 330px;
  }

  .story-card,
  .story-card.story-wide {
    grid-column: span 6;
  }

  .cta-actions {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }

  .brand {
    flex-basis: auto;
    max-width: 220px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    box-shadow: 4px 4px 0 rgba(32, 28, 22, .12);
    font-size: .98rem;
  }

  .brand-copy {
    gap: 2px;
  }

  .brand-copy > span {
    font-size: .78rem;
  }

  .brand-copy > span::before {
    width: 24px;
  }

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

  .brand em {
    font-size: .58rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-owner-card img {
    aspect-ratio: 16 / 12;
    object-position: 50% 16%;
  }

  .hero-owner-card dl {
    grid-template-columns: 1fr;
  }

  .hero-owner-card dl div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, .13);
  }

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

  .proof-grid,
  .service-grid,
  .fit-grid,
  .steps,
  .estimate-form {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 68px 0;
  }

  .work-card,
  .work-card.large,
  .story-card,
  .story-card.story-wide,
  .gallery-card,
  .gallery-card.gallery-wide {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .gallery-wide img,
  .gallery-card img {
    aspect-ratio: 4 / 3;
  }

  .split-image {
    min-height: 340px;
    background-position: 58% center;
  }
}

body.demo-one {
  --ink: #10110f;
  --ink-soft: #20211d;
  --paper: #12130f;
  --cream: #f2e2c7;
  --white: #fff7e8;
  --red: #a90f13;
  --red-dark: #6d080a;
  --gold: #d3961d;
  --gold-soft: #f0bd38;
  --green: #445041;
  --muted: #756a5d;
  --line: rgba(162, 15, 19, .28);
  --shadow: 0 20px 54px rgba(0, 0, 0, .32);
  background:
    radial-gradient(circle at 50% 0, rgba(211, 150, 29, .14), transparent 42%),
    #090a08;
}

.demo-one .topbar {
  display: none;
}

.demo-one .site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(211, 150, 29, .24);
  background: rgba(8, 9, 8, .98);
}

.demo-one .header-inner {
  min-height: 92px;
  gap: 18px;
}

.demo-one .brand {
  flex: 0 0 246px;
  max-width: 246px;
}

.demo-one .brand strong {
  color: #d3151d;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  line-height: .68;
}

.demo-one .brand-copy > span {
  color: #fff7e8;
  font-size: 1.03rem;
  letter-spacing: .2em;
}

.demo-one .brand em {
  color: var(--gold);
  font-size: .72rem;
}

.demo-one .site-nav {
  flex: 1 1 auto;
  justify-content: space-between;
  max-width: 690px;
  margin-left: auto;
  margin-right: clamp(36px, 5vw, 78px);
  gap: clamp(16px, 2vw, 30px);
}

.demo-one .site-nav a {
  position: relative;
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: 1rem;
  letter-spacing: .09em;
}

.demo-one .site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: var(--gold);
}

.demo-one .hero {
  min-height: 520px;
  align-items: end;
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, .98) 0%, rgba(7, 8, 7, .91) 40%, rgba(7, 8, 7, .48) 68%, rgba(7, 8, 7, .18) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, .06), rgba(7, 8, 7, .32)),
    url("assets/coffey-demo1-hero-3840.png") center top / cover no-repeat,
    #10110f;
}

.demo-one .hero::after {
  height: 0;
}

.demo-one .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: end;
}

.demo-one h1 {
  max-width: 660px;
  margin-top: 0;
  font-size: clamp(4.2rem, 8.2vw, 8.6rem);
  line-height: .78;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .32);
}

.demo-one h1 span {
  color: #f7efe2;
}

.demo-one .hero-lede {
  max-width: 430px;
  margin-top: 20px;
  color: #f2e2c7;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.demo-one .actions {
  margin-top: 26px;
  gap: 16px;
}

.demo-one .hero-portrait {
  display: none;
}

.demo-one .hero-portrait img {
  max-height: 430px;
  object-position: center top;
  filter: saturate(1.04) contrast(1.03);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.demo-one .button {
  min-height: 54px;
  border-radius: 2px;
  padding: 13px 22px;
  font-size: .95rem;
  letter-spacing: .08em;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .2);
}

.demo-one .button-call {
  display: inline-grid;
  min-width: 238px;
  padding-inline: 20px;
  text-align: center;
  white-space: nowrap;
}

.demo-one .button-red {
  background: #a80d11;
  color: #fff7e8;
}

.demo-one .button-gold {
  background: linear-gradient(180deg, #e6aa2d, #c78616);
  color: #1a1009;
}

.demo-one .service-strip {
  position: relative;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(211, 150, 29, .3);
  border-bottom: 1px solid rgba(211, 150, 29, .22);
  background:
    linear-gradient(90deg, rgba(95, 8, 10, .88), rgba(15, 16, 14, .96) 32%, rgba(15, 16, 14, .96) 68%, rgba(95, 8, 10, .82)),
    #10110f;
  box-shadow: inset 0 12px 38px rgba(0, 0, 0, .36);
}

.demo-one .strip-title {
  color: var(--gold-soft);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  text-shadow: 0 2px 0 rgba(0, 0, 0, .34);
}

.demo-one .proof-grid {
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.demo-one .proof-grid div {
  min-height: 112px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(211, 150, 29, .2);
  border-bottom: 4px solid rgba(211, 150, 29, .65);
  padding: 14px 10px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, .08), rgba(255, 247, 232, .02)),
    rgba(0, 0, 0, .24);
}

.demo-one .proof-grid span {
  color: var(--gold-soft);
  font-size: 2.25rem;
}

.demo-one .proof-grid strong {
  color: #fff7e8;
  font-size: 1rem;
  line-height: 1.08;
}

.demo-one .split-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 360px;
  border-top: 0;
  background:
    linear-gradient(180deg, #10110f 0%, #0b0c0a 100%);
}

.demo-one .split-image {
  margin: clamp(28px, 4vw, 52px) 0 clamp(28px, 4vw, 52px) max(20px, calc((100vw - var(--max)) / 2));
  min-height: 250px;
  border: 1px solid rgba(211, 150, 29, .3);
  border-bottom: 6px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(10, 11, 9, .03), rgba(10, 11, 9, .2)),
    url("assets/screened-porch-exterior-uhd.jpg") center / cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
}

.demo-one .split-copy {
  padding: clamp(32px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(16, 17, 15, .72), #10110f 32%),
    #10110f;
}

.demo-one .split-copy h2 {
  max-width: 440px;
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  line-height: .88;
  text-transform: uppercase;
}

.demo-one .check-list {
  gap: 7px;
  margin-top: 24px;
}

.demo-one .check-list li {
  color: #efe1ca;
  font-size: .98rem;
}

.demo-one .check-list li::before {
  top: .42em;
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: none;
  color: var(--gold);
  content: "✓";
  font-family: var(--condensed);
  font-weight: 900;
  line-height: 1;
}

.demo-one .section {
  padding: 72px 0;
}

.demo-one .work,
.demo-one .process {
  background:
    linear-gradient(180deg, rgba(12, 13, 11, .98), rgba(12, 13, 11, .95)),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover;
  color: #fff7e8;
}

.demo-one .section-head h2,
.demo-one .estimate h2 {
  color: inherit;
  font-family: var(--condensed);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: .9;
  text-transform: uppercase;
}

.demo-one .section-head p:last-child {
  color: rgba(255, 247, 232, .72);
}

.demo-one .story-card {
  border-radius: 2px;
  border-color: rgba(211, 150, 29, .26);
  background: #efe1ca;
}

.demo-one .story-card img {
  border-bottom-color: var(--gold);
}

.demo-one .story-card h3,
.demo-one .steps h3,
.demo-one .fit h3 {
  color: #1a1009;
  font-size: 1.65rem;
}

.demo-one .process {
  border-top: 1px solid rgba(211, 150, 29, .24);
  border-bottom: 1px solid rgba(211, 150, 29, .24);
}

.demo-one .steps {
  position: relative;
}

.demo-one .steps article {
  min-height: 190px;
  border-radius: 2px;
  border-color: rgba(211, 150, 29, .22);
  background: #efe1ca;
  box-shadow: none;
}

.demo-one .steps span {
  border-radius: 2px;
  background: var(--red);
  color: #fff7e8;
}

.demo-one .steps p {
  color: #6c5b4c;
}

.demo-one .cta-band {
  padding: 26px 0;
  background: linear-gradient(90deg, #9f0c10, #b51214 62%, #d3961d);
}

.demo-one .cta-inner {
  grid-template-columns: auto 1fr;
}

.demo-one .cta-band h2 {
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(1.4rem, 2.6vw, 2.35rem);
  line-height: 1;
  text-transform: none;
}

.demo-one .cta-actions {
  color: #fff7e8;
  font-family: var(--condensed);
  text-align: right;
  text-transform: uppercase;
}

.demo-one .phone {
  color: var(--gold-soft);
  font-family: var(--condensed);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
}

.demo-one .estimate {
  color: #fff7e8;
  background:
    radial-gradient(circle at 18% 22%, rgba(169, 15, 19, .24), transparent 32%),
    linear-gradient(180deg, #10110f, #0b0c0a);
}

.demo-one .estimate-grid {
  align-items: start;
}

.demo-one .estimate .eyebrow,
.demo-one .estimate h2 {
  color: var(--gold-soft);
}

.demo-one .estimate > .wrap > div > p:last-child {
  color: rgba(255, 247, 232, .72);
}

.demo-one .estimate-form {
  border-radius: 2px;
  border-color: rgba(109, 8, 10, .18);
  background: #fff7e8;
}

.demo-one .footer {
  border-top: 1px solid rgba(211, 150, 29, .24);
  background: #0b0c0a;
}

@media (max-width: 1320px) {
  .demo-one .site-nav {
    flex: 0 1 auto;
  }
}

@media (max-width: 980px) {
  .demo-one .header-inner {
    min-height: 82px;
  }

  .demo-one .site-nav {
    background: #0b0c0a;
  }

  .demo-one .site-nav a:hover::after {
    content: none;
  }

  .demo-one .hero-grid,
  .demo-one .split-section,
  .demo-one .cta-inner {
    grid-template-columns: 1fr;
  }

  .demo-one .hero {
    min-height: 650px;
    padding-top: 54px;
    padding-bottom: 300px;
    background:
      linear-gradient(180deg, rgba(7, 8, 7, .92) 0%, rgba(7, 8, 7, .82) 52%, rgba(7, 8, 7, .26) 100%),
      url("assets/coffey-demo1-hero-3840.png") 68% bottom / auto 52% no-repeat,
      #10110f;
  }

  .demo-one .split-image {
    margin: 30px auto 0;
    width: min(var(--max), calc(100% - 40px));
  }

  .demo-one .cta-actions {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .demo-one .brand {
    max-width: 190px;
  }

  .demo-one .brand strong {
    font-size: 2.45rem;
  }

  .demo-one .hero {
    min-height: 700px;
    padding-bottom: 300px;
    background:
      linear-gradient(180deg, rgba(7, 8, 7, .92) 0%, rgba(7, 8, 7, .78) 50%, rgba(7, 8, 7, .18) 100%),
      url("assets/coffey-demo1-hero-3840.png") 68% bottom / auto 46% no-repeat,
      #10110f;
  }

  .demo-one h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

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

  .demo-one .proof-grid div {
    min-height: 106px;
  }

  .demo-one .proof-grid div {
    border-bottom: 4px solid rgba(211, 150, 29, .65);
  }

  .demo-one .section {
    padding: 58px 0;
  }
}

.premium-home {
  --max: 1450px;
  background: #0b0c0a;
  color: #fff7e8;
}

.premium-home .wrap {
  width: min(var(--max), calc(100% - 72px));
}

.premium-home .site-header {
  position: sticky;
  background: #050605;
  border-bottom: 2px solid rgba(211, 150, 29, .64);
}

.premium-home .header-inner {
  position: relative;
  min-height: 88px;
  gap: clamp(18px, 2.2vw, 34px);
}

.premium-home .header-inner::after,
.premium-hero-grid::after {
  content: "";
  position: absolute;
  top: 0;
  right: -36px;
  bottom: 0;
  z-index: 2;
  width: 128px;
  background: #050605;
  pointer-events: none;
}

.premium-home .brand {
  position: relative;
  z-index: 3;
  flex: 0 0 245px;
  max-width: 245px;
}

.premium-home .brand strong {
  color: #ed171e;
  font-size: clamp(2.75rem, 4vw, 4.65rem);
  line-height: .68;
  letter-spacing: .025em;
}

.premium-home .brand-copy > span {
  color: #fff7e8;
  font-size: clamp(.92rem, 1.1vw, 1.15rem);
  letter-spacing: .24em;
}

.premium-home .brand em {
  color: #e7a519;
  font-size: .76rem;
  letter-spacing: .18em;
}

.premium-home .site-nav {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  max-width: 600px;
  margin: 0 0 0 auto;
  justify-content: flex-end;
  gap: clamp(16px, 1.65vw, 26px);
}

.premium-home .site-nav a {
  color: #fff7e8;
  font-size: 1.08rem;
  letter-spacing: .035em;
}

.header-call {
  position: relative;
  z-index: 3;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  border-radius: 3px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #c4171d, #9e0f13);
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(.98rem, 1.18vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .18);
}

.premium-hero {
  position: relative;
  min-height: 545px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, .99) 0%, rgba(5, 6, 5, .93) 36%, rgba(5, 6, 5, .64) 62%, rgba(5, 6, 5, .42) 100%),
    linear-gradient(180deg, rgba(5, 6, 5, .22), rgba(5, 6, 5, .44)),
    url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover no-repeat,
    #080908;
  border-bottom: 1px solid rgba(255, 247, 232, .12);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 43%, rgba(5, 6, 5, .18) 58%, transparent 100%),
    radial-gradient(circle at 82% 56%, rgba(211, 150, 29, .14), transparent 34%);
  pointer-events: none;
}

.premium-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("assets/charles-owner-demo-crop.jpg") 73% bottom / auto 88% no-repeat;
  opacity: .98;
  filter: saturate(1.04) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 41%, #000 50%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 41%, #000 50%, #000 88%, transparent 100%);
  pointer-events: none;
}

.premium-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, .88fr) minmax(230px, .26fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 46px 0 34px;
}

.premium-hero-grid::after {
  background: linear-gradient(90deg, rgba(5, 6, 5, 0), #050605 54%);
}

.premium-hero-copy,
.local-card {
  position: relative;
  z-index: 3;
}

.premium-hero-copy {
  max-width: 700px;
}

.premium-hero h1 {
  max-width: 680px;
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(4.25rem, 7.1vw, 7.9rem);
  font-weight: 900;
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .38);
}

.premium-hero h1 span {
  display: block;
  color: #e1a01c;
}

.premium-hero-copy > p {
  max-width: 560px;
  margin-top: 16px;
  color: #fff7e8;
  font-size: clamp(1.05rem, 1.6vw, 1.36rem);
  font-weight: 600;
  line-height: 1.35;
}

.premium-home .actions {
  margin-top: 24px;
}

.premium-home .button {
  min-height: 54px;
  border-radius: 3px;
  font-family: var(--condensed);
  font-size: clamp(.96rem, 1.2vw, 1.16rem);
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 750px;
  margin-top: 26px;
}

.trust-row article {
  min-height: 86px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 10px;
  align-content: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 247, 232, .18);
}

.trust-row article:first-child {
  padding-left: 0;
}

.trust-row span {
  grid-row: span 2;
  color: #e1a01c;
  font-size: 2.25rem;
  line-height: 1;
}

.trust-row strong {
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: 1.05rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-row p {
  color: rgba(255, 247, 232, .88);
  font-size: .86rem;
  line-height: 1.18;
}

.local-card {
  justify-self: end;
  width: min(260px, 100%);
  margin-top: 54px;
  border: 2px solid #d79a1c;
  border-radius: 5px;
  padding: 28px 26px;
  background: rgba(10, 11, 9, .62);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .34);
}

.local-card h2,
.reviews-panel h2,
.choose-panel h2,
.section-kicker,
.sticky-cta h2,
.recent-project h2 {
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.local-card h2 {
  color: #fff7e8;
  font-size: 2.1rem;
  line-height: .95;
}

.local-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: #fff7e8;
  font-size: 1rem;
  font-weight: 600;
}

.local-card li::before {
  content: "✓";
  margin-right: 10px;
  color: #e1a01c;
  font-weight: 900;
}

.stars {
  color: #e1a01c;
  font-size: 1.75rem;
  letter-spacing: .06em;
}

.local-card p {
  margin-top: 8px;
  color: #fff7e8;
  font-size: 1.06rem;
  line-height: 1.35;
}

.services-showcase {
  padding: 22px 0 28px;
  background:
    linear-gradient(180deg, rgba(15, 16, 14, .98), rgba(18, 19, 17, .98)),
    #111210;
  border-bottom: 1px solid rgba(255, 247, 232, .12);
}

.section-kicker {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 18px;
  color: #fff7e8;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: #e1a01c;
}

.section-kicker::before {
  right: calc(100% + 14px);
}

.section-kicker::after {
  left: calc(100% + 14px);
}

.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.service-tile {
  min-height: 190px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, .22);
  border-radius: 6px;
  background: rgba(0, 0, 0, .28);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(211, 150, 29, .05);
}

.tile-icon {
  min-height: 38px;
  display: grid;
  place-items: end center;
  color: #e1a01c;
  font-size: 2.1rem;
  line-height: 1;
}

.service-tile h2 {
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.service-tile p {
  min-height: 42px;
  padding: 6px 12px 8px;
  color: #fff7e8;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-tile img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  align-self: end;
  border-top: 1px solid rgba(211, 150, 29, .35);
  filter: saturate(.9) contrast(1.05);
}

.button-outline {
  width: min(320px, 100%);
  min-height: 42px;
  margin: 10px auto 0;
  border: 2px solid #d79a1c;
  background: #0b0c0a;
  color: #fff7e8;
}

.home-proof {
  padding: 28px 0 20px;
  background:
    linear-gradient(180deg, rgba(246, 241, 231, .96), rgba(246, 241, 231, .98)),
    #f6f1e7;
  color: #17120d;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(270px, 410px) minmax(380px, 1fr) minmax(300px, 400px);
  gap: 24px;
  align-items: stretch;
}

.recent-project {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #0c0d0b;
  color: #fff7e8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.recent-project > span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 7px 22px;
  background: #b01014;
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.recent-project img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.recent-project div {
  padding: 13px 16px 16px;
}

.recent-project h2 {
  color: #fff7e8;
  font-size: 1.55rem;
  line-height: 1;
}

.recent-project p {
  color: rgba(255, 247, 232, .86);
  font-size: .9rem;
}

.choose-panel {
  text-align: center;
}

.choose-panel h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 5px auto 18px;
  color: #16110d;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1;
}

.choose-panel h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  margin: 7px auto 0;
  background: #d79a1c;
}

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

.choose-grid article {
  min-height: 132px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
  padding: 2px 20px;
  border-right: 1px solid rgba(23, 18, 13, .16);
}

.choose-grid article:last-child {
  border-right: 0;
}

.choose-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #17120d;
  border-radius: 999px;
  color: #17120d;
  font-family: var(--condensed);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.choose-grid strong {
  color: #17120d;
  font-family: var(--condensed);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.choose-grid p {
  max-width: 135px;
  color: #17120d;
  font-size: .88rem;
  line-height: 1.2;
}

.reviews-panel {
  border: 2px solid #d79a1c;
  border-radius: 5px;
  padding: 16px 22px;
  background: #10110f;
  color: #fff7e8;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.reviews-panel h2 {
  margin-bottom: 12px;
  color: #fff7e8;
  font-size: 1.55rem;
  line-height: 1;
  text-align: center;
}

.reviews-panel blockquote {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  margin-top: 10px;
  padding-left: 22px;
  position: relative;
}

.reviews-panel blockquote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 0;
  color: #e1a01c;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.reviews-panel p {
  grid-column: 1 / -1;
  color: #fff7e8;
  font-size: .92rem;
  line-height: 1.25;
}

.reviews-panel cite {
  color: rgba(255, 247, 232, .9);
  font-size: .9rem;
  font-style: normal;
}

.reviews-panel span {
  color: #e1a01c;
  font-size: 1.08rem;
  letter-spacing: .06em;
}

.sticky-cta {
  padding: 18px 0;
  background: linear-gradient(90deg, #9f0c10, #c31619 66%, #931114);
  color: #fff7e8;
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.sticky-cta h2 {
  color: #fff7e8;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1;
}

.sticky-cta p {
  margin-top: 2px;
  color: #fff7e8;
  font-size: .96rem;
}

.estimate-form-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(169, 15, 19, .22), transparent 30%),
    linear-gradient(180deg, #10110f, #0b0c0a);
  color: #fff7e8;
}

.estimate-form-section h2 {
  color: #fff7e8;
}

@media (max-width: 1240px) {
  .premium-home .header-inner {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .premium-home .site-nav {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    justify-content: center;
  }

  .premium-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
  }

  .service-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-layout {
    grid-template-columns: minmax(280px, 390px) 1fr;
  }

  .reviews-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .premium-home .wrap {
    width: min(var(--max), calc(100% - 40px));
  }

  .premium-home .site-nav {
    justify-content: start;
  }

  .premium-home .header-inner::after,
  .premium-hero-grid::after {
    content: none;
  }

  .header-call {
    margin-left: auto;
  }

  .premium-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(5, 6, 5, .98) 0%, rgba(5, 6, 5, .9) 48%, rgba(5, 6, 5, .32) 100%),
      url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover no-repeat,
      #080908;
  }

  .premium-hero::after {
    background-position: 68% bottom;
    background-size: auto 48%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0 46%, #000 56%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0 46%, #000 56%, #000 100%);
  }

  .premium-hero-grid {
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 42px;
  }

  .local-card {
    justify-self: start;
    margin-top: 0;
  }

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

  .trust-row article {
    padding: 10px 14px 10px 0;
  }

  .proof-layout,
  .sticky-cta-inner {
    grid-template-columns: 1fr;
  }

  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }
}

@media (max-width: 680px) {
  .premium-home .header-inner {
    min-height: 76px;
  }

  .premium-home .brand {
    flex-basis: 190px;
    max-width: 190px;
  }

  .premium-home .brand strong {
    font-size: 2.45rem;
  }

  .header-call {
    width: 100%;
    min-height: 48px;
    font-size: 1.06rem;
  }

  .premium-hero {
    min-height: 790px;
    background:
      linear-gradient(180deg, rgba(5, 6, 5, .98) 0%, rgba(5, 6, 5, .9) 48%, rgba(5, 6, 5, .28) 100%),
      url("assets/coffey-hero-yellow-red-uhd.jpg") center / cover no-repeat,
      #080908;
  }

  .premium-hero::after {
    background-position: 64% bottom;
    background-size: auto 38%;
  }

  .premium-hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.25rem);
  }

  .premium-home .actions {
    align-items: stretch;
  }

  .trust-row,
  .service-tile-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .trust-row article,
  .choose-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 232, .14);
  }

  .choose-grid article {
    border-bottom-color: rgba(23, 18, 13, .14);
  }

  .section-kicker::before,
  .section-kicker::after {
    content: none;
  }
}

.image-home {
  background: #050605;
  color: #fff7e8;
}

.homepage-art {
  position: relative;
  overflow: hidden;
  background: #050605;
}

.homepage-art img {
  width: 100%;
  height: auto;
  display: block;
}

.art-link {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 4px;
}

.art-link:focus-visible {
  outline: 3px solid #f6df9c;
  outline-offset: 3px;
  background: rgba(246, 223, 156, .12);
}

.art-call-top {
  left: 77.4%;
  top: 1.8%;
  width: 19.6%;
  height: 5%;
}

.art-services {
  left: 38.4%;
  top: 3.3%;
  width: 5.1%;
  height: 3.1%;
}

.art-projects {
  left: 44.7%;
  top: 3.3%;
  width: 5.4%;
  height: 3.1%;
}

.art-reviews {
  left: 66.5%;
  top: 3.3%;
  width: 4.8%;
  height: 3.1%;
}

.art-contact {
  left: 72%;
  top: 3.3%;
  width: 4.3%;
  height: 3.1%;
}

.art-call-main {
  left: 5%;
  top: 34.5%;
  width: 19.4%;
  height: 4.4%;
}

.art-estimate-main {
  left: 25.4%;
  top: 34.5%;
  width: 15.6%;
  height: 4.4%;
}

.art-estimate-bottom {
  left: 58.1%;
  top: 93.9%;
  width: 15.2%;
  height: 4%;
}

.art-call-bottom {
  left: 74.1%;
  top: 93.9%;
  width: 14.8%;
  height: 4%;
}

.image-home .estimate-form-section {
  padding: clamp(18px, 3vw, 34px) 0 clamp(52px, 6vw, 86px);
  border-top: 3px solid rgba(211, 150, 29, .72);
  background:
    linear-gradient(90deg, rgba(159, 12, 16, .92), rgba(10, 11, 9, .98) 42%, rgba(10, 11, 9, .98)),
    #0b0c0a;
}

.image-home .estimate-form-section h2 {
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}

.image-home .estimate-form-section p {
  color: rgba(255, 247, 232, .78);
}

.image-home .footer {
  display: none;
  border-top: 1px solid rgba(211, 150, 29, .24);
  background: #050605;
}

.contact-page {
  background: #0b0c0a;
  color: #fff7e8;
}

.contact-header {
  border-bottom: 1px solid rgba(211, 150, 29, .38);
  background: #050605;
}

.contact-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-page .brand strong {
  color: #ed171e;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: .72;
}

.contact-page .brand-copy > span {
  color: #fff7e8;
}

.contact-page .brand em {
  color: #e7a519;
}

.contact-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-nav a:last-child {
  border-radius: 3px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #c4171d, #9e0f13);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .18);
}

.contact-hero {
  padding: clamp(50px, 7vw, 92px) 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, .96), rgba(5, 6, 5, .76)),
    url("assets/coffey-house-repairs-homepage-clean-3840x1655.jpg") center 18% / cover no-repeat;
  border-bottom: 3px solid rgba(211, 150, 29, .72);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 40px;
  align-items: end;
}

.contact-hero h1 {
  max-width: 700px;
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .82;
  text-transform: uppercase;
}

.contact-hero p {
  max-width: 580px;
  margin-top: 16px;
  color: rgba(255, 247, 232, .86);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 700;
}

.contact-hero aside {
  display: grid;
  gap: 8px;
  border: 2px solid #d79a1c;
  border-radius: 5px;
  padding: 24px;
  background: rgba(5, 6, 5, .72);
}

.contact-hero aside strong {
  font-family: var(--condensed);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-hero aside a {
  color: #f6df9c;
  font-family: var(--condensed);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.contact-hero aside span {
  color: rgba(255, 247, 232, .78);
  font-weight: 700;
}

.contact-page .estimate-form-section {
  padding: clamp(48px, 6vw, 82px) 0;
  background:
    linear-gradient(90deg, rgba(159, 12, 16, .92), rgba(10, 11, 9, .98) 42%, rgba(10, 11, 9, .98)),
    #0b0c0a;
}

.contact-page .estimate-form-section h2 {
  color: #fff7e8;
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: .92;
  text-transform: uppercase;
}

.contact-page .estimate-form-section p {
  color: rgba(255, 247, 232, .78);
}

.contact-page .footer {
  border-top: 1px solid rgba(211, 150, 29, .24);
  background: #050605;
}

@media (max-width: 760px) {
  .homepage-art {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .homepage-art img {
    width: max(920px, 100%);
    max-width: none;
  }

  .contact-header-inner,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-header-inner,
  .contact-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-nav {
    width: 100%;
    gap: 12px;
  }

  .contact-nav a:last-child {
    width: 100%;
    text-align: center;
  }
}
