:root {
  --green: #00f044;
  --green-dark: #0aa039;
  --charcoal: #222423;
  --ink: #111513;
  --muted: #5d6661;
  --paper: #f6f7f3;
  --line: #dfe4dc;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 21, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(34, 36, 35, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand img {
  width: clamp(184px, 22vw, 230px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 26px);
  font-size: 0.95rem;
}

.nav a,
.call-button,
.primary-action,
.secondary-action {
  text-decoration: none;
}

.call-button,
.primary-action,
.secondary-action,
.form-submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 12px clamp(14px, 2vw, 18px);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.call-button,
.primary-action,
.form-submit {
  color: #06120a;
  background: var(--green);
}

.secondary-action {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(40px, 7vw, 86px) clamp(16px, 4vw, 56px);
  background: linear-gradient(115deg, var(--charcoal) 0%, #151917 58%, #f6f7f3 58%);
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
}

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

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #dce5dd;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1;
  margin-top: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-strip div {
  padding: 24px clamp(16px, 4vw, 56px);
  background: var(--white);
}

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

.quick-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(44px, 7vw, 84px) clamp(16px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card p,
.workshop-band p,
.contact-band p,
.lead-form label {
  color: var(--muted);
}

.workshop-band,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 84px) clamp(16px, 4vw, 56px);
  background: var(--charcoal);
  color: var(--white);
}

.workshop-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.funnel-section {
  background: #edf1eb;
}

.funnel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}

.lead-form,
.chat-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form label:nth-of-type(3),
.lead-form label:nth-of-type(6),
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #c9d2c9;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  font: inherit;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.chat-panel {
  overflow: hidden;
}

.chat-header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: var(--charcoal);
}

.chat-header img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.chat-header span {
  display: block;
  color: #c8d5ca;
  font-size: 0.88rem;
}

.chat-log {
  display: flex;
  min-height: 300px;
  max-height: 380px;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
}

.message {
  width: fit-content;
  max-width: 88%;
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #eef4ee;
}

.message.user {
  align-self: flex-end;
  color: #06120a;
  background: var(--green);
}

.chat-options {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-options button {
  min-height: 42px;
  border: 1px solid #c8d2c8;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.chat-options input,
.chat-options textarea {
  margin-bottom: 8px;
}

.contact-band {
  background: #151917;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(16px, 4vw, 56px);
  color: #c8d5ca;
  background: var(--ink);
}

@media (max-width: 980px) {
  .hero,
  .quick-strip,
  .workshop-band,
  .funnel-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    order: 3;
  }

  .hero {
    background: var(--charcoal);
  }

  .hero-media {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    max-width: 560px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-actions {
    order: 3;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px 16px 14px;
  }

  .brand img {
    width: min(100%, 210px);
    height: 48px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    font-size: 0.88rem;
  }

  .nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
  }

  .call-button,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-media img,
  .workshop-band img {
    aspect-ratio: 4 / 3;
  }

  .quick-strip div,
  .section,
  .workshop-band,
  .contact-band {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .lead-form {
    gap: 14px;
    padding: 16px;
  }

  .lead-form label:nth-of-type(3),
  .lead-form label:nth-of-type(6),
  .form-submit,
  .form-status {
    grid-column: auto;
  }

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

  .chat-log {
    min-height: 260px;
    max-height: 340px;
  }
}

@media (max-width: 390px) {
  .nav {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 42px;
  }

  .chat-header {
    align-items: flex-start;
  }
}
