:root {
  --ink: #15231f;
  --ink-soft: #2c3d37;
  --mist: #e7efe9;
  --paper: #f3f7f4;
  --cream: #faf8f4;
  --teal: #0d5c63;
  --teal-deep: #094548;
  --gold: #c9a227;
  --gold-soft: #e4c86a;
  --line: rgba(21, 35, 31, 0.12);
  --shadow: 0 18px 50px rgba(21, 35, 31, 0.12);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Sora", "Segoe UI", sans-serif;
  --header-h: 4.5rem;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 92, 99, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 39, 0.14), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 45%, var(--mist) 100%);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 0.55em;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 1000;
  font-family: var(--font-ui);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(243, 247, 244, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 55%, var(--gold) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: #f7fbfa;
}

.btn-primary:hover {
  background: var(--teal-deep);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(21, 35, 31, 0.28);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.btn-header {
  background: var(--ink);
  color: var(--cream);
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.btn-header:hover {
  background: var(--teal);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #f7fbfa;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 28, 26, 0.25) 0%, rgba(9, 28, 26, 0.55) 42%, rgba(9, 28, 26, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.35em;
  line-height: 0.95;
  color: #f7fbfa;
  animation: riseIn 0.9s var(--ease) both;
}

.hero h1 {
  color: #f7fbfa;
  max-width: 14ch;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 550;
  animation: riseIn 0.9s 0.12s var(--ease) both;
}

.hero-lead {
  max-width: 38ch;
  font-size: 1.12rem;
  color: rgba(247, 251, 250, 0.9);
  animation: riseIn 0.9s 0.22s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
  animation: riseIn 0.9s 0.32s var(--ease) both;
}

.hero .btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.hero .btn-primary:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.hero .btn-secondary {
  border-color: rgba(247, 251, 250, 0.45);
  color: #f7fbfa;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-narrow {
  max-width: 760px;
}

.section-kicker {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--teal-deep);
}

.trust-item span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.feature-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 0.98rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.course-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--ink);
  color: #eef5f2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.course-preview img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.course-preview-body {
  padding: 2.2rem 2rem;
}

.course-preview h2,
.course-preview h3 {
  color: #f7fbfa;
}

.course-preview p {
  color: rgba(247, 251, 250, 0.86);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.course-meta span {
  border: 1px solid rgba(247, 251, 250, 0.25);
  padding: 0.35rem 0.65rem;
}

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

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

.course-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease);
}

.course-tile:hover {
  transform: translateY(-4px);
}

.course-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
}

.course-tile h3 {
  font-size: 1.2rem;
}

.course-tile p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.quote-block blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  font-family: var(--font-display);
}

.quote-block cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cta-band {
  margin: 2rem auto 4.5rem;
  max-width: var(--max);
  padding: 2.6rem 1.6rem;
  background:
    linear-gradient(120deg, rgba(13, 92, 99, 0.95), rgba(9, 69, 72, 0.96)),
    var(--teal);
  color: #f4faf8;
  border-radius: var(--radius);
  text-align: center;
}

.cta-band h2 {
  color: #f4faf8;
}

.cta-band p {
  max-width: 42ch;
  margin: 0 auto 1.4rem;
  color: rgba(244, 250, 248, 0.9);
}

.page-hero {
  padding: 4rem 1.25rem 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero p {
  max-width: 52ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.bleed-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: end;
  color: #f7fbfa;
}

.bleed-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bleed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 26, 0.2), rgba(10, 28, 26, 0.78));
}

.bleed-hero .page-hero {
  position: relative;
  z-index: 1;
  color: inherit;
}

.bleed-hero h1,
.bleed-hero p {
  color: #f7fbfa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.price-tier {
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
}

.price-tier.featured {
  background: var(--ink);
  color: #eef5f2;
  border-color: transparent;
}

.price-tier.featured h2,
.price-tier.featured h3 {
  color: #f7fbfa;
}

.price-tier .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0.4rem 0 1rem;
}

.price-tier ul {
  padding-left: 1.1em;
  margin-bottom: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.note {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.review-stack {
  display: grid;
  gap: 1.4rem;
}

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

.review:last-child {
  border-bottom: 1px solid var(--line);
}

.review .stars {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.review footer {
  margin-top: 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.case-study {
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 250, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-list {
  display: grid;
  gap: 2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-item h2 {
  font-size: 1.45rem;
}

.blog-meta {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 2rem;
  display: block;
}

.article h2 {
  margin-top: 1.8rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(21, 35, 31, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(13, 92, 99, 0.35);
  border-color: var(--teal);
}

.field-error {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: #8b2e2e;
  min-height: 1.1em;
}

.form-status {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(13, 92, 99, 0.12);
  color: var(--teal-deep);
}

.form-status.is-error {
  display: block;
  background: rgba(139, 46, 46, 0.1);
  color: #8b2e2e;
}

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

.contact-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  font-family: var(--font-ui);
}

.contact-panel h2 {
  font-size: 1.2rem;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  margin: 1rem 0 1.5rem;
}

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: rgba(13, 92, 99, 0.08);
}

.modules {
  list-style: none;
  padding: 0;
}

.modules li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.modules li:last-child {
  border-bottom: 1px solid var(--line);
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  align-items: center;
  margin: 1.5rem 0;
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

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

.faq summary {
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
}

.site-footer {
  margin-top: 2rem;
  background: var(--ink);
  color: rgba(247, 251, 250, 0.86);
  padding: 3.5rem 1.25rem 2rem;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #f7fbfa;
  margin: 0 0 0.6rem;
}

.footer-tag {
  max-width: 36ch;
  color: rgba(247, 251, 250, 0.72);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.4fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-col h2 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

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

.footer-col a {
  color: rgba(247, 251, 250, 0.86);
  text-decoration: none;
}

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

.footer-contact p {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(247, 251, 250, 0.12);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(247, 251, 250, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-left: auto;
  padding: 1.2rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  margin: 0 0 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.inline-error {
  margin: 1rem 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(139, 46, 46, 0.1);
  color: #8b2e2e;
  font-family: var(--font-ui);
  border-radius: var(--radius);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--teal);
  margin: 0;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 960px) {
  .trust-grid,
  .grid-3,
  .pricing-grid,
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .course-preview,
  .contact-grid,
  .blog-item {
    grid-template-columns: 1fr;
  }

  .course-preview img {
    min-height: 240px;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(243, 247, 244, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-header {
    width: 100%;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .pricing-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

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