:root {
  --ink: #171412;
  --muted: #675f57;
  --paper: #f8f4ed;
  --cream: #fffaf2;
  --clay: #9d5f38;
  --sun: #d99a38;
  --sage: #56665c;
  --charcoal: #24211e;
  --line: rgba(36, 33, 30, 0.14);
  --shadow: 0 28px 70px rgba(36, 33, 30, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  padding: 18px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(248, 244, 237, 0.92);
  box-shadow: 0 12px 32px rgba(36, 33, 30, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Lexend", Arial, sans-serif;
  line-height: 1;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 51px;
  object-fit: contain;
}

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

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: rgba(23, 20, 18, 0.82);
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--clay);
  border-color: var(--clay);
}

.button.ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.light {
  background: white;
  color: var(--ink);
  border-color: white;
}

.button.small {
  min-height: 42px;
  padding-inline: 16px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 20, 18, 0.86), rgba(23, 20, 18, 0.46) 48%, rgba(23, 20, 18, 0.14));
}

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

.hero-content {
  position: relative;
  z-index: 1;
  padding: 160px 0 80px;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--sun);
}

.section {
  padding: 100px 0;
}

.split-grid,
.page-hero-grid,
.process-layout,
.contact-grid,
.schedule-grid,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.reverse .section-copy {
  order: 2;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.stack-main,
.feature-image {
  width: 82%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stack-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 250px;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-copy p,
.wide-copy p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin-top: 16px;
  font-size: 1.08rem;
}

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

.service-card,
.blog-card,
.contact-form,
.contact-card,
.booking-panel,
.checklist,
.stat-panel,
.service-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.76);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 10px;
}

.service-card p {
  margin-top: 12px;
  font-size: 0.95rem;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
}

.process-section,
.founder-section {
  background: var(--cream);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  padding: 28px;
  border-left: 4px solid var(--sun);
  background: white;
  border-radius: var(--radius);
}

.process-list span {
  color: var(--clay);
  font-weight: 900;
}

.process-list h3 {
  margin-top: 8px;
}

.process-list p {
  margin-top: 10px;
}

.testimonial-section {
  background: var(--charcoal);
  color: white;
}

.testimonial-section p,
.testimonial-section blockquote {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

figure {
  margin: 0;
}

.testimonial-grid figure {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

blockquote {
  margin: 0;
  font-size: 1.2rem;
}

figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-weight: 900;
}

figcaption img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.page-hero {
  padding: 150px 0 90px;
  background: var(--cream);
}

.page-hero.compact {
  padding-bottom: 70px;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 18px;
  font-size: 1.18rem;
}

.page-hero img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  background: linear-gradient(rgba(23, 20, 18, 0.58), rgba(23, 20, 18, 0.72)), url("/assets/images/renovation-accessories.jpg") center / cover;
  color: white;
}

.services-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.service-detail-grid {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 18px;
}

.service-detail img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-detail p:not(.eyebrow) {
  margin: 16px 0 22px;
}

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

.gallery-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.wide-copy h2 {
  margin-bottom: 10px;
}

.stat-panel {
  padding: 36px;
}

.stat-panel strong {
  display: block;
  color: var(--clay);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.stat-panel span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  background: var(--cream);
}

.contact-form,
.contact-card,
.booking-panel,
.checklist {
  padding: 34px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.hidden-field {
  display: none;
}

.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--clay);
  font-weight: 900;
}

.contact-card p {
  margin-top: 12px;
}

.contact-card h3 {
  margin-top: 32px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  text-transform: uppercase;
}

.checklist ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card div {
  padding: 26px;
}

.blog-card time,
.article-hero time {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 12px;
  font-size: 1.55rem;
  line-height: 1.14;
}

.blog-card p {
  margin-top: 14px;
}

.article-hero {
  padding: 150px 0 70px;
  background: var(--cream);
}

.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 54px;
  align-items: end;
}

.article-hero h1 {
  margin: 20px 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.article-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-body {
  background: white;
}

.article-body .lede {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.5;
}

.article-body h2 {
  margin-top: 44px;
  font-size: 2rem;
}

.article-body p {
  margin-top: 16px;
}

.legal-page {
  padding: 150px 0 90px;
  background: white;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 1.6rem;
}

.legal-page p {
  margin-top: 16px;
}

.cta-band {
  padding: 70px 0;
  background: var(--sage);
  color: white;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  max-width: 760px;
}

.phone-link {
  color: white;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 28px;
  background: var(--charcoal);
  color: white;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 60px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.footer-brand {
  margin-bottom: 18px;
  color: white;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.75);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    display: none;
  }

  .split-grid,
  .page-hero-grid,
  .process-layout,
  .contact-grid,
  .schedule-grid,
  .editorial-grid,
  .article-hero-inner,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .reverse .section-copy {
    order: 0;
  }

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

  .image-stack {
    min-height: auto;
  }

  .stack-main,
  .feature-image {
    width: 100%;
    height: 460px;
  }

  .stack-float {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 780px;
  }

  .hero-media::after {
    background: linear-gradient(rgba(23, 20, 18, 0.46), rgba(23, 20, 18, 0.9));
  }

  .hero-content {
    padding: 140px 0 56px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .testimonial-grid,
  .blog-grid,
  .gallery-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-row img {
    height: 260px;
  }

  .page-hero,
  .article-hero,
  .legal-page {
    padding-top: 120px;
  }

  .page-hero img,
  .article-hero img,
  .stack-main,
  .feature-image {
    height: 330px;
  }

  .cta-band-inner,
  .footer-bottom {
    display: grid;
  }
}
