/* ═══════════════════════════════════════════
   CHARLOTTE TILBURY — $750 BEAUTY GIFT PAGE
   Aesthetic: Luxury / Editorial / Rose Gold
   style.css
   ═══════════════════════════════════════════ */

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

:root {
  /* Charlotte Tilbury Palette */
  --rose-gold:      #c9956c;
  --rose-gold-lt:   #e8c4a8;
  --rose-gold-dk:   #9e6844;
  --champagne:      #f5ede3;
  --champagne-dk:   #ecddd0;
  --cream:          #faf7f4;
  --noir:           #1a1010;
  --espresso:       #2d1f1a;
  --mocha:          #6b4a3e;
  --blush:          #f0ddd5;
  --blush-dk:       #e0c4b8;
  --white:          #ffffff;
  --muted:          #8a6e65;
  --border:         #e5d4ca;
  --deep-rose:      #8b3a52;

  /* Spacing */
  --radius-sm:  10px;
  --radius:     20px;
  --radius-lg:  28px;

  /* Shadows */
  --shadow-card:
    0 2px 8px rgba(26,16,10,0.06),
    0 16px 48px rgba(201,149,108,0.18),
    0 40px 80px rgba(26,16,10,0.12);
}

/* ─── PAGE ─────────────────────────────── */
html, body {
  min-height: 100vh;
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--espresso);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px 48px;
  position: relative;
  overflow-x: hidden;
}

/* ─── AMBIENT BACKGROUND ────────────────── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, rgba(201,149,108,0.14) 0%, transparent 65%);
  animation: drift 18s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -150px;
  background: radial-gradient(circle, rgba(139,58,82,0.10) 0%, transparent 65%);
  animation: drift 22s ease-in-out infinite reverse;
}

.orb-3 {
  width: 350px; height: 350px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,196,168,0.08) 0%, transparent 65%);
  animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -15px); }
  66%       { transform: translate(-10px, 20px); }
}

/* ─── SITE HEADER ───────────────────────── */
.site-header {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  position: relative;
  z-index: 2;
  animation: fade-down 0.6s ease both;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-monogram {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--espresso), var(--mocha));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--rose-gold-lt);
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(26,16,10,0.22);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--espresso);
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.header-badge {
  background: linear-gradient(135deg, var(--rose-gold-lt), var(--champagne-dk));
  color: var(--mocha);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,149,108,0.35);
}

/* ─── MAIN CARD ─────────────────────────── */
.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  animation: rise 0.8s 0.1s cubic-bezier(.22,1,.36,1) both;
}

/* ─── HERO BAND ─────────────────────────── */
.hero-band {
  background: linear-gradient(150deg, var(--espresso) 0%, #3d2520 50%, #5c3028 100%);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 24px,
      rgba(201,149,108,0.04) 24px,
      rgba(201,149,108,0.04) 25px
    );
  pointer-events: none;
}

/* Sparkle elements */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: var(--rose-gold-lt);
  animation: twinkle 3s ease-in-out infinite;
}

.s1 { top: 12%; right: 22%; font-size: 12px; animation-delay: 0s;   }
.s2 { top: 55%; right: 8%;  font-size: 8px;  animation-delay: 0.8s; }
.s3 { top: 30%; right: 14%; font-size: 16px; animation-delay: 1.4s; }
.s4 { top: 75%; right: 30%; font-size: 10px; animation-delay: 0.4s; }
.s5 { top: 10%; right: 38%; font-size: 7px;  animation-delay: 2.1s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%       { opacity: 0.80; transform: scale(1.2); }
}

/* Hero inner layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,149,108,0.18);
  border: 1px solid rgba(201,149,108,0.40);
  border-radius: 20px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-gold-lt);
  animation: blink 2s ease-in-out infinite;
}

.hero-eyebrow span {
  font-size: 10px;
  font-weight: 600;
  color: var(--rose-gold-lt);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(34px, 9vw, 44px);
  color: var(--champagne);
  line-height: 1.08;
  letter-spacing: 0.3px;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose-gold-lt);
  font-weight: 700;
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,237,227,0.68);
  margin-top: 10px;
  max-width: 270px;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.hero-sub strong {
  color: var(--champagne);
  font-weight: 500;
}

/* Eligibility pill */
.eligibility-pill {
  flex-shrink: 0;
  background: rgba(201,149,108,0.15);
  border: 1.5px solid rgba(201,149,108,0.40);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  min-width: 92px;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}

.eligibility-pill:hover {
  background: rgba(201,149,108,0.28);
  border-color: var(--rose-gold-lt);
}

