@charset "UTF-8";
:root {
  --font1: system-ui, BlinkMacSystemFont, Roboto, "Segoe UI", Segoe, "Helvetica Neue", Tahoma, sans-serif;
  --font2: "Playfair Display", Georgia, serif;
  --f1: 45px;
  --g1: 70px;
  --f2: 35px;
  --g2: 56px;
  --f3: 28px;
  --g3: 45px;
  --f4: 22px;
  --g4: 37px;
  --f5: 17px;
  --g5: 30px;
  --f6: 13px;
  --g6: 24px;
  --x1: 49px;
  --x2: 30px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --w-content: 720px;
  --w-total: 1160px;
  --gutter-full: 30px;
  --gutter-mobile: 7px;
  --bg1: #FFFFFF;
  --bg2: #FAF8F5;
  --c1: #2C2C2C;
  --c2: #1B6B72;
  --ca: #1B6B72;
  --border1: 1px solid #E5E7EB;
  --border2: 1px solid rgba(27,107,114,0.2);
  --border3: 2px solid #C9973A;
  --teal: #1B6B72;
  --teal-dark: #134f55;
  --teal-light: #e8f4f5;
  --gold: #C9973A;
  --gold-light: #f7efe0;
  --mid-grey: #6B7280;
  --charcoal: #2C2C2C;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: normal;
}

img, fieldset {
  border: 0;
}

abbr {
  text-decoration: none;
}

code {
  line-height: 1em;
}

pre {
  overflow: auto;
  word-wrap: normal;
  tab-size: 4;
}

sub, sup {
  line-height: 0.5em;
}

img {
  max-width: 100%;
  height: auto;
}

iframe, video, embed, object {
  display: block;
  max-width: 100%;
}

img, .left, .right, .center {
  display: block;
}

.center {
  float: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--teal);
  color: #ffffff;
}

a {
  color: var(--ca);
  text-decoration: none;
}
a:hover {
  color: var(--teal-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font2);
  color: var(--c1);
}

.container {
  box-sizing: border-box;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 734px) {
  .container {
    max-width: var(--w-content);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 780px) {
  .container {
    max-width: 100%;
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 1220px) {
  .container {
    max-width: var(--w-total);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
button, .button {
  display: inline-block;
  padding: 14px var(--x4);
  border-radius: var(--radius);
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
  border: 2px solid transparent;
  text-decoration: none;
  background: var(--teal);
  color: #ffffff;
}
button:hover, .button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.button.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.button.btn-outline:hover {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  transform: translateY(-1px);
}

.button.hero-btn-primary {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.button.hero-btn-primary:hover {
  background: #b8842e;
  border-color: #b8842e;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 151, 58, 0.3);
}

.button.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.button.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.button.save {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
}
.button.save:hover {
  background: var(--teal-dark);
  color: #ffffff;
}

.button.delete {
  background: #c0392b;
  color: #ffffff;
  border-color: #c0392b;
}
.button.delete:hover {
  background: #96281b;
  color: #ffffff;
}

.button.action {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.button.action:hover {
  background: #b8842e;
  color: #ffffff;
}

.button.update {
  background: var(--teal-light);
  color: var(--teal);
  border-color: var(--teal-light);
}
.button.update:hover {
  background: var(--teal);
  color: #ffffff;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: var(--border1);
}

.nav-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (min-width: 1220px) {
  .nav-inner {
    padding: 0 var(--gutter-full);
  }
}

.nav-logo {
  font-family: var(--font2);
  font-size: var(--f4);
  font-weight: 700;
  line-height: var(--g4);
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo:hover {
  color: var(--teal-dark);
}
.nav-logo span {
  display: block;
  font-family: var(--font1);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--mid-grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-bottom: 0;
}
.nav-links a {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  color: var(--c1);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: var(--f6) !important;
  line-height: var(--g6);
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle-label span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c1);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--x6) 0;
    border-bottom: var(--border1);
    box-shadow: var(--shadow);
  }
  .nav-links li a {
    display: block;
    padding: 12px var(--x5);
    font-size: var(--f5);
    line-height: var(--g5);
  }
  .nav-cta {
    margin: 8px var(--x5) 4px;
    text-align: center;
    border-radius: var(--radius);
  }
  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 60%, #0d3a3e 100%);
  padding: 160px var(--x5) var(--x1);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--x2);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--x5);
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--x4);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--x6);
  flex-wrap: wrap;
  align-items: center;
}

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--f6);
  line-height: var(--g6);
  text-align: center;
  padding: var(--x5);
}
.hero-photo-frame svg {
  opacity: 0.4;
}

