:root {
  --ink: #1F1F1F;
  --muted: #5f5f5f;
  --line: #A5A19D;
  --paper: #ffffff;
  --white: #ffffff;
  --orange: #FC8000;
  --green: #03FE02;
  --peach: #FFBC7D;
  --dark-glass: rgba(51, 45, 36, 0.62);
  --shadow: 0 22px 60px rgba(31, 31, 31, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand, .nav, .hero-actions, .trust-row, .footer-links, .dashboard-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.nav {
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav a { text-decoration: none; }
.nav-call {
  padding: 11px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.86), rgba(51, 45, 36, 0.58) 42%, rgba(31, 31, 31, 0.10));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding: 52px 0 110px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  font-family: Helvetica, Arial, sans-serif;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
  font-family: Oswald, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

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

.hero-copy {
  max-width: 620px;
  color: rgba(255,255,255,0.9);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary { background: var(--orange); color: var(--white); }
.secondary { background: rgba(255,255,255,0.14); color: var(--white); border: 1px solid rgba(255,255,255,0.34); }

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.trust-row div {
  min-width: 126px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 6px;
}

.trust-row dt {
  margin-bottom: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-row dd {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.intro-band, .service-band, .about-band, .quote-band, .media-grid {
  padding: clamp(56px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
}

.intro-band p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 0;
}

.media-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.08);
}

.media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.media-grid div {
  padding: 22px;
}

.media-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-head h2 { margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--orange);
  font-weight: 900;
}

.service-grid p, .about-band p, .quote-copy p, .thanks-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  background: var(--orange);
  color: var(--white);
}

.about-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

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

.proof-grid p { color: rgba(255,255,255,0.82); }
.proof-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  max-width: 1220px;
  margin: 0 auto;
}

.quote-copy {
  align-self: center;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-stack a { color: var(--orange); }

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input, .quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  font: inherit;
  background: #fbfdfc;
}

.full { grid-column: 1 / -1; }
.form-note {
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer span { color: rgba(255,255,255,0.72); }
.footer-links { gap: 16px; font-weight: 800; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.thanks-card {
  width: min(620px, 100%);
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-page {
  background: var(--paper);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.dashboard-header h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 62px);
}

.dashboard-header p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,0.74);
}

.dashboard-actions {
  gap: 12px;
  flex-wrap: wrap;
  align-self: flex-start;
}

.dark {
  color: var(--white);
}

.dashboard-main {
  width: min(1220px, calc(100% - 36px));
  margin: 28px auto 64px;
}

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

.stat-grid article, .dashboard-tables article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 29, 0.08);
}

.stat-grid article {
  padding: 20px;
}

.stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--orange);
  font-size: 40px;
}

.dashboard-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dashboard-tables article {
  padding: 20px;
}

.dashboard-tables h2 {
  font-size: 24px;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.activity-list {
  display: grid;
  gap: 10px;
}

.activity-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.activity-item span, .activity-item small {
  color: var(--muted);
}

.blocked {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .site-header, .site-footer, .about-band, .quote-band, .intro-band, .dashboard-header {
    grid-template-columns: 1fr;
  }

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

  .menu-button { display: inline-flex; align-items: center; }
  .nav {
    display: none;
    width: 100%;
    flex-wrap: wrap;
  }
  .nav.is-open { display: flex; }
  .section-head, .service-grid, .media-grid, .stat-grid, .dashboard-tables { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 76px; }
  .hero-overlay { background: rgba(10, 24, 18, 0.68); }
  .about-band img { min-height: 300px; }
}

@media (max-width: 620px) {
  .hero { min-height: 760px; }
  .hero-content { margin-left: 18px; }
  h1 { font-size: 42px; }
  .quote-form { grid-template-columns: 1fr; }
  .nav-call { width: 100%; text-align: center; justify-content: center; }
}
