:root {
  color-scheme: light;
  --ink: #14202b;
  --muted: #596673;
  --line: #d7dde3;
  --paper: #f6f8fa;
  --white: #ffffff;
  --navy: #122435;
  --steel: #28445b;
  --amber: #f3a51f;
  --amber-dark: #b96f08;
  --signal: #f7d66b;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(18, 36, 53, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.skip-link {
  background: var(--amber);
  color: var(--ink);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -4rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 221, 227, 0.85);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  left: 0;
  padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  min-width: 14rem;
  text-decoration: none;
}

.brand-logo {
  background: var(--navy);
  border: 2px solid var(--amber);
  height: 3.2rem;
  object-fit: cover;
  object-position: 0 0;
  width: 12.8rem;
}

.site-footer strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  max-width: 6rem;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  justify-content: center;
}

nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

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

.header-actions {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
}

.header-phone {
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--ink);
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1rem;
  text-decoration: none;
}

.header-cta,
.button.primary {
  background: var(--amber);
  color: #231704;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 20, 30, 0.88), rgba(11, 20, 30, 0.58) 44%, rgba(11, 20, 30, 0.08)),
    linear-gradient(0deg, rgba(11, 20, 30, 0.45), rgba(11, 20, 30, 0.05));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 880px;
  padding: clamp(6rem, 12vw, 10rem) clamp(1rem, 6vw, 5.5rem) 4rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.9;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 0.8rem;
}

.hero-contact {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  margin-bottom: 0;
}

.hero-contact a {
  color: var(--signal);
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: underline;
}

.hero-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 3rem 0 0;
  max-width: 920px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 7rem;
  padding: 1rem;
}

.hero-stats dt {
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hero-stats dd {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}

.proof-band {
  background: var(--navy);
  color: var(--white);
}

.proof-inner {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.4rem clamp(1rem, 3vw, 2rem);
}

.proof-inner p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0;
}

.proof-inner a {
  color: var(--signal);
  font-weight: 900;
}

.scra-badge {
  align-items: center;
  border: 2px solid var(--amber);
  display: inline-flex;
  flex-direction: column;
  height: 4.4rem;
  justify-content: center;
  min-width: 5.2rem;
  padding: 0.5rem;
}

.scra-badge span {
  font-size: 0.75rem;
  font-weight: 900;
}

.scra-badge strong {
  color: var(--signal);
  font-size: 1rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.services,
.team {
  background: var(--paper);
}

.service-grid,
.folder-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.service-grid article,
.folder-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 15rem;
  padding: 1.4rem;
}

.service-grid article span {
  color: var(--amber-dark);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
}

.service-grid p,
.folder-card p,
.process-list span,
.dispatch p,
.dispatch li,
.site-footer p {
  color: var(--muted);
  line-height: 1.58;
}

.field-layout,
.job-gallery {
  display: grid;
  gap: 1rem;
}

.field-layout {
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 2rem;
}

.job-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

figure {
  background: var(--navy);
  margin: 0;
  overflow: hidden;
}

figure img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 1rem;
}

.reviews {
  background: var(--white);
}

.reviews-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
}

.inline-link {
  color: var(--amber-dark);
  display: inline-flex;
  font-weight: 900;
  margin-top: 0.35rem;
  text-decoration: none;
}

.inline-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.review-proof {
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  gap: 1px;
}

.review-proof article {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--amber);
  min-height: 9.5rem;
  padding: 1.25rem;
}

.review-proof span {
  color: var(--signal);
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 0.6rem;
}

.review-proof strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.review-proof p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
  margin: 0;
}

.folder-card {
  background:
    linear-gradient(180deg, rgba(243, 165, 31, 0.1), transparent 34%),
    var(--white);
  min-height: 17rem;
  position: relative;
}

.folder-tab {
  background: var(--amber);
  color: #231704;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin: -1.4rem 0 1.6rem -1.4rem;
  padding: 0.55rem 1rem;
}

.folder-card span {
  border-top: 1px solid var(--line);
  color: var(--steel);
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 1.2rem;
  padding-top: 1rem;
}

.process-list {
  counter-reset: steps;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.process-list li {
  border-left: 4px solid var(--amber);
  counter-increment: steps;
  padding: 0.4rem 1rem 0.4rem 1.4rem;
}

.process-list li::before {
  color: var(--amber-dark);
  content: "0" counter(steps);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.process-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.dispatch {
  background: var(--navy);
  color: var(--white);
}

.dispatch-panel {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  margin: 0 auto;
  max-width: 1180px;
}

.dispatch ul {
  padding-left: 1.2rem;
}

.booking-card {
  border: 1px solid rgba(247, 214, 107, 0.45);
  display: grid;
  gap: 0.45rem;
  margin: 1.4rem 0;
  max-width: 28rem;
  padding: 1rem;
}

.booking-card a {
  color: var(--signal);
  font-weight: 900;
  text-decoration: none;
}

.booking-card a:hover {
  text-decoration: underline;
}

form {
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

label {
  color: var(--steel);
  display: grid;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 0.4rem;
  text-transform: uppercase;
}

input,
textarea {
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 2.8rem;
  padding: 0.75rem;
  resize: vertical;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--amber);
  outline: 2px solid rgba(243, 165, 31, 0.25);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: #0c1721;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 5vw, 5rem);
}

.site-footer p {
  margin: 0.35rem 0 0;
}

.site-footer div:last-child {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .header-actions,
  .header-cta {
    width: 100%;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .header-phone {
    text-align: center;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-stats,
  .service-grid,
  .folder-grid,
  .process-list,
  .dispatch-panel,
  .reviews-layout,
  .job-gallery,
  .field-layout,
  .proof-inner {
    grid-template-columns: 1fr;
  }

  .proof-inner {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .hero-actions,
  .site-footer {
    width: 100%;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer div:last-child {
    justify-items: start;
  }
}
