/* ============================================================
   VILLA COMBI – main.css
   Stili componente per il tema WordPress Gutenberg.
   I design token (colori, font, spacing) sono in theme.json.
============================================================ */

/* ============================================================
   RESET AGGIUNTIVO
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body { -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   VARIABILI LOCALI (alias dei token WP)
============================================================ */
:root {
  --vc-sand:     var(--wp--preset--color--sand,     #EDE8DF);
  --vc-linen:    var(--wp--preset--color--linen,    #F7F4EF);
  --vc-sage:     var(--wp--preset--color--sage,     #3B4A3F);
  --vc-sage-mid: var(--wp--preset--color--sage-mid, #5C7062);
  --vc-gold:     var(--wp--preset--color--gold,     #B59A6A);
  --vc-ink:      var(--wp--preset--color--ink,      #1C2118);
  --vc-mist:     var(--wp--preset--color--mist,     #D4CFC6);
  --vc-serif:    var(--wp--preset--font-family--serif, 'Cormorant Garamond', Georgia, serif);
  --vc-sans:     var(--wp--preset--font-family--sans,  'Jost', system-ui, sans-serif);
  --vc-ease:     cubic-bezier(.4,0,.2,1);
  --vc-gap:      clamp(3rem, 8vw, 7rem);
}

/* ============================================================
   TIPOGRAFIA UTILITY
============================================================ */
.vc-eyebrow {
  font-family: var(--vc-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--vc-gold) !important;
  margin-bottom: 0 !important;
  line-height: 1.4 !important;
}

.t-body {
  font-family: var(--vc-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4A4A3A;
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.vc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--vc-ease), transform 0.8s var(--vc-ease);
}
.vc-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.vc-reveal--delay-1 { transition-delay: 0.1s; }
.vc-reveal--delay-2 { transition-delay: 0.2s; }
.vc-reveal--delay-3 { transition-delay: 0.3s; }
.vc-reveal--delay-4 { transition-delay: 0.4s; }

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

/* ============================================================
   NAV
============================================================ */
.vc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.6rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--vc-ease), padding 0.4s var(--vc-ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.vc-nav.is-scrolled {
  background: rgba(247, 244, 239, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: var(--vc-mist);
}

.vc-nav__logo {
  font-family: var(--vc-serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--vc-linen);
  transition: color 0.4s;
  white-space: nowrap;
}
.vc-nav.is-scrolled .vc-nav__logo { color: var(--vc-sage); }

.vc-nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.vc-nav__links a {
  font-family: var(--vc-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.85);
  transition: color 0.3s;
}
.vc-nav.is-scrolled .vc-nav__links a { color: var(--vc-sage-mid); }
.vc-nav__links a:hover,
.vc-nav.is-scrolled .vc-nav__links a:hover { color: var(--vc-gold); }

.vc-nav__cta {
  font-family: var(--vc-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(247, 244, 239, 0.5);
  color: var(--vc-linen);
  transition: all 0.3s var(--vc-ease);
  white-space: nowrap;
}
.vc-nav.is-scrolled .vc-nav__cta {
  border-color: var(--vc-gold);
  color: var(--vc-sage);
}
.vc-nav__cta:hover,
.vc-nav.is-scrolled .vc-nav__cta:hover {
  background: var(--vc-gold);
  border-color: var(--vc-gold);
  color: #fff;
}

/* Hamburger */
.vc-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.vc-nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--vc-linen);
  transition: background 0.4s;
}
.vc-nav.is-scrolled .vc-nav__burger span { background: var(--vc-sage); }

/* Mobile nav overlay */
.vc-nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--vc-sage);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--vc-ease);
}
.vc-nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
}
.vc-nav-mobile__link {
  font-family: var(--vc-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--vc-linen);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.vc-nav-mobile__link:hover { color: var(--vc-gold); }
.vc-nav-mobile__close {
  position: absolute;
  top: 1.6rem;
  right: 4vw;
  background: none;
  border: none;
  color: var(--vc-linen);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.vc-nav-mobile__close:hover { color: var(--vc-gold); }

@media (max-width: 860px) {
  .vc-nav__links, .vc-nav__cta { display: none; }
  .vc-nav__burger { display: flex; }
}

/* ============================================================
   HERO
============================================================ */
.vc-hero .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem;
}

.vc-hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,28,18,0.55) 0%,
    rgba(20,28,18,0.25) 50%,
    rgba(20,28,18,0.70) 100%
  ) !important;
}

.vc-hero__content {
  max-width: 820px;
  width: 100%;
}

.vc-hero__eyebrow {
  margin-bottom: 1.4rem !important;
}

.vc-hero__sub {
  max-width: 540px;
  margin-inline: auto;
}

/* Scroll cue */
.vc-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.vc-hero__scroll span {
  font-family: var(--vc-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.6);
}
.vc-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(247,244,239,0.6), transparent);
  animation: vcScrollPulse 2s ease-in-out infinite;
}
@keyframes vcScrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ============================================================
   BUTTONS
