/* ==========================================================================
   GarageISP — shared stylesheet
   Edit the CSS variables below to re-theme the entire site.
   ========================================================================== */

:root {
  --cream: #fdf6ec;
  --cream-soft: #fbe9d8;
  --orange: #ee6c1f;
  --orange-dark: #d8560f;
  --orange-deep: #c8481a;
  --orange-mid: #ef9a3a;
  --orange-light: #f3b45f;
  --orange-pale: #f6e2c8;
  --ink: #1c1a17;
  --ink-soft: #4a4642;
  --nav-inactive: #a9a49c;
  --white: #ffffff;
  --max-width: 1366px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Mulish', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- Navigation ---------- */

.site-nav {
  background: var(--cream);
  border-bottom: 1px solid transparent;
}

.site-nav.on-orange {
  background: transparent;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 48px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--orange);
}

.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.site-nav.on-orange .nav-logo {
  color: var(--white);
}

/* Menu always tumbles down from the logo — no horizontal nav at any width */
.nav-links {
  list-style: none;
  margin: 0;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 240px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(28, 26, 23, 0.22);
  transform-origin: top right;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.75) rotate(-8deg);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.site-nav.on-orange .nav-links {
  background: var(--orange-dark);
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
}

.nav-links li {
  opacity: 0;
  transform: translateY(-16px) rotate(-10deg);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links.open li {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.nav-links.open li:nth-child(1) { transition-delay: 0.03s; }
.nav-links.open li:nth-child(2) { transition-delay: 0.08s; }
.nav-links.open li:nth-child(3) { transition-delay: 0.13s; }
.nav-links.open li:nth-child(4) { transition-delay: 0.18s; }
.nav-links.open li:nth-child(5) { transition-delay: 0.23s; }
.nav-links.open li:nth-child(6) { transition-delay: 0.28s; }

.nav-links a {
  display: block;
  width: 100%;
  font-size: 17px;
  color: var(--nav-inactive);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--ink);
}

.site-nav.on-orange .nav-links a {
  color: rgba(255, 255, 255, 0.65);
}

.site-nav.on-orange .nav-links a:hover,
.site-nav.on-orange .nav-links a.active {
  color: var(--white);
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 210;
  width: 28px;
  height: 28px;
}

.site-nav.on-orange .nav-toggle {
  color: var(--white);
}

.nav-toggle .icon-bars,
.nav-toggle .icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease, transform 0.2s ease;
}

.nav-toggle .icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.nav-toggle.is-open .icon-bars {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.nav-toggle.is-open .icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 190;
}

.nav-overlay.open {
  visibility: visible;
}

@media (max-width: 700px) {
  .nav-inner {
    padding: 20px 24px;
  }
}

/* ---------- Diagonal arrow mark ---------- */

.arrow-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* ---------- Hero sections ---------- */

.hero-band {
  padding: 56px 0 72px;
}

.hero-band .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero-band h1 {
  font-size: 64px;
  color: var(--orange);
  max-width: 780px;
}

.hero-band.orange-bg {
  background: var(--orange);
}

.hero-band.orange-bg h1 {
  color: var(--white);
}

.eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.hero-band.orange-bg .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 20px;
}

.hero-band.orange-bg .lede {
  color: rgba(255, 255, 255, 0.9);
}

.button-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn-solid {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.hero-band.orange-bg .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.hero-band.orange-bg .btn-solid {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

/* ---------- Section heading pattern ---------- */

.section {
  padding: 64px 0;
}

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

.section-title {
  font-size: 46px;
  color: var(--orange);
}

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

.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 16px;
}

/* ---------- Card grid (services / testimonials) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.card-grid.orange-border {
  border-color: var(--orange);
}

.card-grid.white-border {
  border-color: rgba(255, 255, 255, 0.6);
}

.grid-card {
  padding: 32px 28px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-color: inherit;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.card-grid.orange-border .grid-card {
  border-color: var(--orange);
}

.card-grid.white-border .grid-card {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.grid-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.card-grid.orange-border .grid-card h3 {
  color: var(--orange);
}

.grid-card p {
  font-size: 15px;
  margin-bottom: 12px;
}

.grid-card .quote-body {
  flex: 1;
}

.grid-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.grid-card ul li {
  font-size: 15px;
  padding: 0 0 12px 22px;
  position: relative;
}

.grid-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.card-grid.white-border .grid-card ul li::before {
  color: var(--white);
}

.grid-card footer {
  font-size: 15px;
  font-weight: 700;
  margin-top: auto;
}

.card-grid.orange-border .grid-card footer {
  color: var(--orange);
}

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

/* ---------- Feature rows (Assessments / Packages layout) ---------- */

.feature-rows {
  border-top: 1px solid rgba(0, 0, 0, 0.75);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
  align-items: start;
}

.feature-row h3 {
  font-size: 34px;
  color: var(--orange);
}

.feature-row .row-body p {
  font-size: 17px;
  color: var(--ink-soft);
}

.feature-row .tier-list {
  margin-top: 18px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.feature-row .tier-list li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}

.feature-row .tier-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 760px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- Pricing tiers (Packages page) ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--orange-pale);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(238, 108, 31, 0.18);
}

.pricing-card h4 {
  font-size: 22px;
  color: var(--orange);
}

.pricing-card .price {
  font-size: 34px;
  font-weight: 800;
  margin: 14px 0 4px;
}

.pricing-card .price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  flex: 1;
}

.pricing-card ul li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 7px 0 7px 24px;
  position: relative;
  border-top: 1px solid var(--orange-pale);
}

.pricing-card ul li:first-child {
  border-top: none;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

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

/* ---------- Stat bubble infographic (About page) ---------- */

.stat-section {
  background: var(--cream-soft);
  padding: 72px 0;
}

.stat-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stat-copy h2 {
  font-size: 44px;
  color: var(--orange);
  margin-bottom: 22px;
}

.stat-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
}

.target-graphic-wrap {
  width: 100%;
}

.target-graphic {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.stat-sources {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .stat-section .wrap {
    grid-template-columns: 1fr;
  }
  .target-graphic-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ---------- Contact page ---------- */

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.contact-left {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 45%, var(--orange-light) 100%);
  color: var(--white);
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  top: -120px;
  right: -140px;
}

.contact-left::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  bottom: -160px;
  left: -100px;
}

.contact-brand {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.contact-headline {
  font-size: 52px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  margin: 40px 0;
}

.contact-tag {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.contact-left .btn-solid {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  position: relative;
  z-index: 1;
}

.contact-left .btn-outline {
  color: var(--orange-light);
  border-color: var(--orange-light);
  position: relative;
  z-index: 1;
}

.contact-foot {
  position: relative;
  z-index: 1;
  font-size: 16.7px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-foot .links {
  display: flex;
  gap: 18px;
}

.contact-foot .links a {
  text-decoration: underline;
}

.contact-right {
  background: var(--orange);
  padding: 56px;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.field label {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
  background: var(--orange-light);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.submit-btn:hover {
  opacity: 0.88;
}

.form-note {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: -8px;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px;
}

@media (max-width: 900px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-headline {
    font-size: 38px;
  }
}

/* ---------- Home page extras ---------- */

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--orange-pale);
}

.highlight-card .num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
}

.highlight-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

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

.cta-band {
  background: var(--orange);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 38px;
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
  font-size: 17px;
}

.cta-band .button-row {
  justify-content: center;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  font-size: 14px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

@media (max-width: 700px) {
  .hero-band h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 22px 24px; }
}
