/* Halcyon Partners — calm clarity for complex operations */

:root {
  --teal-deep: #0b3d3a;
  --teal: #0f4a46;
  --teal-mid: #16635d;
  --teal-soft: #2a7a73;
  --mist: #e7eef0;
  --pearl: #f7fafb;
  --white: #ffffff;
  --ink: #14201f;
  --ink-soft: #3a4a48;
  --muted: #5c6e6c;
  --amber: #c9a227;
  --amber-soft: #e8d48a;
  --line: rgba(11, 61, 58, 0.12);
  --shadow: 0 18px 50px rgba(11, 61, 58, 0.12);
  --radius: 14px;
  --nav-h: 78px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-deep);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.45em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

/* Progressive reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* Atmosphere */
.bg-mist {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(42, 122, 115, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(201, 162, 39, 0.06), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--pearl) 100%);
}

.bg-waves {
  position: relative;
  overflow: hidden;
}

.bg-waves::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 28px,
      rgba(11, 61, 58, 0.035) 28px,
      rgba(11, 61, 58, 0.035) 29px
    ),
    radial-gradient(circle at 20% 80%, rgba(22, 99, 93, 0.07), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(201, 162, 39, 0.05), transparent 35%);
}

.bg-waves > * {
  position: relative;
  z-index: 1;
}

.section {
  padding: 5.5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.muted {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: var(--teal-deep);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-soft);
  color: var(--teal-deep);
  border-color: var(--amber-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}

.btn-outline:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 61, 58, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  line-height: 1.15;
}

.logo:hover {
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-tag {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(231, 238, 240, 0.7);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.55rem 0.7rem;
  color: rgba(247, 250, 251, 0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  margin-left: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--amber);
  color: var(--teal-deep) !important;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: var(--amber-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background-color: var(--teal-deep);
  background-image:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(42, 122, 115, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(155deg, #0b3d3a 0%, #0f4a46 45%, #0a3532 100%);
  color: var(--white);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80' viewBox='0 0 120 80'%3E%3Cpath d='M0 40 Q30 20 60 40 T120 40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cpath d='M0 55 Q30 35 60 55 T120 55' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/svg%3E")
      repeat;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--amber-soft);
  margin: 0 0 1.25rem;
}

.hero p {
  color: rgba(231, 238, 240, 0.9);
  font-size: 1.12rem;
  max-width: 36rem;
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.75rem;
  background-color: var(--teal-deep);
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(42, 122, 115, 0.4), transparent 55%),
    linear-gradient(160deg, #0b3d3a 0%, #0f4a46 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 41px
    );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  max-width: 16ch;
}

.page-hero .lead {
  color: rgba(231, 238, 240, 0.88);
  max-width: 38rem;
}

.page-hero .eyebrow {
  color: var(--amber-soft);
}

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 8px 28px rgba(11, 61, 58, 0.04);
}

.panel h3 {
  margin-top: 0;
}

.panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), var(--teal-mid));
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--amber-soft);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(231, 238, 240, 0.75);
  margin-top: 0.35rem;
}

/* Home feature strip */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.approach-step {
  position: relative;
  padding-top: 0.5rem;
}

.approach-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(15, 74, 70, 0.2);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.25rem 1.75rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--pearl);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Team */
.team-card {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem;
  overflow: hidden;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-deep), var(--teal-soft));
  margin-bottom: 1.1rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* Advantages */
.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.advantage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.advantage-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
  min-width: 2ch;
}

/* Principles */
.principle {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

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

.principle h3 {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-deep);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 0 1.35rem;
  color: var(--ink-soft);
}

/* Reviews */
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal-deep);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
}

.review-meta {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.review-name {
  font-weight: 600;
  color: var(--ink);
}

.review-title {
  font-size: 0.9rem;
  color: var(--muted);
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--teal-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11, 61, 58, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(22, 99, 93, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

.contact-aside {
  background: linear-gradient(165deg, var(--teal-deep), var(--teal));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-aside h2,
.contact-aside h3 {
  color: var(--white);
}

.contact-aside a {
  color: var(--amber-soft);
}

.contact-aside p {
  color: rgba(231, 238, 240, 0.88);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(22, 99, 93, 0.1);
  color: var(--teal-deep);
  border: 1px solid rgba(22, 99, 93, 0.25);
}

.form-status.show {
  display: block;
}

/* Legal */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin-top: 2.25rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(201, 162, 39, 0.15), transparent 55%),
    linear-gradient(120deg, var(--teal-deep), var(--teal-mid));
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(231, 238, 240, 0.88);
  max-width: 34rem;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: #082e2c;
  color: rgba(231, 238, 240, 0.8);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-mark {
  color: var(--white);
  font-size: 1.4rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.footer-col a {
  color: rgba(231, 238, 240, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-col a:hover {
  color: var(--amber-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

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

.footer-legal a {
  color: rgba(231, 238, 240, 0.65);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--amber-soft);
}

/* Split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-visual {
  min-height: 320px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.2), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(42, 122, 115, 0.5), transparent 50%),
    linear-gradient(145deg, var(--teal-deep), var(--teal-soft));
  position: relative;
  overflow: hidden;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.03) 18px,
      rgba(255, 255, 255, 0.03) 19px
    );
}

/* Services list applications */
.apps {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.apps strong {
  color: var(--teal);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 61, 58, 0.98);
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

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

  .nav-links .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .approach-steps,
  .advantage-list,
  .stat-row,
  .contact-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    width: min(100% - 1.75rem, var(--max));
  }

  .section {
    padding: 3.75rem 0;
  }

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

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .grid-2,
  .advantage-list {
    grid-template-columns: 1fr 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  html.js .reveal,
  html.js .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}


.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(11, 61, 58, 0.2); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-mid); box-shadow: 0 0 0 3px rgba(22, 99, 93, 0.15);
}
.bg-teal { }
.prose { max-width: 780px; }
.prose h2 { font-size: 1.45rem; margin-top: 2.25rem; color: var(--teal-deep); }
.prose ul { margin: 1rem 0 1rem 1.25rem; }
