:root {
  --ink: #122314;
  --forest: #143a1f;
  --forest-2: #0a2817;
  --leaf: #3f6b2b;
  --palm: #1f7a3a;
  --mango: #f5a332;
  --coral: #f36a4f;
  --gold: #f0b63d;
  --gold-light: #ffe49a;
  --wood: #8a4f1f;
  --wood-dark: #4b2811;
  --cream: #fff4cf;
  --paper: #fffaf0;
  --mist: #edf3df;
  --ocean: #1d8791;
  --muted: #66705f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 40, 23, 0.22);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 163, 50, 0.34), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(29, 135, 145, 0.24), transparent 26rem),
    linear-gradient(135deg, #fff4cf 0%, #f9b94a 24%, #f36a4f 47%, #1d8791 74%, #1f7a3a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 244, 207, 0.22) 0 4px, transparent 5px),
    radial-gradient(ellipse at 56px 28px, rgba(20, 58, 31, 0.16) 0 8px, transparent 9px),
    radial-gradient(ellipse at 30px 62px, rgba(255, 244, 207, 0.18) 0 7px, transparent 8px);
  background-size: 96px 96px;
  content: "";
  opacity: 0.82;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--forest);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 12px 34px rgba(18, 35, 20, 0.16);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.2));
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  max-width: 280px;
  overflow: hidden;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header.scrolled .brand small,
.site-header.menu-open .brand small {
  color: var(--wood);
}

.site-nav {
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 228, 154, 0.18);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible,
.site-header.menu-open .site-nav a:hover,
.site-header.menu-open .site-nav a:focus-visible {
  background: rgba(63, 107, 43, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 244, 207, 0.45);
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 244, 207, 0.12);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: 150px clamp(18px, 5vw, 72px) 78px;
  overflow: hidden;
  color: var(--cream);
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(10, 40, 23, 0.92), rgba(20, 58, 31, 0.55) 44%, rgba(243, 106, 79, 0.24)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 36%, rgba(245, 163, 50, 0.62), transparent 18rem),
    radial-gradient(circle at 86% 60%, rgba(29, 135, 145, 0.34), transparent 19rem),
    linear-gradient(0deg, rgba(10, 40, 23, 0.92), rgba(10, 40, 23, 0) 58%);
}

.hero-content,
.hero-badge,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-light);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8.5vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 5px 0 rgba(75, 40, 17, 0.45), 0 18px 40px rgba(0, 0, 0, 0.34);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 244, 207, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.trust-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 0 0 28px;
}

.trust-labels span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 228, 154, 0.32);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(10, 40, 23, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 244, 207, 0.08);
  font-size: 0.9rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-actions,
.range-row,
.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--forest-2);
  background: linear-gradient(135deg, var(--gold-light), var(--mango) 52%, #ffd06a);
  box-shadow: 0 14px 28px rgba(245, 163, 50, 0.34);
}

.btn.secondary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  box-shadow: inset 0 0 0 1px rgba(255, 228, 154, 0.25);
}

.hero-badge {
  justify-self: center;
  width: min(460px, 100%);
  padding: clamp(10px, 2vw, 18px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 228, 154, 0.34), rgba(20, 58, 31, 0.08) 65%);
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.38));
}

.hero-badge img {
  object-fit: contain;
}

.hero-panel {
  grid-column: 1 / -1;
  width: min(560px, 100%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 228, 154, 0.36);
  border-radius: 8px;
  background: rgba(20, 58, 31, 0.58);
  box-shadow: inset 0 0 0 1px rgba(10, 40, 23, 0.18);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 244, 207, 0.78);
}

.hero-panel strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--gold-light);
  font-size: 1.45rem;
  line-height: 1.1;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(18, 35, 20, 0.16);
}

.quick-strip div {
  min-height: 126px;
  padding: 28px clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 106, 79, 0.2), transparent 8rem),
    linear-gradient(135deg, rgba(255, 228, 154, 0.36), transparent 42%),
    var(--paper);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 1.12rem;
}

.quick-strip span,
.section-heading p,
.estimate-copy p,
.contact-copy p,
.work-item p,
.service-card p {
  color: var(--muted);
}

.section,
.split-section,
.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section::before,
.split-section::before,
.contact-section::before {
  position: absolute;
  inset: 22px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(31, 122, 58, 0.12) 0 7px, transparent 8px),
    radial-gradient(ellipse at 17% 22%, rgba(31, 122, 58, 0.12) 0 9px, transparent 10px),
    radial-gradient(circle at 82% 15%, rgba(243, 106, 79, 0.15) 0 9px, transparent 10px),
    radial-gradient(circle at 86% 19%, rgba(245, 163, 50, 0.14) 0 8px, transparent 9px);
  background-size: 180px 180px;
  content: "";
  opacity: 0.38;
}

#services {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 228, 154, 0.32), transparent 22rem),
    radial-gradient(circle at 86% 24%, rgba(29, 135, 145, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(245, 163, 50, 0.6), rgba(243, 106, 79, 0.42) 58%, rgba(29, 135, 145, 0.24));
}

#services::before {
  opacity: 0.22;
}

