/* ==========================================================================
   Crystal Sanchez Realtor — Premium CSS
   DFW Market: Arlington, Fort Worth, Mansfield TX
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@700&family=Archivo+Narrow:wght@400;700&display=swap');

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
  --color-white: #ffffff;
  --color-black: #0f0f0f;
  --color-gold: #b8976d;
  --color-navy: #002349;
  --color-gray-light: #f5f5f5;
  --color-gray-mid: #e0e0e0;
  --font-display: 'Antonio', sans-serif;
  --font-body: 'Archivo Narrow', sans-serif;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1440px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  font-size: 16px;
  /* scroll-behavior: smooth removed — Lenis handles this; native smooth conflicts with Lenis */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   Navigation (#main-nav)
   ========================================================================== */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 80px);
  transition: background 0.4s var(--transition-smooth),
              color 0.4s var(--transition-smooth),
              box-shadow 0.4s var(--transition-smooth);
}

#main-nav.nav-scrolled {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Nav Logo */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* Contact Nav Link - enlarged + animated */
@keyframes contactPulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0px transparent;
    color: var(--color-gold);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(201, 164, 94, 0.8), 0 0 24px rgba(201, 164, 94, 0.4);
    color: #e8c97a;
  }
}

.nav-contact-link {
  font-size: 1.5rem !important;
  color: var(--color-gold) !important;
  opacity: 1 !important;
  animation: contactPulse 2.5s ease-in-out infinite;
  letter-spacing: 0.2em;
}

.nav-contact-link:hover {
  opacity: 1 !important;
  animation: none;
  text-shadow: 0 0 16px rgba(201, 164, 94, 0.9);
}

/* Nav CTA Button */
.nav-cta {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s var(--transition-smooth),
              color 0.3s var(--transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* Hamburger Menu (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  color: inherit;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#main-nav .nav-hamburger {
  color: inherit;
}

/* ==========================================================================
   Preload Bar
   ========================================================================== */

#preload-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: opacity 0.5s ease;
}

#preload-progress {
  height: 100%;
  background: var(--color-gold);
  width: 0%;
  transition: width 0.3s ease;
}

/* ==========================================================================
   Hero (#hero-section / .hero-sticky)
   ========================================================================== */

#hero-section {
  height: 800vh;
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Ambient canvas (blurred background glow) */
#ambient-canvas {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  filter: blur(50px) saturate(1.1);
  z-index: 1;
  pointer-events: none;
  will-change: contents;
}

/* Property canvas (main scrolling image strip) */
#property-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  will-change: contents;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  pointer-events: none;
}

/* Hero Overlay Content */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}

.hero-overlay > * {
  pointer-events: auto;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 8rem);
  color: var(--color-white);
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-subhead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease, filter 0.2s ease;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  outline: none;
}

.scroll-indicator svg,
.scroll-indicator i {
  display: block;
}

/* ==========================================================================
   P1 — Region Intro (#region-intro)
   ========================================================================== */

#region-intro {
  background: var(--color-white);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}

#region-intro .region-inner {
  max-width: 900px;
  margin: 0 auto;
}

.region-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.region-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--color-black);
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.region-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 700px;
  margin-bottom: 48px;
}

/* Pill Button */
.btn-pill {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--transition-smooth),
              color 0.3s var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-pill:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ==========================================================================
   P2 — Featured Enclaves (#featured-enclaves)
   ========================================================================== */

#featured-enclaves {
  background: var(--color-gray-light);
  padding: var(--section-pad) 0;
}

#featured-enclaves .section-header {
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: 48px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-black);
  line-height: 0.95;
  text-transform: uppercase;
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y; /* allow vertical scroll, horizontal drag handled by JS */
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 80px);
  padding-bottom: 40px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Enclave Card */
.enclave-card {
  min-width: 380px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  scroll-snap-align: start;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s var(--transition-smooth),
              transform 0.3s var(--transition-smooth);
}

.enclave-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 24px;
}

.card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-black);
  margin-bottom: 4px;
  line-height: 1;
}

