:root {
  --ink: #15242a;
  --muted: #5d6d73;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #0f4c5c;
  --teal-deep: #0a323d;
  --coral: #df6f55;
  --gold: #e0b15e;
  --line: rgba(21, 36, 42, 0.14);
  --shadow: 0 24px 70px rgba(9, 31, 39, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 5.45rem;
}

h2 {
  font-size: 3.65rem;
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
}

.nav,
.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-menu a {
  transition: color 160ms ease;
}

.nav-menu a:hover {
  color: var(--teal);
}

.nav-phone {
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

.nav-phone:hover {
  color: var(--white) !important;
  background: var(--teal-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 118px 0 52px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 27, 34, 0.9) 0%, rgba(6, 27, 34, 0.74) 40%, rgba(6, 27, 34, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 27, 34, 0.55), rgba(6, 27, 34, 0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b49f;
}

.hero-copy {
  max-width: 690px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--coral);
  color: var(--white);
}

.button.primary:hover {
  background: #c85d45;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

.hero-stats {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 3rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  min-height: 96px;
  padding: 1rem;
  background: rgba(6, 27, 34, 0.42);
}

.hero-stats dt {
  font-weight: 900;
  color: var(--gold);
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.section {
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

.two-column p + p {
  margin-top: 1rem;
}

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

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 760px;
}

.services-band {
  background: var(--white);
}

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

.service-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.35rem;
}

.service-card .icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: #d9ece8;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.process-grid p,
.outcomes-copy p,
.local-panel p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.examples-section {
  background: var(--white);
}

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

.example-card {
  display: flex;
  min-height: 355px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.2rem;
}

.example-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.08rem;
}

.example-card ul,
.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.example-card strong {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--teal);
}

.proof-section {
  background: #eef5f1;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 5rem;
  align-items: center;
}

.outcomes-copy p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1rem 1rem 1.15rem;
  box-shadow: 0 10px 30px rgba(9, 31, 39, 0.07);
  font-weight: 750;
}

.process-section {
  background: var(--paper);
}

.pricing-section {
  background: #eef5f1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 14px 40px rgba(9, 31, 39, 0.06);
}

.price-card.featured {
  border-color: rgba(223, 111, 85, 0.5);
  box-shadow: 0 24px 70px rgba(9, 31, 39, 0.13);
}

.price-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 0.55rem;
  font-size: 2.25rem;
}

.price-card p {
  margin: 0.8rem 0 1rem;
  color: var(--muted);
}

.cost-note {
  margin-top: 1rem;
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1.15rem;
  color: var(--muted);
}

.cost-note strong {
  color: var(--ink);
}

.quote-section {
  background: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 4rem;
  align-items: start;
}

.quote-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.quote-tips {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.quote-tips li {
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 36, 42, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.9rem;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(223, 111, 85, 0.22);
  border-color: var(--coral);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.prepared-quote {
  display: grid;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.prepared-quote[hidden] {
  display: none;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button.secondary.dark {
  border-color: rgba(15, 76, 92, 0.35);
  color: var(--teal);
}

.button.secondary.dark:hover {
  border-color: var(--teal);
  background: #d9ece8;
}

.button.ghost {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

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

.process-grid article {
  border-top: 3px solid var(--teal);
  padding: 1.35rem 0 0;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--coral);
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 0.6rem;
}

.industries-section {
  background: var(--teal-deep);
  color: var(--white);
}

.industries-section .eyebrow {
  color: #f3b19d;
}

.industries-section p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.industry-list span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.local-section {
  background: var(--white);
}

.local-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 4rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 3rem;
}

.local-panel p {
  margin-top: 1rem;
}

.contact-block {
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  padding: 1.4rem;
}

.contact-block span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.contact-block a {
  display: block;
  margin: 0.4rem 0 0.7rem;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.contact-block p {
  color: rgba(255, 255, 255, 0.8);
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1.2rem;
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
}

details p {
  margin-top: 0.8rem;
}

.cta-section {
  padding: 72px 0;
  background: #f4ded6;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  max-width: 820px;
}

.site-footer {
  background: #111d22;
  color: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner p,
.footer-inner span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner a {
  display: block;
  font-weight: 900;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

@media (max-width: 880px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-phone {
    border-radius: 0;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 27, 34, 0.92), rgba(6, 27, 34, 0.72)),
      linear-gradient(0deg, rgba(6, 27, 34, 0.48), rgba(6, 27, 34, 0.18));
  }

  .hero-stats,
  .service-grid,
  .example-grid,
  .pricing-grid,
  .quote-layout,
  .process-grid,
  .outcomes,
  .two-column,
  .local-panel {
    grid-template-columns: 1fr;
  }

  .two-column,
  .outcomes,
  .quote-layout,
  .local-panel {
    gap: 2rem;
  }

  .example-card,
  .price-card {
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

  .nav,
  .section-inner,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 210px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    min-height: 820px;
    padding-top: 104px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 1rem;
  }

  .quote-actions .button {
    width: 100%;
  }

  .hero-stats div {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .industry-list span {
    width: 100%;
  }

  .contact-block a {
    font-size: 1.8rem;
  }
}