.section>*,
.split-section>*,
.contact-section>* {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 910px;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(91, 63, 34, 0.5);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg,
      rgba(72, 50, 25, 0.14) 0 1px,
      rgba(255, 244, 212, 0.12) 2px 3px,
      transparent 4px 18px),
    repeating-linear-gradient(2deg,
      transparent 0 12px,
      rgba(72, 50, 25, 0.08) 13px 15px,
      transparent 16px 34px),
    radial-gradient(ellipse at 18% 30%, rgba(93, 68, 38, 0.3), transparent 18%),
    radial-gradient(ellipse at 76% 66%, rgba(255, 244, 212, 0.4), transparent 26%),
    linear-gradient(180deg, #d8ba7e 0%, #c79b5f 48%, #b4854d 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 219, 0.42),
    inset 0 12px 18px rgba(255, 244, 212, 0.22),
    inset 0 -18px 24px rgba(91, 63, 34, 0.22),
    0 4px 0 rgba(93, 68, 38, 0.52),
    0 15px 28px rgba(18, 35, 20, 0.14);
  transform: rotate(var(--tilt, -0.35deg));
}

.service-card:nth-child(2n) {
  --tilt: 0.28deg;
}

.service-card:nth-child(3n) {
  --tilt: -0.18deg;
}

.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 246, 219, 0.32), transparent 18%, rgba(78, 52, 23, 0.14) 72%, transparent);
  content: "";
}

.service-card::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(91, 63, 34, 0.32);
  border-radius: 6px;
  box-shadow: inset 0 0 22px rgba(91, 63, 34, 0.16);
  content: "";
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border: 2px solid rgba(68, 45, 20, 0.82);
  border-radius: 50%;
  color: var(--forest);
  background: linear-gradient(180deg, #fff4cf, #f5c762);
  font-size: 1.45rem;
  font-weight: 950;
  box-shadow: 0 5px 0 rgba(93, 68, 38, 0.24);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  color: #2f2a15;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255, 246, 219, 0.72);
}

.service-card p {
  position: relative;
  z-index: 1;
  color: #4d412c;
  font-weight: 650;
  text-shadow: 0 1px 0 rgba(255, 246, 219, 0.5);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(29, 135, 145, 0.18), transparent 20rem),
    linear-gradient(120deg, rgba(245, 163, 50, 0.35), rgba(255, 244, 207, 0.72) 42%, rgba(31, 122, 58, 0.14)),
    var(--cream);
}

.estimate-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

.estimate-tool,
.contact-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(75, 40, 17, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.estimate-tool label,
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--forest);
  font-weight: 850;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 58, 31, 0.28);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

select,
input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(240, 182, 61, 0.32);
  border-color: var(--wood);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--leaf);
}

.range-row {
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 18px;
}

.range-row output {
  min-width: 64px;
  font-weight: 950;
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
}

.checkbox-row input {
  min-height: auto;
  accent-color: var(--wood);
}

.estimate-result {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 58, 31, 0.16);
}

.estimate-result span {
  color: var(--muted);
}

.estimate-result strong {
  color: var(--wood-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  line-height: 1;
}

.work-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 106, 79, 0.18), transparent 18rem),
    var(--paper);
}

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

.work-item {
  overflow: hidden;
  border: 1px solid rgba(20, 58, 31, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 35, 20, 0.08);
}

.work-item img {
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.work-item div {
  padding: 20px;
}

.testimonial-band {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 10vw, 140px);
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 15%, rgba(245, 163, 50, 0.34), transparent 18rem),
    linear-gradient(90deg, rgba(10, 40, 23, 0.94), rgba(20, 58, 31, 0.72), rgba(29, 135, 145, 0.64)),
    url("https://images.unsplash.com/photo-1542259009477-d625272157b7?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.testimonial-band blockquote {
  max-width: 1000px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
}

.testimonial-band span {
  color: var(--gold-light);
  font-weight: 850;
}

.partner-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 60px);
  padding: clamp(42px, 6vw, 78px) clamp(18px, 6vw, 84px);
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 163, 50, 0.24), transparent 18rem),
    linear-gradient(120deg, var(--forest-2), var(--forest), var(--palm));
}

.partner-band h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
}

.partner-band .eyebrow {
  color: var(--gold-light);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.form-row label {
  flex: 1 1 220px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--forest);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: linear-gradient(90deg, var(--forest-2), var(--forest), var(--wood-dark));
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 76px);
  background:
    linear-gradient(rgba(0, 60, 45, 0.78), rgba(0, 30, 25, 0.9)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.privacy-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 950;
}

.privacy-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.privacy-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.privacy-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.privacy-card p {
  color: rgba(255, 244, 207, 0.9);
  font-size: 1.05rem;
}

.draft-ribbon {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 30;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--forest-2);
  background: linear-gradient(135deg, var(--gold-light), var(--mango));
  box-shadow: 0 12px 28px rgba(10, 40, 23, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 920px;
  }

  .hero-badge {
    order: -1;
    width: min(360px, 82vw);
    margin-top: 10px;
  }
}

.contact-copy .eyebrow {
  color: #ffe49a;
  font-weight: 900;
}

.contact-copy h2 {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

@media (max-width: 980px) {

  .quick-strip,
  .work-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

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

  .brand strong {
    max-width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(20, 58, 31, 0.12);
    border-radius: 8px;
    background: var(--paper);
    color: var(--forest);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 900px;
    padding-top: 116px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    text-shadow: 0 4px 0 rgba(75, 40, 17, 0.45), 0 12px 26px rgba(0, 0, 0, 0.32);
  }

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

  .quick-strip div {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .estimate-result {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }

  .partner-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-band .btn {
    width: 100%;
  }
}
