:root {
  --bg-deep: #0c0a09;
  --bg-card: #1a1714;
  --bg-warm: #14120f;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --rose: #d4868a;
  --champagne: #f5e6d3;
  --cream: #faf6f0;
  --text: #e8e0d6;
  --text-muted: #9a8f82;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: radial-gradient(ellipse at 30% 40%, rgba(201,169,110,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(212,134,138,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Floating orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 120px; height: 120px;
  top: 15%; left: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(201,169,110,0.15), rgba(201,169,110,0.03));
  border: 1px solid rgba(201,169,110,0.1);
  animation-delay: 0s;
}

.orb-2 {
  width: 80px; height: 80px;
  top: 25%; right: 12%;
  background: radial-gradient(circle at 35% 35%, rgba(212,134,138,0.15), rgba(212,134,138,0.03));
  border: 1px solid rgba(212,134,138,0.1);
  animation-delay: -2s;
}

.orb-3 {
  width: 60px; height: 60px;
  bottom: 30%; left: 15%;
  background: radial-gradient(circle at 35% 35%, rgba(245,230,211,0.12), rgba(245,230,211,0.02));
  border: 1px solid rgba(245,230,211,0.08);
  animation-delay: -4s;
}

.orb-4 {
  width: 100px; height: 100px;
  bottom: 20%; right: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(201,169,110,0.12), rgba(201,169,110,0.02));
  border: 1px solid rgba(201,169,110,0.08);
  animation-delay: -1s;
}

.orb-5 {
  width: 40px; height: 40px;
  top: 60%; left: 45%;
  background: radial-gradient(circle at 35% 35%, rgba(212,134,138,0.2), rgba(212,134,138,0.05));
  border: 1px solid rgba(212,134,138,0.12);
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

/* ═══ CONCEPT ═══ */
.concept {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.concept-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.concept-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.concept-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.concept-visual {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: flex-end;
}

.sphere-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sphere-outer {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.3);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(201,169,110,0.1), inset 0 0 20px rgba(255,255,255,0.03);
}

.sphere-outer-rose {
  border-color: rgba(212,134,138,0.3);
  box-shadow: 0 0 30px rgba(212,134,138,0.1), inset 0 0 20px rgba(255,255,255,0.03);
}

.sphere-outer-gold {
  border-color: rgba(232,213,168,0.3);
  box-shadow: 0 0 30px rgba(232,213,168,0.1), inset 0 0 20px rgba(255,255,255,0.03);
}

.sphere-bead {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  box-shadow: 0 2px 8px rgba(201,169,110,0.4);
}

.sphere-bead-rose {
  background: radial-gradient(circle at 35% 35%, #e8a0a4, var(--rose));
  box-shadow: 0 2px 8px rgba(212,134,138,0.4);
}

.sphere-bead-gold {
  background: radial-gradient(circle at 35% 35%, #f5e6d3, #dfc088);
  box-shadow: 0 2px 8px rgba(223,192,136,0.4);
}

.sphere-stick {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.2));
  border-radius: 1px;
}

.sphere-demo-2 {
  transform: translateY(-20px);
}

.sphere-demo-3 {
  transform: translateY(-5px);
}

/* ═══ FEATURES ═══ */
.features {
  padding: 8rem 2rem;
  background: var(--bg-deep);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══ OCCASIONS ═══ */
.occasions {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  text-align: center;
}

.occasions h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 3rem;
}

.occasions-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
  max-width: 700px;
  margin: 0 auto;
}

.occasion-tag {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 100px;
  margin: 0.25rem;
  transition: border-color 0.3s, color 0.3s;
}