============================================================ */
.vc-btn-primary .wp-block-button__link,
.wp-block-button.vc-btn-primary .wp-block-button__link {
  background: var(--vc-gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--vc-sans) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2.4rem !important;
  transition: background 0.3s var(--vc-ease), transform 0.2s !important;
}
.vc-btn-primary .wp-block-button__link:hover {
  background: #9e855a !important;
  transform: translateY(-1px);
}

.vc-btn-outline .wp-block-button__link,
.wp-block-button.vc-btn-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--vc-sage) !important;
  border: 1px solid var(--vc-sage) !important;
  border-radius: 0 !important;
  font-family: var(--vc-sans) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2.4rem !important;
  transition: all 0.3s var(--vc-ease) !important;
}
.vc-btn-outline .wp-block-button__link:hover {
  background: var(--vc-sage) !important;
  color: var(--vc-linen) !important;
}

.vc-btn-outline--gold .wp-block-button__link,
.wp-block-button.vc-btn-outline--gold .wp-block-button__link {
  border-color: var(--vc-gold) !important;
  color: var(--vc-linen) !important;
}
.vc-btn-outline--gold .wp-block-button__link:hover {
  background: var(--vc-gold) !important;
  border-color: var(--vc-gold) !important;
  color: #fff !important;
}

/* ============================================================
   INTRO STRIP
============================================================ */
.vc-intro-strip .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem;
  text-align: center;
}

.vc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 70px;
}
.vc-stat strong {
  display: block;
  font-family: var(--vc-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--vc-gold);
  line-height: 1;
}
.vc-stat span {
  font-family: var(--vc-sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.65);
}
.vc-stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(237,232,223,0.2);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .vc-stat-divider { display: none; }
}

/* ============================================================
   STORIA
============================================================ */
.vc-storia__img-wrap {
  position: relative;
}
.vc-storia__img-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.vc-storia__img-accent {
  position: absolute !important;
  bottom: -2rem;
  right: -2rem;
  width: 45% !important;
  margin: 0 !important;
}
.vc-storia__img-accent img {
  height: clamp(160px, 22vw, 260px);
  width: 100%;
  object-fit: cover;
  border: 4px solid var(--vc-linen);
}

.vc-adsi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--vc-mist);
  font-family: var(--vc-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-sage-mid);
}
.vc-adsi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vc-gold);
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .vc-storia__img-accent { display: none !important; }
}

/* ============================================================
   SPAZI – custom grid
============================================================ */
.vc-spazi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}
.vc-spazio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.vc-spazio-card--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.vc-spazio-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--vc-ease);
}
.vc-spazio-card:hover .vc-spazio-card__bg { transform: scale(1.05); }
.vc-spazio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,30,18,0.78) 0%, transparent 55%);
  transition: background 0.4s;
}
.vc-spazio-card:hover .vc-spazio-card__overlay {
  background: linear-gradient(to top, rgba(20,30,18,0.88) 0%, rgba(20,30,18,0.15) 55%);
}
.vc-spazio-card__info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--vc-linen);
}
.vc-spazio-card__info .vc-eyebrow {
  color: var(--vc-gold) !important;
  margin-bottom: 0.4rem !important;
}
.vc-spazio-card__info h3 {
  font-family: var(--vc-serif);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: var(--vc-linen);
}
.vc-spazio-card__info p {
  font-family: var(--vc-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(237,232,223,0.75);
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--vc-ease), opacity 0.3s;
  opacity: 0;
}
.vc-spazio-card:hover .vc-spazio-card__info p {
  max-height: 80px;
  opacity: 1;
}

@media (max-width: 720px) {
  .vc-spazi-grid { grid-template-columns: 1fr; }
  .vc-spazio-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .vc-spazio-card { aspect-ratio: 4/3; }
}

/* ============================================================
   MATRIMONI
============================================================ */
.vc-feature-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.vc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: var(--vc-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: #4A4A3A;
  line-height: 1.6;
}
.vc-feature-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--vc-gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.vc-matrimoni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 280px;
  gap: 1rem;
}
.vc-matrimoni-grid__tall {
  grid-row: span 2;
}
.vc-matrimoni-grid__tall img,
.vc-matrimoni-grid__top img,
.vc-matrimoni-grid__bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 780px) {
  .vc-matrimoni__imgs { display: none !important; }
}

