:root {
  --bg: #0d120f;
  --bg-soft: #121914;
  --panel: rgba(22, 28, 23, 0.82);
  --panel-strong: rgba(18, 24, 20, 0.94);
  --panel-border: rgba(173, 198, 156, 0.18);
  --panel-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --text: #edf3eb;
  --muted: #b8c8b6;
  --muted-strong: #d5dfd1;
  --accent: #90b26f;
  --accent-2: #6f8e50;
  --wood-1: #2b2018;
  --wood-2: #3d2b20;
  --wood-3: #5a3f2f;
  --gold: #c2b084;
  --danger: #dc8f7c;
  --success: #99c28b;
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1240px;
  --nav-height: 82px;
  --blur: blur(18px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(106, 130, 83, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(85, 62, 42, 0.24), transparent 28%),
    linear-gradient(180deg, #0b100d 0%, #0f1511 34%, #111712 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,0.01) 2px 3px, transparent 3px 100px);
  opacity: 0.55;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding: 14px 0 0;
}

.header-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 27, 22, 0.88), rgba(14, 20, 16, 0.88));
  border: 1px solid rgba(163, 190, 145, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: var(--blur);
  position: relative;
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.32));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 520px);
}

.nav-toggle {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(156, 182, 138, 0.1);
  margin-left: auto;
}

.nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  background: linear-gradient(180deg, rgba(144, 178, 111, 0.18), rgba(144, 178, 111, 0.1));
  color: #fff;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #95b97b 0%, #78965b 100%);
  color: #10150f;
  box-shadow: 0 14px 28px rgba(112, 144, 79, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(112, 144, 79, 0.32);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: rgba(171, 195, 151, 0.18);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
}

.btn-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.92rem;
}

main {
  padding-bottom: 48px;
}

section {
  position: relative;
  padding: 34px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9e9d0;
  background: rgba(145, 178, 111, 0.12);
  border: 1px solid rgba(145, 178, 111, 0.16);
}

.copy-muted,
.muted {
  color: var(--muted);
}

.panel,
.admin-card,
.login-card,
.value-card,
.service-card,
.process-step,
.example-card,
.contact-card,
.pricing-step,
.band-card,
.service-editor,
.step-editor,
.option-editor,
.quote-card,
.detail-card,
.mini-card,
.filter-chip,
.hero-note-card {
  background: linear-gradient(180deg, rgba(24, 30, 25, 0.94), rgba(16, 22, 18, 0.92));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--panel-shadow);
}

.panel,
.admin-card,
.login-card {
  padding: 28px;
}

.hero-scene {
  padding-top: 20px;
}

.hero-stage {
  position: relative;
  min-height: min(92svh, 980px);
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(167, 190, 145, 0.16);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.07), transparent 26%),
    linear-gradient(180deg, #171a16 0%, #111511 26%, #0e1210 100%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(120, 150, 95, 0.12), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 14%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.14));
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 34%;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.42), transparent 68%),
    linear-gradient(180deg, rgba(84, 55, 34, 0.05), rgba(35, 24, 18, 0.68));
  filter: blur(14px);
  pointer-events: none;
}

.scene-shell {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.scene-backdrop,
.scene-floor,
.scene-copy,
.scene-actions,
.scene-price-cards,
.scene-contact-bar,
.scene-right-note,
.scene-logo-mark,
.hero-plant,
.hero-plant-shadow,
.spot,
.scene-wood-panel {
  position: absolute;
}

.scene-backdrop {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.16) 30%, rgba(0,0,0,0.22) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.03) 18%, rgba(255,255,255,0.03) 45%, rgba(0,0,0,0.12) 100%),
    repeating-linear-gradient(90deg, #2b2018 0 42px, #38291f 42px 45px, #312319 45px 87px, #473225 87px 90px);
  inset: 10% 5.5% 18% 5.5%;
  border-radius: 34px;
  border: 1px solid rgba(199, 171, 130, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    inset 0 70px 100px rgba(255,255,255,0.03),
    inset 0 -30px 70px rgba(0,0,0,0.26);
}

.scene-wood-panel {
  inset: 16% 9% 22% 9%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 12%, transparent 88%, rgba(0,0,0,0.18)),
    repeating-linear-gradient(90deg, #2a1f18 0 55px, #3b2a20 55px 59px, #33251b 59px 114px, #51382b 114px 118px, #2f2219 118px 180px);
  border: 1px solid rgba(194, 174, 135, 0.08);
  box-shadow:
    inset 0 60px 120px rgba(255,255,255,0.03),
    inset 0 -30px 90px rgba(0,0,0,0.33),
    0 24px 60px rgba(0,0,0,0.22);
}

.scene-floor {
  left: -4%;
  right: -4%;
  bottom: -6%;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.15)),
    repeating-linear-gradient(90deg, #6f5642 0 74px, #593f2d 74px 79px, #7c604a 79px 152px, #4a3628 152px 157px);
  clip-path: polygon(0 34%, 100% 14%, 100% 100%, 0 100%);
  transform: perspective(1000px) rotateX(76deg) translateY(48px);
  transform-origin: center top;
  opacity: 0.74;
  filter: blur(0.2px);
}