.occasion-tag:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.occasion-dot {
  color: rgba(201,169,110,0.3);
  font-size: 1.5rem;
  line-height: 1;
  display: none;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 10rem 2rem;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ═══ NAV ═══ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-brand:hover {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link-cta {
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-link-cta:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-light);
  border-color: rgba(201, 169, 110, 0.5);
}

/* When nav is present, push hero down */
body:has(.site-nav) .hero,
body:has(.site-nav) .shop-hero {
  padding-top: 6rem;
}

/* ═══ SHOP HERO ═══ */
.shop-hero {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at 40% 50%, rgba(201,169,110,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 65% 40%, rgba(212,134,138,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* ═══ CATALOG ═══ */
.catalog {
  padding: 5rem 2rem 8rem;
  background: var(--bg-deep);
}

.catalog-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201,169,110,0.05);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card--custom {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  border-color: rgba(201, 169, 110, 0.15);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,169,110,0.04) 100%);
}

/* Badge */
.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

/* Sphere visual */
.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  flex-shrink: 0;
}

.sphere-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 200px;
}

.sphere-pip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid;
  position: relative;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.2s;
}

.sphere-pip::after {
  content: '';
  position: absolute;
  top: 22%;
  left: 22%;
  width: 30%;
  height: 30%;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(2px);
}

.product-card:hover .sphere-pip {
  transform: scale(1.08);
}

.sphere-pip--more {
  background: rgba(201,169,110,0.08) !important;
  border-color: rgba(201,169,110,0.2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
  animation: none;
}

/* Custom visual */
.custom-visual {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-slow linear infinite;
}

.custom-ring-1 {
  width: 90px; height: 90px;
  border-color: rgba(201,169,110,0.25);
  animation-duration: 12s;
}

.custom-ring-2 {
  width: 66px; height: 66px;
  border-color: rgba(212,134,138,0.2);
  animation-duration: 8s;
  animation-direction: reverse;
}

.custom-ring-3 {
  width: 44px; height: 44px;
  border-color: rgba(168,200,232,0.2);
  animation-duration: 5s;
}

.custom-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  z-index: 1;
  line-height: 1;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.product-tier-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(154,143,130,0.5);
}

.product-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}

.product-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Color themes */
.color-themes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.color-themes-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(154,143,130,0.6);
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.swatch-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: default;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.swatch-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.custom-color-strip {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.custom-color-band {
  height: 6px;
  border-radius: 3px;
  width: 100%;
  max-width: 280px;
  opacity: 0.7;
}

.custom-color-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Product footer */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.price-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.price-range {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.product-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.product-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

.product-cta--custom {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
}

.product-cta--custom:hover {
  background: rgba(201,169,110,0.1);
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,169,110,0.15);
}

/* ═══ REASSURANCE STRIP ═══ */
.reassurance {
  padding: 3.5rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.reassurance-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.reassurance-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.reassurance-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reassurance-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--champagne);
}

.reassurance-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reassurance-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,0.15);
  flex-shrink: 0;
}

/* ═══ FOOTER ═══ */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(201,169,110,0.08);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-copy {
  color: rgba(154,143,130,0.5);
  font-size: 0.75rem;
}

/* ═══ HERO CTA BUTTON ═══ */
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.35);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .concept-visual {
    justify-content: center;
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .occasions-strip {
    gap: 0.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .orb-1, .orb-4 { display: none; }
}

@media (max-width: 480px) {
  .sphere-outer {
    width: 55px;
    height: 55px;
  }

  .sphere-bead {
    width: 18px;
    height: 18px;
  }

  .sphere-stick {
    height: 60px;
  }
}

/* ═══ CTA SECTION ═══ */
.cta-section {
  padding: 8rem 2rem;
  background: var(--bg-warm);
  text-align: center;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.cta-btn-primary {
  background: var(--gold);
  color: #0c0a09;
  border: none;
}

.cta-btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
}

.cta-btn-secondary:hover {
  border-color: var(--gold);
}

.cta-divider {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2rem 0 1.5rem;
  position: relative;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.2);
  vertical-align: middle;
  margin: 0 1rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  min-width: 240px;
  transition: border-color 0.2s;
}

.cta-input:focus {
  border-color: rgba(201,169,110,0.5);
}

.cta-input::placeholder {
  color: var(--text-muted);
}

.cta-fine {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-input {
    width: 100%;
    min-width: unset;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}