/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:        #006C7A;
  --primary-dark:   #004f5a;
  --primary-deeper: #003540;
  --primary-light:  #d6edef;
  --primary-mid:    #b2dde2;
  --warm-pale:      #f5f0e8;
  --warm-mid:       #e8dfd0;
  --accent:         #e8a87c;
  --text:           #1a2e32;
  --text-muted:     #4a6a70;
  --white:          #ffffff;
  --font-sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-family: var(--font-sans), sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans), sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ── HEADER ── */
.hdr {
  background: var(--primary-deeper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 52px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hdr-logo {
  font-family: var(--font-serif), sans-serif;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hdr-logo span {
  color: var(--primary-mid);
}

.hdr-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hdr-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.hdr-nav a:hover {
  color: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--primary-deeper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 42, 52, 0.88) 38%, rgba(0, 80, 90, 0.35) 70%, transparent 100%),
    url('image-hero-background.png') center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--primary-mid);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-serif), sans-serif;
  font-size: 48px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary-mid);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--primary-dark);
}

.hero-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── MISSION BAND ── */
.mission {
  background: var(--primary);
  padding: 5rem 2rem;
  text-align: center;
}

.mission-inner {
  max-width: 55%;
  margin: 0 auto;
}

.mission-inner p {
  font-family: var(--font-serif), sans-serif;
  font-size: 26px;
  line-height: 1.55;
  color: var(--white);
  font-weight: 400;
}

.mission-inner p em {
  font-style: italic;
  color: var(--primary-mid);
}

.mission-rule {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 1.5rem auto;
}

.mission-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  font-weight: 300;
}

/* ── FOCUS BOXES ── */
.focus-section {
  background: var(--warm-pale);
  padding: 4rem 2rem;
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.focus-inner {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.focus-box {
  flex: 0 1 260px;
  aspect-ratio: 1.6 / 1;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--warm-mid);
  transition: transform 0.25s, box-shadow 0.25s;
}

.focus-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 80, 90, 0.18);
}

.focus-box-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.focus-box:hover .focus-box-bg {
  transform: scale(1.05);
}

.focus-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 42, 52, 0.82) 0%, rgba(0, 42, 52, 0.2) 60%, transparent 100%);
}

.focus-box-label {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
}

.focus-box-label h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.focus-box-label span {
  font-size: 11px;
  color: var(--primary-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CONTENT PANELS ── */
.panel {
  padding: 5rem 6rem;
  border-top: 1px solid var(--warm-mid);
}

.panel:nth-of-type(odd) {
  background: var(--white);
}

.panel:nth-of-type(even) {
  background: var(--warm-pale);
}

.panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.panel-inner.reverse {
  direction: rtl;
}

.panel-inner.reverse > * {
  direction: ltr;
}

.panel .panel-tag {
  margin-top: 0.75rem;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.panel h2 {
  font-family: var(--font-serif), sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.panel p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  border-bottom: 1px solid var(--primary-mid);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.panel-link:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.panel-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat-num {
  font-family: var(--font-serif), sans-serif;
  font-size: 34px;
  color: var(--primary);
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1rem 1.5rem;  /* last value is the left indent */
}

.content-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-size: 15px;
  color: #4a6a70;           /* matches --text-muted */
  line-height: 1.6;
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #006C7A;      /* matches --primary */
}

.content-list-separated {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-list-separated li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-size: 15px;
  color: #4a6a70;           /* matches --text-muted */
  line-height: 1.75;
  border-bottom: 1px solid #e8dfd0;  /* matches --warm-mid */
}

.content-list-separated li:last-child {
  border-bottom: none;
}

.content-list-separated li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #006C7A;      /* matches --primary */
}

/* ── NUMBERED TOP LEVEL ── */
.content-list-numbered {
  list-style: none;
  counter-reset: section;
  padding: 0;
  margin: 1rem 0;
}

.content-list-numbered > li {
  counter-increment: section;
  position: relative;
  padding: 0.45rem 0 0.45rem 1.75rem;
  font-size: 15px;
  font-weight: 500;
  color: #1a2e32;            /* --text */
  line-height: 1.75;
  border-bottom: 1px solid #e8dfd0;  /* --warm-mid */
}

.content-list-numbered > li:last-child {
  border-bottom: none;
}

.content-list-numbered > li::before {
  content: counter(section);
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 18px;
  height: 18px;
  background: var(--primary);       /* --primary */
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── NESTED UNORDERED ── */
.content-list-nested {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.25rem 0.5rem;
}

.content-list-nested li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.25rem;
  font-size: 14px;
  font-weight: 400;
  color: #5ab3be;            /* --text-muted */
  line-height: 1.7;
}

.content-list-nested li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;               /* aligns with the cap-height of the first line */
  transform: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5ab3be;
}

/* ── FORM CONTAINER ── */
.content-form {
  margin: 1rem 0;
}

/* ── FIELDSET / LEGEND ── */
.form-group {
  border: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.form-legend {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #006C7A;             /* --primary */
  margin-bottom: 1.25rem;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #e8dfd0;  /* --warm-mid */
  padding-bottom: 0.5rem;
}

/* ── FIELD WRAPPER ── */
.form-field {
  margin-bottom: 1.1rem;
}

/* ── TWO-COLUMN ROW ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 600px) {
  .form-row {
  grid-template-columns: 1fr;
  }
}

/* ── LABELS ── */
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);             /* --text */
  margin-bottom: 0.4rem;
}