.hero-trust {
  display: flex;
  gap: var(--x4);
  margin-top: var(--x3);
  padding-top: var(--x3);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-item strong {
  font-family: var(--font2);
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
}
.hero-trust-item span {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    display: none;
  }
  .hero {
    padding: 120px var(--x5) 72px;
  }
}
/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: var(--g2);
  font-weight: 700;
  margin-bottom: var(--x6);
}

.section-intro {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--mid-grey);
  max-width: var(--w-content);
}

.section-header {
  margin-bottom: var(--x2);
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-intro {
  margin: 0 auto;
}

/* ============================================
   RECOGNITION
   ============================================ */
.recognition {
  padding: var(--x1) var(--x5);
  background: var(--bg2);
}

.recognition-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.recognition-content .section-title {
  color: var(--teal);
}

.recognition-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--x6);
  margin: var(--x4) 0;
  margin-bottom: 0;
}
.recognition-list li {
  display: flex;
  gap: var(--x6);
  align-items: flex-start;
  font-size: var(--f5);
  line-height: var(--g5);
}
.recognition-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

.recognition-close {
  font-size: var(--f4);
  line-height: var(--g4);
  font-family: var(--font2);
  color: var(--teal);
  font-style: italic;
  margin-top: var(--x5);
  padding-top: var(--x5);
  border-top: 2px solid var(--teal-light);
}

.recognition-quote {
  background: var(--bg1);
  border-radius: var(--radius-lg);
  padding: var(--x3);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.recognition-quote blockquote {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  margin-bottom: var(--x5);
}
.recognition-quote cite {
  font-style: normal;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
  font-weight: 500;
}

@media (max-width: 768px) {
  .recognition-inner {
    grid-template-columns: 1fr;
    gap: var(--x3);
  }
}
/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--x1) var(--x5);
  background: var(--bg1);
}

.about-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--mid-grey);
  font-size: var(--f6);
  line-height: var(--g6);
  text-align: center;
  padding: var(--x5);
  position: relative;
  overflow: hidden;
}
.about-photo-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.about-photo-frame svg {
  opacity: 0.3;
}

.about-content .section-title {
  color: var(--teal);
}

.about-content p {
  color: var(--mid-grey);
  margin-bottom: var(--x6);
  font-size: var(--f5);
  line-height: var(--g5);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: var(--x4) 0 var(--x4);
}

.credential-badge {
  background: var(--teal-light);
  color: var(--teal);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 24px;
  border: var(--border2);
}

.about-philosophy {
  background: var(--gold-light);
  border-radius: var(--radius);
  padding: var(--x5);
  margin-top: var(--x5);
  border-left: 3px solid var(--gold);
}
.about-philosophy p {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  font-style: italic;
  margin: 0;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-photo-frame {
    max-width: 320px;
    margin: 0 auto;
  }
}
/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--x1) var(--x5);
  background: var(--bg2);
}

.services-inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x4);
  margin-bottom: var(--x3);
}

.service-card {
  background: var(--bg1);
  border-radius: var(--radius-lg);
  padding: var(--x3) var(--x4);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-top-color: var(--gold);
}
.service-card.standard {
  border-top-color: var(--teal);
}
.service-card h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-bottom: 8px;
  color: var(--teal);
}
.service-card p {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
  flex: 1;
  margin-bottom: var(--x5);
}
.service-card .button {
  width: 100%;
  text-align: center;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--x5);
  font-size: var(--f3);
  line-height: var(--g3);
}

.service-tag {
  display: inline-block;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--x6);
}

.service-meta {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
  margin-bottom: var(--x5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-discovery {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: var(--x3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--x4);
  flex-wrap: wrap;
}
.services-discovery h3 {
  font-size: var(--f3);
  line-height: var(--g3);
  color: #ffffff;
  margin-bottom: 8px;
}
.services-discovery p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--f5);
  line-height: var(--g5);
  max-width: 480px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--x1) var(--x5);
  background: var(--bg1);
}

