/* ===== Design tokens ===== */
:root {
  --cream: #fafbfe;
  --cream-alt: #f1f3fa;
  --ink: #2b2440;
  --ink-soft: #5a5270;
  --pink: #ff6f91;
  --pink-dark: #e8506f;
  --blue: #3aa6ff;
  --turquoise: #17b6a7;
  --yellow: #ffc93c;
  --violet: #8c6fff;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 50px -20px rgba(43, 36, 64, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(43, 36, 64, 0.28);

  --wrap: 1180px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
p { line-height: 1.65; margin: 0 0 1em; color: var(--ink-soft); }
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin: 0 0 0.6em;
}
.center { text-align: center; }
.section-title.center, .section-lead.center, .eyebrow.center { margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); max-width: 720px; }
.section-title.center { max-width: 640px; }
.section-lead { max-width: 560px; font-size: 1.08rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(140, 111, 255, 0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.3); }
.btn-ghost-alt {
  background: transparent;
  color: var(--ink);
  border-color: rgba(43,36,64,0.25);
}
.btn-ghost-alt:hover { background: rgba(43,36,64,0.06); }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-small { padding: 9px 18px; font-size: 0.9rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 251, 254, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,36,64,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand img { height: 42px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  position: relative;
  padding: 4px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,32,0.2) 0%, rgba(20,16,32,0.4) 35%, rgba(20,16,32,0.88) 100%);
}
.hero-content {
  position: relative;
  padding-bottom: 72px;
  padding-top: 140px;
  max-width: 760px;
}
.hero .eyebrow { color: rgba(255,255,255,0.92); text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 0.3em;
  text-shadow: 0 6px 30px rgba(0,0,0,0.45);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin-bottom: 1.6em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--ink);
  color: white;
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  justify-content: center;
  text-align: center;
}
.trust-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.trust-icon-svg { width: 22px; height: 22px; }
.trust-icon { font-size: 1.4rem; line-height: 1; }

/* ===== Split intro ===== */
.split-intro { padding: 96px 0 80px; }
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.split-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.split-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.split-card img { height: 280px; object-fit: cover; width: 100%; }
.split-card-body { padding: 28px 30px 32px; }
.split-card-body h3 { font-size: 1.5rem; margin-bottom: 0.35em; }

@media (max-width: 640px) {
  .split-cards { gap: 12px; }
  .split-card img { height: 120px; }
  .split-card-body { padding: 14px 14px 18px; }
  .split-card-body h3 { font-size: 1.05rem; }
  .split-card-body p { font-size: 0.85rem; margin-bottom: 0.5em; }
  .split-link { font-size: 0.85rem; }
}
.split-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--pink-dark);
}

/* ===== Content sections ===== */
.content-section { padding: 100px 0; }
.content-section.alt { background: var(--cream-alt); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .two-col-text { order: 2; }
.two-col.reverse .two-col-media { order: 1; }
.two-col-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.two-col-media { position: relative; }
.media-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.media-accent {
  position: absolute;
  width: 46%;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
  bottom: -36px;
  right: -28px;
}
.content-section.alt .media-accent { border-color: var(--cream-alt); }

/* Steps */
.steps { margin-top: 90px; }
.steps-title { font-size: 1.6rem; margin-bottom: 40px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--blue));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h4 { margin-bottom: 0.4em; }
.step p { margin: 0; font-size: 0.95rem; }

.steps-carousel { position: relative; }
.steps-controls { display: none; }
.steps-nav { display: none; }
.steps-dots { display: none; }

/* Divider media */
.divider-media {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}
.divider-media img { width: 100%; height: 100%; object-fit: cover; }
.divider-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,36,64,0.1), rgba(43,36,64,0.55));
}
.divider-quote {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  z-index: 2;
}
.divider-quote p {
  color: white;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  max-width: 640px;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--wrap);
  margin: 48px auto 0;
  padding: 0 24px;
}
.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Video placeholder */
.video-placeholder {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  aspect-ratio: 21/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-inner { text-align: center; color: white; }
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.video-placeholder-inner p { color: white; font-weight: 700; font-family: var(--font-display); margin: 0; }

/* Story section */
.story-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream), #f4ecff);
}
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  border-left: 4px solid var(--pink);
  padding-left: 18px;
  margin-top: 1.6em;
}

/* Timeline */
.timeline { margin-top: 100px; }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--violet), var(--blue));
  border-radius: 2px;
}
.timeline-item { position: relative; padding-top: 52px; }
.timeline-year {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  background: var(--ink);
  padding: 5px 14px;
  border-radius: 999px;
}
.timeline-item h4 { margin-bottom: 0.4em; font-size: 1.1rem; }
.timeline-item p { font-size: 0.93rem; margin: 0; }
.timeline-owner {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  box-shadow: var(--shadow-card);
}
.owner-logo { height: 34px; width: auto; flex-shrink: 0; }
.timeline-owner p { margin: 0; font-size: 0.92rem; }
.timeline-owner p + p { margin-top: 8px; font-size: 0.85rem; opacity: 0.75; }

