@font-face {
  font-family: "Eras";
  src: local("Eras Light ITC"), local("Eras Light"), url("../fonts/ERASLGHT.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eras";
  src: local("Eras Medium ITC"), local("Eras Medium"), url("../fonts/ERASMD.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eras";
  src: local("Eras Demi ITC"), local("Eras Demi"), url("../fonts/ERASDEMI.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eras";
  src: local("Eras Bold ITC"), local("Eras Bold"), url("../fonts/ERASBD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --kayem-blue: #064f9f;
  --kayem-blue-dark: #033b79;
  --heading: #172840;
  --body: #4b5969;
  --line: #e2e8ef;
  --paper: #ffffff;
  --wash: #f7faff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--heading);
  background: var(--paper);
  font-family: "Eras", Arial, sans-serif;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(28px, 4.2vw, 68px);
  border-bottom: 1px solid rgba(31, 45, 61, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(31, 45, 61, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Keep in-page navigation targets visible beneath the sticky header. */
html {
  scroll-padding-top: 158px;
}

main section[id] {
  scroll-margin-top: 0;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--kayem-blue);
  text-decoration: none;
  flex: 0 1 auto;
}

.brand img {
  width: clamp(100px, 8vw, 126px);
  height: clamp(100px, 8vw, 126px);
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(50px, 4.4vw, 68px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-actions,
.primary-nav {
  display: flex;
  align-items: center;
}

.header-actions {
  flex: 0 0 auto;
  gap: 16px;
}

.primary-nav { gap: clamp(14px, 1.55vw, 25px); }

.primary-nav a,
.compact-nav a {
  color: #26364c;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.compact-nav a:hover,
.compact-nav a:focus-visible {
  color: var(--kayem-blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--kayem-blue);
  color: #fff;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(6, 79, 159, 0.17);
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--kayem-blue-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 16px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(6, 79, 159, 0.24);
  border-radius: 6px;
  color: var(--kayem-blue);
  background: #fff;
  font: 600 16px/1 "Eras", Arial, sans-serif;
  cursor: pointer;
}

.menu-icon {
  width: 18px;
  display: grid;
  gap: 3px;
}

.menu-icon span {
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.compact-nav {
  position: absolute;
  z-index: 10;
  top: calc(100% + 1px);
  right: clamp(28px, 4.2vw, 68px);
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 40, 64, 0.14);
}

.compact-nav:not([hidden]) { display: grid; }
.compact-nav a { padding: 11px 12px; border-radius: 5px; }
.compact-nav a:hover,
.compact-nav a:focus-visible { background: var(--wash); }

/* The Hero is intentionally text-only. Its content width is set by the two-line H1. */
.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 84px clamp(30px, 5vw, 78px) 90px;
  background: #fff;
}

.hero-copy {
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  justify-items: start;
}

h1 {
  width: max-content;
  max-width: 100%;
  margin: 0 0 30px;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.042em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--body);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.58;
}

.button-primary {
  min-height: 58px;
  margin-top: 38px;
  padding: 0 29px;
  font-size: 18px;
}

.section-placeholder {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #edf2f7;
  background: var(--wash);
  color: #7b8aa0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1360px) {
  html { scroll-padding-top: 144px; }
  main section[id] { scroll-margin-top: 0; }
  .site-header {
    min-height: 140px;
    gap: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .brand { gap: 7px; }
  .brand img { width: 98px; height: 98px; }
  .brand-name { font-size: clamp(43px, 3.9vw, 55px); }
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: 15px; }
  .header-actions { gap: 13px; }
  .button-small { padding-left: 17px; padding-right: 17px; font-size: 15px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 130px; }
  main section[id] { scroll-margin-top: 0; }
  .site-header { min-height: 126px; }
  .brand img { width: 86px; height: 86px; }
  .brand-name { font-size: clamp(38px, 5.4vw, 49px); }
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero {
    min-height: 660px;
    padding-top: 76px;
    padding-bottom: 82px;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 96px; }
  main section[id] { scroll-margin-top: 0; }
  .site-header {
    min-height: auto;
    padding: 13px 18px;
    gap: 12px;
  }

  .brand { gap: 5px; }
  .brand img { width: 70px; height: 70px; }
  .brand-name { font-size: clamp(28px, 7.7vw, 40px); }
  .header-actions { gap: 8px; }
  .button-small { min-height: 42px; padding: 0 13px; font-size: 14px; }
  .menu-toggle { min-height: 42px; padding: 0 12px; font-size: 14px; }
  .compact-nav { right: 18px; }

  .hero {
    min-height: auto;
    padding: 66px 22px 74px;
  }

  h1 {
    font-size: clamp(36px, 8.2vw, 58px);
    line-height: 0.96;
  }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 84px; }
  main section[id] { scroll-margin-top: 0; }
  .site-header { flex-wrap: wrap; }
  .brand { flex: 1 1 auto; }
  .brand-name { font-size: clamp(25px, 7vw, 34px); }
  .brand img { width: 62px; height: 62px; }
  .button-small { display: none; }
  .compact-nav { right: 18px; left: 18px; min-width: 0; }

  h1 {
    font-size: clamp(25px, 7.7vw, 40px);
    letter-spacing: -0.035em;
  }

  .hero-copy p {
    font-size: clamp(17px, 4.7vw, 20px);
  }
}

/* ------------------------------------------------------------
   Our Approach
   ------------------------------------------------------------ */
.approach-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 138px) clamp(30px, 5vw, 78px) clamp(104px, 9vw, 144px);
  border-top: 1px solid #e7edf4;
  background: var(--wash);
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 78px);
  width: clamp(58px, 6vw, 92px);
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: var(--kayem-blue);
}

.approach-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.section-introduction {
  max-width: 920px;
  margin-bottom: clamp(54px, 5vw, 78px);
  padding-left: clamp(20px, 2.3vw, 34px);
  border-left: 3px solid rgba(6, 79, 159, 0.28);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--kayem-blue);
  font-family: "Eras", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.approach-section h2 {
  margin: 0;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.section-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--body);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 500;
  line-height: 1.5;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 38px);
}

.approach-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(34px, 3.2vw, 50px);
  border: 1px solid rgba(23, 40, 64, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(23, 40, 64, 0.065);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 79, 159, 0.18);
  background: #fff;
  box-shadow: 0 22px 52px rgba(23, 40, 64, 0.095);
}

