/* The Velvet Enigma — Dark Luxury Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Cinzel:wght@400;500;600&family=Dancing+Script:wght@400;500;600;700&family=Raleway:wght@200;300;400;500;600&display=swap');

:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --surface:      #1a1a1a;
  --surface-2:    #212121;
  --surface-3:    #282828;

  --fg:           #f0e6d8;
  --fg-dim:       rgba(240, 230, 216, 0.55);
  --fg-muted:     rgba(240, 230, 216, 0.3);

  /* Rose gold / warm copper palette — updated to match reference */
  --rose:         #c9a96e;
  --rose-light:   #d4b87a;
  --rose-pale:    rgba(201, 169, 110, 0.12);
  --rose-glow:    rgba(201, 169, 110, 0.06);
  --gold:         #b8963e;

  /* Deep crimson — matches reference */
  --crimson:      #8b1a1a;
  --crimson-glow: rgba(139, 26, 26, 0.3);

  /* Thin rose gold borders — matches reference */
  --border:       rgba(201, 169, 110, 0.25);
  --border-dim:   rgba(201, 169, 110, 0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-caps:   'Cinzel', serif;
  --font-body:   'Raleway', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --transition: 0.25s ease;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── UTILITIES ──────────────────────────────────────── */
.u-rose { color: var(--rose); }
.u-gold { color: var(--gold); }
.u-script { font-family: var(--font-script); }
.u-caps { font-family: var(--font-caps); letter-spacing: 0.12em; }
.u-dim { color: var(--fg-dim); }

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 0 auto;
}

/* Section labels — centered with ornamental side lines (matches reference) */
.section-label {
  font-family: var(--font-caps);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose));
  opacity: 0.6;
}
.section-label::after {
  background: linear-gradient(270deg, transparent, var(--rose));
  opacity: 0.6;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-lg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 50%, rgba(139, 26, 26, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(139, 26, 26, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #120a0d 0%, #0a0a0a 40%, #0d0a08 100%);
  pointer-events: none;
}

.hero__left {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rose);
  opacity: 0.5;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(139, 26, 26, 0.3);
}

.hero__title-the {
  display: block;
  font-size: 0.45em;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-family: var(--font-caps);
  color: var(--rose-light);
  margin-bottom: 0.3em;
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--rose-light);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

/* SUBSCRIBE NOW CTA button — rose gold gradient (matches reference) */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  color: var(--bg);
  font-family: var(--font-caps);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}
.hero__cta::after {
  content: '→';
  font-family: serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
}

.hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__profile-ring {
  position: relative;
  width: clamp(260px, 35vw, 420px);
  aspect-ratio: 1;
}

.hero__profile-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--rose), var(--gold), var(--crimson), var(--rose));
  animation: rotateRing 8s linear infinite;
}
.hero__profile-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg);
  margin: 4px;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__profile-img {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9) saturate(0.85);
}

.hero__ornament {
  position: absolute;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--crimson-glow);
  font-style: italic;
  font-weight: 300;
  pointer-events: none;
  user-select: none;
  right: -2rem;
  bottom: -3rem;
  z-index: 0;
  opacity: 0.6;
}

/* ── PROFILE BAR ────────────────────────────────────── */
/* Card panels with thin rose gold border (matches reference) */
.profile {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) var(--space-lg);
}

.profile__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.profile__top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-dim);
}

.profile__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.9) saturate(0.8);
}

.profile__info { flex: 1; }

.profile__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}

.profile__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  border-radius: 50%;
  font-size: 0.6rem;
  color: var(--bg);
  font-weight: 700;
  flex-shrink: 0;
}

.profile__handle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--rose);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.profile__bio {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.65;
  max-width: 680px;
  margin-top: 0.6rem;
}

.profile__subscribe {
  flex-shrink: 0;
  text-align: right;
}

