:root {
  color-scheme: light;
  --paper: #f7fbfb;
  --ink: #253235;
  --muted: #5f7175;
  --line: #d9e8e8;
  --sage: #007c89;
  --clay: #f26f5e;
  --blue: #006a75;
  --white: #ffffff;
  --peach: #ffe4db;
  --cream: #eaf7f7;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #eef9f9 0, #ffffff 520px, var(--paper) 100%);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.site-header, .site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--sage);
  flex: 0 0 auto;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
nav a:hover, .text-link:hover, .inline-cta a:hover { color: var(--clay); }
.hero, .page-hero, .section, .facts {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 48px;
  align-items: center;
  padding: 34px 0 42px;
}
.hero-copy h1, .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .93;
  letter-spacing: 0;
  margin: 10px 0 20px;
  max-width: 840px;
}
.hero-copy p, .page-hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 680px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px !important;
  color: var(--sage) !important;
  font-weight: 800;
}
.search {
  margin-top: 34px;
  max-width: 650px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 124, 137, .1);
}
.search label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.search div {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid color-mix(in srgb, var(--sage), var(--line) 60%);
  background: #fafeff;
  border-radius: 8px;
  padding: 6px;
  box-shadow: none;
}
.search input {
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
button {
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.search-hint { min-height: 24px; font-size: 14px !important; }
.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero-stats span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 13px;
}
.hero-stats strong { color: var(--ink); }
.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}
.warm-hero-image {
  grid-column: 1 / -1;
  margin: 0;
  position: relative;
}
.warm-hero-image::after {
  content: "";
  position: absolute;
  inset: auto 18px -10px 18px;
  height: 30px;
  background: rgba(196, 121, 97, .16);
  filter: blur(18px);
  z-index: -1;
}
.warm-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 124, 137, .16);
}
.example-card {
  min-height: 158px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 124, 137, .07);
}
.example-card.accent { border-color: color-mix(in srgb, var(--clay), var(--line) 45%); }
.example-card.wide { grid-column: 1 / -1; min-height: 136px; }
.example-card span, .feature-card span, .method-grid span {
  display: block;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}
.example-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: 0;
}
.example-card p {
  color: var(--muted);
  margin: 12px 0 0;
}
.chip, .link-grid a {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(0, 124, 137, .05);
}
.chip:hover, .link-grid a:hover, .name-card:hover { border-color: color-mix(in srgb, var(--sage), var(--line) 35%); }
.section { padding: 34px 0; }
.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .6);
}
.intro-strip h2 { font-size: 31px; }
.intro-strip p { color: var(--muted); max-width: 740px; margin: 8px 0 0; }
.warm-feature {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(234, 247, 247, .95), rgba(255, 255, 255, .68));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.warm-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.warm-feature h2 { max-width: 720px; }
.warm-feature p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
  font-size: 18px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin: 0;
  letter-spacing: 0;
}
.section-heading p { color: var(--muted); max-width: 480px; margin: 0; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.feature-grid, .method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card, .method-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.feature-card:hover, .method-grid article:hover {
  border-color: color-mix(in srgb, var(--sage), var(--line) 35%);
}
.feature-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.feature-card p, .method-grid p { color: var(--muted); margin: 0; }
.method-grid article { min-height: 190px; }
.method-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  margin: 0 0 10px;
  letter-spacing: 0;
}
.page-hero {
  padding: 74px 0 32px;
  border-bottom: 1px solid var(--line);
}
.page-hero.compact h1, .page-hero.detail h1 { font-size: clamp(44px, 7vw, 76px); }
.name-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.name-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.name-card h3 {
  font-size: 25px;
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
.name-card p { color: var(--muted); margin: 0; }
.name-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
dt { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
dd { margin: 2px 0 0; font-size: 14px; }
.why { border-top: 1px solid var(--line); padding-top: 14px; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 32px 0 0;
}
.facts article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.facts span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.facts strong { font-size: 18px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.inline-cta { margin-top: 18px; font-weight: 800; color: var(--blue); }
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { color: var(--muted); margin-bottom: 0; }
.meta { margin: 8px 0 12px !important; }
.text-link { color: var(--blue); font-weight: 800; display: inline-block; margin-top: 14px; }
.site-footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding: 26px 0 40px;
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 34px; }
  .hero-panel, .name-list, .facts, .link-grid, .feature-grid, .method-grid, .intro-strip, .warm-feature { grid-template-columns: 1fr; }
  .example-card.wide { grid-column: auto; }
  .section-heading { display: block; }
  .name-card dl { grid-template-columns: 1fr; }
  .search div { grid-template-columns: 1fr; }
  button { min-height: 46px; }
}