:root {
  --navy: #062b4f;
  --green: #00824b;
  --charcoal: #29333a;
  --soft: #eef4f1;
  --border: #d8e3df;
  --white: #ffffff;
  --ink-soft: #50606a;
  --amber: #b86b14;
  --sky: #d9ebf7;
  --shadow: 0 18px 45px rgba(6, 43, 79, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: #f8fbfa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 227, 223, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1280px;
  min-height: 102px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 430px;
}

.brand img {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.brand-name {
  display: block;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
}

.brand-tagline {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: #006e40;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(6, 43, 79, 0.98), rgba(6, 43, 79, 0.88));
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  z-index: 0;
  width: min(34vw, 520px);
  height: min(34vw, 520px);
  background: url("assets/cowling-commercial-insight-logo.png") center / contain no-repeat;
  opacity: 0.34;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: min(660px, calc(100vh - 102px));
  margin: 0 auto;
  padding: 78px 24px 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #bde7d2;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 5.45rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  color: #e4efeb;
  font-size: 1.2rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover {
  background: #006e40;
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.button-secondary:hover {
  background: var(--soft);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(6, 43, 79, 0.28);
}

.button-outline:hover {
  background: var(--soft);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(216, 227, 223, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel img {
  width: 220px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.hero-panel p {
  margin: 0;
  color: #e4efeb;
}

.hero-logo-panel {
  justify-self: end;
  width: min(100%, 500px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-logo-panel img {
  width: 100%;
  opacity: 0.52;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.1);
}

.hero-logo-panel p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #e4efeb;
  font-size: 1.08rem;
  font-weight: 650;
}

.proof-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.mobile-route-section {
  display: none;
}

.mobile-route-grid {
  display: grid;
  gap: 12px;
}

.mobile-route-grid a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: inherit;
  background: var(--white);
  text-decoration: none;
}

.mobile-route-grid a strong {
  color: var(--navy);
}

.mobile-route-grid a span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.mobile-route-grid a:focus,
.mobile-route-grid a:hover {
  outline: 3px solid rgba(0, 130, 75, 0.14);
  border-color: rgba(0, 130, 75, 0.48);
}

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-item {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.proof-item strong {
  display: block;
  color: var(--navy);
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: 78px 24px;
}

.section-soft {
  background: var(--soft);
}

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

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

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-navy h2,
.section-navy h3,
.section-navy .section-heading h1,
.section-navy .section-heading p {
  color: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 36px;
  align-items: start;
}

.deliverable-section {
  border-bottom: 1px solid var(--border);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(460px, 1.16fr);
  gap: 42px;
  align-items: center;
}

.deliverable-grid .section-heading {
  margin-bottom: 24px;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.deliverable-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(0, 130, 75, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: #f4faf7;
  font-size: 0.92rem;
  font-weight: 780;
}

.deliverable-list.compact {
  margin-top: 18px;
}

.content-block {
  max-width: 820px;
}

.content-block p:first-child {
  margin-top: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 11px;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 0.45em;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.feature-list + .button {
  margin-top: 24px;
}

.quiet-box {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-box {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.price-box .price {
  color: var(--green);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.report-preview {
  display: grid;
  gap: 16px;
}

.report-image-frame {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.report-image-frame.wide {
  align-self: start;
}

.report-sheet {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.report-sheet-header img {
  width: 118px;
}

.report-sheet-header span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.report-title {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.mini-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.mini-row {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
}

.mini-row + .mini-row {
  border-top: 1px solid var(--border);
}

.mini-cell {
  padding: 10px 12px;
  font-size: 0.86rem;
}

.mini-cell:first-child {
  color: var(--navy);
  background: var(--soft);
  font-weight: 850;
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.swot-quadrant {
  min-height: 118px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.swot-quadrant strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
}

.swot-quadrant p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.sample-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.sample-report-image {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-image-frame .sample-report-image {
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.profile-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-panel img {
  width: 140px;
}

.simon-panel {
  grid-template-columns: 190px 1fr;
  align-items: center;
}

.profile-photo {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process {
  counter-reset: process;
  display: grid;
  gap: 14px;
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.process-step::before {
  content: counter(process);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 6px;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  width: min(34vw, 520px);
  height: min(34vw, 520px);
  background: url("assets/cowling-commercial-insight-logo.png") center / contain no-repeat;
  opacity: 0.16;
  transform: translateY(-50%);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 56px;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e4efeb;
  font-size: 1.14rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--charcoal);
  background: var(--white);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 130, 75, 0.18);
  border-color: var(--green);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--green);
  vertical-align: middle;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #b9dcca;
  border-radius: 8px;
  color: var(--navy);
  background: #e9f7ef;
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.site-footer {
  color: #d8e3df;
  background: #041d35;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 158px;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a {
  color: #d8e3df;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.legal-copy {
  max-width: 920px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 102px 0 auto 0;
    display: none;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero {
    background: linear-gradient(90deg, rgba(6, 43, 79, 0.97), rgba(6, 43, 79, 0.9));
  }

  .hero::after {
    display: none;
  }

  .hero-inner,
  .two-col,
  .deliverable-grid,
  .grid-3,
  .grid-2,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .hero-logo-panel {
    justify-self: stretch;
  }

  .page-hero::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 108px;
    height: auto;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.76rem;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .simon-panel {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
  }

  .section,
  .page-hero .section-inner {
    padding: 52px 18px;
  }

  .hero-inner {
    padding: 52px 18px 40px;
  }

  .mobile-route-section {
    display: block;
    padding: 38px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--soft);
  }

  .mobile-route-section h2 {
    margin-bottom: 18px;
    font-size: 1.7rem;
  }

  .home-desktop-detail {
    display: none;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}
