/* AI Decision Advisory — site styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #152A4E;
  --navy-light: #3A5484;
  --navy-dark: #0D1A33;
  --ink: #1B2333;
  --gray: #5C6478;
  --gray-light: #F4F5F7;
  --border: #E3E6EC;
  --white: #FFFFFF;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.005em;
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #C6CEDD;
  transition: color 0.15s ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.btn-solid-light {
  background: var(--white);
  color: var(--navy);
}

.btn-solid-light:hover,
.btn-solid-light:focus-visible {
  opacity: 0.9;
}

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

.btn-solid-navy:hover,
.btn-solid-navy:focus-visible {
  opacity: 0.9;
}

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus-visible {
  background: var(--gray-light);
}

/* Hero */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: #B9C4D6;
  max-width: 440px;
  margin-bottom: 32px;
}

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

.hero-graphic {
  width: 100%;
  height: auto;
}

/* Section basics */

section {
  padding: 96px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 620px;
}

.section-intro {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
}

/* Services */

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

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.service-card .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-price {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 18px;
}

.service-card p.desc {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 22px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-card li {
  font-size: 14px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}

.service-card .btn {
  align-self: flex-start;
}

.scope-note {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 18px;
}

/* About */

.about {
  background: var(--gray-light);
}

.about .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.headshot-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  overflow: hidden;
}

.headshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
}

.about p {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 18px;
}

.pull-quote {
  border-left: 3px solid var(--navy);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

.about .credentials {
  font-size: 14px;
  color: var(--gray);
  margin-top: 24px;
}

.about p a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
}

.media-list {
  margin-bottom: 40px;
}

.media-list h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.media-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-list li a {
  font-size: 14px;
  font-weight: 500;
  color: #B9C4D6;
}

.media-list li a:hover,
.media-list li a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

/* AI Decision Report */

.decision-report {
  background: var(--white);
}

.decision-report .media-list {
  margin-bottom: 32px;
}

.decision-report .media-list ul {
  gap: 14px;
}

.decision-report .media-list li a {
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

.decision-report .media-list li a:hover,
.decision-report .media-list li a:focus-visible {
  color: var(--gray);
  text-decoration: underline;
}

/* Speaking */

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

.speaking .section-label {
  color: #8B98B3;
}

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

.speaking .section-intro {
  color: #B9C4D6;
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.speaking-topic {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 24px;
}

.speaking-topic h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.speaking-topic p {
  font-size: 14px;
  color: #B9C4D6;
}

/* Contact / footer */

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

.contact .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  margin-top: 20px;
}

.contact-links a {
  color: var(--navy);
  font-weight: 500;
}

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

footer {
  background: var(--navy-dark);
  color: #7B87A0;
  padding: 28px 0;
  font-size: 13px;
}

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

/* Responsive */

@media (max-width: 860px) {
  nav ul {
    display: none;
  }

  .hero .wrap,
  .about .wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .service-grid,
  .speaking-grid {
    grid-template-columns: 1fr;
  }

  .headshot-frame {
    max-width: 280px;
  }

  section {
    padding: 64px 0;
  }
}


.email-text {
  color: var(--navy);
  font-weight: 500;
  display: block;
}

.gmail-link {
  font-size: 0.9em;
  opacity: 0.75;
}
