/* ==========================================================================
   VZ CONCIERGE SERVICE — COMPONENTS
   Buttons, cards, nav, footer, forms, loader, dividers, chrome.
   ========================================================================== */

/* ————— Container & section scaffolding ————— */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-pad);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-head .eyebrow {
  margin-bottom: var(--sp-5);
}

.section-head .section-title {
  margin-bottom: var(--sp-5);
}

.section-head .lead {
  max-width: 640px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* ————— Buttons ————— */
.btn {
  --btn-pad-y: 0.95rem;
  --btn-pad-x: 2.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    background-color 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    color 0.45s var(--ease-out);
  will-change: transform;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

/* Gold solid — the signature action */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #b19354);
  color: #17120a;
  border-color: rgba(200, 169, 106, 0.6);
  box-shadow: 0 12px 34px -14px rgba(200, 169, 106, 0.55);
}

/* Shine sweep */
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    transparent 68%
  );
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease-out);
}

.btn-gold:hover::before {
  transform: translateX(130%);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -14px rgba(200, 169, 106, 0.7);
}

/* Ghost / outline */
.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(200, 169, 106, 0.06);
  transform: translateY(-2px);
}

/* Text link with gold underline animation */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.link-arrow .bar {
  position: relative;
  width: 2.2rem;
  height: 1px;
  background: rgba(200, 169, 106, 0.4);
  overflow: hidden;
}

.link-arrow .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}

.link-arrow:hover .bar::after {
  transform: translateX(0);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-arrow svg {
  transition: transform 0.4s var(--ease-out);
}

/* ————— Chips / trust badges ————— */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 1.15rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.chip svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.chip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.18);
}

/* ————— Section header split (eyebrow left, link right) ————— */
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* ————— Cards ————— */
.card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0));
  border-radius: var(--radius);
  transition:
    transform 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out),
    background-color 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--line-gold);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(200, 169, 106, 0.06);
}

/* ————— Service card ————— */
.service-card {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 260px at 50% -20%, rgba(200, 169, 106, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card .ic {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.7rem;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.service-card .ic svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.2;
}

.service-card:hover .ic {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-card .num-mark {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.1em;
  transition: color 0.5s var(--ease-out);
}

.service-card:hover .num-mark {
  color: rgba(200, 169, 106, 0.6);
}

/* ————— Category tile ————— */
.cat-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.72);
  transition: transform 1.1s var(--ease-out), filter 0.9s var(--ease-out);
}

.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0) 40%, rgba(9, 9, 9, 0.88) 100%);
}

.cat-tile:hover img {
  transform: scale(1.07);
  filter: grayscale(0) brightness(0.85);
}

.cat-tile .cat-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cat-tile .cat-label h3 {
  font-size: 1.3rem;
  font-weight: 500;
}

.cat-tile .cat-label span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.cat-tile:hover .cat-label span {
  opacity: 1;
  transform: translateX(0);
}

/* ————— Why-choose feature row ————— */
.feature {
  display: flex;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.feature:first-child {
  border-top: 1px solid var(--line);
}

.feature .ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
}

.feature .ic svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.3;
}

.feature h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.feature p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ————— Timeline (how it works) ————— */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
  padding-top: 1.2rem;
}

.timeline-track {
  position: absolute;
  top: 3.05rem;
  left: calc(50% - 34px);
  right: calc(50% - 34px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-track .fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1.2s var(--ease-out);
}

.timeline-step {
  position: relative;
  text-align: center;
  padding-top: 1rem;
}

.timeline-step .node {
  position: relative;
  z-index: 2;
  margin: 0 auto 1.4rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--muted);
  transition: border-color 0.5s var(--ease-out), color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.timeline-step.is-active .node {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 169, 106, 0.1);
}

.timeline-step h4 {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.timeline-step p {
  font-size: 0.84rem;
  color: var(--muted-2);
  line-height: 1.55;
}

/* ————— FAQ ————— */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  width: 100%;
  padding: 1.7rem 0.2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}

.faq-q:hover {
  color: var(--gold-light);
}

.faq-icon {
  flex: 0 0 auto;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease-out), background-color 0.5s var(--ease-out);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.4;
  transition: transform 0.5s var(--ease-out);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--bg);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out);
}

.faq-a > div {
  overflow: hidden;
}

.faq-a p {
  padding: 0 0 1.8rem 0.2rem;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

/* ————— Forms ————— */
.field {
  display: block;
  margin-bottom: 1.35rem;
}

.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8A96A' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.field select option {
  background: var(--bg-2);
  color: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.05);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.4rem;
}

/* Form status */
.form-note {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  border: 1px solid var(--line-gold);
  background: rgba(200, 169, 106, 0.06);
  color: var(--gold-light);
  border-radius: var(--radius);
}

.form-note.show {
  display: flex;
}

/* ————— Navigation ————— */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out), height 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  height: 64px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--glass-line);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: 100%;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
}

.brand .mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.05);
  transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out);
}

.brand:hover .mark {
  background: var(--gold);
  color: var(--bg);
}

.brand .name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.brand .name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
  transition: color 0.4s var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav .btn {
  --btn-pad-x: 1.7rem;
  --btn-pad-y: 0.8rem;
}

/* Only shown inside the mobile drawer */
.nav-cta-mobile {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;  z-index: 2;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
  transition: transform 0.5s var(--ease-out), opacity 0.4s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ————— Footer ————— */
.footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding-top: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  position: relative;
  display: inline-block;
  transition: color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer .brand .name {
  color: var(--white);
}

.footer-company p {
  font-size: 0.85rem;
  color: var(--muted-2);
  max-width: 320px;
  margin-top: 1.1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted-2);
}

.footer-bottom .legal {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ————— Loading screen ————— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.loader-inner {
  text-align: center;
}

.loader-mark {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  animation: loaderPulse 2.4s var(--ease-io) infinite;
}

.loader-ring {
  width: 168px;
  height: 168px;
  margin: -130px auto 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  animation: loaderSpin 1.4s linear infinite;
}

.loader-word {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: -34px;
  text-indent: 0.5em;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.25);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(200, 169, 106, 0);
  }
}

/* ————— Scroll progress ————— */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 950;
  height: 2px;
  width: 100%;
  background: transparent;
  pointer-events: none;
}

.scroll-progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ————— Back to top ————— */
.to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 800;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), visibility 0.5s, background-color 0.4s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--gold);
  color: var(--bg);
}

.to-top svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* ————— Floating WhatsApp / Call ————— */
.float-actions {
  position: fixed;
  right: 1.6rem;
  bottom: 6.4rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: rgba(9, 9, 9, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gold);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s var(--ease-out), background-color 0.4s, color 0.4s;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--gold);
  color: var(--bg);
}

.float-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.4;
}

/* ————— Cursor glow (desktop) ————— */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.06), transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.cursor-glow.on {
  opacity: 1;
}

/* ————— Luxury dividers ————— */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  color: var(--gold);
  opacity: 0.85;
}

.divider .line {
  width: clamp(3rem, 10vw, 7rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider .line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider .diamond {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
}

/* ————— Marquee / ticker (optional premium strip) ————— */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.35rem;
  background: rgba(255, 255, 255, 0.012);
}

.ticker-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker 42s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

.ticker span::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.7;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
