@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");

:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #b7b0a4;
  --soft: #ded8ca;
  --navy-950: #06111c;
  --navy-900: #0a1724;
  --navy-850: #0f1f2d;
  --navy-800: #102334;
  --navy-875: #081522;
  --charcoal: #171b20;
  --charcoal-2: #20252b;
  --line: rgba(245, 241, 232, 0.08);
  --line-strong: rgba(245, 241, 232, 0.16);
  --orange: #d77a2b;
  --orange-strong: #f28a2e;
  --container: 1220px;
  --section: clamp(64px, 7vw, 96px);
  --eyebrow-gap: 14px;
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --title-font: "Italiana", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 0%, rgba(215, 122, 43, 0.13), transparent 26rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 44rem, #08101a);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

body::selection {
  background: var(--orange);
  color: #111;
}

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

figure.wp-block-image {
  margin: 0;
}

.hero-media figure,
.page-hero-media figure,
.product-card-media figure,
.gallery-item figure,
.audience-panel figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 32px), 1280px);
  margin: 14px auto 0;
  padding: 10px 4px;
  background: rgba(6, 17, 28, 0.68);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav ul,
.site-footer ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li,
.site-footer li {
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #140b05;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-strong);
}

.btn-secondary,
.btn-outline {
  border-color: transparent;
  background: rgba(245, 241, 232, 0.07);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
  border-color: rgba(215, 122, 43, 0.7);
  background: rgba(215, 122, 43, 0.08);
}

.btn-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 0.76rem;
}

.section-shell,
.section-block,
.trust-bar,
.audience-split,
.reviews-faq,
.final-cta,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.audience-split,
.trust-bar,
.section-block,
.reviews-faq,
.final-cta {
  position: relative;
  isolation: isolate;
}

.audience-split::before,
.trust-bar::before,
.section-block::before,
.reviews-faq::before,
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(460px, 1.32fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: var(--section) 0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px auto 16px -7vw;
  z-index: -2;
  width: min(54vw, 760px);
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(16, 35, 52, 0.42), rgba(6, 17, 28, 0.92));
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 12% 50%, rgba(215, 122, 43, 0.08), transparent 29rem);
  pointer-events: none;
}

.hero-copy {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 var(--eyebrow-gap);
  color: var(--orange-strong);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.brand span,
.section-heading .eyebrow,
.category-card span,
.gallery-item span {
  font-family: var(--title-font);
}

h1 {
  margin-bottom: 22px;
  max-width: 520px;
  font-size: clamp(2rem, 3.65vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.58rem, 2.85vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 0.96rem;
}

p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.82;
}

.hero-lede {
  max-width: 520px;
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  color: var(--soft);
}

.hero-actions,
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 38px;
}

.service-areas {
  margin-top: 44px;
  padding-top: 0;
  border-top: 0;
}

.service-areas span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-areas span:not(:last-child)::after {
  content: none;
}

.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0;
  background: var(--charcoal);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 17, 28, 0.62));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.trust-bar > p {
  display: contents;
}

.trust-bar br {
  display: none;
}

.trust-bar::before {
  background:
    repeating-linear-gradient(90deg, rgba(245, 241, 232, 0.026) 0 1px, transparent 1px 72px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.024), rgba(245, 241, 232, 0.04), rgba(245, 241, 232, 0.024)),
    var(--navy-850);
}

.trust-bar span {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 18px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.trust-bar svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--orange-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  opacity: 0.92;
}

.trust-bar span:not(:last-child) {
  border-right: 0;
}

.section-block {
  padding: var(--section) 0;
}

.section-block::before {
  background: transparent;
}

#products::before {
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 86% 18%, rgba(215, 122, 43, 0.042), transparent 24rem),
    linear-gradient(180deg, var(--navy-875), var(--navy-950));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.4fr);
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: var(--eyebrow-gap);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 360px;
}

.section-heading h2:last-child {
  grid-column: 1 / -1;
}

.section-heading-right {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.82fr);
}

