@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

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

:root {
  --teal:         #3d8ea6;
  --teal-dark:    #2a6b82;
  --teal-deep:    #1a4c5e;
  --teal-deepest: #0e2330;
  --teal-light:   #7bc5d9;
  --teal-pale:    #cce8f2;
  --off-white:    #f0f0ec;
  --off-white-2:  #e6e6e2;
  --white:        #ffffff;
  --text-dark:    #0d1f28;
  --text-mid:     #3a606f;
  --text-light:   #6b8a99;
  --border:       #d0e4ec;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --max-width:    1200px;
  --nav-height:   80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(240, 240, 236, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(13, 31, 40, 0.07);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav__logo img {
  height: 55px;
  width: auto;
  display: block;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--teal); }

.nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav__cta:hover { background: var(--teal-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  inset: auto 0 auto;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
}

.nav__mobile.open { display: block; }

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav__mobile a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
}

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

/* ── BUTTONS ─────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

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

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

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

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

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

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

/* ── HERO ────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--teal-deepest);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(61,142,166,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(61,142,166,0.12) 0%, transparent 45%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,142,166,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,142,166,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.93;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
}

.hero__title em {
  color: var(--teal-light);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

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

.hero__stats {
  margin-top: 5rem;
  display: flex;
  gap: 3.5rem;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ── SECTION BASE ─────────────────────────────── */

.section {
  padding: 6rem 2rem;
}

.section--white   { background: var(--white); }
.section--offwhite { background: var(--off-white); }
.section--dark    { background: var(--teal-deepest); }
.section--teal    { background: var(--teal); }

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

.section__header {
  margin-bottom: 4rem;
}

.section__header--center { text-align: center; }

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.section__eyebrow--light { color: var(--teal-light); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-dark);
}

.section__title--light { color: var(--white); }

.section__subtitle {
  margin-top: 1.1rem;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}

.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section__subtitle--light { color: rgba(255,255,255,0.6); }

/* ── PILLARS ─────────────────────────────────── */

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

.pillar {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13,31,40,0.08);
}

.pillar__icon {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.pillar__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── PRODUCT CARDS ───────────────────────────── */

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

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(13,31,40,0.1);
}

.product-card__visual {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__visual--focus  { background: linear-gradient(135deg, #0e2330 0%, #1a4c5e 100%); }
.product-card__visual--flow   { background: linear-gradient(135deg, #1a3845 0%, #2a6b82 100%); }
.product-card__visual--calm   { background: linear-gradient(135deg, #1e4a5a 0%, #3d8ea6 100%); }

.product-card__visual-text {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  user-select: none;
  line-height: 1;
}

.product-card__visual-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(61,142,166,0.25);
  filter: blur(40px);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
}

.product-card__body { padding: 1.75rem; }

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.product-card__tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ── INGREDIENTS GRID ───────────────────────── */

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

.ingredient-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  transition: background 0.3s, border-color 0.3s;
}

.ingredient-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

.ingredient-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.6rem;
}

.ingredient-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.ingredient-card__source {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
}

.ingredient-card__benefit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── PAGE HERO (inner pages) ─────────────────── */

.page-hero {
  background: var(--teal-deepest);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(61,142,166,0.22) 0%, transparent 55%);
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,142,166,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,142,166,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.93;
  margin-bottom: 1.25rem;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ── CTA BANNER ─────────────────────────────── */

.cta-banner {
  background: var(--teal);
  padding: 5.5rem 2rem;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}

.cta-banner__text {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── ABOUT PAGE ─────────────────────────────── */

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

.split__visual {
  background: var(--teal-deepest);
  border-radius: 8px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split__visual-text {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
}

.split__visual-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(61,142,166,0.3);
  filter: blur(60px);
}

.split__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.split__content p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.value-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--off-white);
}

.value-card__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── CONTACT PAGE ───────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,142,166,0.14);
}

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

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--off-white-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.social-link:hover { background: var(--teal-pale); }

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--teal);
}

/* ── FOOTER ─────────────────────────────────── */

.footer {
  background: var(--teal-deepest);
  color: rgba(255,255,255,0.55);
  padding: 5rem 2rem 2.5rem;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--teal-light);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 290px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--teal-light); }

.footer__bottom {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── FADE-IN ANIMATION ───────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ── RESPONSIVE ─────────────────────────────── */

@media (max-width: 1024px) {
  .pillars          { grid-template-columns: repeat(2, 1fr); }
  .products-grid    { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split            { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__toggle { display: flex; }

  .pillars          { grid-template-columns: 1fr; }
  .products-grid    { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .footer__top      { grid-template-columns: 1fr; }
  .footer__bottom   { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero__stats      { gap: 2rem; }

  .section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
}