.approach-card:hover .approach-icon {
  color: var(--kayem-blue-dark);
  border-color: rgba(6, 79, 159, 0.28);
  transform: translateY(-1px);
}

.approach-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 31px;
  border: 1px solid rgba(6, 79, 159, 0.18);
  border-radius: 50%;
  color: var(--kayem-blue);
  background: #fff;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.approach-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-card h3 {
  margin: 0 0 17px;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.15vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.approach-card p {
  max-width: 320px;
  margin: 0;
  color: var(--body);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .approach-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .approach-section::before { left: 22px; }
  .approach-cards { grid-template-columns: 1fr; }
  .approach-card { min-height: 0; }
  .approach-card p { max-width: 520px; }
}

@media (max-width: 560px) {
  .section-introduction {
    padding-left: 17px;
  }

  .eyebrow { font-size: 13px; }
  .approach-card { padding: 30px 27px 34px; }
}

/* ------------------------------------------------------------
   Our Expertise
   ------------------------------------------------------------ */
.expertise-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 138px) clamp(30px, 5vw, 78px) clamp(104px, 9vw, 144px);
  border-top: 1px solid #e7edf4;
  background: #fff;
}

.expertise-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 78px);
  width: clamp(58px, 6vw, 92px);
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: var(--kayem-blue);
}

.expertise-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.expertise-introduction {
  max-width: 1040px;
}

.expertise-section h2 {
  margin: 0;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 38px);
}

.expertise-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(34px, 3.2vw, 50px);
  border: 1px solid rgba(23, 40, 64, 0.12);
  border-radius: 10px;
  background: var(--wash);
  box-shadow: 0 18px 45px rgba(23, 40, 64, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.expertise-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 79, 159, 0.18);
  background: #fbfdff;
  box-shadow: 0 22px 52px rgba(23, 40, 64, 0.095);
}

.expertise-sketch {
  width: 96px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 0 28px;
  color: #26364c;
  transition: color 0.25s ease, transform 0.25s ease;
}

.expertise-card:hover .expertise-sketch {
  color: #172840;
  transform: translateY(-1px);
}