/* SUBSCRIBE button — matches reference slanted style */
.profile__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  color: var(--bg);
  font-family: var(--font-caps);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: var(--transition);
  position: relative;
}
.profile__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.profile__btn-price {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.profile__badge {
  display: inline-block;
  background: var(--crimson);
  color: var(--fg);
  font-family: var(--font-caps);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.2rem 0.6rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Feature boxes — thin rose gold border on dark charcoal (matches reference) */
.profile__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.profile__feature {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.profile__feature:hover {
  border-color: var(--rose);
  background: var(--surface);
}

.profile__feature-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.profile__feature-title {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
}

.profile__feature-desc {
  font-size: 0.78rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ── EXPERIENCE + WELCOME ───────────────────────────── */
/* Thin rose gold borders on container panels (matches reference) */
.velvet {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 600px;
  border-top: 1px solid var(--border);
}

.velvet__sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
}
.velvet__sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.velvet__sidebar-title {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-dim);
}

.velvet__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-dim);
}
.velvet__item:last-child { border-bottom: none; }

.velvet__item-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }

.velvet__item-title {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.3rem;
}

.velvet__item-desc {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.velvet__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-2);
}

.velvet__welcome {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.velvet__welcome-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.velvet__welcome-title span {
  font-style: normal;
  font-family: var(--font-caps);
  font-size: 0.55em;
  letter-spacing: 0.2em;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}

.velvet__welcome-copy {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.velvet__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.velvet__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: var(--rose-pale);
  border: 1px solid var(--border-dim);
  font-family: var(--font-caps);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-light);
}

.velvet__badge-icon { font-size: 0.9rem; }

.velvet__quote {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--rose-light);
  line-height: 1.3;
  font-weight: 400;
  opacity: 0.85;
}

.velvet__photo {
  position: relative;
  overflow: hidden;
}

.velvet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.7);
  display: block;
  transition: transform 0.8s ease;
}
.velvet__photo:hover img { transform: scale(1.03); }

.velvet__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ── GALLERY ─────────────────────────────────────────── */
/* Gallery row with crimson border highlight (matches reference) */
.gallery {
  padding: var(--space-lg) var(--space-lg);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.gallery__inner { max-width: 1300px; margin: 0 auto; }

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.gallery__title {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  border: 1px solid var(--border-dim);
  padding: 4px;
  background: var(--surface-2);
}

.gallery__thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface-3);
  border: 1px solid var(--border-dim);
  transition: var(--transition);
}
.gallery__thumb:hover {
  border-color: var(--crimson);
  box-shadow: 0 0 8px var(--crimson-glow);
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.6);
  transition: all 0.5s ease;
  display: block;
}
.gallery__thumb:hover img {
  filter: brightness(0.85) saturate(0.9);
  transform: scale(1.05);
}

.gallery__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery__thumb:hover .gallery__thumb-overlay { opacity: 1; }

.gallery__thumb-lock {
  font-family: var(--font-caps);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  text-transform: uppercase;
}

/* ── FOUR-COLUMN GRID ───────────────────────────────── */
/* Info grid columns with thin rose gold borders (matches reference) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dim);
  background: var(--bg);
}

.info-col {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--border-dim);
}
.info-col:last-child { border-right: none; }

.info-col__title {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dim);
}

.info-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-col__item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.info-col__item::before {
  content: '◆';
  color: var(--rose);
  font-size: 0.4rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.info-col__item:last-child { border-bottom: none; }

.info-col__item-day {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--rose-light);
  min-width: 30px;
  margin-top: 0.05rem;
}

.info-col__item-content {
  display: flex;
  flex-direction: column;
}

.info-col__item-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-weight: 400;
}

.info-col__item-sub {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* VIP pricing cards — rose gold text on dark charcoal panels (matches reference) */
.info-col__price-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.info-col__price-item:last-child { border-bottom: none; }

.info-col__price-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.4;
}

/* Rose gold price text — matches reference VIP styling */
.info-col__price-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--rose-light);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.info-col__price-value.premium {
  font-family: var(--font-caps);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-col__ppv {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-col__ppv-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-dim);
}
.info-col__ppv-item:last-child { border-bottom: none; }