.section-heading-right .eyebrow {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.section-heading-right h2 {
  grid-column: 2;
  justify-self: end;
  max-width: 720px;
  text-align: right;
}

.section-heading-right h2:last-child {
  grid-column: 2;
}

.section-heading-right p:not(.eyebrow) {
  grid-column: 1;
  grid-row: 2;
}

.section-heading.compact {
  display: block;
  max-width: 680px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.78fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: end;
  padding: var(--section) 0;
  isolation: isolate;
}

.page-hero::before,
.use-case-band::before,
.option-grid-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero::before {
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 52px),
    linear-gradient(180deg, var(--navy-950), var(--navy-875));
}

.page-hero-copy {
  max-width: 680px;
}

.page-hero-copy h1 {
  max-width: 680px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--soft);
}

.page-hero-reverse .page-hero-copy {
  grid-column: 2;
  text-align: right;
}

.page-hero-reverse .page-hero-copy h1,
.page-hero-reverse .page-hero-copy p:not(.eyebrow) {
  margin-left: auto;
}

.page-hero-reverse .page-hero-media {
  grid-column: 1;
  grid-row: 1;
}

.page-hero-media {
  min-height: 430px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.gallery-intro {
  position: relative;
  padding: clamp(58px, 7vw, 92px) 0 clamp(28px, 4vw, 48px);
  isolation: isolate;
}

.gallery-intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 52px),
    linear-gradient(180deg, var(--navy-950), var(--navy-875));
}

.gallery-intro h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.text-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}

.text-columns-reverse > :first-child {
  grid-column: 2;
  text-align: right;
}

.text-columns-reverse > :first-child p {
  margin-left: auto;
}

.text-columns-reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.quiet-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-bottom: 22px;
  padding-left: 22px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  color: var(--soft);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.quiet-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.quiet-list li:hover {
  color: var(--ink);
  transform: translateX(8px);
}

.option-grid-section,
.use-case-band {
  position: relative;
  isolation: isolate;
}

.option-grid-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 74px),
    var(--navy-875);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.option-grid > p,
.product-grid > p,
.split-layout > p,
.benefit-list > p {
  display: contents;
}

.option-card {
  min-height: 220px;
}

.product-card {
  grid-column: span 2;
  min-height: 100%;
}

.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 3;
}

.services-product-grid .product-card,
.services-product-grid .product-card:nth-child(4),
.services-product-grid .product-card:nth-child(5) {
  grid-column: span 2;
}

.product-card a {
  display: grid;
  height: 100%;
  min-height: 430px;
  grid-template-rows: 260px auto auto auto;
  background: rgba(245, 241, 232, 0.025);
  transition: background 180ms ease, transform 180ms ease;
}

.product-card a:hover,
.product-card a:focus-visible {
  background: rgba(245, 241, 232, 0.045);
  transform: translateY(-4px);
}

.product-card-media {
  height: 260px;
  overflow: hidden;
  background: rgba(245, 241, 232, 0.04);
}

.product-card-media p,
.product-card-media figure {
  height: 100%;
  margin: 0;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
  transition: filter 180ms ease;
}

.product-card a:hover img,
.product-card a:focus-visible img {
  filter: saturate(0.92) contrast(1.04) brightness(0.66);
}

.product-card span,
.product-card h3,
.product-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.product-card span {
  display: block;
  margin-top: 22px;
  margin-bottom: 12px;
  color: var(--orange-strong);
  font-family: var(--title-font);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card p {
  margin-bottom: 24px;
  max-width: 440px;
  font-size: 0.8rem;
  line-height: 1.7;
}

.option-card span,
.case-card span,
.service-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange-strong);
  font-family: var(--title-font);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-band::before {
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.case-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px);
}

.use-case-band .case-grid {
  gap: clamp(24px, 3vw, 42px);
}

.case-card,
.service-card {
  min-height: 250px;
}

.use-case-band .case-card {
  min-height: 190px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.62fr);
  gap: clamp(58px, 8vw, 118px);
  align-items: start;
}

