/* ═══════════════════════════════════════════════════════════════
   PRIMAL ENERGETIC — styles.css
   Body-dark aesthetic: obsidian, deep forest, candlelight, amber
═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg:          #0a0906;
  --bg2:         #111009;
  --bg3:         #1a1610;
  --amber:       #c4813a;
  --amber-dim:   #8b4513;
  --amber-glow:  rgba(196, 129, 58, 0.10);
  --text:        #f0ece4;
  --text-dim:    #9a9080;
  --text-faint:  #5a5248;
  --border:      #2a2018;
  --border-mid:  #3a3020;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

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

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--medium {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION LABEL ──────────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

/* ── AMBER RULE ─────────────────────────────────────────────── */
.amber-rule {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin-bottom: 2rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: #0a0906;
  border: 1px solid var(--amber);
}

.btn-primary:hover {
  background: #d4904a;
  border-color: #d4904a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.btn-outline:hover {
  background: var(--amber-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-mid);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--amber);
  transform: translateY(-2px);
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
}

.card--accent {
  border-left: 3px solid var(--amber-dim);
}

.card--amber {
  border-left: 3px solid var(--amber);
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 0;
  transition: background 0.3s, border-bottom 0.3s, padding 0.3s;
}

.site-nav.scrolled {
  background: rgba(10, 9, 6, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--amber); }

.btn-nav {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  padding: 0.55rem 1.25rem !important;
  color: var(--amber) !important;
  border: 1px solid var(--amber) !important;
  background: transparent !important;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
  background: var(--amber-glow) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 9, 6, 0.98);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--amber); }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d0b08 0%, var(--bg) 60%, #050403 100%);
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,6,0.2) 0%,
    rgba(10,9,6,0.1) 30%,
    rgba(10,9,6,0.65) 70%,
    rgba(10,9,6,0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  max-width: 700px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.03em;
}

/* ── PHOTO PLACEHOLDER ──────────────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg) 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--bg);
}

.section--mid {
  background: var(--bg2);
}

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

.section--cta {
  background: #110d00;
  padding: 7rem 0;
}

/* ── GRID LAYOUTS ───────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.grid-2-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── TESTIMONIAL CARDS ──────────────────────────────────────── */
.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber-dim);
  border-radius: 2px;
  padding: 2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--amber);
}

/* ── TWO PATH CARDS ─────────────────────────────────────────── */
.path-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.path-card:hover {
  border-color: var(--border-mid);
  background: var(--bg3);
}

.path-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.path-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.path-card .card-link {
  font-size: 0.82rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  transition: letter-spacing 0.2s;
}

.path-card:hover .card-link {
  letter-spacing: 0.09em;
}

/* ── HOW WORK WORKS ─────────────────────────────────────────── */
.work-col {
  padding: 0;
}

.work-col-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-glow);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-col-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber);
  fill: none;
}

.work-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.work-col p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ── ASSESSMENT CTA BLOCK ───────────────────────────────────── */
.assessment-block {
  background: var(--bg3);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  padding: 4rem;
  text-align: center;
}

.assessment-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.assessment-block p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ── ABOUT BRIEF ────────────────────────────────────────────── */
.about-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-brief-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.about-brief-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* ── EMAIL CAPTURE ──────────────────────────────────────────── */
.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.email-input:focus {
  border-color: var(--amber);
}

.email-input::placeholder {
  color: var(--text-faint);
}

.email-success {
  display: none;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-faint);
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  list-style: none;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-faint);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.03em;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-social a {
  color: var(--text-faint);
  transition: color 0.2s;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── SCROLL ANIMATION ───────────────────────────────────────── */
.animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ── PHASE TIMELINE ─────────────────────────────────────────── */
.phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.phases::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  height: 1px;
  background: var(--border-mid);
}

.phase-item {
  padding-top: 3rem;
  padding-right: 1.5rem;
  position: relative;
}

.phase-dot {
  position: absolute;
  top: 14px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border-radius: 50%;
}

.phase-num {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.phase-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.phase-body {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── OFFER CARDS ────────────────────────────────────────────── */
.offer-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.offer-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.offer-price {
  font-size: 0.82rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.75rem;
}

.offer-meta {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.offer-meta strong {
  color: var(--text-dim);
  font-weight: 500;
}

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--amber); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--amber);
  transition: transform 0.25s, opacity 0.25s;
}

.faq-icon::before {
  width: 12px; height: 1px;
  top: 9.5px; left: 4px;
}

.faq-icon::after {
  width: 1px; height: 12px;
  top: 4px; left: 9.5px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.75rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th {
  background: var(--bg3);
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--border);
}

.compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  vertical-align: top;
  line-height: 1.5;
}

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

.compare-table tr:nth-child(even) td { background: rgba(26, 22, 16, 0.4); }

.compare-table .td-label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ── VIDEO PLACEHOLDER CARDS ────────────────────────────────── */
.video-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-play {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(196, 129, 58, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
  margin-left: 3px;
}

.video-caption {
  padding: 1.25rem;
}

.video-caption p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-style: italic;
}

.video-caption span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ── STUCK PATTERNS ─────────────────────────────────────────── */
.pattern-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
}

.pattern-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.pattern-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ── INSET QUOTE ────────────────────────────────────────────── */
.inset-quote {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border-left: 3px solid var(--amber-dim);
  background: var(--bg2);
}

.inset-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── NOT FOR EVERYONE SECTION ───────────────────────────────── */
.not-for-section {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── CALENDLY PLACEHOLDER ───────────────────────────────────── */
.calendly-placeholder {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 5rem 3rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.calendly-placeholder span {
  font-size: 0.72rem;
  margin-top: 0.5rem;
  display: block;
  color: var(--text-faint);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-1,
  .about-brief {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .phases::before { display: none; }

  .phase-item { padding-top: 0; }
  .phase-dot { display: none; }

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

  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 4rem 0; }

  .hero { min-height: 95vh; padding-bottom: 5rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .assessment-block { padding: 2.5rem 1.5rem; }

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

  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
  .container, .container--narrow, .container--medium { padding: 0 1.25rem; }

  .hero h1 { font-size: 2.2rem; }

  .email-form { flex-direction: column; }
  .email-input { min-width: unset; width: 100%; }

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

  .inset-quote { padding: 1.75rem 1.5rem; }
}
