* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #17202a;
  --navy-soft: #253242;
  --gold: #c79a4b;
  --cream: #f6f2ea;
  --white: #ffffff;
  --text: #333b43;
  --muted: #6e7680;
  --line: #ded8ce;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(23, 32, 42, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-text small {
  display: block;
  font-size: 8px;
  letter-spacing: 3px;
  color: #cfd4d9;
}

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

.site-nav a {
  color: #e8ecf0;
  font-size: 14px;
  font-weight: 600;
}

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

.site-nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 11px 18px;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 26px;
}

.hero {
  min-height: 780px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(rgba(18,26,35,.12), rgba(18,26,35,.25)),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2000&q=85")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,24,32,.92) 0%, rgba(16,24,32,.73) 47%, rgba(16,24,32,.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 72px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: #9a6f2f;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 7vw, 86px);
  line-height: 1.03;
  max-width: 850px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;
  font-size: 19px;
  color: #e2e6e9;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #17202a;
}

.btn-primary:hover {
  background: #d6ae68;
  transform: translateY(-2px);
}

.btn-secondary {
  color: white;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  color: #d9dde1;
  font-size: 13px;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 72px;
  align-items: center;
}

h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(37px, 5vw, 55px);
  line-height: 1.12;
}

.intro-grid p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
}

.text-link {
  color: #8d652b;
  font-weight: 800;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 46px;
}

.section-heading > p {
  max-width: 390px;
  color: var(--muted);
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

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

.service-card {
  border: 1px solid #e8e4dd;
  padding: 34px;
  background: var(--white);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(19,30,40,.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-bottom: 26px;
  font-size: 22px;
}

.service-card h3,
.process-step h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p,
.process-step p {
  color: var(--muted);
  font-size: 15px;
}

.about {
  background: #f8f8f6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  min-height: 590px;
  background:
    linear-gradient(rgba(23,32,42,.08), rgba(23,32,42,.08)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=85")
    center/cover no-repeat;
  position: relative;
}

.experience-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  background: var(--navy);
  color: white;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.experience-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--gold);
}

.experience-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 20px;
}

.about-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-points div {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.about-points strong {
  color: var(--gold);
}

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

.process-step {
  padding: 30px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}

.process-step span {
  color: var(--gold);
  font-size: 34px;
  font-family: "Playfair Display", serif;
}

.projects {
  background: var(--cream);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 285px 285px;
  gap: 18px;
}

.project {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(12,18,24,.78));
}

.project span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: white;
  font-weight: 800;
  font-size: 20px;
}

.project-one {
  grid-row: 1 / 3;
  background-image: url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1200&q=85");
}

.project-two {
  background-image: url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1000&q=85");
}

.project-three {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1000&q=85");
}

.testimonial {
  background: var(--navy);
  color: white;
  text-align: center;
}

.quote-wrap {
  max-width: 850px;
}

.quote-mark {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 85px;
  line-height: .65;
}

blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
}

.quote-name {
  margin-top: 24px;
  color: #c9d0d6;
}

.contact {
  background: var(--navy-soft);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact h2 {
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  color: #cdd3d9;
  margin-top: 18px;
  max-width: 520px;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.contact-details p {
  color: #cdd3d9;
}

.contact-details strong {
  color: white;
}

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

.estimate-form {
  background: white;
  color: var(--text);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
}

input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8dbe0;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(199,154,75,.3);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.full {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

footer {
  background: #0e151c;
  color: #aeb6be;
  padding: 34px 0;
  font-size: 13px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  transform: scale(.88);
  transform-origin: left center;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    padding: 12px 5%;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-image {
    min-height: 470px;
  }

  .experience-badge {
    right: 18px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: rgba(16,24,32,.78);
  }

  .hero h1 {
    font-size: 48px;
  }

  .trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .section-heading,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .cards,
  .process-grid,
  .about-points,
  .form-row {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 250px 250px;
  }

  .project-one {
    grid-row: auto;
  }

  .estimate-form {
    padding: 24px;
  }
}

.local-seo {
  background: #ffffff;
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.local-grid p {
  color: var(--muted);
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .local-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Finalized Renovio brand */
.brand-logo { display:block; width:156px; height:104px; object-fit:contain; background:#fff; }
.site-header { background:#fff; border-bottom:1px solid #ded8ce; }
.site-nav a { color:var(--navy); }
.menu-toggle { color:var(--navy); }
.footer-logo { background:white; }
section[id] { scroll-margin-top:110px; }
@media(max-width:900px){.site-nav{top:104px;background:#fff;}}

/* Front-page company identity and contact details */
.hero-content { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(280px,.85fr); gap:44px; align-items:center; padding-bottom:36px; }
.hero-business-name { font-size:clamp(22px,2.3vw,30px); font-weight:700; line-height:1.3; margin-bottom:22px; }
.hero h1 { font-size:clamp(48px,5.4vw,74px); }
.hero-brand { background:#fff; color:var(--navy); padding:22px 18px 28px; text-align:center; border-bottom:4px solid var(--gold); }
.hero-brand img { display:block; width:100%; height:auto; margin-bottom:14px; }
.hero-brand a { display:block; font-size:16px; line-height:1.7; overflow-wrap:anywhere; }
.hero-brand a:first-of-type { font-size:24px; font-weight:700; margin-bottom:4px; }
.hero-brand a:hover { color:#8d652b; }
@media(max-width:900px) { .hero-content { grid-template-columns:1fr; gap:30px; padding-top:148px; padding-bottom:50px; } .hero-brand { width:min(100%,350px); } }

.hero-license { display:inline-block; margin-top:26px; padding:9px 14px; border:1px solid rgba(199,154,75,.75); color:#f3d18c; font-size:14px; font-weight:800; letter-spacing:.3px; background:rgba(16,24,32,.42); }
