:root {
  --blue: #003fae;
  --blue-dark: #001641;
  --navy-text: #061347;
  --text: #050505;
  --body-text: #1e2738;
  --line: #e1e5ee;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #000000;
  opacity: 1;
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  background: #ffffff;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

/* HEADER / HERO */

.hero {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 330px;
  background: var(--blue-dark);
  overflow: hidden;
}

.hero-portrait {
  height: 330px;
  background: #ffffff;
  overflow: hidden;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-panel {
  position: relative;
  height: 330px;
  background: radial-gradient(circle at center, #073cc0 0%, #001d78 38%, #000a3d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px clamp(20px, 4vw, 58px);
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 34%);
  height: 58px;
  display: grid;
  place-items: center;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-links {
  position: absolute;
  top: 26px;
  right: clamp(20px, 4vw, 50px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  z-index: 5;
}

.hero-link {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.hero-link:hover,
.hero-link:focus-visible {
  opacity: 0.78;
  outline: none;
}

.hero-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.hero-text {
  width: 100%;
  text-align: center;
  padding-top: 58px;
}

.hero-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7.2vw, 6.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.domain-line {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(0.85rem, 1.45vw, 1.1rem);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.domain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
}

.hero-tagline {
  margin: 11px 0 0;
  color: #ffffff;
  font-size: clamp(0.74rem, 1.16vw, 0.92rem);
  font-weight: 500;
  text-align: center;
}

/* MAIN LAYOUT */

.main-section {
  padding: 34px clamp(26px, 5vw, 82px) 24px;
  background: #ffffff;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(38px, 5vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.left-column,
.right-column {
  min-width: 0;
}

.right-column {
  border-left: 1px solid var(--line);
  padding-left: clamp(34px, 4vw, 58px);
}

/* HOMEPAGE HEADINGS */

.section-heading {
  margin: 0 0 18px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
}

.contact-statement {
  margin: -2px 0 26px;
  color: #000000;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
  text-align: center;
}

/* CONTACT FORM */

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-text);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.2;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dce1ea;
  border-radius: 7px;
  background: #ffffff;
  color: #000000;
  padding: 13px 15px;
  font-size: 0.96rem;
  line-height: 1.25;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 63, 174, 0.12);
}

.iti {
  width: 100%;
}

.iti input {
  width: 100%;
  padding-left: 96px !important;
}

.file-box {
  border: 1px solid #dce1ea;
  border-radius: 7px;
  padding: 10px 12px;
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  color: #000000;
}

.file-box input {
  border: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.88rem;
  color: #000000;
}

.max-size {
  color: #000000;
  font-size: 0.74rem;
  white-space: nowrap;
}

.submit-button {
  border: 0;
  background: linear-gradient(135deg, #00105a, #001b90);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 0.98rem;
  font-weight: 650;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.submit-button span {
  font-size: 1.4rem;
  line-height: 1;
}

.submit-button:hover,
.submit-button:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

/* THOUGHTS LEADERSHIP RAIL */

.thoughts-heading {
  margin: 0 0 22px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
}

.search-wrap {
  position: relative;
  margin: 0 0 22px;
}

.article-search {
  width: 100%;
  padding: 12px 46px 12px 16px;
  border-radius: 7px;
  color: #000000;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
  pointer-events: none;
}

.thought-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.thought-item {
  display: block;
  margin: 0 0 11px;
}

.thought-link {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: #0000bb;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.18;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.thought-link:hover,
.thought-link:focus-visible {
  color: var(--navy-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.thought-link-current {
  background: #f0f1f5;
  border: 1px solid #cfd3dd;
  border-radius: 6px;
  padding: 7px 9px;
  color: var(--navy-text);
  font-weight: 700;
  cursor: default;
}

.thought-link-current:hover,
.thought-link-current:focus-visible {
  color: var(--navy-text);
  text-decoration: none;
}

.previous-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}

.previous-link:hover,
.previous-link:focus-visible {
  color: var(--navy-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.previous-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

.previous-disabled:hover,
.previous-disabled:focus-visible {
  color: var(--navy-text);
  text-decoration: none;
}

.no-results {
  display: none;
  color: #000000;
  font-size: 0.95rem;
  margin-top: 16px;
}

/* RIGHT RAIL PROFILE BOX */

.profile-rail-box {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.profile-rail-box h2 {
  margin: 0 0 16px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-align: center;
}

.profile-rail-content {
  border: 1px solid #d7dbe8;
  background: #ffffff;
  padding: 18px 18px 20px;
}

.profile-rail-content p {
  margin: 0 0 14px;
  color: #1e2738;
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.68;
  text-align: justify;
  text-justify: inter-word;
}

.profile-rail-content p:last-child {
  margin-bottom: 0;
}

/* POLICY PAGES */

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h1 {
  margin: 0 0 18px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
}

.policy-content h2 {
  margin: 28px 0 10px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 700;
}

.policy-content h3 {
  margin: 18px 0 8px;
  color: var(--navy-text);
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.3;
  font-weight: 700;
}

.policy-content p,
.policy-content li {
  color: var(--body-text);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.78;
  text-align: justify;
  text-justify: inter-word;
}

.policy-content p {
  margin: 0 0 14px;
}

.policy-content ul {
  margin: 10px 0 16px;
  padding-left: 22px;
}

.policy-content li {
  margin: 0 0 8px;
}

.policy-content a {
  color: var(--navy-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:hover,
.policy-content a:focus-visible {
  color: var(--navy-text);
  text-decoration: underline;
  outline: none;
}

.policy-date {
  color: #000000;
  font-weight: 700;
  text-align: center !important;
  margin-bottom: 24px !important;
}

/* THANK YOU PAGE */

.message-box {
  max-width: 560px;
  margin: 80px auto;
  text-align: center;
}

.message-box p {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  line-height: 1.35;
  color: var(--blue-dark);
}

.return-button {
  display: inline-block;
  color: #ffffff;
  background: var(--blue);
  padding: 13px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

/* FOOTER */

footer {
  background: linear-gradient(135deg, #000a3d, #001b7a);
  color: #ffffff;
  text-align: center;
  padding: 16px 6vw 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.copyright {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 0.86rem;
}

/* COOKIE SPLASH */

.cookie-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 16, 48, 0.52);
  backdrop-filter: blur(5px);
  z-index: 100;
  padding: 24px;
}

.cookie-overlay.visible {
  display: grid;
}

.cookie-modal {
  width: min(420px, 100%);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0, 20, 65, 0.28);
  text-align: left;
}

.cookie-modal strong {
  display: block;
  color: #000000;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.cookie-modal p {
  margin: 0 0 20px;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}

.accept-cookie {
  border: 0;
  background: var(--blue);
  color: #ffffff;
}

.decline-cookie {
  border: 1px solid var(--blue);
  background: #ffffff;
  color: var(--blue);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .main-grid {
    grid-template-columns: minmax(350px, 0.9fr) minmax(500px, 1.1fr);
    gap: 44px;
  }

  .right-column {
    padding-left: 38px;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 38% 62%;
    min-height: 285px;
  }

  .hero-portrait,
  .hero-panel {
    height: 285px;
  }

  .hero-logo {
    top: 15px;
    height: 48px;
    width: min(190px, 34%);
  }

  .hero-links {
    top: 20px;
    right: 18px;
    gap: 9px;
  }

  .hero-link {
    font-size: 0.88rem;
  }

  .hero-divider {
    height: 15px;
  }

  .hero-text {
    padding-top: 52px;
  }

  .hero-title {
    font-size: clamp(2.55rem, 7.5vw, 4.3rem);
  }

  .domain-line {
    margin-top: 15px;
    font-size: 0.78rem;
  }

  .hero-tagline {
    margin-top: 8px;
    font-size: 0.7rem;
  }

  .main-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .right-column {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 34px;
  }

  .profile-rail-box {
    margin-top: 30px;
    padding-top: 24px;
  }

  .profile-rail-box h2 {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
  }

  .profile-rail-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
  }

  .hero {
    grid-template-columns: 39% 61%;
    min-height: 220px;
  }

  .hero-portrait,
  .hero-panel {
    height: 220px;
  }

  .hero-panel {
    padding: 14px 12px;
  }

  .hero-logo {
    top: 10px;
    height: 32px;
    width: min(130px, 38%);
  }

  .hero-links {
    top: 12px;
    right: 10px;
    gap: 6px;
  }

  .hero-link {
    font-size: 0.64rem;
  }

  .hero-divider {
    height: 12px;
  }

  .hero-text {
    padding-top: 42px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.75rem);
    letter-spacing: -0.065em;
  }

  .domain-line {
    margin-top: 9px;
    font-size: 0.52rem;
    gap: 5px;
  }

  .hero-tagline {
    margin-top: 6px;
    font-size: 0.46rem;
  }

  .main-section {
    padding: 30px 20px 22px;
  }

  .section-heading,
  .thoughts-heading {
    font-size: 1.75rem;
  }

  .contact-form {
    max-width: 100%;
  }

  .file-box {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .submit-button {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .profile-rail-box h2 {
    font-size: 1.25rem;
  }

  .profile-rail-content {
    padding: 16px;
  }

  .profile-rail-content p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 200px;
  }

  .hero-portrait,
  .hero-panel {
    height: 200px;
  }

  .hero-title {
    font-size: clamp(1.45rem, 10vw, 2.15rem);
  }

  .domain-line {
    font-size: 0.46rem;
  }

  .hero-tagline {
    font-size: 0.4rem;
  }

  .thought-link {
    font-size: 0.95rem;
  }
}