.info-col__ppv-label {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  margin-bottom: 0.4rem;
}

.info-col__ppv-teaser {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-style: italic;
  line-height: 1.5;
}

.info-col__footer {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-dim);
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--rose);
  line-height: 1.5;
}

/* ── FOOTER ─────────────────────────────────────────── */
/* Footer with deep crimson velvet glow (matches reference) */
.velvet-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) var(--space-lg);
  position: relative;
  overflow: hidden;
}

/* Deep red velvet texture/glow in footer — matches reference */
.velvet-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(139, 26, 26, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.velvet-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.velvet-footer__col-title {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-dim);
}

.velvet-footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.velvet-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-decoration: none;
  transition: var(--transition);
}
.velvet-footer__social:hover { color: var(--rose-light); }

.velvet-footer__social-platform {
  font-family: var(--font-caps);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--rose);
  min-width: 60px;
}

.velvet-footer__dm {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}
.velvet-footer__dm::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rose);
  opacity: 0.4;
  line-height: 1;
}

.velvet-footer__taglines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.velvet-footer__tagline-main {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--rose-light);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.velvet-footer__tagline-sm {
  font-family: var(--font-caps);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.velvet-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.velvet-footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  letter-spacing: 0.05em;
}
.velvet-footer__logo span {
  font-style: normal;
  font-family: var(--font-caps);
  font-size: 0.4em;
  letter-spacing: 0.3em;
  color: var(--rose);
  display: block;
  margin-bottom: 0.2rem;
}

.velvet-footer__copy {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: right;
  line-height: 1.6;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__left > * {
  animation: fadeUp 0.8s ease both;
}
.hero__left > *:nth-child(1) { animation-delay: 0.1s; }
.hero__left > *:nth-child(2) { animation-delay: 0.2s; }
.hero__left > *:nth-child(3) { animation-delay: 0.3s; }
.hero__left > *:nth-child(4) { animation-delay: 0.4s; }
.hero__left > *:nth-child(5) { animation-delay: 0.5s; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-col:nth-child(2) { border-right: none; }
  .info-col:nth-child(3) { border-top: 1px solid var(--border-dim); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    padding-top: calc(var(--space-lg) + 60px);
  }
  .hero__left { order: 2; }
  .hero__right { order: 1; }
  .hero__eyebrow { justify-content: center; }
  .hero__profile-ring { width: 200px; }

  .velvet { grid-template-columns: 1fr; }
  .velvet__sidebar { border-right: none; border-bottom: 1px solid var(--border-dim); }
  .velvet__main { grid-template-columns: 1fr; }
  .velvet__photo { min-height: 300px; }

  .profile__top { flex-wrap: wrap; }
  .profile__subscribe { width: 100%; text-align: left; margin-top: var(--space-sm); }
  .profile__features { grid-template-columns: 1fr; }

  .velvet-footer__inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .velvet-footer__bottom { flex-direction: column; align-items: flex-start; }
  .velvet-footer__copy { text-align: left; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }
  .gallery__row { grid-template-columns: repeat(3, 1fr); }
  .gallery { padding: var(--space-lg) var(--space-sm); }
  .profile { padding: var(--space-md) var(--space-sm); }
  .velvet__sidebar { padding: var(--space-md) var(--space-sm); }
  .velvet__welcome { padding: var(--space-md) var(--space-sm); }
  .velvet-footer { padding: var(--space-md) var(--space-sm); }
  .info-grid { grid-template-columns: 1fr; }
  .info-col { border-right: none; border-bottom: 1px solid var(--border-dim); }
  .info-col:last-child { border-bottom: none; }
  .hero { padding: var(--space-md) var(--space-sm); padding-top: calc(var(--space-md) + 40px); }
}

@media (max-width: 480px) {
  .gallery__row { grid-template-columns: repeat(2, 1fr); }
  .velvet__badges { grid-template-columns: 1fr; }
  .profile__features { grid-template-columns: 1fr; }
}