:root {
  --ink: #16211d;
  --muted: #5f6d66;
  --line: #dfe6e1;
  --paper: #ffffff;
  --soft: #f6f4ee;
  --deep: #17382c;
  --deep-2: #0d1d18;
  --accent: #c98d43;
  --accent-dark: #9c6122;
  --sage: #6f8e77;
  --shadow: 0 22px 60px rgba(18, 36, 30, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 8px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid rgba(22, 33, 29, 0.1);
  box-shadow: 0 14px 34px rgba(18, 36, 30, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 144px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #263831;
}

nav a:hover {
  color: var(--deep);
  background: rgba(23, 56, 44, 0.07);
}

.nav-cta {
  color: #ffffff;
  background: var(--accent);
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 74px), 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-media {
  background-image: url("/assets/resin-driveway-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 24, 20, 0.88) 0%, rgba(12, 24, 20, 0.72) 42%, rgba(12, 24, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 24, 20, 0.34), rgba(12, 24, 20, 0.08));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vh, 56px) 0;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.6vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(201, 141, 67, 0.28);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 610px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-form,
.main-form {
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-form {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.form-kicker {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-form h2 {
  margin-bottom: 14px;
  font-size: 1.36rem;
  line-height: 1.15;
}

form {
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 5px;
  color: #293832;
  font-size: 0.84rem;
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  height: 44px;
  min-height: 44px;
  border: 1px solid #ccd7cf;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background-color: #fbfcfa;
  font: inherit;
  font-size: 0.95rem;
}

select {
  appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-dark) 50%),
    linear-gradient(135deg, var(--accent-dark) 50%, transparent 50%),
    linear-gradient(90deg, rgba(23, 56, 44, 0.12), rgba(23, 56, 44, 0.12));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    calc(100% - 42px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 22px;
  background-repeat: no-repeat;
}

textarea {
  height: auto;
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 141, 67, 0.24);
  border-color: var(--accent);
}

.email-contact {
  position: relative;
  min-width: 0;
  margin: 2px 0 0;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.email-contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 12px;
  border: 1.8px solid var(--accent);
  border-radius: 3px;
}

.email-contact::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 10px;
  height: 7px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}

.email-contact span,
.email-contact a {
  display: block;
}

.email-contact span {
  margin-bottom: 1px;
  color: #394941;
  font-weight: 800;
}

.email-contact a {
  color: var(--deep);
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 160ms ease;
}

.email-contact a:hover {
  color: var(--accent-dark);
}

.hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trust-band {
  background: var(--deep);
  color: #ffffff;
}

.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
}

.trust-band strong {
  font-size: 1.08rem;
}

.trust-band span {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(72px, 8vw, 96px) 0;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.gallery-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.split p,
.areas-grid p,
.faq-grid p,
.quote-grid p,
.resin-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.why-list article,
.feature-list article,
.process article,
.project-card,
.faqs details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 30px 28px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 245, 0.96)),
    #ffffff;
  box-shadow: 0 14px 36px rgba(18, 36, 30, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 141, 67, 0.45);
  box-shadow: 0 22px 50px rgba(18, 36, 30, 0.11);
}

.service-card h3 {
  margin: 0 auto 14px;
  font-size: 1.18rem;
}

.service-card p {
  max-width: 31rem;
  margin-inline: auto;
}

.service-card p,
.why-list p,
.feature-list p,
.process p,
.project-card p,
.faqs p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.why-section .section-heading {
  max-width: 880px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-strip li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px 10px 38px;
  border: 1px solid rgba(23, 56, 44, 0.12);
  border-radius: var(--radius);
  color: #263831;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(18, 36, 30, 0.045);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-strip li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-size: 0.72rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.why-list article {
  padding: 26px;
  box-shadow: 0 14px 34px rgba(18, 36, 30, 0.055);
}

.why-list article h3 {
  color: var(--deep);
}

.resin-section {
  background: #132d24;
  color: #ffffff;
}

.resin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.resin-panel {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.resin-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.resin-panel .note {
  padding: 14px 16px;
  margin: 24px 0;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

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

.feature-list article {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.feature-list article:last-child {
  grid-column: 1 / -1;
}

.feature-list p {
  color: rgba(255, 255, 255, 0.74);
}

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

.process article {
  min-height: 235px;
  padding: 24px;
}

.process span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--deep);
  font-weight: 900;
}

.gallery-section {
  padding-top: 76px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.project-card {
  position: relative;
  min-height: 335px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: linear-gradient(145deg, #53685d, #253d33);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(18, 36, 30, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 23, 19, 0.78), rgba(11, 23, 19, 0.1));
  transition: background 180ms ease;
}

.project-card > div {
  position: relative;
}

.project-card p {
  color: rgba(255, 255, 255, 0.82);
}

.project-card span {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 900;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 141, 67, 0.76);
  box-shadow: 0 26px 60px rgba(18, 36, 30, 0.2);
}

.project-card:hover::before,
.project-card:focus-visible::before {
  background: linear-gradient(0deg, rgba(11, 23, 19, 0.72), rgba(11, 23, 19, 0));
}

.project-card:focus-visible,
.gallery-close:focus-visible {
  outline: 3px solid rgba(201, 141, 67, 0.5);
  outline-offset: 4px;
}

.project-card-photo {
  background-image: url("/assets/gallery/resin/resin-1.jpg");
  background-size: cover;
  background-position: center;
}

.tone-warm {
  background:
    linear-gradient(145deg, rgba(173, 124, 71, 0.25), rgba(89, 67, 45, 0.6)),
    url("/assets/gallery/block-paving/block-1.jpg");
  background-size: cover;
  background-position: center;
}

.tone-dark {
  background:
    linear-gradient(145deg, rgba(76, 84, 80, 0.34), rgba(29, 37, 35, 0.72)),
    url("/assets/gallery/tarmac/tarmac-1.jpg");
  background-size: cover;
  background-position: center;
}

.modal-open {
  overflow: hidden;
}

.gallery-modal[hidden] {
  display: none;
}

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

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 14, 0.72);
  backdrop-filter: blur(10px);
}

.gallery-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 80px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(201, 141, 67, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #17382c, #10241d);
  color: #ffffff;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.gallery-modal-header {
  max-width: 700px;
  margin-bottom: 18px;
}

.gallery-modal-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.gallery-modal-header .eyebrow {
  margin-bottom: 8px;
}

.gallery-modal-header p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.gallery-close:hover {
  background: rgba(201, 141, 67, 0.24);
}

.example-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.example-grid[data-count="2"] {
  max-width: 620px;
  margin-inline: auto;
}

.example-grid[data-count="2"] .example-slot {
  flex: 0 1 280px;
}

.example-slot {
  flex: 1 1 260px;
  max-width: 276px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.example-slot div {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.1) 0 8px, rgba(255, 255, 255, 0.03) 8px 16px),
    linear-gradient(145deg, #6f8e77, #243d34);
}

.example-slot img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  background: #22342d;
}

