/* WINKSKY Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --pink: #D98797;
  --pink-light: #F5E6EA;
  --pink-pale: #FBF5F6;
  --text-dark: #2D2D2D;
  --text-muted: #666666;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --topbar-bg: #F8F8F8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.serif { font-family: 'Cormorant Garamond', serif; }

/* Top Bar */
.top-bar {
  background: var(--topbar-bg);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.currency-select {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.currency-select .flag {
  width: 20px;
  height: 14px;
  border: 1px solid #ccc;
  object-fit: cover;
  flex-shrink: 0;
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  flex-shrink: 0;
  display: inline-block;
  line-height: 0;
}
.logo img {
  display: block;
  height: 32px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--pink); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s;
}
.main-nav a:hover::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pink-pale);
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content {
  max-width: min(520px, 46%);
}
@media (min-width: 1025px) {
  .hero .container {
    max-width: 1200px;
  }
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.hero-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
}
.btn-pink:hover { background: #c47080; }
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}
.btn-outline:hover { background: var(--text-dark); color: var(--white); }

.hero-features {
  display: flex;
  gap: 32px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.hero-feature .icon {
  width: 36px;
  height: 36px;
  color: var(--pink);
}
.hero-feature span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-image-frame {
  position: absolute;
  inset: 0;
  left: -32px;
  background: var(--white);
  clip-path: ellipse(88% 102% at 100% 44%);
}
.hero-image-mask {
  position: absolute;
  inset: 14px 0 14px 28px;
  clip-path: ellipse(82% 96% at 100% 44%);
  overflow: hidden;
}
.hero-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 28%;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 56px;
  background: var(--pink-pale);
  clip-path: ellipse(100% 100% at 100% 100%);
  z-index: 2;
  pointer-events: none;
}

/* Section common */
.section {
  padding: 80px 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

/* Why WinkSky */
.why-winksky { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}
.why-item {
  text-align: center;
  padding: 0 16px;
}
.why-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--pink);
}
.why-item h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.mission-bar {
  background: var(--pink-light);
  padding: 28px 40px;
  text-align: center;
  border-radius: 2px;
}
.mission-bar p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Products */
.wellness-collection { background: var(--pink-pale); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(217,135,151,0.15);
}
.product-card .product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-card .product-img img {
  max-height: 180px;
  object-fit: contain;
}
.product-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 2.8em;
}
.product-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  min-height: 40px;
}
.shop-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.shop-link:hover { gap: 10px; }

/* Product intro modal */
.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.product-modal.open {
  opacity: 1;
  visibility: visible;
}
.product-modal-panel {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  text-align: center;
}
.product-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.product-modal-close:hover { color: var(--pink); }
.product-modal-panel h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.product-modal-panel p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Journey */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.journey-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: box-shadow 0.4s ease;
}
.journey-card:hover {
  box-shadow: 0 16px 40px rgba(217, 135, 151, 0.28);
}
.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.journey-card:hover img {
  transform: scale(1.08);
}
.journey-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--white);
  transition: background 0.4s ease;
}
.journey-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.12) 75%);
}
.journey-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  transition: transform 0.4s ease;
}
.journey-card p {
  font-size: 11px;
  opacity: 0.85;
  line-height: 1.5;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.journey-card:hover h3,
.journey-card:hover p {
  transform: translateY(-6px);
}
.journey-card:hover p {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .journey-card img,
  .journey-card .overlay,
  .journey-card h3,
  .journey-card p {
    transition: none;
  }
  .journey-card:hover img {
    transform: none;
  }
  .journey-card:hover h3,
  .journey-card:hover p {
    transform: none;
  }
}

/* Testimonials */
.testimonials { background: var(--pink-pale); }
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  text-align: center;
}
.stars {
  color: var(--pink);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card cite {
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}
.testimonial-dots span.active { background: var(--pink); }

/* Brand Story */
.brand-story {
  background: var(--white);
}
.brand-story .story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: var(--pink-pale);
  border: 1px solid rgba(217, 135, 151, 0.12);
  box-shadow: 0 12px 48px rgba(217, 135, 151, 0.1);
  overflow: hidden;
}
.story-image {
  padding: 32px 0 32px 32px;
  display: flex;
  align-items: center;
  background: var(--pink-pale);
}
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.story-content {
  background: var(--pink-pale);
  padding: 56px 48px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.story-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* Our Story secondary page */
.story-page {
  min-height: calc(100vh - 120px);
}
.story-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - 120px);
}
.story-page-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.story-page-content {
  background: var(--pink-pale);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.story-page-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.story-page-content .btn {
  margin-top: 12px;
  align-self: flex-start;
}

/* Newsletter */
.newsletter {
  background: var(--pink-light);
  padding: 48px 0;
}
.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.newsletter-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.newsletter-text .envelope {
  width: 40px;
  height: 40px;
  color: var(--pink);
  flex-shrink: 0;
}
.newsletter-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
}
.newsletter-text p {
  font-size: 12px;
  color: var(--text-muted);
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.newsletter-form input {
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-right: none;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  width: 280px;
  outline: none;
  background: var(--white);
}
.newsletter-form input:focus { border-color: var(--pink); }
.newsletter-form .btn { border-radius: 0; }

/* Footer */
.site-footer {
  background: #FAFAFA;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons a,
.social-icons span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 14px;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--pink);
  color: var(--white);
}
.social-icons span {
  cursor: default;
  pointer-events: none;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-col h4.footer-col-spacer {
  visibility: hidden;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--pink); }
.nz-badge {
  text-align: center;
  padding-top: 10px;
}
.nz-badge .fern {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  color: #888;
}
.nz-badge p {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink);
  color: var(--pink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(217,135,151,0.25);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--pink);
  color: var(--white);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  padding: 40px 32px;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content {
    max-width: none;
  }
  .hero-image {
    position: relative;
    width: 100%;
    height: 340px;
    margin-top: -12px;
  }
  .hero-image-frame {
    left: 0;
    clip-path: ellipse(120% 95% at 50% 0%);
  }
  .hero-image-mask {
    inset: 12px 16px 12px 16px;
    clip-path: ellipse(115% 90% at 50% 0%);
  }
  .hero-image-mask img {
    object-position: center 25%;
  }
  .hero::after {
    display: none;
  }
  .hero .container {
    padding-bottom: 0;
  }
  .why-grid, .product-grid, .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slide { grid-template-columns: 1fr; }
  .brand-story .story-grid { grid-template-columns: 1fr; }
  .story-image { padding: 24px 24px 0; }
  .story-image img { min-height: 280px; }
  .story-content { padding: 32px 24px 40px; }
  .story-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero-content h1 { font-size: 32px; }
  .hero-features { flex-wrap: wrap; gap: 20px; }
  .why-grid, .product-grid, .journey-grid { grid-template-columns: 1fr; }
  .newsletter .container { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; border-right: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .story-page-content { padding: 48px 24px; }
  .story-page-content h1 { font-size: 28px; }
}