.spot {
  top: 6%;
  width: 7.4%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #f0f0e8 0 16%, #c8c3b0 17% 34%, rgba(22,22,18,0.95) 35% 100%);
  box-shadow: 0 10px 22px rgba(0,0,0,0.26);
}

.spot::after {
  content: "";
  position: absolute;
  width: 280%;
  height: 780%;
  left: 50%;
  top: 60%;
  transform: translateX(-50%) skewX(-4deg);
  background: linear-gradient(180deg, rgba(255, 244, 206, 0.26), rgba(255,255,255,0.04) 42%, transparent 100%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  filter: blur(4px);
  opacity: 0.9;
}

.spot-a { left: 16%; }
.spot-b { left: 42%; }
.spot-c { left: 68%; }

.scene-logo-mark {
  top: 12.5%;
  left: 10.5%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(8, 12, 10, 0.34);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}

.scene-logo-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.9;
}

.scene-logo-mark span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dce7d6;
}

.scene-copy {
  left: 13%;
  top: 25%;
  width: min(54%, 720px);
  z-index: 5;
  transform: translateZ(60px);
}

.scene-word {
  margin: 0;
  font-size: clamp(3.1rem, 9vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fb985;
  text-shadow:
    0 1px 0 #6f8659,
    0 2px 0 #6b8154,
    0 3px 0 #677b50,
    0 4px 0 #62754b,
    0 5px 0 #5d7048,
    0 6px 0 #596b45,
    0 7px 0 #546540,
    0 8px 0 #51603d,
    0 9px 0 #4c5a39,
    0 10px 0 #455233,
    0 18px 38px rgba(0,0,0,0.44),
    -18px 24px 46px rgba(0,0,0,0.12);
}

.scene-subtitle {
  margin-top: 22px;
  max-width: 640px;
  color: rgba(245, 248, 239, 0.9);
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,0.34);
}

.scene-actions {
  right: 7%;
  top: 26%;
  width: min(280px, 24%);
  z-index: 8;
  display: grid;
  gap: 14px;
}

.design-panel {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 25, 20, 0.88), rgba(13, 17, 14, 0.92));
  border: 1px solid rgba(174, 198, 156, 0.14);
  box-shadow: 0 22px 36px rgba(0,0,0,0.3);
  transform: translateZ(48px);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.design-panel:hover {
  transform: translateY(-2px) translateZ(48px);
  border-color: rgba(174, 198, 156, 0.28);
}

.design-panel strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.design-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.design-panel.primary {
  background: linear-gradient(180deg, rgba(151, 187, 118, 0.88), rgba(114, 142, 87, 0.92));
  color: #131812;
}

.design-panel.primary span {
  color: rgba(19, 24, 18, 0.84);
}

.scene-price-cards {
  left: 9.5%;
  right: 9.5%;
  bottom: 12%;
  z-index: 7;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 16px;
}

.hero-note-card {
  padding: 18px 18px 16px;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(20, 25, 21, 0.78), rgba(13, 17, 14, 0.84));
}

.hero-note-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.hero-note-card span,
.hero-note-card p {
  color: var(--muted);
  margin: 0;
}

.scene-right-note {
  right: 8.5%;
  bottom: 29%;
  width: min(26%, 330px);
  z-index: 7;
  padding: 18px 18px 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 24, 20, 0.68), rgba(10, 14, 11, 0.78));
  border: 1px solid rgba(163, 190, 145, 0.1);
  box-shadow: 0 24px 42px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}

