/* Cupping Therapy — Design System */
:root {
  --cinnabar: #9b3a2f;
  --cinnabar-dark: #7a2d24;
  --cinnabar-soft: #c45c4a;
  --gold: #c4a35a;
  --gold-light: #e0c98a;
  --cream: #f7f2ea;
  --cream-dark: #ebe3d6;
  --paper: #fffdf9;
  --charcoal: #2c2420;
  --ink: #3d342e;
  --muted: #6b5f56;
  --sage: #8a9a7b;
  --sage-soft: #d4ddd0;
  --border: rgba(44, 36, 32, 0.1);
  --shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 36, 32, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--cinnabar);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--cinnabar-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol {
  margin: 0 0 1.25rem 1.25rem;
}

li { margin-bottom: 0.4rem; }

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

.container-narrow {
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--charcoal);
}

.logo:hover { color: var(--cinnabar); }

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
}

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

.logo-text span {
  color: var(--cinnabar);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--cinnabar);
  background: rgba(155, 58, 47, 0.06);
}

.nav .btn-nav {
  background: var(--cinnabar);
  color: white !important;
  margin-left: 0.4rem;
  padding: 0.5rem 1rem;
}

.nav .btn-nav:hover {
  background: var(--cinnabar-dark);
}

/* Journey strip */
.journey-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  overflow-x: auto;
}

.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  min-width: max-content;
}

.journey-steps li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.journey-steps a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.journey-steps a:hover,
.journey-steps a.active {
  background: white;
  color: var(--cinnabar);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.journey-steps .sep {
  color: var(--gold);
  font-size: 0.7rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cinnabar);
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto -12% -12% auto;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.25), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

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

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

.btn-primary {
  background: var(--cinnabar);
  color: white;
}

.btn-primary:hover {
  background: var(--cinnabar-dark);
  color: white;
}

.btn-secondary {
  background: transparent;
  border-color: var(--cinnabar);
  color: var(--cinnabar);
}

.btn-secondary:hover {
  background: rgba(155, 58, 47, 0.06);
  color: var(--cinnabar-dark);
}

.btn-ghost {
  background: white;
  border-color: var(--border);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--cinnabar);
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-alt {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  background: var(--cream-dark);
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card h3 a {
  text-decoration: none;
  color: inherit;
}

.card h3 a:hover {
  color: var(--cinnabar);
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.card-link {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--cinnabar);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* Journey stages */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stage-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.stage-card.aware::before { background: var(--gold); }
.stage-card.consider::before { background: var(--cinnabar-soft); }
.stage-card.decide::before { background: var(--sage); }

.stage-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stage-card h3 {
  margin-bottom: 0.6rem;
}

.stage-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}

.stage-card ul {
  margin: 0 0 1.25rem 1.1rem;
  color: var(--ink);
  font-size: 0.95rem;
}

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

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split.reverse .split-content { order: 2; }
.split.reverse .split-media { order: 1; }

/* Prose content */
.prose {
  max-width: 720px;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}

.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.prose p,
.prose li {
  color: var(--ink);
}

.prose ul, .prose ol {
  color: var(--ink);
}

.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.callout {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cinnabar);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
}

.callout.safe {
  border-left-color: var(--sage);
  background: #f3f6f1;
}

.callout.warn {
  border-left-color: var(--gold);
}

.callout strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}

/* Page hero */
.page-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--paper) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  text-decoration: none;
  color: var(--muted);
}

.page-hero .breadcrumb a:hover {
  color: var(--cinnabar);
}

.page-hero .eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 0.6rem;
}

.page-hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
  margin-top: 0.85rem;
}

/* Condition list */
.condition-list {
  display: grid;
  gap: 1rem;
}

.condition-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.condition-item:hover {
  border-color: rgba(155, 58, 47, 0.25);
  box-shadow: var(--shadow);
  transform: translateX(4px);
  color: inherit;
}

.condition-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.condition-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
}

.condition-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.condition-arrow {
  color: var(--cinnabar);
  font-size: 1.2rem;
}

/* Technique cards */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tech-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.tech-card .level {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.level.beginner { background: var(--sage-soft); color: #3d5a35; }
.level.intermediate { background: #f5e6c8; color: #7a5a1a; }
.level.pro { background: #f0d6d2; color: var(--cinnabar-dark); }

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin: 0;
  align-items: start;
}

.steps li::before {
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cinnabar);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.steps p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

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

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

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

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

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

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

.faq-item .faq-body {
  padding: 0 0 1.25rem;
  color: var(--muted);
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--cream);
  font-weight: 600;
  color: var(--charcoal);
}

tr:last-child td { border-bottom: none; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--cinnabar-dark) 0%, var(--cinnabar) 55%, #b04a3c 100%);
  color: white;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-primary {
  background: white;
  color: var(--cinnabar);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--cinnabar-dark);
}

.cta-band .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.95rem;
}

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

.footer-brand .logo-text {
  color: white;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}

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

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

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

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.disclaimer-bar {
  background: #1f1a17;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  padding: 0.85rem 0;
  text-align: center;
  line-height: 1.5;
}

/* Content layout with TOC */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 3rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 6rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
}

.toc h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.toc ul {
  list-style: none;
  margin: 0;
}

.toc li { margin-bottom: 0.35rem; }

.toc a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
}

.toc a:hover { color: var(--cinnabar); }

/* Feature row */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.feature {
  padding: 1.25rem 0.75rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  border-color: rgba(155, 58, 47, 0.3);
  box-shadow: var(--shadow);
  color: inherit;
}

.related-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cinnabar);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-content,
  .split.reverse .split-media {
    order: unset;
  }

  .card-grid,
  .stage-grid,
  .feature-row,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toc { display: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav a { padding: 0.7rem 0.85rem; }
  .nav .btn-nav { margin: 0.4rem 0 0; text-align: center; }

  .card-grid,
  .card-grid-2,
  .stage-grid,
  .tech-grid,
  .feature-row,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .condition-item {
    grid-template-columns: auto 1fr;
  }

  .condition-arrow { display: none; }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }
}

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