.process-inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x3);
  position: relative;
  margin-top: var(--x6);
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--gold), var(--teal-light));
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-bottom: 12px;
  color: var(--teal);
}
.process-step p {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-family: var(--font2);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--x5);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg1), 0 0 0 8px var(--teal-light);
}

.process-step:nth-child(2) .process-number {
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--bg1), 0 0 0 8px var(--gold-light);
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--x4);
  }
  .process-steps::before {
    display: none;
  }
}
/* ============================================
   EMPLOYERS
   ============================================ */
.employers {
  padding: var(--x1) var(--x5);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.employers::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(201, 151, 58, 0.06));
  pointer-events: none;
}
.employers .section-label {
  color: var(--gold);
}
.employers .section-title {
  color: #ffffff;
}
.employers .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.employers-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.employers-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--x6);
  margin: var(--x4) 0;
  margin-bottom: var(--x4);
}
.employers-benefits li {
  display: flex;
  gap: var(--x6);
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--f5);
  line-height: var(--g5);
}
.employers-benefits li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.employers-card {
  background: var(--bg1);
  border-radius: var(--radius-lg);
  padding: var(--x3);
  box-shadow: var(--shadow-lg);
}
.employers-card h3 {
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--teal);
  margin-bottom: var(--x6);
}
.employers-card p {
  color: var(--mid-grey);
  font-size: var(--f6);
  line-height: var(--g6);
  margin-bottom: var(--x5);
}
.employers-card .button {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.employers-card-note {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
  text-align: center;
  margin-top: var(--x6) !important;
}

@media (max-width: 900px) {
  .employers-inner {
    grid-template-columns: 1fr;
    gap: var(--x3);
  }
}
/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--x1) var(--x5);
  background: var(--teal-light);
}

.testimonials-inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x4);
}

.testimonial-card {
  background: var(--bg1);
  border-radius: var(--radius-lg);
  padding: var(--x4);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial-card blockquote {
  font-family: var(--font2);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  flex: 1;
  margin-bottom: var(--x5);
}

.testimonial-stars {
  color: var(--gold);
  font-size: var(--f4);
  line-height: var(--g4);
  letter-spacing: 2px;
  margin-bottom: var(--x6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: var(--border1);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c1);
}

.testimonial-role {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
/* ============================================
   RESOURCES
   ============================================ */
.resources {
  padding: var(--x1) var(--x5);
  background: var(--bg1);
}

.resources-inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.resources-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--x5);
  margin-bottom: var(--x3);
}

.resource-category {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: var(--x4) var(--x5);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}
.resource-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--teal-light);
}
.resource-category h3 {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--teal);
  margin-bottom: 8px;
}
.resource-category p {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
}

.resource-category-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: var(--x6);
  display: block;
}

.resources-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .resources-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .resources-categories {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: var(--x1) var(--x5);
  background: var(--gold-light);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .section-title {
  color: var(--teal);
}
.newsletter-inner p {
  color: var(--mid-grey);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--x1) var(--x5);
  background: var(--bg2);
}

.contact-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content .section-title {
  color: var(--teal);
}

.contact-content p {
  color: var(--mid-grey);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x6);
}

.contact-process {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--x4);
  margin-bottom: 0;
}
.contact-process li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
}
.contact-process li strong {
  color: var(--teal);
  min-width: 24px;
  font-family: var(--font2);
}

.contact-form-wrap {
  background: var(--bg1);
  border-radius: var(--radius-lg);
  padding: var(--x3);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--x3);
  }
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: var(--x2) var(--x5) var(--x4);
}

.footer-inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--x3);
  padding-bottom: var(--x3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--x4);
}

.footer-brand .nav-logo {
  color: #ffffff;
  display: inline-block;
  margin-bottom: var(--x6);
}
.footer-brand .nav-logo:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-brand .nav-logo span {
  color: rgba(255, 255, 255, 0.5);
}
.footer-brand p {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--x6);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.footer-col ul a {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--x6);
}

.footer-copyright {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: var(--x5);
}
.footer-legal a {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--x4);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================
   PAGE CONTENT
   ============================================ */
.content-section {
  padding: var(--x1) var(--x5);
  padding-top: calc(var(--x1) + 72px);
  background: var(--bg1);
  min-height: 60vh;
}

.content-container {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0;
}

.headline-area {
  margin-bottom: var(--x4);
  padding-bottom: var(--x4);
  border-bottom: var(--border1);
}