.scene-right-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.scene-right-note p,
.scene-right-note div {
  color: var(--muted);
  margin: 0;
}

.hero-plant {
  left: 78%;
  bottom: 14%;
  width: 12%;
  height: 31%;
  z-index: 6;
  transform: translateZ(24px);
}

.hero-plant::before,
.hero-plant::after {
  content: "";
  position: absolute;
}

.hero-plant::before {
  left: 50%;
  bottom: 0;
  width: 46%;
  height: 26%;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, #2f241c, #1c1612);
  transform: translateX(-50%);
  box-shadow: inset 0 6px 10px rgba(255,255,255,0.05);
}

.hero-plant::after {
  left: 12%;
  right: 12%;
  top: 0;
  bottom: 18%;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(151, 187, 118, 0.84), transparent 42%),
    radial-gradient(ellipse at 58% 12%, rgba(108, 146, 77, 0.9), transparent 35%),
    radial-gradient(ellipse at 76% 44%, rgba(92, 129, 66, 0.94), transparent 34%),
    radial-gradient(ellipse at 34% 56%, rgba(111, 152, 80, 0.9), transparent 34%),
    radial-gradient(ellipse at 48% 72%, rgba(83, 120, 58, 0.88), transparent 30%);
  filter: blur(0.4px);
}

.hero-plant-shadow {
  left: 72%;
  bottom: 9%;
  width: 18%;
  height: 9%;
  background: radial-gradient(circle, rgba(0,0,0,0.42), transparent 68%);
  z-index: 4;
}

.scene-contact-bar {
  left: 10.5%;
  top: 15.5%;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateZ(42px);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(9, 14, 11, 0.42);
  border: 1px solid rgba(255,255,255,0.07);
  color: #eff5ec;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

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

.detail-card,
.value-card,
.service-card,
.process-step,
.example-card,
.contact-card,
.quote-card {
  padding: 24px;
}

.detail-card strong,
.value-card h3,
.service-card h3,
.process-step h3,
.example-card h3,
.contact-card h3,
.quote-card h3 {
  margin: 0 0 10px;
}

.detail-card p,
.value-card p,
.service-card p,
.process-step p,
.example-card p,
.contact-card p,
.quote-card p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-head h1,
.section-head h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-head p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.quick-grid,
.value-grid,
.service-grid,
.process-grid,
.contact-grid,
.quote-grid,
.example-grid {
  display: grid;
  gap: 18px;
}

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

.value-grid,
.service-grid,
.process-grid,
.contact-grid,
.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card .meta,
.example-meta,
.mini-card span {
  display: inline-flex;
  margin-top: 14px;
  color: #dce7d4;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-card .number,
.quote-number,
.summary-number {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero {
  padding-top: 24px;
}

.page-shell {
  display: grid;
  gap: 18px;
}

.page-hero .hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 44px;
  background:
    radial-gradient(circle at top right, rgba(144, 178, 111, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(31, 39, 33, 0.96), rgba(17, 23, 19, 0.96));
  border: 1px solid rgba(164, 190, 146, 0.16);
  box-shadow: var(--panel-shadow);
}

.page-hero .hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(93, 65, 44, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 34%);
  pointer-events: none;
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid rgba(163, 190, 145, 0.12);
  padding: 0;
  background: transparent;
}

.filter-chip button,
.filter-chip,
.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted-strong);
}

.filter-button {
  border: 1px solid rgba(163, 190, 145, 0.12);
  background: rgba(255,255,255,0.03);
}

.filter-button.active,
.filter-button:hover {
  background: rgba(144, 178, 111, 0.16);
  border-color: rgba(163, 190, 145, 0.24);
}

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

.example-card {
  overflow: hidden;
}

.example-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.example-card .category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #dce7d4;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-page {
  padding-top: 24px;
}

.pricing-wrap {
  padding: 24px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 18px;
  align-items: start;
}

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

.service-option {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  padding: 20px 18px;
  min-height: 150px;
  border-radius: 24px;
  border: 1px solid rgba(163, 190, 145, 0.12);
  color: var(--text);
  background: linear-gradient(180deg, rgba(24, 30, 25, 0.96), rgba(16, 22, 18, 0.94));
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

.service-option strong {
  display: block;
  margin-bottom: 8px;
}

.service-option span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-option.active,
.service-option:hover {
  border-color: rgba(163, 190, 145, 0.28);
  background: linear-gradient(180deg, rgba(146, 180, 112, 0.18), rgba(17, 23, 18, 0.96));
}

.pricing-steps {
  display: grid;
  gap: 16px;
}

.pricing-step {
  padding: 22px;
}

.label-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}

