:root {
  --ink: #171511;
  --muted: #5f5b53;
  --line: #e6dfd2;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --charcoal: #1f2528;
  --yellow: #f2b928;
  --yellow-deep: #d99a00;
  --green: #4d6f5a;
  --green-soft: #edf4ee;
  --shadow: 0 22px 50px rgba(36, 31, 22, 0.12);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  background: rgba(22, 22, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(22, 22, 18, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #fff;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--yellow);
  color: #16140f;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: translateX(-8px);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 138px 0 56px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 15, 12, 0.86) 0%, rgba(15, 15, 12, 0.68) 44%, rgba(15, 15, 12, 0.28) 100%),
    url("assets/hero.jpg") center/cover no-repeat;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  display: block;
}

.hero-copy-wrap {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.6rem;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

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

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn.dark {
  background: var(--charcoal);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 1px;
  max-width: 580px;
  margin: 34px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 15px 16px;
  background: rgba(15, 15, 12, 0.42);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.stat-link {
  color: inherit;
  text-decoration: none;
}

.stat-link:hover,
.stat-link:focus {
  color: var(--yellow);
}

.trust-strip {
  background: var(--charcoal);
  color: #fff;
}

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

.trust-grid p {
  margin: 0;
  padding: 22px 24px;
  background: var(--charcoal);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--yellow);
}

.trust-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.section {
  padding: 76px 0;
}

#services,
#proof,
#areas,
#contact,
#faq {
  scroll-margin-top: 104px;
}

.split,
.proof-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section h2 {
  max-width: 760px;
  font-size: 2.65rem;
}

.lead-copy p,
.proof-grid p,
.quote-section p,
.faq-grid p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.lead-copy p:last-child,
.proof-grid p:last-child,
.quote-section p:last-child,
.faq-grid p:last-child {
  margin-bottom: 0;
}

.services {
  background: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.service-card {
  margin: 0;
  min-height: 0;
  padding: 20px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(45, 38, 26, 0.06);
}

.service-card summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-action {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.service-card[open] summary::after {
  content: "−";
}

.service-card[open] {
  box-shadow: 0 16px 36px rgba(45, 38, 26, 0.1);
}

.service-card summary:hover .service-title,
.service-card summary:focus-visible .service-title {
  color: var(--green);
}

.service-panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.65;
}

.service-panel li + li {
  margin-top: 6px;
}

.work-strip {
  background: #f2ecdf;
}

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

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.work-strip .photo-grid {
  align-items: stretch;
}

.work-strip .photo-grid .work-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.work-strip .photo-grid .work-photo {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  background: none;
}

.work-photo-kitchen-tiling {
  object-position: center;
}

.work-photo-kitchen-finish {
  object-position: center 54%;
}

.work-photo-open-plan {
  object-position: center 44%;
}

.photo-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.work-strip .photo-grid figcaption {
  min-height: 62px;
  display: flex;
  align-items: center;
}

.section-actions {
  display: flex;
  margin-top: 24px;
}

.page-hero {
  padding: 156px 0 70px;
  background: var(--charcoal);
  color: #fff;
}

.photo-page-hero {
  background:
    linear-gradient(90deg, rgba(15, 15, 12, 0.88) 0%, rgba(15, 15, 12, 0.72) 55%, rgba(15, 15, 12, 0.36) 100%),
    url("/assets/work/work-01.jpg") center/cover no-repeat;
}

.page-hero-inner {
  max-width: 820px;
}

.breadcrumb {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.work-gallery {
  columns: 3 280px;
  column-gap: 16px;
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(45, 38, 26, 0.08);
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.gallery-card figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
}

.gallery-cta {
  margin-top: 38px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.gallery-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.1;
}

.gallery-cta p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof {
  background: var(--green-soft);
}

.proof-list {
  border: 1px solid #d5e2d7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(49, 74, 55, 0.08);
}

.proof-list p {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid #e7efe8;
}

.proof-list p:last-child {
  border-bottom: 0;
}

.proof-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.areas {
  background: #fff;
}

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

.area-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.quote-section {
  background: var(--charcoal);
  color: #fff;
}

.quote-section h2 {
  color: #fff;
}

.quote-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel,
.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.quote-form {
  padding: 22px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.quote-form select option {
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(242, 185, 40, 0.18);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--yellow);
}

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

.quote-form .btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  font-weight: 800;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-row span {
  color: var(--yellow);
  font-weight: 900;
}

.contact-row strong {
  text-align: right;
}

.contact-note {
  padding: 18px 22px 22px;
  font-size: 0.9rem;
}

.faq {
  background: #fff;
}

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

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-grid h3 {
  margin: 0 0 10px;
  letter-spacing: 0;
}

.site-footer {
  padding: 30px 0;
  background: #121412;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  max-width: 600px;
  margin: 7px 0 0;
  line-height: 1.55;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: flex-start;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  #services,
  #proof,
  #areas,
  #contact,
  #faq {
    scroll-margin-top: 134px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

  .hero h1 {
    font-size: 3.25rem;
  }

  .page-hero {
    padding-top: 188px;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  .trust-grid,
  .split,
  .proof-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .form-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 0;
    gap: 8px;
  }

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

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

  .brand small {
    font-size: 0.76rem;
  }

  .header-call {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.86rem;
    transform: translateX(-12px);
  }

  .site-nav {
    gap: 8px 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 158px 0 34px;
  }

  .hero h1 {
    font-size: 2.42rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .page-hero {
    padding: 184px 0 46px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .page-hero p:not(.eyebrow):not(.breadcrumb) {
    font-size: 1rem;
  }

  .hero-actions,
  .trust-grid,
  .service-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .work-strip .photo-grid img {
    width: 100%;
  }

  .work-strip .photo-grid figcaption {
    min-height: 0;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.25rem;
  }

  .hero-stats dd {
    font-size: 0.74rem;
  }

  .section {
    padding: 54px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 18px 18px 20px;
  }

  .service-card summary {
    gap: 10px;
  }

  .service-action {
    font-size: 0.8rem;
  }

  .footer-inner,
  .contact-row,
  .form-actions {
    flex-direction: column;
  }

  .section-actions {
    display: grid;
  }

  .work-gallery {
    columns: 1;
  }

  .gallery-cta h2 {
    font-size: 1.8rem;
  }

  .contact-row strong {
    text-align: left;
  }
}
