:root {
  --black: #071313;
  --ink: #142121;
  --muted: #647070;
  --teal: #09a7a0;
  --teal-dark: #087d78;
  --aqua: #d8fbf8;
  --white: #ffffff;
  --soft: #f4f8f7;
  --line: #dce7e5;
  --accent: #c89b3c;
  --shadow: 0 24px 70px rgba(7, 19, 19, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 19, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid rgba(9, 167, 160, 0.82);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.header-call:hover {
  transform: translateY(-2px);
  background: var(--aqua);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.section-pad {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 19, 19, 0.96) 0%, rgba(7, 19, 19, 0.86) 42%, rgba(7, 19, 19, 0.42) 100%),
    radial-gradient(circle at 84% 18%, rgba(9, 167, 160, 0.28), transparent 34%),
    #071313;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(to top, rgba(7, 19, 19, 0.65), transparent);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-bottom: 26px;
  padding: 10px 16px 10px 10px;
  color: var(--white);
  background: rgba(7, 19, 19, 0.76);
  border: 1px solid rgba(9, 167, 160, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-brand-badge img {
  width: clamp(82px, 12vw, 118px);
  height: clamp(82px, 12vw, 118px);
  object-fit: cover;
  border: 3px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.hero-brand-badge div {
  display: grid;
  gap: 2px;
}

.hero-brand-badge span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brand-badge strong {
  color: var(--white);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.1;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-project-photo {
  position: absolute;
  inset: 0;
  opacity: 0.88;
  background-image:
    linear-gradient(90deg, rgba(7, 19, 19, 0.96) 0%, rgba(7, 19, 19, 0.82) 40%, rgba(7, 19, 19, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 19, 19, 0.74) 0%, rgba(7, 19, 19, 0.12) 42%, rgba(7, 19, 19, 0.38) 100%),
    url("assets/hero-kitchen-island.png");
  background-position: 68% 78%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-project-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 19, 0.12), transparent 55%),
    radial-gradient(circle at 79% 54%, rgba(9, 167, 160, 0.2), transparent 24%);
  content: "";
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--black);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 19, 19, 0.18);
}

.btn-primary {
  color: var(--black);
  background: var(--teal);
}

.btn-primary:hover {
  background: #45dcd5;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-light {
  color: var(--black);
  background: var(--white);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
}

.credibility-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.credibility-band div {
  padding: 30px clamp(20px, 4vw, 52px);
  background: var(--soft);
}

.credibility-band strong,
.credibility-band span {
  display: block;
}

.credibility-band strong {
  color: var(--black);
  font-size: 1rem;
}

.credibility-band span {
  color: var(--muted);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.about-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.stat-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-panel div {
  padding: 28px;
  background: var(--white);
}

.stat-panel strong,
.stat-panel span {
  display: block;
}

.stat-panel strong {
  color: var(--teal-dark);
  font-size: 2.4rem;
  line-height: 1;
}

.stat-panel span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.services,
.testimonials {
  background: var(--soft);
}

.service-grid,
.project-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.project-card,
.testimonial-grid figure,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(7, 19, 19, 0.06);
}

.service-card {
  min-height: 240px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(9, 167, 160, 0.42);
  box-shadow: var(--shadow);
}

.service-card p,
.project-card p,
.testimonial-grid blockquote {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card-featured {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.service-card-featured h3,
.service-card-featured p {
  color: var(--white);
}

.service-card-featured .service-icon {
  color: var(--teal);
}

.cta-band {
  justify-content: space-between;
  padding: clamp(42px, 6vw, 74px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #0f3a39);
}

.cta-band h2 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.project-card {
  overflow: hidden;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 290px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.before-after:not(.real-before-after)::before {
  position: absolute;
  inset: 0 50% 0 0;
  background: rgba(7, 19, 19, 0.38);
  content: "";
}

.before-after::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  content: "";
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after img:first-of-type {
  grid-column: 1;
  grid-row: 1;
}

.before-after img:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.before-after span {
  z-index: 1;
  grid-row: 1;
  align-self: end;
  margin: 16px;
  padding: 7px 10px;
  width: fit-content;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.before-after span:first-of-type {
  grid-column: 1;
}

.before-after span:last-of-type {
  grid-column: 2;
}

.kitchen {
  background-image: url("assets/project-kitchen.svg");
}

.bath {
  background-image: url("assets/project-bath.svg");
}

.commercial {
  background-image: url("assets/project-commercial.svg");
}

.project-card h3,
.project-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.project-card h3 {
  margin-top: 22px;
}

.project-card p {
  padding-bottom: 24px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 28px;
}

.testimonial-grid blockquote {
  margin: 0 0 22px;
  font-size: 1rem;
}

.testimonial-grid figcaption {
  color: var(--black);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.contact-info p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin: 12px 0 24px;
}

.phone-link,
.email-link {
  width: fit-content;
}

.phone-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
}

.email-link {
  display: inline-flex;
  color: var(--black);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.email-link:hover {
  color: var(--teal-dark);
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contact-list li {
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(9, 167, 160, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.site-footer p {
  margin: 0;
}

.site-footer a:not(.brand) {
  color: var(--white);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 3px;
  text-align: right;
}

.footer-contact a:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .header-call {
    display: none;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-project-photo {
    background-position: 64% 76%;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(7, 19, 19, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

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

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

  .hero-project-photo {
    opacity: 0.72;
    background-position: 58% 72%;
  }

  .credibility-band,
  .about-grid,
  .service-grid,
  .project-grid,
  .testimonial-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    max-width: 140px;
    font-size: 0.86rem;
  }

  .hero-brand-badge {
    width: 100%;
  }

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .trust-strip span {
    width: 100%;
  }

  .footer-contact {
    text-align: left;
  }

  .before-after {
    height: 230px;
  }
}