.label-row h3 {
  margin: 0 0 6px;
}

.label-row p,
.label-row .meta {
  margin: 0;
  color: var(--muted);
}

.option-grid {
  display: grid;
  gap: 12px;
}

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

.option-card {
  display: block;
  position: relative;
  padding: 16px 16px 16px 52px;
  border-radius: 20px;
  border: 1px solid rgba(163, 190, 145, 0.12);
  background: rgba(255,255,255,0.02);
  min-height: 100%;
}

.option-card input {
  position: absolute;
  left: 16px;
  top: 18px;
  accent-color: var(--accent);
}

.option-card strong {
  display: block;
  margin-bottom: 6px;
}

.option-card small,
.option-card .option-price {
  display: block;
  color: var(--muted);
}

.option-card .option-price {
  margin-top: 12px;
  color: #d9e7d2;
  font-weight: 600;
}

.option-card.active,
.option-card:hover {
  background: rgba(144, 178, 111, 0.1);
  border-color: rgba(163, 190, 145, 0.26);
}

.pricing-summary {
  position: sticky;
  top: calc(var(--nav-height) + 34px);
  padding: 24px;
}

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

.summary-list li {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--muted-strong);
}

.summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mobile-estimator-bar {
  display: none;
}

.contact-layout,
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.contact-card .big-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(163, 190, 145, 0.14);
  font-weight: 600;
}

.quote-grid {
  margin-top: 18px;
}

.footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(163, 190, 145, 0.14);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.footer-copy {
  color: var(--muted);
  margin-top: 6px;
}

.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted-strong);
}

.sticky-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 44;
}

.sticky-contact .inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(10, 14, 11, 0.88);
  border: 1px solid rgba(163, 190, 145, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
}

.sticky-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted-strong);
}

.sticky-contact a.primary {
  background: linear-gradient(180deg, #95b97b 0%, #78965b 100%);
  color: #10150f;
}

.flash {
  margin-bottom: 18px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(163, 190, 145, 0.14);
  background: rgba(255,255,255,0.03);
}

.flash.success {
  border-color: rgba(120, 168, 105, 0.24);
  background: rgba(120, 168, 105, 0.12);
}

.flash.error {
  border-color: rgba(209, 127, 105, 0.24);
  background: rgba(209, 127, 105, 0.12);
}

.admin-shell,
.login-wrap {
  padding-top: 24px;
}

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-card-grid,
.inline-grid-2,
.inline-grid-3,
.inline-grid-4 {
  display: grid;
  gap: 14px;
}

.admin-card-grid,
.inline-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.inline-grid-2,
.login-wrap .admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-wrap {
  display: flex;
  justify-content: center;
}

.login-card {
  width: min(100%, 620px);
}

.login-field,
.admin-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-field span,
.admin-field span,
.admin-field .label,
.title-group span {
  color: var(--muted);
  font-size: 0.92rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(163, 190, 145, 0.14);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 13px 14px;
}

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

.editor-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.title-group strong {
  display: block;
  margin-bottom: 5px;
}

.service-list,
.step-list,
.option-list,
.band-list {
  display: grid;
  gap: 16px;
}

.switch-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
}

.raw-json {
  min-height: 360px;
}

.empty-state {
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(163, 190, 145, 0.18);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
}