.headline-area h1 {
  font-size: var(--f2);
  line-height: var(--g2);
  color: var(--teal);
  margin-bottom: 0;
}

.byline {
  display: flex;
  gap: var(--x5);
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  margin-top: var(--x4);
  margin-bottom: var(--x6);
}
.page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content h4:first-child, .page-content h5:first-child, .page-content h6:first-child {
  margin-top: 0;
}
.page-content h1:last-child, .page-content h2:last-child, .page-content h3:last-child, .page-content h4:last-child, .page-content h5:last-child, .page-content h6:last-child {
  margin-bottom: 0;
}
.page-content h2 {
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--teal);
}
.page-content h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--teal);
}
.page-content h4 {
  font-size: var(--f5);
  line-height: var(--g5);
}
.page-content p {
  margin-bottom: var(--x5);
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content ul, .page-content ol {
  margin-bottom: var(--x5);
  padding-left: var(--x4);
}
.page-content ul:last-child, .page-content ol:last-child {
  margin-bottom: 0;
}
.page-content li {
  margin-bottom: 8px;
}
.page-content blockquote {
  padding: var(--x5) var(--x4);
  border-left: 4px solid var(--gold);
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--x5);
  font-family: var(--font2);
  font-style: italic;
  font-size: var(--f4);
  line-height: var(--g4);
}
.page-content blockquote:last-child {
  margin-bottom: 0;
}
.page-content a {
  color: var(--teal);
  text-decoration: underline;
}
.page-content a:hover {
  color: var(--teal-dark);
}
.page-content img {
  border-radius: var(--radius);
  margin-bottom: var(--x5);
}
.page-content img:last-child {
  margin-bottom: 0;
}
.page-content .callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: var(--x5) var(--x4);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--x5);
}
.page-content .callout:last-child {
  margin-bottom: 0;
}
.page-content .caption {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
  margin-bottom: var(--x5);
}
.page-content .caption:last-child {
  margin-bottom: 0;
}
.page-content .impact {
  font-family: var(--font2);
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--teal);
  margin-bottom: var(--x5);
}
.page-content .impact:last-child {
  margin-bottom: 0;
}
.page-content .highlight {
  background: var(--gold-light);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ============================================
   ERROR PAGE
   ============================================ */
.content-404 .error-content {
  text-align: center;
  padding: var(--x1) 0;
}
.content-404 .error-content .section-label {
  color: var(--gold);
}
.content-404 .error-content .section-title {
  color: var(--teal);
  margin-bottom: var(--x5);
}
.content-404 .error-content p {
  color: var(--mid-grey);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=url],
textarea,
select {
  width: 100%;
  padding: 12px var(--x5);
  border: var(--border1);
  border-radius: var(--radius);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background: var(--bg1);
  transition: border-color 0.2s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27, 107, 114, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  color: var(--c1);
  margin-bottom: 6px;
}

/*---:[ Custom CSS ]:---*/
/* Photo frame fixes for real images */
.about-photo-frame,
.hero-photo-frame {
  aspect-ratio: auto;
  background: none;
  padding: 0;
}

.about-photo-frame img,
.hero-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Match form buttons to nav-cta style */
.ep-contact-form button[type=submit],
.ep-newsletter-form button[type=submit] {
  background: var(--teal);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: var(--f6);
  line-height: var(--g6);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.ep-contact-form button[type=submit]:hover,
.ep-newsletter-form button[type=submit]:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Subpage content container */
.page-container {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 var(--x5);
}

.page-title {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: var(--f1);
  line-height: var(--g1);
  color: var(--teal);
  margin-bottom: var(--x3);
}

.page-content {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--mid-grey);
}

.page-content p {
  margin-bottom: var(--x4);
}

.page-content ul, .page-content ol {
  margin: 0 0 var(--x4) var(--x3);
}

.page-content li {
  margin-bottom: var(--x6);
}

.page-content a {
  color: var(--teal);
}

.page-content a:hover {
  color: var(--teal-dark);
}

.page-content .resources-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--x4);
  margin: var(--x2) 0;
}