.pill-icon {
  font-size: 20px;
  color: var(--rose-gold-lt);
  display: block;
  margin-bottom: 7px;
}

.pill-text {
  font-size: 10px;
  font-weight: 600;
  color: rgba(245,237,227,0.88);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── STATS ROW ─────────────────────────── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--espresso);
  letter-spacing: 0.5px;
}

.stat-value.timer {
  color: var(--deep-rose);
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── PRODUCT STRIP ─────────────────────── */
.product-strip {
  margin: 16px 20px 0;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--blush) 100%);
  border: 1px solid var(--blush-dk);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.product-strip-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mocha);
}

.product-icon {
  font-size: 15px;
}

.product-sep {
  color: var(--rose-gold);
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
}

/* ─── STEPS ─────────────────────────────── */
.steps-section {
  padding: 24px 20px 16px;
}

.section-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 2px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.22s, transform 0.22s;
  cursor: default;
  animation: slide-in 0.5s both;
}

.step-item:nth-child(1) { animation-delay: 0.20s; }
.step-item:nth-child(2) { animation-delay: 0.32s; }
.step-item:nth-child(3) { animation-delay: 0.44s; }
.step-item:nth-child(4) { animation-delay: 0.56s; }

.step-item:hover {
  background: var(--champagne);
  transform: translateX(4px);
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dk));
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(201,149,108,0.35);
  transition: transform 0.22s, box-shadow 0.22s;
  letter-spacing: 0.5px;
}

.step-item:hover .step-num {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 6px 18px rgba(201,149,108,0.50);
}

.step-body {
  flex: 1;
  min-width: 0;
}

.step-title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.2;
}

.step-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.step-chevron {
  font-size: 20px;
  color: var(--blush-dk);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.step-item:hover .step-chevron {
  color: var(--rose-gold);
  transform: translateX(3px);
}

/* ─── DIVIDER ───────────────────────────── */
.divider {
  margin: 6px 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ─── CTA SECTION ───────────────────────── */
.cta-section {
  padding: 20px 20px 10px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--mocha) 50%, var(--rose-gold-dk) 100%);
  color: var(--champagne);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 24px rgba(26,16,10,0.35),
    0 2px 6px rgba(26,16,10,0.15),
    inset 0 1px 0 rgba(232,196,168,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: slide-in 0.5s 0.6s both;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 58px;
  background: linear-gradient(135deg, rgba(232,196,168,0.10) 0%, transparent 50%);
  pointer-events: none;
}

/* Shimmer sweep */
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,237,227,0.18), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s 1.8s ease infinite;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 19px 32px;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1.5px;
}

.cta-arrow {
  font-size: 20px;
  transition: transform 0.22s;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(26,16,10,0.42),
    0 4px 10px rgba(26,16,10,0.20);
}

.cta-btn:hover .cta-arrow {
  transform: translateX(6px);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(26,16,10,0.28);
}

/* Urgency strip */
.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 16px;
  background: linear-gradient(135deg, rgba(139,58,82,0.06), rgba(201,149,108,0.08));
  border-radius: 8px;
  border: 1px solid rgba(139,58,82,0.15);
}

.urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--deep-rose);
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.urgency-text {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--deep-rose);
  letter-spacing: 0.3px;
}

/* ─── TRUST ROW ─────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px 22px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.trust-item .t-icon {
  font-size: 13px;
}

.trust-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border);
}

/* ─── FOOTER ────────────────────────────── */
.footer-note {
  width: 100%;
  max-width: 500px;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  padding: 14px 8px 0;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  animation: fade-up 0.5s 0.8s both;
  letter-spacing: 0.2px;
}

.footer-note a {
  color: var(--rose-gold-dk);
  text-decoration: none;
  font-weight: 500;
}

.footer-note a:hover { text-decoration: underline; }

/* ─── ANIMATIONS ────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 400px) {
  .hero-band        { padding: 28px 22px 26px; }
  .hero-headline    { font-size: 32px; }
  .eligibility-pill { min-width: 80px; padding: 12px 10px; }
  .cta-inner        { padding: 17px 22px; gap: 8px; }
  .cta-text         { font-size: 18px; }
  .steps-section    { padding: 20px 14px 14px; }
  .trust-row        { gap: 10px; }
  .product-items    { gap: 4px; }
}

@media (min-width: 520px) {
  .card { border-radius: 32px; }
}

@media (min-width: 768px) {
  body        { padding: 44px 16px 64px; }
  .site-header { padding: 32px 4px; }
}