/* ── TEXT INPUTS & TEXTAREA ── */
.form-input {
  display: block;
  width: 100%;
  padding: 9px 20px 9px 26px;
  font-family: var(--font-sans), system-ui, sans-serif;
  font-size: 15px;
  color: var(--text);             /* --text */
  background: #ffffff;
  border: 1px solid #e8dfd0; /* --warm-mid */
  border-radius: 50px 18px 18px 50px / 50px 14px 14px 50px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #a0b4b8;
}

.form-input:hover {
  border-color: #b2dde2;     /* --primary-mid */
}

.form-input:focus {
  border-color: var(--primary);     /* --primary */
  box-shadow: 0 0 0 3px rgba(0, 108, 122, 0.1);
  border-radius: 50px 18px 18px 50px / 50px 14px 14px 50px;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
  border-radius: 24px 8px 8px 24px / 24px 8px 8px 24px;
}

.form-textarea:focus {
  border-radius: 24px 8px 8px 24px / 24px 8px 8px 24px;
}

/* ── CHECKBOXES ── */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.check-input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1px solid #e8dfd0; /* --warm-mid */
  border-radius: 2px;
  background: #ffffff;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.check-input:hover {
  border-color: var(--primary);     /* --primary */
}

.check-input:checked {
  background: var(--primary);       /* --primary */
  border-color: #006C7A;
}

.check-input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 108, 122, 0.1);
}

.check-label {
  font-size: 15px;
  color: #4a6a70;            /* --text-muted */
  line-height: 1.55;
  cursor: pointer;
}

/* ── CONSENT ROW ── */
.form-consent {
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e8dfd0;  /* --warm-mid */
}

.form-inline-link {
  color: #006C7A;            /* --primary */
  text-decoration: none;
  border-bottom: 1px solid #b2dde2;  /* --primary-mid */
  padding-bottom: 1px;
}

.form-inline-link:hover {
  color: #004f5a;            /* --primary-dark */
  border-color: #006C7A;
}

/* ── SUBMIT BUTTON ── */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);       /* --primary */
  color: #ffffff;
  padding: 12px 26px;
  font-family: var(--font-sans), system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px 18px 18px 50px / 50px 14px 14px 50px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #004f5a;       /* --primary-dark */
}

.form-submit:active {
  transform: scale(0.98);
}

.form-field:has(input[required]) .form-label::after,
.form-field:has(textarea[required]) .form-label::after {
  content: ' *';
  color: #a32d2d;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23006C7A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.25rem;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #a32d2d;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.form-error::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a32d2d;
}

.form-error-block {
  background: #fdf2f2;
  border: 1px solid #f8d7da;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.form-error-heading {
  color: #a32d2d;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.form-error-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-error-list li {
  color: #a32d2d;
  font-size: 13px;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}

.form-error-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #a32d2d;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary-deeper);
  padding: 3.5rem 6rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: var(--font-serif), sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 240px;
}

.footer-contact {
  margin-top: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.6rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hdr {
  padding: 0 1.5rem;
  }

  .hdr-nav {
  gap: 1.2rem;
  }

  .hero-content {
  padding: 0 2.5rem;
  }

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

  .mission-inner {
  max-width: 85%;
  }

  .focus-inner {
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  }

  .focus-box {
  flex: 0 0 auto;
  width: 100%;
  }

  .panel {
  padding: 3.5rem 2rem;
  }

  .panel-inner,
  .panel-inner.reverse {
  grid-template-columns: 1fr;
  direction: ltr;
  gap: 2rem;
  }

  .footer {
  padding: 3rem 2rem 1.5rem;
  }

  .footer-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  }

  .footer-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .hdr-nav {
  display: none;
  }

  .hero {
  height: auto;
  padding: 4rem 0;
  }

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

  .hero-content {
  padding: 0 1.5rem;
  }

  .mission-inner {
  max-width: 95%;
  }

  .mission-inner p {
  font-size: 20px;
  }

  .stat-row {
  gap: 1.25rem;
  }

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