/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: #2c2c2c; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===========================
   VARIABLES
=========================== */
:root {
  --pink: #e8488a;
  --pink-light: #fce4ef;
  --pink-dark: #c4366f;
  --dark: #1a1a1a;
  --gray: #f8f5f3;
  --text-muted: #666;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.4rem; }
em.pink { font-style: italic; color: var(--pink); }

/* ===========================
   UTILITIES
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--pink); font-weight: 600; text-transform: uppercase; margin-bottom: 12px; }
.section-sub { color: var(--text-muted); max-width: 600px; margin: 12px auto 0; font-size: 1.05rem; line-height: 1.7; text-align: center; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; text-align: center; display: block; padding: 16px; font-size: 1rem; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announcement-bar {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--dark); }
.logo span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #444; transition: color 0.2s; }
.nav-links a:hover { color: var(--pink); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 20px 24px;
  gap: 16px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 65px;
  z-index: 999;
}
.mobile-menu a { font-size: 1rem; font-weight: 500; color: #444; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img, .hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 10, 20, 0.72) 0%,
    rgba(80, 20, 50, 0.45) 50%,
    rgba(200, 80, 120, 0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 40px;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-content h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.hero-content p { font-size: 1.05rem; line-height: 1.7; opacity: 0.9; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   WHY SECTION
=========================== */
.why-section { padding: 80px 0; background: var(--gray); text-align: center; }
.why-section h2 { margin-bottom: 8px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.why-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.why-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* ===========================
   PRICING BANNER
=========================== */
.pricing-banner {
  background: var(--dark);
  color: #fff;
  padding: 48px 40px;
  text-align: center;
}
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 20px;
}
.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 4px;
}
.price-size { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; }
.price-label { font-size: 0.7rem; letter-spacing: 0.15em; color: #aaa; text-transform: uppercase; }
.price-amount { font-size: 1.1rem; font-weight: 600; color: #ffb3d1; }
.price-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.2); }
.pricing-note { font-size: 0.78rem; color: #aaa; max-width: 800px; margin: 0 auto; line-height: 1.8; }

/* ===========================
   PRODUCTS
=========================== */
.products-section { padding: 80px 0; text-align: center; }
.products-section h2 { margin-bottom: 8px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}
.product-badge.new { background: var(--dark); }
.product-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 24px; }
.product-japanese { font-size: 0.8rem; color: var(--pink); letter-spacing: 0.1em; margin-bottom: 6px; }
.product-info h3 { margin-bottom: 10px; font-size: 1.3rem; }
.product-info p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--pink); margin-bottom: 16px !important; }

