/* ====== Base Styling ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ====== Color Palette ======
   Orange: accent
   Black: text / strong contrast
   White: background
   Grey: neutrals
*/
:root {
  --orange: #f97316;
  --orange-soft: #fed7aa;
  --black: #111827;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-600: #4b5563;
  --grey-800: #1f2933;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* ====== Header & Navigation ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 20%, #fed7aa, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.45);
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b7280;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  color: #4b5563;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-link:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateY(-1px);
}

.nav-link.active {
  background-color: #111827;
  color: #f9fafb;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #111827;
  box-shadow: 0 14px 35px rgba(234, 88, 12, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.7);
}

.btn-outline {
  background-color: transparent;
  border-color: #d1d5db;
  color: #111827;
}

.btn-outline:hover {
  background-color: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.btn-light {
  background-color: #ffffff;
  border-color: #e5e7eb;
  color: #111827;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.btn-light:hover {
  background-color: #f3f4f6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f97316;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #f97316;
  transition: width 0.2s ease;
}

.text-link:hover::after {
  width: 100%;
}

/* ====== Hero (Home) ====== */
.hero {
  position: relative;
  padding: 3.5rem 0 3.8rem;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.09), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero-copy {
  padding-right: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #111827;
}

.accent {
  color: #f97316;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
}

.hero-meta .meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.hero-meta .meta-value {
  font-weight: 500;
  color: #111827;
}

.hero-panel {
  background:
    linear-gradient(145deg, #020617, #111827) padding-box,
    linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(15, 23, 42, 1)) border-box;
  border-radius: 24px;
  border: 1px solid transparent;
  padding: 1.2rem 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
  color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.16), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-tagline {
  position: relative;
  padding: 0.75rem 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.35);
  margin-bottom: 1.05rem;
}

.hero-tagline span {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fed7aa;
  margin-bottom: 0.2rem;
}

.hero-tagline p {
  margin: 0;
  font-size: 0.9rem;
}

.hero-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card-dark {
  background: radial-gradient(circle at top left, #f97316, #9a3412);
  border-color: rgba(252, 211, 77, 0.7);
}

.hero-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.82rem;
  color: #e5e7eb;
}

/* ====== Shared Page Layout ====== */
.page {
  padding: 2.8rem 0 3.4rem;
}

.page-hero {
  padding-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: #111827;
}

.page-intro {
  max-width: 40rem;
  color: #4b5563;
  margin: 0;
}

.content-section {
  padding: 1.6rem 0 1.8rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.content-block h2 {
  margin-top: 0;
}

.content-aside {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stat-card {
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.stat-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.neutral-bg {
  background: #f9fafb;
}

.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: flex-start;
}

.highlight-text {
  font-weight: 500;
  color: #111827;
}

/* ====== About Values ====== */
.values-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-subtle);
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.value-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #4b5563;
}

/* ====== Split & Highlight Sections (Home) ====== */
.split-section {
  padding: 0.2rem 0 2.6rem;
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.pillar {
  border-radius: 18px;
  padding: 0.8rem 0.95rem;
  background: #111827;
  color: #f9fafb;
  border: 1px solid rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow-subtle);
}

.pillar-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fed7aa;
  margin-bottom: 0.15rem;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
}

.highlight-section {
  padding: 0 0 3rem;
}

.highlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.8rem;
}

.highlight-card {
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.5rem;
  background: #111827;
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.highlight-card-alt {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: rgba(15, 23, 42, 0.7);
  font-size: 0.8rem;
}

.highlight-card-alt .pill-list li {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 0.6rem;
}

.badge {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.8rem;
  font-weight: 600;
}

.highlight-card-alt .badge {
  background: #f97316;
  color: #111827;
}

.compact {
  font-size: 0.9rem;
  color: #4b5563;
}

/* ====== Services Page ====== */
.service-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border-radius: 18px;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.service-card p {
  margin: 0;
  font-size: 0.89rem;
  color: #4b5563;
}

.service-note {
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  background: #111827;
  color: #f9fafb;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.service-note p {
  margin: 0;
  font-size: 0.9rem;
}

/* ====== Team Page ====== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.profile-card {
  border-radius: 22px;
  padding: 1.2rem 1.3rem 1.3rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.6rem;
}

.profile-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #111827);
}

.profile-avatar-rose {
  background: radial-gradient(circle at 30% 20%, #fed7aa, #f97316);
}

.profile-avatar-dan {
  background: radial-gradient(circle at 30% 20%, #d1d5db, #111827);
}

.profile-role {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.profile-bio {
  font-size: 0.9rem;
  color: #4b5563;
}

/* ====== Qualifications Page ====== */
.badge-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.9rem 0;
}

.badge-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tier-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.tier-text {
  display: block;
  font-size: 0.88rem;
  color: #4b5563;
}

/* ====== Contact Page ====== */
.contact-form {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-row textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
  background-color: #fefce8;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info-card {
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: #111827;
  color: #f9fafb;
  border: 1px solid rgba(249, 115, 22, 0.45);
}

.contact-label {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fed7aa;
}

.contact-value {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.contact-note {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ====== Footer ====== */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.2rem 0 1.3rem;
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #111827;
}

.footer-note {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: #6b7280;
}

.footer-links a:hover {
  color: #111827;
}

/* ====== Responsive ====== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    margin-top: 0.5rem;
  }

  .split-inner,
  .highlight-inner,
  .content-grid,
  .columns-2,
  .team-grid,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-grid {
    gap: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 0.5rem 1.2rem 0.8rem;
    border-bottom: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    transform-origin: top;
    transition: max-height 0.25s ease;
  }

  .nav.open {
    max-height: 220px;
  }

  .nav-link {
    padding: 0.45rem 0.7rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .page {
    padding-top: 2rem;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pill-list li {
    font-size: 0.78rem;
  }
}


