*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #060606;
  --pink: #E89EB8;
  --text: #F0EDE8;
  --muted: #6B6670;
  --glass-border: rgba(232, 158, 184, 0.15);
  --gold: #c9a96e;
  --gold-soft: rgba(201, 169, 110, 0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  cursor: none;
  overflow-x: hidden;
}

/* CURSOR */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 0.5px solid var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-ring.hover {
  width: 44px;
  height: 44px;
  opacity: 0.15 !important;
}

/* HOME BUTTON */
.home-btn {
  position: fixed;
  top: 2rem;
  left: 2.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.home-btn:hover { opacity: 0.6; }

.home-star {
  color: var(--pink);
  font-size: 14px;
  display: inline-block;
  transition: transform 0.5s ease;
}

.home-btn:hover .home-star { transform: rotate(180deg); }

.home-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.col-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  background: radial-gradient(ellipse at 50% 60%, rgba(232, 158, 184, 0.06) 0%, transparent 70%);
}

.col-hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.3s;
}

.col-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0.6;
  margin-bottom: 1.4rem;
}

.col-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.col-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.col-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.col-hero-scroll span {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}

.scroll-line {
  width: 0.5px;
  height: 0;
  background: var(--glass-border);
  animation: scrollLineGrow 1.5s ease forwards 1.2s;
}

@keyframes scrollLineGrow { to { height: 48px; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTIONS */
.col-section {
  padding: 8rem 2rem;
  position: relative;
  overflow: visible;
}

.design-section {
  background: #060606;
  border-top: 0.5px solid rgba(255,255,255,0.04);
}

.design-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(232, 158, 184, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.wedding-section {
  background: #07050a;
  border-top: 0.5px solid rgba(201, 169, 110, 0.08);
}

.wedding-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* CONTAINER */
.col-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION HEADER */
.col-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.col-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0.5;
}

.col-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}

.col-section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 520px;
}

/* WA BUTTON */
.col-wa-btn {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 0;
  width: 100%;
  max-width: 520px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink);
  color: var(--bg);
  border: 0.5px solid var(--pink);
  transition: all 0.3s ease;
  cursor: none;
}

.col-wa-btn:hover {
  background: transparent;
  color: var(--pink);
}

/* DESIGN GALLERY */
.design-gallery-wrap {
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}

.design-gallery-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.design-gallery-item {
  flex-shrink: 0;
  width: 240px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
}

.design-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.design-gallery-item:hover img {
  transform: scale(1.06);
}

.design-gallery-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  border-radius: 4px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.design-gallery-wrap::-webkit-scrollbar { display: none; }
.design-gallery-wrap.dragging { cursor: grabbing; }

.design-gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

/* WEDDING SERIES LABEL */
.wedding-series-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.8rem;
}

/* WEDDING CAROUSEL */
.wedding-carousel-wrap {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wedding-carousel-wrap::-webkit-scrollbar { display: none; }

.wedding-carousel-wrap.dragging { cursor: grabbing; }

.wedding-carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.4rem;
  user-select: none;
  min-width: max-content;
}

/* WEDDING CARD */
.wedding-card {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wedding-card-badge {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  border: 0.5px solid var(--glass-border);
  padding: 5px 14px;
  border-radius: 2px;
  width: fit-content;
  background: rgba(232, 158, 184, 0.04);
}

.wedding-card-badge.standard {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: rgba(201, 169, 110, 0.04);
}

.wedding-card-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.wedding-card-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wedding-card-img-wrap:hover img { transform: scale(1.04); }

.wedding-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.wedding-card-img-wrap:hover .wedding-card-overlay { opacity: 1; }

.wedding-card-overlay span {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  border: 0.5px solid rgba(240,237,232,0.3);
  padding: 8px 18px;
  border-radius: 2px;
  transform: translateY(6px);
  transition: transform 0.3s;
}

.wedding-card-img-wrap:hover .wedding-card-overlay span { transform: translateY(0); }

.wedding-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wedding-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
}

.wedding-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

.wedding-card-cta {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.wc-btn-preview, .wc-btn-buy {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: none;
}

.wc-btn-preview {
  color: var(--text);
  border: 0.5px solid rgba(240,237,232,0.2);
  background: transparent;
}

.wc-btn-preview:hover { border-color: var(--pink); color: var(--pink); }
.wc-btn-preview i { transition: transform 0.3s; }
.wc-btn-preview:hover i { transform: translateX(3px); }

.wc-btn-buy {
  color: var(--bg);
  background: var(--pink);
  border: 0.5px solid var(--pink);
}

.wc-btn-buy:hover { background: transparent; color: var(--pink); }

/* FOOTER */
.col-footer {
  text-align: center;
  padding: 1rem 2rem;
  border-top: 0.5px solid var(--glass-border);
}

.col-footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
  opacity: 0.25;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .col-section { padding: 5rem 1.5rem; }
  .home-btn { top: 1.4rem; left: 1.4rem; }
  .design-gallery-item { width: 180px; height: 240px; }
  .wedding-card { width: 240px; }
}