.card-neighborhood {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.card-cta:hover {
  opacity: 0.75;
}

/* ==========================================================================
   P3 — Lifestyle Banner (#lifestyle-banner)
   ========================================================================== */

#lifestyle-banner {
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.lifestyle-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--transition-smooth);
}

#lifestyle-banner:hover .lifestyle-image {
  transform: scale(1.02);
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.lifestyle-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--color-white);
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lifestyle-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==========================================================================
   P4 — Community Grid (#community-grid)
   ========================================================================== */

#community-grid {
  background: var(--color-white);
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
}

#community-grid .section-header {
  margin-bottom: 48px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-gray-mid);
}

.community-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-white);
  cursor: pointer;
}

.cell-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.community-cell:hover .cell-image {
  transform: scale(1.04);
}

.cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.cell-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}

.cell-btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-black);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--transition-smooth),
              color 0.3s var(--transition-smooth);
  align-self: flex-start;
}

.cell-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ==========================================================================
   Footer (#main-footer)
   ========================================================================== */

#main-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px clamp(24px, 5vw, 80px) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

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

.footer-col li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Footer brand text block */
.footer-col .footer-brand-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-col .footer-contact-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-col .footer-contact-item span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 2px;
  line-height: 1;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.7;
  }
  40% {
    transform: translateX(-50%) translateY(14px);
    opacity: 1;
  }
  60% {
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal animation (triggered by IntersectionObserver via JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Staggered reveal children */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-gold {
  color: var(--color-gold);
}

.text-navy {
  color: var(--color-navy);
}

/* ==========================================================================
   Responsive — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

/* ==========================================================================
   Responsive — 768px (tablet / mobile)
   ========================================================================== */

@media (max-width: 768px) {
  /* Navigation */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hamburger color follows nav state */
  #main-nav .nav-hamburger span {
    background: currentColor;
  }

  /* Hero */
  .hero-headline {
    letter-spacing: -1px;
  }

  /* Cards */
  .enclave-card {
    min-width: 85vw;
  }

  /* Community Grid */
  .grid-container {
    grid-template-columns: 1fr;
  }

  .community-cell {
    aspect-ratio: 4 / 3;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

  /* Lifestyle Banner */
  #lifestyle-banner {
    height: 70vh;
  }
}

/* ==========================================================================
   Responsive — 480px (small mobile)
   ========================================================================== */

@media (max-width: 480px) {
  /* Nav */
  .nav-logo {
    font-size: 1.4rem;
  }

  /* Region Intro */
  .region-body {
    font-size: 1rem;
  }

  /* Footer Grid: single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Lifestyle Banner */
  #lifestyle-banner {
    height: 60vh;
  }

  .cell-overlay {
    padding: 20px;
  }

  .cell-label {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  /* Footer */
  .footer-bottom {
    text-align: left;
  }

  .footer-logo {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Mobile Navigation Open State (toggled by JS)
   ========================================================================== */

#main-nav.nav-open .nav-links,
#main-nav.nav-open .nav-cta {
  display: flex;
}

#main-nav.nav-open .nav-links {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 1.2rem;
  z-index: 99;
  color: var(--color-black);
  padding: 80px 24px 40px;
}

#main-nav.nav-open .nav-cta {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  color: var(--color-gold);
}

/* Hamburger → X animation */
#main-nav.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#main-nav.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#main-nav.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Reduced Motion — respect user preference
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .scroll-indicator {
    animation: none;
  }

  .nav-contact-link {
    animation: none;
  }

  .enclave-card {
    transition: box-shadow 0.2s ease;
  }

  .cell-image {
    transition: none;
  }
}

/* ==========================================================================
   Mobile Performance Fixes
   ========================================================================== */

@media (max-width: 768px) {
  /* Reduce hero scroll distance on mobile — 800vh is exhausting to scroll past */
  #hero-section {
    height: 350vh;
  }

  /* Hide ambient canvas on mobile — blur filter is too expensive for mobile GPUs */
  #ambient-canvas {
    display: none;
  }

  /* Prevent double-tap zoom on interactive elements */
  a, button, .card-cta, .btn-pill, .cell-btn, .nav-cta {
    touch-action: manipulation;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  #main-nav,
  #hero-section,
  .scroll-indicator,
  #preload-bar {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