.example-slot figcaption {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 900;
}

.tone-resin-a div,
.tone-resin-d div {
  background:
    radial-gradient(circle at 26% 24%, rgba(247, 229, 191, 0.45), transparent 22%),
    repeating-linear-gradient(32deg, rgba(226, 210, 175, 0.26) 0 7px, rgba(78, 91, 74, 0.14) 7px 14px),
    linear-gradient(145deg, #c2b08d, #52634e);
}

.tone-resin-b div,
.tone-resin-e div {
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.28), transparent 20%),
    repeating-linear-gradient(42deg, rgba(242, 222, 185, 0.24) 0 6px, rgba(121, 93, 54, 0.2) 6px 12px),
    linear-gradient(145deg, #d5bd88, #846a46);
}

.tone-resin-c div,
.tone-resin-f div {
  background:
    linear-gradient(90deg, rgba(23, 56, 44, 0.92) 0 16%, transparent 16% 84%, rgba(23, 56, 44, 0.92) 84%),
    repeating-linear-gradient(30deg, rgba(239, 226, 197, 0.26) 0 7px, rgba(80, 87, 75, 0.2) 7px 14px),
    linear-gradient(145deg, #bba77e, #5e6b5d);
}

.tone-block-a div,
.tone-block-d div {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 34px),
    linear-gradient(145deg, #b17748, #65442c);
}

.tone-block-b div,
.tone-block-e div {
  background:
    linear-gradient(90deg, rgba(35, 49, 42, 0.9) 0 12%, transparent 12% 88%, rgba(35, 49, 42, 0.9) 88%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 42px),
    linear-gradient(145deg, #a46b43, #4f392c);
}

.tone-block-c div,
.tone-block-f div {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 4px, transparent 4px 38px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 0 4px, transparent 4px 38px),
    linear-gradient(145deg, #8f6f57, #332f2b);
}

.tone-tarmac-a div,
.tone-tarmac-d div {
  background:
    linear-gradient(90deg, rgba(201, 141, 67, 0.86) 0 8px, transparent 8px),
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.15), transparent 18%),
    linear-gradient(145deg, #5c6360, #222b28);
}

.tone-tarmac-b div,
.tone-tarmac-e div {
  background:
    repeating-linear-gradient(24deg, rgba(255, 255, 255, 0.06) 0 4px, transparent 4px 11px),
    linear-gradient(145deg, #656d69, #1b2421);
}

.tone-tarmac-c div,
.tone-tarmac-f div {
  background:
    linear-gradient(90deg, rgba(229, 215, 184, 0.82) 0 14%, transparent 14%),
    repeating-linear-gradient(34deg, rgba(255, 255, 255, 0.06) 0 4px, transparent 4px 12px),
    linear-gradient(145deg, #575f5b, #202825);
}

.areas-grid,
.faq-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li,
.quote-callouts span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  font-weight: 800;
}

.faqs {
  display: grid;
  gap: 12px;
}

.faqs details {
  padding: 18px 20px;
}

.faqs summary {
  cursor: pointer;
  font-weight: 900;
}

.faqs p {
  padding-top: 12px;
}

.quote-section {
  background: var(--deep);
  color: #ffffff;
}

.quote-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-callouts {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}

.quote-callouts span {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.main-form {
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  padding: 54px 0 26px;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 141, 67, 0.12), transparent 30%),
    #0d1915;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.45fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: start;
}

.site-footer p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-column a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: start;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: auto;
  }

  nav {
    width: auto;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .resin-grid,
  .areas-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    padding: 58px 0;
  }

  .hero-form {
    max-width: 560px;
  }

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

  .example-grid {
    display: flex;
  }

  .project-card-photo {
    grid-column: 1 / -1;
  }

  .trust-band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 8px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 112px;
  }

  nav {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 4px;
  }

  nav a {
    flex: 0 0 auto;
    padding: 8px 9px;
    font-size: 0.84rem;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(12, 24, 20, 0.9), rgba(12, 24, 20, 0.54));
  }

  .hero-grid {
    padding: 44px 0 52px;
  }

  h1 {
    font-size: 2.45rem;
  }

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

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

  .trust-points,
  .service-grid,
  .why-list,
  .feature-list,
  .process,
  .gallery-grid,
  .example-grid,
  .area-list,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 66px 0;
  }

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

  .service-card {
    padding: 28px 22px;
  }

  .service-card::before {
    left: 50%;
    right: auto;
  }

  .resin-panel,
  .main-form,
  .hero-form {
    padding: 22px;
  }

  .feature-list article:last-child,
  .project-card-photo {
    grid-column: auto;
  }

  .project-card {
    min-height: 268px;
  }

  .gallery-modal {
    align-items: end;
    padding: 12px;
  }

  .gallery-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
  }

  .gallery-close {
    position: static;
    margin: 0 0 18px auto;
  }

  .example-slot div {
    min-height: 150px;
  }

  .example-slot {
    flex-basis: 100%;
    max-width: 100%;
  }

  .example-slot img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    width: 190px;
  }
}

@media (max-width: 480px) {
  .trust-points {
    grid-template-columns: 1fr;
  }

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