/* Resource category cards */
.page-content .resource-category {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-content .resource-category:hover {
  text-decoration: none;
  color: inherit;
}

.page-content .resource-category h3 {
  margin-bottom: var(--x5);
}

.page-content .resource-category p {
  line-height: var(--g5);
}

/* Fix button text colour in page content */
.page-content .button,
.page-content a.button {
  color: #ffffff;
  text-decoration: none;
}

.page-content .button:hover,
.page-content a.button:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Mobile: show only CTA button */
.nav-toggle,
.nav-toggle-label {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }
  .nav-links li:last-child {
    display: block;
  }
  .nav-cta {
    margin: 0;
  }
}
/* Outline button in page content */
.page-content .btn-outline,
.page-content a.btn-outline {
  color: var(--teal);
  background: transparent;
  border: 2px solid var(--teal);
  text-decoration: none;
}

.page-content .btn-outline:hover,
.page-content a.btn-outline:hover {
  color: #ffffff;
  background: var(--teal);
  text-decoration: none;
}

/* GRT headings in page content */
.page-content h1 {
  font-size: var(--f2);
  line-height: var(--g2);
  color: var(--teal);
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
}

/* Resource Hub Infographic Components */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--x4);
  margin: var(--x3) 0;
}

.infographic-card {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: var(--x3);
  border-top: 4px solid var(--teal);
}

.infographic-card.gold-accent {
  border-top-color: var(--gold);
}

.infographic-card h4 {
  color: var(--teal);
  margin-bottom: var(--x5);
  font-size: var(--f5);
  line-height: var(--g5);
}

.infographic-card p, .infographic-card li {
  font-size: var(--f6);
  line-height: var(--g6);
}

.infographic-card ul {
  margin: var(--x5) 0 0 var(--x4);
}

.infographic-card li {
  margin-bottom: var(--x6);
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: var(--x3) 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.matrix-cell {
  padding: var(--x4);
  text-align: center;
}

.matrix-cell h4 {
  margin-bottom: var(--x5);
  font-size: var(--f5);
  line-height: var(--g5);
}

.matrix-cell p {
  font-size: var(--f6);
  line-height: var(--g6);
  margin: 0;
}

.matrix-cell.high-high {
  background: var(--teal);
  color: #ffffff;
}

.matrix-cell.high-low {
  background: var(--bg2);
  color: var(--mid-grey);
}

.matrix-cell.low-high {
  background: #e8f4f5;
}

.matrix-cell.low-low {
  background: #f5f0e8;
}

.matrix-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--mid-grey);
  margin-bottom: var(--x6);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--x5);
  margin: var(--x3) 0;
}

.comparison-col {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: var(--x3);
}

.comparison-col.teal {
  border-top: 4px solid var(--teal);
}

.comparison-col.warm {
  border-top: 4px solid var(--gold);
}

.comparison-col h4 {
  color: var(--teal);
  margin-bottom: var(--x4);
  font-size: var(--f4);
  line-height: var(--g4);
}

.comparison-col li {
  font-size: var(--f6);
  line-height: var(--g6);
  margin-bottom: var(--x5);
}

.ikigai-wrapper {
  position: relative;
  max-width: 500px;
  margin: var(--x2) auto;
  aspect-ratio: 1;
}

.ikigai-circle {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  padding: var(--x4);
}

.ikigai-circle.passion {
  top: 0;
  left: 20%;
  background: rgba(27, 107, 114, 0.15);
  color: var(--teal);
}

.ikigai-circle.mission {
  top: 20%;
  right: 0;
  background: rgba(201, 151, 58, 0.15);
  color: var(--gold-dark, #8a6820);
}

.ikigai-circle.profession {
  bottom: 0;
  right: 20%;
  background: rgba(27, 107, 114, 0.1);
  color: var(--teal);
}

.ikigai-circle.vocation {
  bottom: 20%;
  left: 0;
  background: rgba(201, 151, 58, 0.1);
  color: var(--gold-dark, #8a6820);
}

.ikigai-centre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--teal);
  color: #ffffff;
  border-radius: 50%;
  width: 25%;
  height: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
}

.checklist {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: var(--x3);
  margin: var(--x3) 0;
}

.checklist h3 {
  color: var(--teal);
  margin-bottom: var(--x4);
}

.checklist ol {
  margin: 0 0 0 var(--x4);
}

.checklist li {
  margin-bottom: var(--x5);
  font-size: var(--f5);
  line-height: var(--g5);
}

