/* ============================================================
   THE SCRIBE COMPANY — styles.css
   Color palette:
     Navy bg:   #0a0f1e
     Gold:      #c9a84c
     White:     #ffffff
     Light grey:#f5f5f0
     Mid grey:  #8a8fa8
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0a0f1e;
  --navy-mid:   #111827;
  --navy-light: #1a2340;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim:   #8a6d2f;
  --white:      #ffffff;
  --off-white:  #f5f5f0;
  --text-muted: #8a8fa8;
  --card-bg:    #ffffff;
  --border:     rgba(201, 168, 76, 0.18);
  --shadow:     0 4px 32px rgba(0,0,0,0.28);
  --shadow-card:0 2px 24px rgba(0,0,0,0.10);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

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

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 4px 12px;
  border-radius: 40px;
}

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  outline: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* ── Divider ── */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0 32px;
}
.divider.center { margin: 20px auto 32px; }

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.10);
  transition: background 0.3s;
}

#nav.scrolled {
  background: rgba(10, 15, 30, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.18);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  border: 1.5px solid rgba(201,168,76,0.4);
  padding: 7px 18px;
  border-radius: 5px;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--gold) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10,15,30,0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 55%),
    linear-gradient(160deg, #0a0f1e 0%, #111827 50%, #0d1528 100%);
  z-index: 0;
}

/* Geometric shapes */
.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.geo-circle-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.geo-circle-2 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.geo-circle-3 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
}
.geo-line {
  position: absolute;
  top: 55%;
  right: 8%;
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3), transparent);
}
.geo-dot-grid {
  position: absolute;
  bottom: 60px;
  right: 80px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(201,168,76,0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--white);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: rgba(201,168,76,0.5);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ── About ── */
#about {
  padding: 110px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.about-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.78;
  max-width: 480px;
}

.about-visual {
  position: relative;
  height: 380px;
}

.about-card {
  position: absolute;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.about-card-main {
  top: 0; left: 0; right: 60px;
  bottom: 60px;
  background: linear-gradient(135deg, #1a2340 0%, #131c33 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}

.about-card-float {
  bottom: 0; right: 0;
  width: 200px;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-card-float .icon {
  width: 38px;
  height: 38px;
  background: rgba(10,15,30,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-card-float p {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.about-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.about-tagline em { color: var(--gold); font-style: italic; }

.about-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ── Ventures ── */
#ventures {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.venture-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.venture-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.venture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.venture-card:hover::after { opacity: 1; }

.venture-card-inner { flex: 1; }

.venture-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.10);
  line-height: 1;
  margin-bottom: -10px;
  user-select: none;
}

.venture-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.venture-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.venture-desc {
  font-size: 0.92rem;
  color: #4a4f68;
  line-height: 1.7;
  margin-bottom: 28px;
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
  margin-top: auto;
}
.venture-link:hover {
  color: var(--gold-dim);
  gap: 10px;
}

/* ── Why Us ── */
#why {
  padding: 110px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.why-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── Investment ── */
#investment {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.invest-bg-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.invest-bg-geo::before {
  content: '';
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}
.invest-bg-geo::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.10);
}

.invest-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.invest-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}
.invest-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

.invest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.invest-chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
  padding: 7px 16px;
  border-radius: 40px;
  letter-spacing: 0.04em;
}

/* ── Contact ── */
#contact {
  padding: 110px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 8px;
}
.contact-left p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
  max-width: 360px;
  margin-bottom: 36px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
}
.contact-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

input[type="text"],
input[type="email"],
textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.07);
}

textarea { min-height: 130px; }

.form-submit {
  margin-top: 24px;
  text-align: right;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.92rem;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
  margin-top: 12px;
  text-align: center;
}

/* ── Footer ── */
footer {
  background: #060a14;
  border-top: 1px solid rgba(201,168,76,0.10);
  padding: 52px 0 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand .nav-logo {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.65;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a {
  color: rgba(201,168,76,0.6);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in.delay-1 { transition-delay: 0.10s; }
.fade-in.delay-2 { transition-delay: 0.20s; }
.fade-in.delay-3 { transition-delay: 0.30s; }
.fade-in.delay-4 { transition-delay: 0.45s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .stat-sep { display: none; }
}

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

  .ventures-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-top { flex-direction: column; }

  .hero-headline { font-size: 2.8rem; }
  .contact-form { padding: 28px 20px; }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .invest-chips { display: none; }
}