/* ============================================================
   CORPORATE
============================================================ */
.vc-corporate {
  position: relative;
  overflow: hidden;
}
.vc-corporate::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('PLACEHOLDER_CORPORATE_BG') center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.vc-corporate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}
.vc-corporate-tags span {
  font-family: var(--vc-sans);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(237,232,223,0.3);
  color: rgba(237,232,223,0.75);
}

/* ============================================================
   APPARTAMENTI
============================================================ */
.vc-appt-card {
  background: var(--vc-linen);
  display: flex;
  flex-direction: column;
}
.vc-appt-card .wp-block-image {
  margin: 0;
  flex-shrink: 0;
}
.vc-appt-card .wp-block-image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.vc-appt-card__body {
  flex: 1;
}

.vc-badge {
  display: inline-block;
  font-family: var(--vc-sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--vc-gold);
  color: #fff;
  margin-top: 0.5rem;
}

/* ============================================================
   PARCO BREAK
============================================================ */
.vc-parco-break .wp-block-cover__background,
.vc-parco-break .vc-parco-break__overlay {
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(20,28,18,0.65) 100%
  ) !important;
}
.vc-parco-break .wp-block-cover__inner-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4rem;
}
.vc-parco-break__caption {
  text-align: center;
  align-items: center;
}

/* ============================================================
   GALLERY MOSAIC
============================================================ */
.vc-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
}
.vc-gal-item {
  overflow: hidden;
}
.vc-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vc-ease);
  display: block;
}
.vc-gal-item:hover img { transform: scale(1.06); }
.vc-gal-wide  { grid-column: span 2; }
.vc-gal-tall  { grid-row: span 2; }

@media (max-width: 640px) {
  .vc-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .vc-gal-tall { grid-row: span 1; }
}

/* ============================================================
   TESTIMONIAL
============================================================ */
.vc-testimonial__quote {
  border: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
}
.vc-testimonial__quote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--vc-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vc-gold);
  font-style: normal;
}

/* ============================================================
   CONTATTI
============================================================ */
.vc-contatti-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.vc-contatti-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.vc-detail-icon {
  color: var(--vc-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.vc-contatti-detail span {
  font-family: var(--vc-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(237,232,223,0.85);
  line-height: 1.5;
}

/* FORM */
.vc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.vc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.vc-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.vc-form-field label {
  font-family: var(--vc-sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.6);
}
.vc-form-field input,
.vc-form-field select,
.vc-form-field textarea {
  background: rgba(237,232,223,0.08);
  border: 1px solid rgba(237,232,223,0.2);
  color: var(--vc-linen);
  font-family: var(--vc-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.vc-form-field input::placeholder,
.vc-form-field textarea::placeholder {
  color: rgba(237,232,223,0.35);
}
.vc-form-field input:focus,
.vc-form-field select:focus,
.vc-form-field textarea:focus {
  border-color: var(--vc-gold);
}
.vc-form-field select option {
  background: var(--vc-sage);
  color: var(--vc-linen);
}
.vc-form-field textarea {
  resize: vertical;
  min-height: 130px;
}
.vc-form-submit {
  font-family: var(--vc-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--vc-gold);
  color: #fff;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 0;
}
.vc-form-submit:hover { background: #9e855a; }
.vc-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.vc-form-note {
  font-family: var(--vc-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(237,232,223,0.45);
  text-align: center;
}

/* Success message */
.vc-form-success {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--vc-linen);
}
.vc-form-success svg {
  margin: 0 auto 1rem;
  color: var(--vc-gold);
  display: block;
}
.vc-form-success p {
  font-family: var(--vc-serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .vc-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
============================================================ */
.vc-footer .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.vc-footer__logo {
  font-family: var(--vc-serif) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  color: var(--vc-linen) !important;
}
.vc-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.vc-footer__links a {
  font-family: var(--vc-sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.5);
  transition: color 0.3s;
}
.vc-footer__links a:hover { color: var(--vc-gold); }
.vc-footer__social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}
.vc-footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(237,232,223,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237,232,223,0.5);
  transition: all 0.3s;
}
.vc-footer__social-link:hover {
  border-color: var(--vc-gold);
  color: var(--vc-gold);
}
.vc-footer__divider {
  width: 40px;
  height: 1px;
  background: rgba(237,232,223,0.15);
  border: none;
}
.vc-footer__copy,
.vc-footer__copy a {
  color: rgba(237,232,223,0.3) !important;
  font-size: 0.68rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
}
.vc-footer__copy a:hover { color: rgba(237,232,223,0.6) !important; }

/* ============================================================
   SECTION UTILITY
============================================================ */
.vc-section {
  scroll-margin-top: 80px; /* offset per nav fissa */
}
.vc-section-header {
  text-align: center;
  align-items: center;
}

/* ============================================================
   SELECTION
============================================================ */
::selection { background: var(--vc-gold); color: #fff; }
