:root {
  --bg: #efe7d8;
  --bg-soft: #f7f1e6;
  --ink: #1c1f1d;
  --muted: #596257;
  --line: rgba(28, 31, 29, 0.12);
  --brand: #24352d;
  --brand-2: #3d5548;
  --accent: #b68a4d;
  --accent-2: #d7bf91;
  --panel: rgba(255, 250, 243, 0.84);
  --panel-solid: #fcf8f2;
  --shadow: 0 26px 72px rgba(19, 26, 20, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(61, 85, 72, 0.14), transparent 24%),
    radial-gradient(circle at 85% 0%, rgba(182, 138, 77, 0.12), transparent 25%),
    linear-gradient(180deg, #f9f4eb 0%, var(--bg) 44%, #e6dcc8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

p {
  line-height: 1.75;
}

.page-haze {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.page-haze span {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.65;
}

.page-haze span:nth-child(1) {
  width: 480px;
  height: 480px;
  left: -180px;
  top: 80px;
  background: rgba(61, 85, 72, 0.16);
}

.page-haze span:nth-child(2) {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 220px;
  background: rgba(182, 138, 77, 0.14);
}

.page-haze span:nth-child(3) {
  width: 280px;
  height: 280px;
  left: 42%;
  bottom: -100px;
  background: rgba(28, 31, 29, 0.12);
}

.site-header,
.hero-inner,
.trust-strip,
.section-head,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(249, 244, 235, 0.9);
  box-shadow: 0 14px 36px rgba(19, 26, 20, 0.1);
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand) 0%, #0f1714 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(28, 31, 29, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.9);
  box-shadow: 0 16px 40px rgba(19, 26, 20, 0.08);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.95);
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.menu-toggle span + span { margin-top: 6px; }

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  overflow: clip;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 15, 12, 0.88) 0%, rgba(10, 15, 12, 0.64) 38%, rgba(10, 15, 12, 0.16) 72%, rgba(10, 15, 12, 0.4) 100%),
    linear-gradient(180deg, rgba(10, 15, 12, 0.12) 0%, rgba(10, 15, 12, 0.56) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.52fr);
  gap: 26px;
  align-items: start;
  padding: 32px 0 48px;
}

.hero-copy {
  color: #fffaf1;
  padding-right: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 245, 232, 0.78);
}

.hero h1,
.section-head h2,
.panel h2,
.content-band-copy h2,
.gallery-card h3,
.process-card h3,
.review-card p,
.estimate-side h3,
.site-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.6rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 55ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 247, 238, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(145deg, #d1b47b 0%, #9e7035 100%);
  color: #1b1711;
}

.button-secondary {
  border-color: rgba(255, 248, 239, 0.22);
  color: #fff7ef;
  background: rgba(255, 255, 255, 0.04);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: rgba(255, 247, 238, 0.8);
  font-weight: 700;
}

.hero-contact a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 248, 239, 0.28);
}

.hero-aside {
  padding: 22px 22px 18px;
  color: #fff8ef;
  background: linear-gradient(180deg, rgba(20, 28, 22, 0.62), rgba(20, 28, 22, 0.34));
  border: 1px solid rgba(255, 245, 233, 0.14);
  border-left: 3px solid rgba(214, 191, 145, 0.5);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(9, 10, 10, 0.18);
}

.aside-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 248, 240, 0.84);
}

.hero-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-aside li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.98rem;
}

.hero-aside li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.trust-strip div {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(28, 31, 29, 0.08);
  box-shadow: 0 18px 42px rgba(20, 22, 18, 0.08);
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 0.96rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-top: clamp(80px, 9vw, 124px);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 0.96;
}

.section-head p:last-child {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

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

.service-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(28, 31, 29, 0.08);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 240px;
  object-fit: cover;
}

.service-card div {
  padding: 18px 18px 20px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.75rem;
}

.service-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-card a {
  color: var(--brand);
  font-weight: 800;
}

.split,
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.panel,
.content-band-copy,
.estimate-form,
.estimate-side {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(28, 31, 29, 0.08);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
}

.panel,
.content-band-copy,
.estimate-side {
  padding: 26px;
}

.panel h2,
.content-band-copy h2,
.estimate-side h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
}

.panel p,
.content-band-copy p,
.estimate-side p {
  color: var(--muted);
}

.panel-visual,
.content-band-visual {
  overflow: hidden;
  padding: 0;
}

.panel-visual img,
.content-band-visual img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.content-band {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
  align-items: stretch;
}

.content-band-copy {
  display: grid;
  align-content: start;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.two-col {
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(28, 31, 29, 0.08);
  box-shadow: var(--shadow);
}

.gallery-card img {
  height: 260px;
  object-fit: cover;
}

.gallery-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 1.7rem;
}

.gallery-label {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(28, 31, 29, 0.78);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-grid,
.reputation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.reputation-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(247, 240, 227, 0.96));
  border: 1px solid rgba(28, 31, 29, 0.08);
  box-shadow: var(--shadow);
}

.review-card p,
.reputation-card p {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.18;
  color: var(--ink);
}

.review-card span {
  color: var(--muted);
  font-weight: 700;
}

.reputation-card h3 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1;
}

.reputation-card p {
  font-size: 1rem;
  line-height: 1.7;
}

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

.process-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(28, 31, 29, 0.08);
  box-shadow: var(--shadow);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(61, 85, 72, 0.14);
  color: var(--brand);
  font-weight: 800;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(28, 31, 29, 0.08);
  box-shadow: var(--shadow);
}

.faq-grid summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.estimate-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.estimate-form {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(28, 31, 29, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(61, 85, 72, 0.35);
  box-shadow: 0 0 0 4px rgba(61, 85, 72, 0.12);
}

small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--brand);
  font-weight: 800;
}

.estimate-side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.estimate-side a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(61, 85, 72, 0.08);
  font-weight: 800;
  color: var(--brand);
}

.estimate-side p {
  margin: 0;
}

.site-footer {
  padding: 28px 0 42px;
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.site-footer strong {
  font-size: 2rem;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

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

.copyright {
  padding-top: 8px;
  border-top: 1px solid rgba(28, 31, 29, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .gallery-grid,
  .review-grid,
  .reputation-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-band,
  .estimate-grid,
  .split,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    width: 100%;
    margin-left: 0;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 0 44px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .trust-strip,
  .service-grid,
  .gallery-grid,
  .review-grid,
  .reputation-grid,
  .process-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .panel,
  .content-band-copy,
  .estimate-form,
  .estimate-side {
    padding: 22px;
  }

  .reputation-card {
    padding: 18px;
  }

  .reputation-card h3 {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .reputation-card p {
    font-size: 0.98rem;
  }

  .service-card img,
  .gallery-card img,
  .panel-visual img,
  .content-band-visual img {
    height: 220px;
    min-height: 220px;
  }
}