.contact-layout-reverse > :first-child {
  grid-column: 2;
}

.contact-layout-reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-details .eyebrow {
  display: block;
}

.contact-details a {
  color: var(--ink);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.category-card {
  grid-column: auto;
  min-height: 0;
  background: transparent;
  transition: transform 180ms ease;
}

.category-card:nth-child(1),
.category-card:nth-child(2) {
  grid-column: auto;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.category-card > figure.wp-block-image,
.category-card > p > figure.wp-block-image {
  width: 100%;
  height: 138px;
  margin: 0;
  overflow: hidden;
}

.category-card > figure.wp-block-image img,
.category-card > p > figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card div {
  padding: 18px 0 0;
}

.category-card span,
.gallery-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-strong);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card p {
  margin-bottom: 0;
  max-width: 220px;
  font-size: 0.76rem;
  line-height: 1.62;
}

.audience-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(34px, 4vw, 58px);
  margin-top: 0;
  padding: var(--section) 0;
}

.audience-split::before {
  background:
    repeating-linear-gradient(0deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, rgba(16, 35, 52, 0.5), rgba(8, 21, 34, 0.72)),
    var(--navy-800);
}

.audience-choice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: rgba(6, 17, 28, 0.76);
  box-shadow: 0 0 0 1px rgba(215, 122, 43, 0.34), 0 22px 70px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
}

.audience-choice::before,
.audience-choice::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(215, 122, 43, 0.54);
}

.audience-choice::before {
  right: calc(100% + 12px);
}

.audience-choice::after {
  left: calc(100% + 12px);
}

.audience-choice span {
  max-width: 70px;
  color: var(--soft);
  font-family: var(--title-font);
  font-size: 1.08rem;
  line-height: 1.04;
  text-align: center;
}

.audience-panel {
  min-height: 470px;
  padding: clamp(38px, 5vw, 68px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.audience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 28, 0.2), rgba(6, 17, 28, 0.88));
  transition: background 240ms ease;
}

.audience-panel:hover::before,
.audience-panel:focus-within::before {
  background: linear-gradient(180deg, rgba(6, 17, 28, 0.46), rgba(6, 17, 28, 0.94));
}

.audience-panel > * {
  position: relative;
  z-index: 1;
}

.audience-panel.residential {
  background-image: url("assets/images/patio-pergola.png");
}

.audience-panel.commercial {
  background-image: url("assets/images/restaurant-shade.png");
}

.audience-panel h2 {
  max-width: 560px;
  font-size: clamp(1.48rem, 2.35vw, 2.35rem);
}

.audience-panel p:not(.eyebrow) {
  max-width: 390px;
  color: var(--soft);
}

.audience-panel a {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--orange);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.audience-panel a:hover,
.audience-panel a:focus-visible {
  color: var(--orange-strong);
  border-color: var(--orange-strong);
  transform: translateY(-4px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: clamp(72px, 10vw, 150px);
  align-items: start;
}

.split-layout-reverse > :first-child {
  grid-column: 2;
  text-align: right;
}

.split-layout-reverse > :first-child p {
  margin-left: auto;
}

.split-layout-reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

#services::before {
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.02) 0 1px, transparent 1px 56px),
    linear-gradient(115deg, rgba(6, 17, 28, 0.98), rgba(10, 23, 36, 0.9)),
    var(--navy-900);
}

.split-layout p {
  max-width: 510px;
}

.benefit-list {
  border-top: 0;
  width: 100%;
  min-width: 0;
}

.benefit-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 18px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  padding: 28px 18px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  transition: background 180ms ease, transform 180ms ease;
}

.benefit-row:hover,
.benefit-row:focus-within {
  background: rgba(6, 17, 28, 0.34);
  transform: translateX(4px);
}

.benefit-row span {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--orange);
}

.benefit-row p {
  margin: 0;
  color: var(--soft);
  font-weight: 700;
}

.process-block {
  border-top: 0;
}

