/* ============================================
   CARIBBEAN LAND DEVELOPERS LLC
   Venice Oasis — Solicitation Site
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --navy:        #1a2744;
  --navy-deep:   #0f1926;
  --teal:        #2d7d7b;
  --teal-light:  #3a9e9b;
  --sand:        #f5efe6;
  --sand-light:  #faf7f2;
  --sand-dark:   #e8ddd0;
  --coral:       #c17f59;
  --coral-light: #d4996e;
  --gold:        #c9a84c;
  --gold-light:  #dfc36a;
  --white:       #ffffff;
  --black:       #111111;
  --text:        #2c2c2c;
  --text-light:  #6b6b6b;
  --border:      #e0d8cc;
  --success:     #2d8a4e;
  --error:       #c0392b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --max-width:   1200px;
  --nav-height:  72px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 20px rgba(26,39,68,0.08);
  --shadow-lg:   0 8px 40px rgba(26,39,68,0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--coral); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.nav-logo:hover { color: var(--gold-light); }
.logo-icon { color: var(--gold); font-size: 1.3rem; }
.logo-llc { font-weight: 400; opacity: 0.7; font-size: 0.85em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav-overlay.open { display: block; opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 1002;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right .3s ease;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 12px 20px !important;
  border-radius: 8px;
  text-align: center;
  border: none !important;
  margin-top: 16px;
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 25, 38, 0.75) 0%,
    rgba(15, 25, 38, 0.55) 50%,
    rgba(15, 25, 38, 0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-location {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.hero-cta:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,125,123,0.3);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.hero-scroll span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- KEY FACTS ---------- */
.key-facts {
  padding: 100px 0 60px;
  background: var(--white);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fact-card {
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fact-icon { font-size: 2rem; margin-bottom: 16px; }
.fact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.fact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- SITE WORK NOTICE ---------- */
.site-work-notice {
  padding: 0 0 60px;
  background: var(--white);
}
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fef9f0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.notice-icon { font-size: 2rem; flex-shrink: 0; }
.notice-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.notice-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- DESIGN GALLERY ---------- */
.design-gallery {
  padding: 100px 0;
  background: var(--sand-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-large {
  grid-column: 1 / -1;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-large img { max-height: 500px; }
.gallery-item:not(.gallery-large) img { height: 260px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,25,38,0.85));
  color: var(--white);
  padding: 40px 20px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---------- PROGRAM SECTION ---------- */
.program-section {
  padding: 100px 0;
  background: var(--white);
}
.program-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.program-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}
.program-table {
  width: 100%;
  border-collapse: collapse;
}
.program-table td {
  padding: 10px 12px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.program-table td:first-child { font-weight: 500; color: var(--navy); }
.program-table td:last-child { text-align: right; color: var(--text-light); }
.program-total td {
  border-top: 2px solid var(--navy);
  border-bottom: none;
  font-size: 1rem;
}
.program-highlights {
  margin-top: 32px;
}
.program-highlights ul {
  list-style: none;
  padding: 0;
}
.program-highlights li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.program-highlights li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- COMPLIANCE TABLE ---------- */
.compliance-section {
  padding: 100px 0;
  background: var(--sand-light);
}
.compliance-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compliance-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}
.compliance-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.compliance-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compliance-table tr:last-child td { border-bottom: none; }
.compliance-table tr:nth-child(even) { background: var(--sand-light); }
.status-pass { color: var(--success); font-weight: 600; }
.status-action { color: var(--coral); font-weight: 600; }
.status-note { color: var(--text-light); font-style: italic; }

/* ---------- LEGAL FRAMEWORK ---------- */
.legal-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}
.legal-section .section-eyebrow { color: var(--gold); }
.legal-section .section-header h2 { color: var(--white); }
.legal-section .section-desc { color: rgba(255,255,255,0.65); }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.legal-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .2s;
}
.legal-card:hover {
  background: rgba(255,255,255,0.1);
}
.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 12px;
}
.legal-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.armor-strip {
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.armor-strip h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}
.armor-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.armor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.armor-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- BID INSTRUCTIONS ---------- */
.bid-section {
  padding: 100px 0;
  background: var(--white);
}
.bid-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.bid-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}
.bid-list {
  padding-left: 20px;
}
.bid-list li {
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
}
.bid-list li strong { color: var(--navy); }
.eval-bars { display: flex; flex-direction: column; gap: 16px; }
.eval-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.eval-bar {
  background: var(--sand);
  border-radius: 20px;
  height: 28px;
  overflow: hidden;
}
.eval-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 48px;
}

/* ---------- REQUEST FORM ---------- */
.request-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
}
.request-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.req { color: var(--coral); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--sand-light);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,125,123,0.12);
}
.form-group textarea { resize: vertical; }
.nda-group {
  padding: 20px;
  background: #fef9f0;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin-top: 8px;
}
.nda-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.nda-label input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.nda-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.form-status {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #e8f5e9;
  color: var(--success);
  border: 1px solid #c3e6cb;
}
.form-status.error {
  display: block;
  background: #fdecea;
  color: var(--error);
  border: 1px solid #f5c6cb;
}
.form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.form-submit:hover {
  background: var(--teal);
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---------- DRAWINGS PREVIEW ---------- */
.drawings-section {
  padding: 80px 0 100px;
  background: var(--sand-light);
}
.drawings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.drawing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.drawing-card:hover { transform: translateY(-4px); }
.drawing-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.drawing-card span {
  display: block;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-col a { color: var(--teal-light); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { grid-template-columns: 1fr; }
  .armor-items { grid-template-columns: repeat(2, 1fr); }
  .bid-columns { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .drawings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .stat-number { font-size: 1.6rem; }
  .facts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:not(.gallery-large) img { height: 220px; }
  .program-columns { grid-template-columns: 1fr; }
  .armor-items { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .request-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .drawings-grid { grid-template-columns: 1fr; }
  .notice-box { flex-direction: column; }
  .compliance-table { font-size: 0.82rem; }
  .compliance-table th, .compliance-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .section-header h2 { font-size: 1.6rem; }
}
