/* ============================================
   Reid Ashby — Executive Search
   Design system: colours, type, layout
   ============================================ */

:root {
  --navy: #101E3D;
  --gold: #C9A063;
  --light-blue-grey: #E2E8F1;
  --off-white: #FAFBFC;
  --body-grey: #5B6472;
  --icon-tile-bg: #DCE6F5;
  --white: #FFFFFF;
  --border-light: #D8DEE8;

  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--body-grey);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.eyebrow--center {
  text-align: center;
}

.eyebrow--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.eyebrow--light {
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: #b88f52;
}

.btn-secondary-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-secondary-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary-light {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary-light:hover {
  background: rgba(16, 30, 61, 0.06);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: #1a2c54;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-word {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-grey);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body-grey);
  padding: 6px 0;
  transition: color 0.2s ease;
}

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

.nav-links a.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

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

.section--light-blue {
  background: var(--light-blue-grey);
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.section-head p {
  font-size: 17px;
}

.section--navy .section-head h2,
.section--navy h1 {
  color: #fff;
}

.section--navy .section-head p,
.section--navy p {
  color: #B8C0D4;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.hero-boardroom-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(16,30,61,0.85) 30%, rgba(16,30,61,0.55) 100%),
    repeating-linear-gradient(100deg, #223055 0px, #223055 2px, #1a2647 2px, #1a2647 60px),
    linear-gradient(180deg, #0c1730 0%, #1c2c50 100%);
  opacity: 0.9;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: #B8C0D4;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero--split {
  padding: 100px 0;
}

.hero--split .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(201,160,99,0.25), transparent 50%),
    repeating-linear-gradient(90deg, #3a2c1f 0px, #3a2c1f 24px, #2c2013 24px, #2c2013 48px),
    linear-gradient(200deg, #4a3b28 0%, #1c1610 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 12%;
  width: 30%;
  height: 45%;
  border: 2px solid rgba(255,220,160,0.35);
  border-radius: 50% 50% 0 0;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--light-blue-grey);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 14px;
  color: var(--body-grey);
  margin-top: 8px;
}

/* Value-strip variant: short text labels instead of numerals */
.stats-grid--values .stat {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
  text-align: left;
}

.stats-grid--values .stat-number {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.stats-grid--values .stat-label {
  margin-top: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ---------- Cards grid (expertise preview) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 32px;
  border: 1px solid var(--border-light);
}

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--icon-tile-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-tile svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--body-grey);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: var(--light-blue-grey);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
}

.process-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.process-step h3 {
  color: #fff;
  font-size: 19px;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  color: #B8C0D4;
  font-size: 15px;
}

/* ---------- Testimonial ---------- */
.testimonial {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 28px;
  line-height: 1.5;
}

.testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: var(--body-grey);
}

.testimonial cite strong {
  color: var(--navy);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #B8C0D4;
  font-size: 16px;
  margin-bottom: 32px;
}

/* ---------- Sectors grid ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border-light);
}

.sector-tile {
  background: #fff;
  padding: 32px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

/* ---------- Two column content (Our Story / About) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.two-col-label h2 {
  font-size: 32px;
}

.two-col-body p {
  font-size: 16px;
  margin-bottom: 20px;
}

.two-col-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Milestones ---------- */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.milestone {
  border-top: 3px solid var(--gold);
  padding-top: 24px;
}

.milestone-year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
}

.milestone p {
  font-size: 15px;
  color: var(--body-grey);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-row .icon-tile {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-row-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-row-value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(16, 30, 61, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--navy);
  background: var(--off-white);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  margin-bottom: 24px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--body-grey);
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .logo-word {
  color: #fff;
}

.footer-brand .logo-sub {
  color: #8B93A8;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #B8C0D4;
  font-size: 15px;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact li {
  color: #B8C0D4;
  font-size: 15px;
}

.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8B93A8;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .cards-grid,
  .cards-grid--2col,
  .process-grid,
  .stats-grid,
  .milestones-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .contact-grid,
  .hero--split .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    gap: 16px;
  }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .section {
    padding: 64px 0;
  }

  .cards-grid,
  .cards-grid--2col,
  .process-grid,
  .stats-grid,
  .milestones-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-boardroom-bg {
    width: 100%;
    opacity: 0.4;
  }

  .cta-band {
    padding: 48px 24px;
  }

  .cta-band h2 {
    font-size: 26px;
  }
}