/* CTA section */
.cta-section { text-align: center; }
.cta-section .btn-large { margin-top: 8px; }
.notfound-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.legal-page { padding-top: 140px; }
.legal-content { max-width: 720px; }
.legal-content h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 0.6em; }
.legal-content h2 { font-size: 1.2rem; margin-top: 1.8em; margin-bottom: 0.5em; }
.legal-content a { color: var(--pink-dark); font-weight: 600; }

.buy-options {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 40px auto 0;
  text-align: left;
}
.buy-option {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.buy-option-primary { background: linear-gradient(160deg, #fff, var(--cream-alt)); }
.buy-option-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--turquoise);
  margin: 0;
}
.stockist-list { list-style: none; padding: 0; margin: 0; width: 100%; }
.stockist-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(43,36,64,0.08);
  font-weight: 600;
  font-size: 0.98rem;
}
.stockist-list li:last-child { border-bottom: none; }
.stockist-todo { font-weight: 400; color: var(--ink-soft); font-size: 0.88rem; }
li.stockist-todo { font-weight: 400; color: var(--ink-soft); font-style: italic; font-size: 0.88rem; }
.reseller-note {
  margin-top: 28px;
  font-size: 0.95rem;
}
.reseller-note a { color: var(--pink-dark); font-weight: 700; text-decoration: none; }
.reseller-note a:hover { text-decoration: underline; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  box-shadow: var(--shadow-card);
}
.contact-card p { margin-bottom: 0.9em; }
.contact-card a { color: var(--pink-dark); font-weight: 700; text-decoration: none; }
.contact-address { font-size: 0.95rem; margin-top: 1.4em; }
.contact-address a { color: var(--pink-dark); font-weight: 700; text-decoration: none; }

.contact-form { display: flex; flex-direction: column; gap: 6px; }
.contact-form[hidden] { display: none; }
.contact-form label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 12px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43,36,64,0.15);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--turquoise);
}
.contact-form .btn { margin-top: 18px; align-self: flex-start; }
.contact-form-error { color: var(--pink-dark); font-size: 0.9rem; margin: 10px 0 0; }
.contact-form-error a { color: var(--pink-dark); }
.contact-form button:disabled { opacity: 0.7; cursor: default; }

.contact-success h3 { margin-bottom: 0.4em; }
.contact-success p { margin-bottom: 1em; }
.contact-reset {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink-dark);
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--cream-alt), #efeafa);
  border-top: 1px solid rgba(43,36,64,0.08);
  color: var(--ink-soft);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { height: 39px; width: auto; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--pink-dark); }
.footer-social { display: flex; gap: 14px; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(43,36,64,0.06);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover { background: var(--pink); color: white; }
.footer-meta {
  font-size: 0.85rem; margin: 0; width: 100%; order: 3;
  display: flex; align-items: center; justify-content: flex-start; gap: 6px; flex-wrap: wrap;
  color: var(--ink-soft);
}
.footer-meta a { color: var(--ink-soft); text-decoration: underline; }
.footer-meta a:hover { color: var(--pink-dark); }
.footer-owned-by { display: inline-flex; align-items: center; gap: 8px; }
.footer-owner-logo { height: 16px; width: auto; vertical-align: middle; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 16, 30, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow-card);
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .two-col-text, .two-col.reverse .two-col-media { order: initial; }
  .steps-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 0 -24px;
    padding: 4px 24px 8px;
    scrollbar-width: none;
  }
  .steps-grid::-webkit-scrollbar { display: none; }
  .step {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .steps-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
  }
  .steps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: var(--shadow-card);
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }
  .steps-nav:disabled { opacity: 0.35; cursor: default; }
  .step { cursor: grab; }
  .step:active, .steps-grid.dragging .step { cursor: grabbing; }
  .steps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .steps-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(43,36,64,0.18);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .steps-dot.active { background: var(--pink); transform: scale(1.25); }
  .timeline-track { grid-template-columns: 1fr; gap: 36px; }
  .timeline-track::before { top: 0; bottom: 0; left: 22px; right: auto; width: 3px; height: auto; }
  .timeline-item { padding-top: 0; padding-left: 60px; }
  .timeline-year { top: -2px; }
  .timeline-owner { flex-direction: column; align-items: flex-start; }
  .buy-options { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .media-accent { position: static; width: 60%; margin-top: 16px; }
  .content-section { padding: 64px 0; }
  .hero-content { padding-top: 84px; padding-bottom: 36px; }
  .hero-sub { margin-bottom: 2.25em; line-height: 1.4; }
  .hero h1 { margin-bottom: 0.68em; }
  .hero .eyebrow { margin-bottom: 1.05em; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr 1fr; }

  /* Hero: text stays overlaid on the photo, but the box is only as tall as the text needs (no forced full-screen height) */
  .hero { min-height: 0; }
  .hero-content { padding-top: 40px; padding-bottom: 24px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-break { display: none; }
  .hero-actions .btn { padding: 11px 20px; font-size: 0.92rem; }

  /* Trust bar: smaller, stacked icon-over-label, more breathing room, less visual weight */
  .trust-bar { padding: 14px 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .trust-item { flex-direction: column; gap: 5px; font-size: 0.68rem; font-weight: 600; line-height: 1.25; }
  .trust-icon-box { width: 22px; height: 22px; }
  .trust-icon-svg { width: 18px; height: 18px; }
  .trust-icon { font-size: 1.1rem; }
}