.hidden-mobile {
  display: block;
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: auto;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(163, 190, 145, 0.14);
    color: var(--text);
    background: rgba(255,255,255,0.03);
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    order: 4;
    margin-left: 0;
    border-radius: 22px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px;
  }

  .nav.open {
    display: flex;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-stage {
    min-height: auto;
  }

  .scene-backdrop,
  .scene-wood-panel {
    inset: 12% 4% 35% 4%;
  }

  .scene-floor {
    height: 30%;
    bottom: 2%;
  }

  .scene-copy {
    width: 64%;
    top: 24%;
  }

  .scene-actions {
    width: 30%;
    top: 24%;
    right: 6%;
  }

  .scene-price-cards {
    grid-template-columns: 1fr 1fr;
    bottom: 7%;
  }

  .scene-right-note {
    display: none;
  }

  .hero-overview,
  .quick-grid,
  .value-grid,
  .service-grid,
  .process-grid,
  .contact-grid,
  .quote-grid,
  .example-grid,
  .pricing-layout,
  .contact-layout,
  .two-col,
  .admin-card-grid,
  .inline-grid-4,
  .inline-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  body {
    background: linear-gradient(180deg, #0b100d 0%, #0f1511 50%, #101612 100%);
  }

  .site-header {
    top: 8px;
  }

  .header-inner {
    padding: 14px;
  }

  .brand-copy span {
    max-width: 56vw;
  }

  .header-actions {
    display: none;
  }

  .hero-stage {
    padding-bottom: 22px;
  }

  .scene-backdrop,
  .scene-wood-panel {
    inset: 72px 10px 32% 10px;
    border-radius: 28px;
  }

  .scene-floor {
    display: none;
  }

  .scene-logo-mark {
    top: 94px;
    left: 22px;
  }

  .scene-contact-bar {
    display: none;
  }

  .scene-copy,
  .scene-actions,
  .scene-price-cards,
  .hero-plant,
  .hero-plant-shadow,
  .scene-right-note,
  .spot,
  .scene-shell .desktop-only {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .scene-copy {
    padding: 164px 22px 0;
  }

  .scene-word {
    font-size: clamp(2.4rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .scene-subtitle {
    margin-top: 16px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    max-width: none;
  }

  .scene-actions {
    padding: 22px 22px 0;
    display: grid;
    gap: 12px;
  }

  .design-panel {
    transform: none !important;
  }

  .scene-price-cards {
    padding: 22px 22px 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-note-card:last-child {
    margin-bottom: 16px;
  }

  .hero-plant {
    position: absolute;
    width: 94px;
    height: 140px;
    left: auto;
    right: 18px;
    bottom: 46px;
    opacity: 0.84;
  }

  .hero-plant-shadow {
    display: none;
  }

  .hero-overview,
  .quick-grid,
  .value-grid,
  .service-grid,
  .process-grid,
  .contact-grid,
  .quote-grid,
  .example-grid,
  .contact-layout,
  .two-col,
  .admin-card-grid,
  .inline-grid-4,
  .inline-grid-3,
  .inline-grid-2 {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-banner,
  .panel,
  .admin-card,
  .login-card,
  .pricing-wrap {
    padding: 22px;
  }

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-summary {
    display: none;
  }

  .mobile-estimator-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 42;
    display: block;
    padding: 14px 14px 12px;
    border-radius: 22px;
    background: rgba(10, 14, 11, 0.94);
    border: 1px solid rgba(163, 190, 145, 0.16);
    box-shadow: 0 24px 48px rgba(0,0,0,0.34);
    backdrop-filter: blur(16px);
  }

  .mobile-estimator-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .mobile-estimator-bar .summary-number {
    font-size: 2rem;
  }

  .mobile-estimator-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .mobile-estimator-bar .btn {
    width: 100%;
    margin-top: 12px;
  }

  .sticky-contact {
    display: none;
  }

  main {
    padding-bottom: 140px;
  }

  .footer-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Updated homepage hero */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-premium-section {
  padding-top: 20px;
}

.hero-premium-wrap {
  display: grid;
  gap: 34px;
}

.hero-banner-new {
  position: relative;
  min-height: min(74svh, 780px);
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(167, 190, 145, 0.16);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
  background: #0f1511;
}

.hero-image-layer,
.hero-overlay-layer,
.hero-badge-new,
.hero-floating-nav,
.hero-corner-card,
.hero-banner-copy {
  position: absolute;
}

.hero-image-layer {
  inset: 0;
  background-image: url('hero-workshop.webp');
  background-size: cover;
  background-position: center top;
  transform-origin: center center;
}

.hero-overlay-layer {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 11, 0.14) 0%, rgba(10, 13, 11, 0.04) 22%, rgba(10, 13, 11, 0.24) 66%, rgba(8, 10, 9, 0.82) 100%),
    radial-gradient(circle at 18% 18%, rgba(144, 178, 111, 0.22), transparent 18%),
    radial-gradient(circle at 84% 28%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-badge-new {
  top: 28px;
  left: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(9, 12, 10, 0.42);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.hero-badge-new img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-badge-new span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #edf3eb;
}

.hero-floating-nav {
  top: 28px;
  right: 28px;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 999px;
  background: rgba(9, 12, 10, 0.42);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.hero-floating-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #eef4ec;
  font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-floating-nav a:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.hero-corner-card {
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(360px, calc(100% - 56px));
  padding: 18px 18px 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(16, 21, 17, 0.78), rgba(11, 15, 12, 0.9));
  border: 1px solid rgba(171, 195, 151, 0.16);
  box-shadow: 0 28px 50px rgba(0,0,0,0.34);
  backdrop-filter: blur(16px);
}

.mini-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dbe7d2;
}

.hero-corner-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-corner-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-corner-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-corner-card strong,
.hero-corner-card span {
  display: block;
}

.hero-corner-card strong {
  font-size: 1rem;
}

.hero-corner-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-banner-copy {
  left: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(540px, calc(100% - 440px));
}

.hero-banner-copy .kicker {
  margin-bottom: 14px;
}

.hero-banner-copy p {
  margin: 0;
  max-width: 520px;
  color: rgba(238, 244, 236, 0.9);
  font-size: 1rem;
  text-shadow: 0 14px 28px rgba(0,0,0,0.32);
}

.hero-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.hero-actions-grid .design-panel {
  min-height: 132px;
  padding: 20px 20px 18px;
  border-radius: 24px;
}

.hero-actions-grid .design-panel strong {
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.compact-head h2 {
  max-width: 920px;
}

.clear-grid {
  gap: 18px;
}

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

.emphasis-card {
  border-color: rgba(144, 178, 111, 0.26);
  background: linear-gradient(180deg, rgba(29, 38, 30, 0.96), rgba(16, 23, 18, 0.94));
}

.clear-two-col {
  align-items: stretch;
}

.panel-accent {
  background:
    radial-gradient(circle at top right, rgba(144, 178, 111, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(24, 30, 25, 0.96), rgba(16, 22, 18, 0.94));
}

.process-mini-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.process-mini-grid .mini-card {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(171, 195, 151, 0.16);
  background: rgba(255,255,255,0.025);
}

.process-mini-grid .mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.process-mini-grid .mini-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(171, 195, 151, 0.16);
  background: rgba(255,255,255,0.03);
}

.contact-line span {
  color: var(--muted);
}

.contact-line strong {
  text-align: right;
}

@media (max-width: 1180px) {
  .hero-banner-copy {
    width: min(470px, calc(100% - 410px));
  }

  .hero-actions-grid,
  .service-grid-home {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .hero-banner-new {
    min-height: 720px;
  }

  .hero-floating-nav {
    top: auto;
    bottom: 22px;
    left: 22px;
    right: auto;
  }

  .hero-banner-copy {
    left: 22px;
    right: 22px;
    width: auto;
    bottom: 108px;
  }

  .hero-corner-card {
    left: 22px;
    right: 22px;
    width: auto;
    bottom: 96px;
    max-width: none;
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-premium-section {
    padding-top: 14px;
  }

  .hero-banner-new {
    min-height: 520px;
  }

  .hero-image-layer {
    background-image: url('hero-workshop-mobile.webp');
    background-position: center top;
  }


  .hero-banner-new {
    border-radius: 28px;
  }

  .hero-badge-new {
    top: 18px;
    left: 18px;
    right: 18px;
    width: auto;
  }

  .hero-badge-new span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-floating-nav {
    display: none;
  }

  .hero-banner-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .hero-banner-copy .kicker {
    padding: 7px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-banner-copy p {
    font-size: 0.92rem;
    max-width: none;
  }

  .hero-corner-card {
    display: none;
  }

  .hero-actions-grid,
  .service-grid-home,
  .clear-grid,
  .clear-two-col {
    grid-template-columns: 1fr;
  }

  .contact-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-line strong {
    text-align: left;
  }
}


.site-footer-simple {
  padding: 10px 0 28px;
}

.site-footer-simple .container {
  border-top: 1px solid rgba(163, 190, 145, 0.14);
  padding-top: 18px;
}

.site-footer-simple p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.site-footer,
.sticky-contact {
  display: none !important;
}


@media (max-width: 480px) {
  .hero-banner-new {
    min-height: 470px;
  }

  .hero-banner-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-banner-copy p {
    font-size: 0.88rem;
  }
}