.process-block::before {
  background:
    repeating-linear-gradient(90deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 84px),
    radial-gradient(circle at 18% 22%, rgba(245, 241, 232, 0.035), transparent 22rem),
    var(--navy-950);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(38px, 5vw, 72px);
  background: transparent;
}

.process-card {
  position: relative;
  min-height: 240px;
  padding: 0 6px 0 0;
  background: transparent;
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: calc(clamp(38px, 5vw, 72px) * -0.58);
  width: clamp(28px, 3vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 122, 43, 0.18), rgba(215, 122, 43, 0.7));
}

.process-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 3px;
  right: calc((clamp(38px, 5vw, 72px) * -0.58) - 1px);
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(215, 122, 43, 0.7);
  border-right: 1px solid rgba(215, 122, 43, 0.7);
  transform: rotate(45deg);
}

.process-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--orange-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.gallery-archive {
  padding-top: clamp(34px, 4vw, 54px);
}

#gallery::before {
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.018) 0 1px, transparent 1px 52px),
    linear-gradient(180deg, rgba(8, 21, 34, 0.98), rgba(10, 23, 36, 0.92)),
    var(--navy-875);
}

.filter-row button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.055);
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
}

.filter-row button.is-active,
.filter-row button:hover,
.filter-row button:focus-visible {
  background: rgba(215, 122, 43, 0.14);
  color: var(--ink);
}

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

.gallery-grid-dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.gallery-item {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--charcoal);
}

.gallery-grid-dense .gallery-item {
  min-height: 260px;
}

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

.gallery-grid-dense .gallery-item img {
  min-height: 260px;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 17, 28, 0.88));
}

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

.gallery-grid-dense .gallery-item h3 {
  font-size: 0.9rem;
}

.gallery-item h3 {
  margin-bottom: 0;
}

.reviews-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: clamp(72px, 9vw, 132px);
  padding: var(--section) 0;
}

.reviews-faq::before {
  background:
    repeating-linear-gradient(0deg, rgba(245, 241, 232, 0.015) 0 1px, transparent 1px 74px),
    radial-gradient(circle at 78% 24%, rgba(215, 122, 43, 0.05), transparent 22rem),
    var(--navy-900);
}

.review-card,
.faq-card {
  background: transparent;
  padding: 0;
}

.review-card h2 {
  max-width: 620px;
  font-size: clamp(1.75rem, 2.85vw, 3rem);
}

.manual-review-card {
  margin-top: 34px;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.94);
  color: #202124;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: opacity 240ms ease, transform 240ms ease;
}

.manual-review-card.is-changing {
  opacity: 0.45;
  transform: translateY(4px);
}

.manual-review-top {
  display: block;
  margin-bottom: 16px;
}

.review-avatar {
  display: none;
}

.manual-review-top strong,
.manual-review-top span {
  display: block;
}

.manual-review-top strong {
  color: #202124;
  font-size: 0.9rem;
}

.manual-review-top span {
  color: #5f6368;
  font-size: 0.78rem;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.review-stars span {
  width: 16px;
  height: 16px;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  background: #fbbc04;
}

.manual-review-card p {
  margin: 0;
  color: #3c4043;
  font-size: 0.9rem;
  line-height: 1.7;
}

.review-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.review-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 33, 36, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.review-dots button.is-active {
  width: 22px;
  background: var(--orange);
}

.faq-item {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-item button strong {
  color: var(--orange-strong);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.faq-item p {
  margin-bottom: 28px;
  max-width: 560px;
}

.faq-item:not(.is-open) p {
  display: none;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.7fr);
  gap: clamp(78px, 10vw, 142px);
  align-items: start;
  margin-bottom: 0;
  padding: var(--section) 0;
  background: transparent;
}

.final-cta-reverse > :first-child {
  grid-column: 2;
  text-align: right;
}

.final-cta-reverse > :first-child p {
  margin-left: auto;
}

.final-cta-reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.final-cta::before {
  background:
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.02) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, rgba(215, 122, 43, 0.12), transparent 34%),
    linear-gradient(180deg, var(--navy-875), var(--navy-950));
}

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