.expertise-sketch svg {
  width: 96px;
  height: 72px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-sketch .sketch-accent {
  stroke: var(--kayem-blue);
  stroke-width: 2.2;
}

.expertise-card h3 {
  margin: 0 0 17px;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.15vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.expertise-card p {
  max-width: 580px;
  margin: 0;
  color: var(--body);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .expertise-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .expertise-section::before { left: 22px; }
  .expertise-cards { grid-template-columns: 1fr; }
  .expertise-card { min-height: 0; }
  .expertise-card p { max-width: 620px; }
}

@media (max-width: 560px) {
  .expertise-card { padding: 30px 27px 34px; }
  .expertise-sketch { margin-bottom: 24px; }
}


@media (prefers-reduced-motion: reduce) {
  .approach-card,
  .approach-icon,
  .expertise-card,
  .expertise-sketch {
    transition: none;
  }

  .approach-card:hover,
  .approach-card:hover .approach-icon,
  .expertise-card:hover,
  .expertise-card:hover .expertise-sketch {
    transform: none;
  }
}

/* ------------------------------------------------------------
   Our Experience
   ------------------------------------------------------------ */
.experience-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 138px) clamp(30px, 5vw, 78px) clamp(104px, 9vw, 144px);
  border-top: 1px solid #e7edf4;
  background: var(--wash);
}

.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 78px);
  width: clamp(58px, 6vw, 92px);
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: var(--kayem-blue);
}

.experience-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.experience-introduction {
  max-width: 1120px;
}

.experience-section h2 {
  margin: 0;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: clamp(28px, 3.2vw, 52px);
}

.experience-narrative {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(38px, 3.8vw, 58px);
  border: 1px solid rgba(23, 40, 64, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(23, 40, 64, 0.065);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.experience-narrative:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 79, 159, 0.18);
  background: #fff;
  box-shadow: 0 22px 52px rgba(23, 40, 64, 0.095);
}

.experience-narrative p {
  margin: 0;
  color: var(--body);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: 500;
  line-height: 1.62;
}

.experience-narrative p + p {
  margin-top: 1.45em;
}

.experience-support {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(18px, 2vw, 30px);
}

.experience-sketch {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 1.8vw, 26px);
  border: 1px solid rgba(23, 40, 64, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(23, 40, 64, 0.05);
  color: rgba(23, 40, 64, 0.58);
  text-align: center;
  overflow: hidden;
}

.experience-sketch img {
  display: block;
  width: min(100%, 500px);
  max-height: none;
  height: auto;
  object-fit: contain;
}