.resource-cta {
  background: var(--teal);
  color: #ffffff;
  border-radius: var(--radius);
  padding: var(--x3);
  text-align: center;
  margin: var(--x2) 0;
}

.resource-cta h3 {
  color: #ffffff;
  margin-bottom: var(--x5);
}

.resource-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--x4);
}

.resource-cta .button {
  background: var(--gold);
  color: #ffffff;
  text-decoration: none;
}

.resource-cta .button:hover {
  background: var(--gold-dark, #8a6820);
  text-decoration: none;
}

@media (max-width: 768px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .ikigai-wrapper {
    max-width: 300px;
  }
}
/* === Resource Hub: revised plan additions === */
/* Opening coaching question */
.page-content .opening-question {
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--teal);
  font-style: italic;
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  border-left: 4px solid var(--gold);
  padding: var(--x5) 0 var(--x5) var(--x3);
  margin: var(--x2) 0;
}

@media (max-width: 768px) {
  .page-content .opening-question {
    font-size: var(--f4);
    line-height: var(--g4);
  }
}
/* Source attribution note */
.page-content .source-note {
  font-size: var(--f6);
  line-height: var(--g6);
  color: #666666;
  font-style: italic;
  margin: var(--x4) 0 var(--x2) 0;
}

/* Last reviewed footer */
.page-content .last-reviewed {
  font-size: var(--f6);
  line-height: var(--g6);
  color: #888888;
  font-style: italic;
  text-align: right;
  margin-top: var(--x2);
  border-top: 1px solid #e5e7eb;
  padding-top: var(--x5);
}

/* Helen's point-of-view panel */
.helen-pov {
  background: #f7efe0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--x3);
  margin: var(--x2) 0;
}

.helen-pov h3 {
  color: var(--teal);
  margin-bottom: var(--x4);
  font-size: var(--f4);
  line-height: var(--g4);
}

.helen-pov p {
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}

.helen-pov p:last-child {
  margin-bottom: 0;
}

.helen-pov ol {
  margin: var(--x4) 0 0 var(--x3);
}

.helen-pov li {
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}

/* Career alignment lens (replaces Ikigai) */
.career-lens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x4);
  margin: var(--x3) 0;
}

.career-lens-item {
  background: #FAF8F5;
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: var(--x3);
}

.career-lens-item h4 {
  color: var(--teal);
  margin-bottom: var(--x5);
  font-size: var(--f5);
  line-height: var(--g5);
}

.career-lens-item p {
  font-size: var(--f6);
  line-height: var(--g6);
  margin: 0;
}

@media (max-width: 768px) {
  .career-lens {
    grid-template-columns: 1fr;
  }
}
/* Light outline button inside CTA panels */
.resource-cta .button.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.resource-cta .button.btn-outline-light:hover {
  background: #ffffff;
  color: var(--teal);
}

.resource-cta .button {
  display: inline-block;
  margin: var(--x6) var(--x5) var(--x6) 0;
}

@media (max-width: 768px) {
  .resource-cta .button {
    margin-right: 0;
  }
}

/* Resource page newsletter block */
.resource-newsletter {
  background: #FAF8F5;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--x3);
  margin: var(--x2) 0;
}
.resource-newsletter h3 {
  color: var(--teal);
  margin-bottom: var(--x5);
  font-size: var(--f4);
  line-height: var(--g4);
}
.resource-newsletter p {
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}

/* Thank-you page steps */
.thankyou-steps {
  margin: var(--x3) 0;
}
.thankyou-step {
  background: var(--bg2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: var(--x3);
  margin-bottom: var(--x4);
}
.thankyou-step h3 {
  color: var(--teal);
  margin-bottom: var(--x5);
  font-size: var(--f4);
  line-height: var(--g4);
}
.thankyou-step p {
  font-size: var(--f5);
  line-height: var(--g5);
  margin: 0;
}

/* Thank-you inline resource cards */
.page-content .infographic-grid a.resource-category {
  background: var(--bg2);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--x3);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-content .infographic-grid a.resource-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: inherit;
  text-decoration: none;
}
.page-content .infographic-grid a.resource-category h4 {
  color: var(--teal);
  margin-bottom: var(--x5);
  font-size: var(--f5);
  line-height: var(--g5);
}
.page-content .infographic-grid a.resource-category p {
  font-size: var(--f6);
  line-height: var(--g6);
  margin: 0;
}