:root {
  --ink: #23211d;
  --soft-ink: #5b554d;
  --paper: #f7f4ee;
  --panel: #fffdf8;
  --line: #ded7cc;
  --teal: #0d7d75;
  --teal-deep: #075d57;
  --coral: #e76f51;
  --sun: #f4b860;
  --sage: #c9d6bd;
  --shadow: 0 18px 50px rgba(35, 33, 29, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 5vw;
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(35, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 72px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.nav {
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.header-action {
  opacity: 0.88;
}

.nav a:hover,
.header-action:hover {
  opacity: 1;
}

.header-action {
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 21, 20, 0.86) 0%, rgba(18, 21, 20, 0.65) 42%, rgba(18, 21, 20, 0.16) 100%),
    linear-gradient(0deg, rgba(18, 21, 20, 0.3), rgba(18, 21, 20, 0.08));
}

.hero-media {
  z-index: -2;
}

.hero-inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding-top: 4rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button {
  min-height: 46px;
  justify-content: center;
  border-radius: 6px;
  padding: 0.78rem 1rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(231, 111, 81, 0.26);
}

.primary:hover {
  background: #d95f42;
}

.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.section .secondary,
.contact-panel .secondary,
.pricing-grid .secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 0.8rem;
  margin: 2.2rem 0 0;
}

.proof-strip div {
  border-left: 3px solid var(--coral);
  padding-left: 0.8rem;
}

.proof-strip dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 0.1rem 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.section,
.intro-band {
  padding: 5.5rem 0;
}

.section-inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.intro-band {
  background: var(--ink);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.4rem, 5vw, 5rem);
}

.intro-grid p {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid,
.pricing-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.price-card,
.work-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card,
.price-card {
  padding: 1.4rem;
}

.card-number,
.price-label,
.work-tag {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.price-card h3,
.work-card h3 {
  margin: 0.7rem 0 0.55rem;
  font-size: 1.35rem;
}

.service-card p,
.price-card p,
.work-card p,
.contact-panel p {
  color: var(--soft-ink);
}

.service-card p,
.price-card p,
.work-card p {
  margin-bottom: 0;
}

.muted {
  background: #ebe4d8;
}

.work-card {
  display: block;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 24px 60px rgba(35, 33, 29, 0.16);
  transform: translateY(-3px);
}

.work-card:focus-visible {
  outline: 3px solid rgba(231, 111, 81, 0.5);
  outline-offset: 4px;
}

.work-visual {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, var(--teal), var(--sun));
}

.work-visual.plumbing {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.55), transparent 26%),
    linear-gradient(135deg, #157a8c, #f4b860);
}

.work-visual.cafe {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.52), transparent 23%),
    linear-gradient(135deg, #e76f51, #c9d6bd);
}

.work-visual.landscape {
  background:
    radial-gradient(circle at 32% 70%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, #0d7d75, #8aa87f);
}

.work-copy {
  padding: 1.2rem;
}

.preview-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--coral);
  font-weight: 900;
}

.pricing-grid {
  align-items: stretch;
}

.price-card.featured {
  border-color: var(--teal);
  background: #fafffb;
  transform: translateY(-0.5rem);
}

.price-card h3 {
  font-size: 2.5rem;
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--soft-ink);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--coral);
}

.contact-section {
  background: var(--teal-deep);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 1.4rem;
}

.contact-panel p {
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5vw;
  color: var(--soft-ink);
  background: var(--paper);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

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

.site-footer a:hover {
  color: var(--teal);
}

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

  .brand-logo {
    width: 62px;
    height: 42px;
  }

  .nav,
  .header-action {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(18, 21, 20, 0.88), rgba(18, 21, 20, 0.46));
  }

  .proof-strip,
  .intro-grid,
  .service-grid,
  .pricing-grid,
  .work-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    max-width: 420px;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .section-inner {
    width: min(100% - 2rem, 1160px);
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.45rem, 13vw, 3.25rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 30ch;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .button {
    width: 100%;
  }

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

  .section,
  .intro-band {
    padding: 4rem 0;
  }

  .site-footer {
    padding: 1.25rem 1rem;
  }
}
