:root {
  --navy: #052a4f;
  --navy-dark: #031f3a;
  --navy-light: #17496f;

  --gold: #c68a2b;
  --gold-light: #e2bc76;

  --white: #ffffff;
  --paper: #fbfbfa;
  --soft-blue: #eef3f7;

  --ink: #092844;
  --ink-soft: #506474;

  --border: #d6dde2;

  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 250px;
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 14px 22px;
  color: var(--white) !important;
  background: var(--navy);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 27px;
}


/* TYPE */

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(45px, 5vw, 72px);
}

h1 span {
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(32px, 3.7vw, 48px);
}

h3 {
  font-size: 21px;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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


/* BUTTONS */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.button-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
}

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

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


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;

  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.96) 32%,
      rgba(255, 255, 255, 0.72) 55%,
      rgba(255, 255, 255, 0.28) 72%,
      rgba(5, 42, 79, 0.06) 100%
    ),
    url("https://d2j8c2rj2f9b78.cloudfront.net/uploads/CLT-Skyline-Night-2.jpg");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0)
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 590px;

  display: grid;
  grid-template-columns: 1.15fr 0.52fr 0.72fr;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  align-self: center;
  padding: 70px 24px 70px 0;
}

.hero-intro {
  max-width: 540px;
  color: var(--ink);
  font-size: 18px;
}

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

.hero-photo-wrap {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-photo {
  width: 100%;
  max-width: 285px;
  height: auto;
  display: block;
  object-fit: contain;
  border: 6px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(5, 42, 79, 0.18);
}

.hero-card {
  align-self: center;
  margin: 0;
  padding: 36px 34px;
  color: var(--white);
  background: var(--navy);
}

.hero-card h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 31px;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card-rule {
  width: 100%;
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
}


/* BENEFIT BAR */

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 23px;
}

.benefit strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}


/* GENERAL */

.section {
  padding: 94px 0;
}

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

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
}


/* AUDIENCE */

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

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

.audience-panel,
.problem-panel {
  border: 1px solid var(--border);
  background: var(--white);
}

.panel-heading {
  padding: 24px 28px 12px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 25px;
}

.panel-heading h2::after {
  content: "";
  display: block;
  width: 44px;
  margin-top: 9px;
  border-bottom: 2px solid var(--gold);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 18px 24px;
}

.industry {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.industry:nth-child(4n) {
  border-right: 0;
}

.industry:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.industry span {
  color: var(--gold);
  font-size: 28px;
}

.industry strong {
  font-size: 13px;
}

.problem-list {
  margin: 0;
  padding: 8px 28px 28px;
  list-style: none;
}

.problem-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 15px;
}

.problem-list li:last-child {
  border-bottom: 0;
}

.problem-list span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
}


/* SERVICES */

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 385px;
  padding: 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.service-card:hover {
  background: #f7fafc;
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card p,
.service-card ul {
  color: var(--ink-soft);
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin: 5px 0;
}

.service-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.service-card-wide .service-number {
  margin-bottom: 0;
}

.service-card-wide p {
  margin-bottom: 0;
}

.service-card-wide a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}


/* ABOUT */

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

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 78px;
}

.about-photo-column h2 {
  margin-top: 28px;
  font-size: 34px;
}

.about-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border: 8px solid var(--soft-blue);
}

.about-copy {
  color: var(--ink-soft);
  font-size: 17px;
}

.about-opening {
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
}

.credential-box {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  background: var(--paper);
}

.credential-label {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.credential-grid div {
  display: flex;
  flex-direction: column;
}

.credential-grid strong {
  color: var(--navy);
  font-size: 15px;
}

.credential-grid span {
  color: var(--ink-soft);
  font-size: 13px;
}


/* DIFFERENCE */

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

.difference-section h2 {
  color: var(--white);
}

.difference-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.difference-grid > div:first-child p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.difference-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.difference-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.difference-list > article > span {
  color: var(--gold-light);
  font-size: 12px;
}

.difference-list h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.difference-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}


/* LOCATION */

.location-section {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.location-copy > p {
  color: var(--ink-soft);
  font-size: 18px;
}

.address {
  display: flex;
  flex-direction: column;
  margin: 28px 0;
  color: var(--ink-soft);
}

.address strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 17px;
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
  border: 8px solid var(--white);
  box-shadow: 0 15px 45px rgba(9, 40, 68, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}


/* CONTACT */

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
}

.contact-intro {
  max-width: 490px;
  color: var(--ink-soft);
  font-size: 18px;
}

.contact-callout {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-callout strong {
  color: var(--navy);
  font-size: 19px;
}

.contact-callout span {
  margin-top: 5px;
  color: var(--ink-soft);
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--border);
  background: var(--white);
}

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

.contact-form label {
  display: block;
  margin-bottom: 21px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #c7d1d8;
  font: inherit;
  background: var(--paper);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold-light);
  border-color: var(--gold);
}

.form-button {
  width: 100%;
  border: 0;
  font: inherit;
}
.direct-contact {
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.direct-contact p {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.direct-contact p:last-child {
  margin-bottom: 0;
}

.direct-contact strong {
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.direct-contact a {
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.direct-contact a:hover {
  color: var(--gold);
}

/* FOOTER */

.site-footer {
  padding: 52px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.15fr 0.8fr;
  gap: 48px;
}

.footer-logo {
  width: 200px;
  display: block;
  margin-bottom: 14px;
  background: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 13px;
}

.footer-heading {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .primary-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .primary-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    background-position: center;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }

  .hero-photo-wrap {
    justify-content: center;
  }

  .hero-card {
    grid-column: 1 / -1;
    margin: 0 0 40px;
    max-width: 600px;
  }

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

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .audience-grid,
  .about-grid,
  .difference-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

}


@media (max-width: 720px) {

  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .brand-logo {
    width: 190px;
  }

  .hero {
    min-height: auto;

    background-image:
      linear-gradient(
        rgba(255,255,255,0.91),
        rgba(255,255,255,0.91)
      ),
      url("https://d2j8c2rj2f9b78.cloudfront.net/uploads/CLT-Skyline-Night-2.jpg");
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 60px 0 20px;
  }

  .hero-photo-wrap {
    justify-content: flex-start;
    padding: 0;
  }

  .hero-photo {
    max-width: 270px;
    border-width: 4px;
  }

  .hero-card {
    margin: 20px 0 40px;
  }

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

  .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .industry-grid,
  .service-grid,
  .credential-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry {
    border-right: 0;
  }

  .industry:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--border);
  }

  .industry:last-child {
    border-bottom: 0;
  }

  .service-card-wide {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .map-wrap,
  .map-wrap iframe {
    height: 340px;
    min-height: 340px;
  }

}