:root {
  --bg: #ffffff;
  --ink: #0b0b0b;
  --muted: #5d5d5d;
  --line: #e8e2d7;
  --soft: #f8f6f1;
  --gold: #b8892f;
  --gold-dark: #7a5417;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 18px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

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

.site-nav a {
  padding: 13px 0;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--gold-dark);
}

.nav-toggle {
  display: grid;
  gap: 4px;
  width: 42px;
  height: 42px;
  place-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.header-call {
  display: none;
}

.section-pad {
  padding: 70px 18px;
}

.hero {
  display: grid;
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-copy,
.hero-media,
.section-heading,
.contact-copy,
.quote-form,
.map-wrap {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 10vw, 82px);
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(30px, 7vw, 56px);
}

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

.hero-sub {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(18px, 4vw, 23px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-ghost {
  background: var(--bg);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 137, 47, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  color: var(--muted);
}

.lead-strip {
  display: grid;
  gap: 1px;
  background: var(--ink);
  color: #fff;
}

.lead-strip a,
.lead-strip span {
  padding: 18px;
  background: #111;
  text-align: center;
  font-weight: 800;
}

.lead-strip a:hover {
  color: var(--gold);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 800;
}

.card-grid,
.reviews-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.review-card,
details {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 235px;
  display: block;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 137, 47, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.service-card p,
.review-card p,
details p,
.contact-copy p {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--gold-dark);
  border-radius: var(--radius);
  font-size: 22px;
}

.why,
.reviews {
  background: var(--soft);
}

.why-grid {
  display: grid;
  gap: 12px;
}

.why-grid div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.why-grid span {
  color: var(--gold-dark);
}

.portfolio-grid {
  display: grid;
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 62%);
}

.project-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
}

.project-card strong,
.project-card span {
  display: block;
}

.project-card strong {
  font-size: 25px;
}

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

.review-card div {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-weight: 900;
}

.review-card strong {
  display: block;
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

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

details p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  gap: 26px;
  background: #111;
  color: #fff;
}

.service-page-hero {
  display: grid;
  gap: 36px;
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.service-page-hero h1 {
  max-width: 880px;
}

.service-page-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-intro {
  display: grid;
  gap: 28px;
}

.service-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.service-list li {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
}

.service-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-dark);
}

.service-cta {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.service-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.contact-copy p,
.contact address a {
  color: rgba(255, 255, 255, 0.74);
}

.contact address {
  margin-top: 26px;
  font-style: normal;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(184, 137, 47, 0.25);
  border-color: var(--gold);
}

.quote-form textarea {
  resize: vertical;
}

.consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.map-wrap {
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: grayscale(1);
}

.floating-quote {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 25;
  padding: 13px 17px;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  right: 14px;
  bottom: 78px;
  left: 14px;
  z-index: 35;
  display: none;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 32px 18px 90px;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer span,
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 8px;
}

@media (min-width: 680px) {
  .section-pad {
    padding: 86px 36px;
  }

  .lead-strip,
  .services-grid,
  .why-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-card.large {
    grid-column: span 2;
    min-height: 460px;
  }

  .quote-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px;
  }

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

  .cookie-banner {
    left: auto;
    width: min(470px, calc(100vw - 28px));
    grid-template-columns: 1fr auto;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 34px 36px 92px;
  }
}

@media (min-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 16px 44px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
  }

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

  .header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 900;
  }

  .section-pad {
    padding: 105px 44px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    gap: 52px;
  }

  .hero-media {
    min-height: 620px;
  }

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

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .portfolio-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .project-card.large {
    grid-row: span 2;
    grid-column: auto;
    min-height: 100%;
  }

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

  .contact {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .service-page-hero,
  .service-intro {
    grid-template-columns: 1fr 0.85fr;
  }

  .service-page-media {
    min-height: 520px;
  }

  .map-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 34px;
    overflow-wrap: break-word;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 16px;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .floating-quote {
    right: 10px;
    bottom: 10px;
    padding: 12px 14px;
    font-size: 14px;
  }
}