.experience-quote {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  padding: clamp(20px, 2vw, 30px) clamp(30px, 2.8vw, 44px);
  border: 1px solid rgba(23, 40, 64, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.experience-quote p {
  margin: 0;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.65vw, 43px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.experience-quote p span {
  display: block;
}

.quote-first-statement {
  font-size: 0.94em;
}

.quote-second-statement {
  margin-top: 0.38em;
}

.quote-mark {
  display: block;
  color: rgba(6, 79, 159, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 6.2vw, 108px);
  font-weight: 700;
  line-height: 0.58;
  user-select: none;
}

.quote-mark-open {
  align-self: flex-start;
  margin: 0 0 0.08em;
}

.quote-mark-close {
  align-self: flex-end;
  margin: 0.08em 0 0;
}

@media (max-width: 1080px) {
  .experience-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 28px;
  }

  .experience-narrative {
    min-height: 480px;
  }

  .experience-support {
    grid-template-rows: auto auto;
  }

  .experience-sketch img {
    width: min(100%, 450px);
    max-height: none;
  }
}

@media (max-width: 840px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-narrative {
    min-height: 0;
  }

  .experience-support {
    grid-template-rows: auto auto;
  }

  .experience-sketch {
    min-height: 0;
  }

  .experience-sketch img {
    width: min(100%, 470px);
    max-height: none;
  }

  .experience-quote {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .experience-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .experience-section::before { left: 22px; }
  .experience-sketch { min-height: 300px; }
  .experience-quote {
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (max-width: 560px) {
  .experience-narrative { padding: 30px 27px 34px; }
  .experience-sketch {
    min-height: 270px;
    padding-left: 0;
    padding-right: 0;
  }
  .experience-sketch img { width: min(100%, 340px); }
  .experience-quote { padding-left: 24px; padding-right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .experience-narrative { transition: none; }
  .experience-narrative:hover { transform: none; }
}

/* ------------------------------------------------------------
   Our Contact
   ------------------------------------------------------------ */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 138px) clamp(30px, 5vw, 78px) clamp(104px, 9vw, 144px);
  border-top: 1px solid #e7edf4;
  background: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 78px);
  width: clamp(58px, 6vw, 92px);
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: var(--kayem-blue);
}

.contact-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.contact-introduction {
  max-width: 1040px;
}

.contact-section h2 {
  margin: 0;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
  min-height: 250px;
}

.contact-copy {
  max-width: 690px;
}

.contact-copy p {
  margin: 0;
  color: var(--body);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.62;
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contact-button {
  min-height: 68px;
  gap: 22px;
  padding: 0 clamp(25px, 2.8vw, 42px);
  font-size: clamp(18px, 1.45vw, 22px);
  white-space: nowrap;
}

.contact-arrow {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.contact-button:hover .contact-arrow,
.contact-button:focus-visible .contact-arrow {
  transform: translateX(4px);
}

.contact-email {
  margin-top: 19px;
  color: var(--kayem-blue);
  font-family: "Eras", Arial, sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 1.4;
  text-decoration-color: rgba(6, 79, 159, 0.32);
  text-underline-offset: 4px;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--kayem-blue-dark);
  text-decoration-color: currentColor;
}

@media (max-width: 820px) {
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-section::before { left: 22px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .contact-button {
    width: 100%;
    min-height: 64px;
    justify-content: space-between;
    padding-left: 22px;
    padding-right: 22px;
    white-space: normal;
    text-align: left;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-arrow { transition: none; }
  .contact-button:hover .contact-arrow,
  .contact-button:focus-visible .contact-arrow { transform: none; }
}

/* ------------------------------------------------------------
   Secondary pages and shared footer
   ------------------------------------------------------------ */
.page-introduction {
  padding: clamp(78px, 8vw, 118px) clamp(30px, 5vw, 78px) clamp(72px, 7vw, 102px);
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.page-introduction-inner,
.policy-content,
.footer-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.page-introduction-inner { max-width: 1120px; }

.secondary-page-title {
  width: auto;
  margin: 0 0 22px;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.page-lead {
  max-width: 830px;
  margin: 0;
  color: var(--body);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.55;
}

.policy-section {
  padding: clamp(72px, 7vw, 108px) clamp(30px, 5vw, 78px) clamp(88px, 8vw, 126px);
  background: var(--paper);
}

.policy-content {
  max-width: 840px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.72;
}

.policy-content h2 {
  margin: 2.35em 0 0.55em;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.policy-content h2:first-of-type { margin-top: 1.7em; }
.policy-content p { margin: 0 0 1.15em; }
.policy-content a { color: var(--kayem-blue); text-underline-offset: 0.17em; }
.policy-content a:hover,
.policy-content a:focus-visible { color: var(--kayem-blue-dark); }
.policy-updated { color: #6d7987; font-size: 16px; }
.policy-note {
  margin-top: 3.2em;
  padding: 22px 24px;
  border-left: 4px solid var(--kayem-blue);
  background: var(--wash);
}
.policy-note p { margin: 0; }

.site-footer {
  padding: clamp(52px, 5vw, 76px) clamp(30px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--kayem-blue-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(180px, 0.75fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.footer-identity p,
.footer-contact p { margin: 15px 0 0; line-height: 1.5; }
.footer-navigation { display: grid; gap: 13px; }
.footer-navigation a,
.footer-contact a {
  color: #fff;
  text-decoration-color: rgba(255,255,255,.38);
  text-underline-offset: .2em;
}
.footer-navigation a:hover,
.footer-navigation a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible { text-decoration-color: #fff; }
.footer-contact { text-align: right; }

:focus-visible {
  outline: 3px solid rgba(6, 79, 159, 0.42);
  outline-offset: 4px;
}
.site-footer :focus-visible { outline-color: rgba(255,255,255,.72); }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  .secondary-page-title { font-size: clamp(34px, 10vw, 46px); }
  .policy-content { font-size: 17px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-contact { grid-column: auto; }
}

/* ------------------------------------------------------------
   v1.1 Curated SVG asset integration
   ------------------------------------------------------------ */
.approach-icon {
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.approach-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.approach-card:hover .approach-icon {
  border-color: transparent;
}

.expertise-sketch {
  width: 128px;
  height: 112px;
  margin-bottom: 28px;
}

.expertise-sketch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-sketch {
  padding: clamp(16px, 1.8vw, 28px);
}

.experience-sketch img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 410px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .approach-icon {
    width: 104px;
    height: 104px;
  }

  .expertise-sketch {
    width: 120px;
    height: 104px;
  }

  .experience-sketch img {
    width: min(100%, 390px);
  }
}

@media (max-width: 560px) {
  .approach-icon {
    width: 96px;
    height: 96px;
  }

  .expertise-sketch {
    width: 112px;
    height: 96px;
  }
}

/* v1.5: tighten the opening quotation mark against the first line without overlap. */
.quote-mark-open {
  line-height: 0.34;
  margin: 0 0 0.015em;
  transform: translateY(0.08em);
}