.fluent-form-shell {
  display: block;
}

.fluent-form-shell .fluentform,
.fluent-form-shell form,
.fluentform .ff-el-group {
  margin: 0;
}

.fluentform {
  color: var(--ink);
}

.fluentform .ff-el-group {
  margin-bottom: 18px;
}

.fluentform .ff-el-form-control {
  width: 100%;
}

.fluentform .ff-el-input--label,
.fluentform .ff-el-input--label label {
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 800;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="url"],
.fluentform input[type="number"],
.fluentform select,
.fluentform textarea,
.fluentform .ff-el-form-control {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 4px;
  background: rgba(6, 17, 28, 0.56);
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.fluentform input[type="text"]:focus,
.fluentform input[type="email"]:focus,
.fluentform input[type="tel"]:focus,
.fluentform input[type="url"]:focus,
.fluentform input[type="number"]:focus,
.fluentform select:focus,
.fluentform textarea:focus,
.fluentform .ff-el-form-control:focus {
  border-color: var(--orange);
  box-shadow: none;
  outline: none;
}

.fluentform .ff-el-form-control::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

.fluentform .ff_upload_btn.ff-btn,
.fluentform input[type="file"] {
  border: 0;
  border-bottom: 1px dashed rgba(245, 241, 232, 0.25);
  border-radius: 4px;
  background: rgba(6, 17, 28, 0.32);
  color: var(--muted);
  padding: 18px 12px;
}

.fluentform .ff-btn-submit,
.fluentform button[type="submit"],
.fluentform input[type="submit"] {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: #111;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.fluentform .ff-btn-submit:hover,
.fluentform .ff-btn-submit:focus-visible,
.fluentform button[type="submit"]:hover,
.fluentform button[type="submit"]:focus-visible,
.fluentform input[type="submit"]:hover,
.fluentform input[type="submit"]:focus-visible {
  background: var(--orange-strong);
  transform: translateY(-2px);
}

.fluentform .text-danger,
.fluentform .error,
.fluentform .ff-el-is-error .ff-el-form-control {
  color: #ffb199;
}

.fluentform .ff-el-is-error .ff-el-form-control {
  border-color: #ff8a65;
}

.fluentform .ff-message-success {
  border: 1px solid rgba(215, 122, 43, 0.35);
  border-radius: 4px;
  background: rgba(215, 122, 43, 0.08);
  color: var(--ink);
  padding: 14px 16px;
}

.file-input input {
  display: none;
}

.file-input span {
  display: block;
  border: 0;
  border-bottom: 1px dashed rgba(245, 241, 232, 0.25);
  border-radius: 4px;
  padding: 18px 12px;
  color: var(--muted);
  font-weight: 500;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr);
  gap: clamp(48px, 7vw, 92px);
  padding: var(--section) 0 calc(var(--section) * 0.75);
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.site-footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(6, 17, 28, 0.98);
  }

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

  .site-nav a {
    padding: 12px 4px;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero,
  .page-hero,
  .section-heading,
  .text-columns,
  .split-layout,
  .contact-layout,
  .reviews-faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .page-hero-reverse .page-hero-copy,
  .text-columns-reverse > :first-child,
  .contact-layout-reverse > :first-child,
  .section-heading-right .eyebrow,
  .section-heading-right h2,
  .split-layout-reverse > :first-child,
  .final-cta-reverse > :first-child {
    text-align: left;
  }

  .page-hero-reverse .page-hero-copy,
  .page-hero-reverse .page-hero-media,
  .text-columns-reverse > :first-child,
  .text-columns-reverse > :last-child,
  .contact-layout-reverse > :first-child,
  .contact-layout-reverse > :last-child,
  .section-heading-right h2,
  .section-heading-right p:not(.eyebrow),
  .split-layout-reverse > :first-child,
  .split-layout-reverse > :last-child,
  .final-cta-reverse > :first-child,
  .final-cta-reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading-right h2 {
    justify-self: start;
  }

  .page-hero-reverse .page-hero-copy h1,
  .page-hero-reverse .page-hero-copy p:not(.eyebrow),
  .text-columns-reverse > :first-child p,
  .split-layout-reverse > :first-child p,
  .final-cta-reverse > :first-child p {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    gap: 48px;
  }

  .hero-media,
  .hero-media img {
    min-height: 500px;
  }

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

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

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

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

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

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

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: auto;
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(2) {
    grid-column: auto;
  }

  .hero::before {
    width: 72vw;
    opacity: 0.12;
  }

  .audience-choice {
    width: 96px;
    height: 96px;
  }

  .audience-choice::before,
  .audience-choice::after {
    width: 24px;
  }

  .audience-choice span {
    max-width: 60px;
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  :root {
    --section: clamp(52px, 13vw, 74px);
  }

  .site-header {
    width: min(calc(100% - 20px), 1280px);
    margin-top: 10px;
  }

  .brand span,
  .header-actions .btn {
    display: none;
  }

  .section-shell,
  .section-block,
  .trust-bar,
  .audience-split,
  .reviews-faq,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero,
  .page-hero,
  .section-block,
  .audience-split,
  .reviews-faq,
  .final-cta {
    padding-top: var(--section);
    padding-bottom: var(--section);
  }

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

  .hero-media,
  .hero-media img {
    min-height: 400px;
  }

  .hero::before {
    inset: 0 -14vw auto auto;
    width: 86vw;
    height: 380px;
    opacity: 0.11;
  }

  .audience-split,
  .process-grid,
  .gallery-grid,
  .reviews-faq,
  .final-cta,
  .site-footer,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

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

  .process-card:not(:last-child)::before,
  .process-card:not(:last-child)::after {
    display: none;
  }

  .section-heading {
    column-gap: 22px;
    row-gap: var(--eyebrow-gap);
    margin-bottom: 42px;
  }

  .category-grid,
  .audience-split,
  .gallery-grid,
  .reviews-faq,
  .final-cta {
    gap: 34px;
  }

  .category-card img {
    height: auto;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
  }

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

  .category-card > figure.wp-block-image,
  .category-card > p > figure.wp-block-image {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .category-card > p {
    display: contents;
  }

  .category-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .category-card p {
    max-width: none;
  }

  .audience-panel {
    min-height: 430px;
  }

  .audience-choice {
    top: 50%;
    width: 84px;
    height: 84px;
  }

  .audience-choice::before,
  .audience-choice::after {
    display: none;
  }

  .audience-choice span {
    max-width: 54px;
    font-size: 0.76rem;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 360px;
  }

  .gallery-grid-dense .gallery-item,
  .gallery-grid-dense .gallery-item img {
    min-height: 220px;
  }

  .trust-bar span {
    min-width: 0;
    padding: 18px 6px;
    border-right: 0 !important;
    border-bottom: 0;
    font-size: clamp(0.58rem, 2.3vw, 0.72rem);
    line-height: 1.25;
  }

  .trust-bar svg {
    width: 22px;
    height: 22px;
  }

  .trust-bar span:last-child {
    border-bottom: 0;
  }

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

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

  .product-card a {
    min-height: auto;
    grid-template-rows: auto;
  }

  .product-card-media {
    height: auto;
    aspect-ratio: 1.35 / 1;
  }

  .product-card span,
  .product-card h3,
  .product-card p {
    margin-right: 18px;
    margin-left: 18px;
  }

  .product-card p {
    max-width: none;
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(2) {
    grid-column: auto;
  }

  .category-card div {
    padding-bottom: 22px;
  }

  .audience-panel.commercial {
    border-left: 0;
    border-top: 0;
  }

  .final-cta {
    background: transparent;
  }
}

@media (max-width: 460px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-card img,
  .category-card > figure.wp-block-image,
  .category-card > p > figure.wp-block-image {
    aspect-ratio: 1.55 / 1;
  }
}