/* ===========================
   GALLERY
=========================== */
.gallery-section { padding: 80px 0; background: var(--gray); text-align: center; }
.gallery-section h2 { margin-bottom: 8px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.large img { height: 100%; min-height: 496px; }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 24px 20px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.gallery-overlay small { display: block; font-size: 0.8rem; font-family: 'Jost', sans-serif; opacity: 0.8; margin-top: 4px; font-weight: 400; }

/* ===========================
   FEATURES STRIP
=========================== */
.features-strip { padding: 80px 0; }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.features-text h2 { margin-bottom: 16px; }
.features-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.features-list { list-style: none; margin-bottom: 32px; }
.features-list li { padding: 8px 0; color: #444; font-size: 0.95rem; border-bottom: 1px solid #f0f0f0; }
.features-list li:last-child { border-bottom: none; }
.features-images { position: relative; }
.feature-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-img-secondary {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { padding: 80px 0; background: var(--gray); text-align: center; }
.testimonials-section h2 { margin-bottom: 8px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p { color: #444; line-height: 1.7; font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===========================
   CONTACT
=========================== */
.contact-section { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-info p { font-size: 0.95rem; margin-bottom: 8px; color: #555; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.2s;
  background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.contact-form textarea { resize: vertical; }
.file-upload {
  border: 2px dashed #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload:hover { border-color: var(--pink); }
.file-upload label { cursor: pointer; display: flex; flex-direction: column; gap: 4px; }
.file-upload span { font-size: 0.9rem; color: #555; }
.file-upload small { font-size: 0.78rem; color: #aaa; }
.form-success { background: #f0fff4; border: 1px solid #68d391; color: #276749; padding: 14px 18px; border-radius: 10px; text-align: center; font-size: 0.95rem; }

/* ===========================
   PROMISE
=========================== */
.promise-section { padding: 80px 0; background: var(--dark); color: #fff; text-align: center; }
.promise-section .section-label { color: #ffb3d1; }
.promise-section h2 { color: #fff; margin-bottom: 8px; }
.promise-section .section-sub { color: #bbb; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}
.promise-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.promise-card span { font-size: 2rem; margin-bottom: 16px; display: block; }
.promise-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.promise-card p { color: #bbb; line-height: 1.6; font-size: 0.93rem; }
.promise-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #ffb3d1;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   FOOTER
=========================== */
.footer { background: #111; color: #ccc; padding: 60px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand .logo { margin-bottom: 16px; font-size: 1.4rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #888; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: #888; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { text-align: center; font-size: 0.82rem; color: #555; }

/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: #fff; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .features-layout { grid-template-columns: 1fr; }
  .feature-img-secondary { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.large img { min-height: 320px; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 40px 24px; }
  .pricing-grid { gap: 20px; }
  .price-item { padding: 0 16px; }
  .price-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item.large { grid-column: span 2; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .products-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; align-items: center; gap: 16px; }
  .hero { min-height: 100svh; }
}

/* ============================================
   TREE UMBRELLAS - COMING SOON SECTION
   ============================================ */
.coming-soon-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #fdf6f9 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}
.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), #f9c6d5, var(--pink));
}
.coming-soon-badge-wrap {
  text-align: center;
  margin-bottom: 1rem;
}
.coming-soon-pill {
  display: inline-block;
  background: linear-gradient(135deg, #f9a8c9, #f3c6d5);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
}
.tree-umbrella-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 50px 0 60px;
}
.tu-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.tu-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.tu-image-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 20px 16px 12px;
  text-align: center;
}
.tu-spec-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tu-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.tu-spec-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tu-spec-card p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.tu-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.tu-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.tu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s;
}
.tu-photo:hover img { transform: scale(1.04); }
.tu-footer-note {
  text-align: center;
  padding: 20px;
  background: #fff9fb;
  border-radius: 12px;
  border: 1px solid #f5d5e4;
}
.tu-footer-note p {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.04em;
  margin: 0;
}
@media (max-width: 900px) {
  .tree-umbrella-feature { grid-template-columns: 1fr; gap: 30px; }
  .tu-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .tu-main-image img { height: 320px; }
}

/* ===========================
   HERO SLOGAN
=========================== */
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #ffd6e7;
  margin-bottom: 16px !important;
  margin-top: -8px;
  opacity: 0.95;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ===========================
   TREE UMBRELLA EVENING IMAGE
=========================== */
.tu-evening-wrap {
  position: relative;
  margin: 56px 0 0;
  border-radius: 20px;
  overflow: hidden;
  max-height: 520px;
}
.tu-evening-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tu-evening-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,5,15,0.85) 0%, transparent 100%);
  padding: 48px 40px 36px;
  color: #fff;
  text-align: center;
}
.tu-evening-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: #ffd6e7;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.tu-evening-sub {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   WAITLIST FORM
=========================== */
.tu-waitlist {
  margin: 56px 0;
  background: linear-gradient(135deg, #1a0a12 0%, #3d1428 100%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.tu-waitlist-badge {
  display: inline-block;
  background: rgba(232, 72, 138, 0.25);
  border: 1px solid rgba(232, 72, 138, 0.5);
  color: #ffb3d1;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 20px;
}
.tu-waitlist h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 14px;
}
.tu-waitlist p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-size: 1rem;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.waitlist-fields {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}
.waitlist-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Jost', sans-serif;
  outline: none;
  transition: border 0.2s, background 0.2s;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.45); }
.waitlist-input:focus { border-color: var(--pink); background: rgba(255,255,255,0.12); }
.waitlist-note {
  color: #ffb3d1 !important;
  font-size: 0.95rem !important;
  margin-top: 12px !important;
}

/* Field-level errors */
.field-error {
  color: #e8488a;
  font-size: 0.8rem;
  margin-top: -8px;
  margin-bottom: 4px;
  display: block;
}
.form-error {
  background: rgba(232,72,138,0.08);
  border: 1px solid rgba(232,72,138,0.3);
  border-radius: 8px;
  padding: 10px 16px;
  color: #e8488a;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ===== ORIGIN STORY SECTION ===== */
.origin-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff9fb 0%, #fff0f5 50%, #fdf6ff 100%);
  position: relative;
  overflow: hidden;
}

.origin-section::before {
  content: '🌸';
  font-size: 200px;
  position: absolute;
  top: -40px;
  right: -40px;
  opacity: 0.05;
  pointer-events: none;
}

.origin-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}

.origin-text .section-label {
  color: var(--blush);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.origin-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.origin-intro {
  font-size: 1.15rem;
  color: var(--blush);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 500;
}

.origin-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.origin-pull-quote {
  background: white;
  border-left: 4px solid var(--blush);
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(211,87,132,0.08);
}

.origin-pull-quote span {
  display: block;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--blush);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.origin-pull-quote p {
  font-size: 0.85rem !important;
  color: #999 !important;
  margin: 0 !important;
  font-style: italic;
}

.origin-sign {
  font-size: 1.1rem !important;
  color: var(--dark) !important;
  font-weight: 500;
  margin-top: 28px !important;
  margin-bottom: 4px !important;
}

.origin-signature {
  font-size: 1.2rem !important;
  color: var(--blush) !important;
  font-style: italic;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0 !important;
}

.origin-images {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.origin-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.origin-img-secondary {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  .origin-layout {
    grid-template-columns: 1fr;
  }
  .origin-images {
    position: static;
    flex-direction: row;
  }
  .origin-img-main {
    height: 280px;
  }
  .origin-img-secondary {
    height: 280px;
  }
}
