/*
Theme Name: seeu
Theme URI: https://seeu.com
Author: seeu
Author URI: https://seeu.com
Description: Bespoke editorial skincare theme for seeu. Earthy, translucent, nature-led. Designed for Elementor and WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: seeu
*/

/* =============================================
   SEEU — DESIGN TOKENS
   ============================================= */
:root {
  --c-parchment:  #F0EBE1;
  --c-parchment2: #E6DFD4;
  --c-charcoal:   #18160F;
  --c-dark:       #252219;
  --c-stone:      #8A7968;
  --c-amber:      #BFA07A;
  --c-amber-lt:   #D4BC99;
  --c-cream:      #FAF8F4;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1320px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --h-pad: clamp(1.5rem, 6vw, 5rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-parchment);
  color: var(--c-charcoal);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── TYPE SCALE ── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3.2rem, 7.5vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
em { font-style: italic; }

.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-stone);
}
.eyebrow--lt { color: var(--c-amber-lt); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border: 1px solid currentColor;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.btn-light { color: #FAF8F4; border-color: rgba(250,248,244,0.55); }
.btn-light:hover { background: #FAF8F4; color: var(--c-charcoal); border-color: #FAF8F4; }
.btn-dark  { color: var(--c-charcoal); border-color: var(--c-charcoal); }
.btn-dark:hover  { background: var(--c-charcoal); color: var(--c-cream); }
.btn-ghost { color: var(--c-charcoal); border-color: var(--c-stone); }
.btn-ghost:hover { background: var(--c-charcoal); color: var(--c-cream); border-color: var(--c-charcoal); }

.link-ul {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--c-stone);
  border-bottom: 1px solid var(--c-amber);
  padding-bottom: 0.15em;
  transition: color 0.22s;
  display: inline-block;
}
.link-ul:hover { color: var(--c-charcoal); }
.link-ul--lt { color: var(--c-amber-lt); border-color: rgba(250,248,244,0.3); }
.link-ul--lt:hover { color: #FAF8F4; }

/* ── ANNOUNCEMENT BAR ── */
.seeu-bar {
  background: var(--c-charcoal);
  color: var(--c-amber-lt);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ── NAV ── */
.seeu-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.4rem var(--h-pad);
  background: var(--c-parchment);
  border-bottom: 1px solid rgba(138,121,104,0.18);
  transition: box-shadow 0.3s;
}
.seeu-nav.scrolled { box-shadow: 0 2px 24px rgba(24,22,15,0.07); }

.seeu-nav__left  { display: flex; gap: 2.2rem; align-items: center; }
.seeu-nav__right { display: flex; gap: 2.2rem; align-items: center; justify-content: flex-end; }

.seeu-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-stone);
  transition: color 0.2s;
}
.seeu-nav a:hover { color: var(--c-charcoal); }

.seeu-nav__logo {
  font-family: var(--f-display);
  font-size: 1.75rem;
  letter-spacing: 0.16em;
  font-weight: 400;
  color: var(--c-charcoal) !important;
  text-align: center;
  display: block;
}
.seeu-nav__cart { color: var(--c-charcoal) !important; }
.seeu-nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--c-amber);
  color: var(--c-charcoal);
  border-radius: 50%;
  font-size: 0.58rem;
  margin-left: 5px;
  line-height: 1;
}

.seeu-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
}
.seeu-nav__burger span {
  display: block; width: 24px; height: 1px;
  background: var(--c-charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
.seeu-hero {
  position: relative;
  height: 97vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.seeu-hero__slides { position: absolute; inset: 0; }
.seeu-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
}
.seeu-hero__slide.active { opacity: 1; }
.seeu-hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.seeu-hero__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(24,22,15,0.08) 0%,
    rgba(24,22,15,0.35) 55%,
    rgba(24,22,15,0.75) 100%
  );
}

.seeu-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--h-pad);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  max-width: 820px;
}
.seeu-hero__content .eyebrow { margin-bottom: 1.4rem; }
.seeu-hero__title {
  color: var(--c-cream);
  margin-bottom: 1.2rem;
}
.seeu-hero__sub {
  color: var(--c-amber-lt);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}

/* Slide indicators */
.seeu-hero__dots {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3.5rem);
  right: var(--h-pad);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seeu-hero__dot {
  width: 1px;
  height: 28px;
  background: rgba(250,248,244,0.25);
  transition: background 0.4s, height 0.4s;
  cursor: pointer;
}
.seeu-hero__dot.active {
  background: var(--c-amber);
  height: 48px;
}

/* Scroll cue */
.seeu-hero__scroll {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3.5rem);
  left: var(--h-pad);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(250,248,244,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.seeu-hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--c-amber);
  opacity: 0.5;
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ── MARQUEE ── */
.seeu-marquee-wrap {
  background: var(--c-dark);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(191,160,122,0.15);
  border-bottom: 1px solid rgba(191,160,122,0.15);
}
.seeu-marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.seeu-marquee span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-amber); white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── INTRO ── */
.seeu-intro {
  padding: var(--section-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.seeu-intro__stamp img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
}
.seeu-intro__text .eyebrow { margin-bottom: 1.2rem; }
.seeu-intro__text h2 { margin-bottom: 1.5rem; color: var(--c-charcoal); }
.seeu-intro__text p {
  color: var(--c-stone); font-size: 1.05rem; max-width: 540px;
  margin-bottom: 2.2rem; line-height: 1.8;
}

/* ── SPLIT SECTIONS ── */
.seeu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(85vh, 800px);
}
.seeu-split--dark { background: var(--c-dark); }
.seeu-split--parchment { background: var(--c-parchment2); }

.seeu-split__media { overflow: hidden; position: relative; }
.seeu-split__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(.4,0,.2,1);
}
.seeu-split:hover .seeu-split__media img { transform: scale(1.03); }

.seeu-split__body {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
}
.seeu-split__body .eyebrow { margin-bottom: 1.4rem; }
.seeu-split__body h2 { margin-bottom: 1.3rem; }
.seeu-split__body p { font-size: 1rem; max-width: 440px; margin-bottom: 2.5rem; line-height: 1.85; }

/* Dark variant text colors */
.seeu-split--dark .seeu-split__body h2 { color: var(--c-cream); }
.seeu-split--dark .seeu-split__body p  { color: rgba(240,235,225,0.58); }

/* Parchment variant */
.seeu-split--parchment .seeu-split__body h2 { color: var(--c-charcoal); }
.seeu-split--parchment .seeu-split__body p  { color: var(--c-stone); }

/* Ingredient list */
.seeu-ingredients {
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(250,248,244,0.1);
}
.seeu-ingredients li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(250,248,244,0.1);
  color: var(--c-amber-lt);
  font-size: 0.88rem;
}
.seeu-ingredients li em {
  font-style: italic; color: rgba(250,248,244,0.38); font-size: 0.78rem;
}

/* ── PRODUCTS ── */
.seeu-products {
  padding: var(--section-pad) var(--h-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.seeu-products__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(138,121,104,0.2);
}
.seeu-products__head h2 { margin-top: 0.4rem; }
.seeu-products__head .link-ul { white-space: nowrap; margin-left: 2rem; }

.seeu-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Product Card */
.seeu-product {  }
.seeu-product__fig {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-parchment2);
  margin-bottom: 1.4rem;
}
.seeu-product__fig img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.seeu-product:hover .seeu-product__fig img { transform: scale(1.05) translateY(-8px); }

.seeu-product__cta {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.8rem;
  background: linear-gradient(to top, rgba(24,22,15,0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.seeu-product:hover .seeu-product__cta { opacity: 1; }

.seeu-product__info { }
.seeu-product__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  color: var(--c-charcoal);
}
.seeu-product__meta {
  display: flex; justify-content: space-between; align-items: center;
}
.seeu-product__vol {
  font-size: 0.75rem; letter-spacing: 0.06em; color: var(--c-stone);
}
.seeu-product__price {
  font-size: 0.88rem; color: var(--c-charcoal); letter-spacing: 0.04em;
}

/* ── EDITORIAL QUOTE ── */
.seeu-editorial {
  display: grid;
  grid-template-columns: 5fr 3fr;
  min-height: min(80vh, 720px);
  overflow: hidden;
}
.seeu-editorial__media { overflow: hidden; }
.seeu-editorial__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(15%);
}
.seeu-editorial__body {
  background: var(--c-parchment2);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
}
.seeu-editorial__body blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--c-charcoal);
  margin-bottom: 2rem;
  padding-left: 1.8rem;
  border-left: 1px solid var(--c-amber);
}
.seeu-editorial__body p {
  color: var(--c-stone); font-size: 0.95rem;
  max-width: 360px; margin-bottom: 2.8rem; line-height: 1.85;
}

/* ── PILLARS ── */
.seeu-pillars {
  background: var(--c-charcoal);
  padding: var(--section-pad) var(--h-pad);
  position: relative; overflow: hidden;
}
.seeu-pillars__watermark {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 55vw; max-width: 700px;
  opacity: 0.035; pointer-events: none;
  filter: invert(1);
}
.seeu-pillars__watermark img { width: 100%; height: auto; object-fit: contain; }

.seeu-pillars__label {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.seeu-pillars__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.seeu-pillar {
  border-top: 1px solid rgba(250,248,244,0.1);
  padding-top: 2.2rem;
}
.seeu-pillar__n {
  display: block; font-size: 0.6rem;
  letter-spacing: 0.25em; color: var(--c-amber);
  margin-bottom: 1.4rem;
}
.seeu-pillar h3 { color: var(--c-cream); margin-bottom: 0.9rem; }
.seeu-pillar p  { color: rgba(240,235,225,0.42); font-size: 0.88rem; line-height: 1.8; }

/* ── RITUAL CTA ── */
.seeu-ritual {
  position: relative;
  min-height: min(72vh, 700px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.seeu-ritual__bg { position: absolute; inset: 0; }
.seeu-ritual__bg img { width: 100%; height: 100%; object-fit: cover; }
.seeu-ritual__bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(24,22,15,0.52);
}
.seeu-ritual__content { position: relative; z-index: 2; padding: 3rem var(--h-pad); }
.seeu-ritual__content .eyebrow { margin-bottom: 1.4rem; }
.seeu-ritual__content h2 { color: var(--c-cream); margin-bottom: 1.2rem; }
.seeu-ritual__content p {
  color: var(--c-amber-lt); max-width: 440px;
  margin: 0 auto 2.8rem; font-size: 1.05rem; line-height: 1.85;
}

/* ── FOOTER ── */
.seeu-footer {
  background: var(--c-dark);
  padding: clamp(5rem, 9vw, 8rem) var(--h-pad) 2.5rem;
}
.seeu-footer__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,248,244,0.08);
  margin-bottom: 2rem;
}
.seeu-footer__logo {
  font-family: var(--f-display);
  font-size: 2.4rem; font-weight: 300;
  letter-spacing: 0.16em; color: var(--c-cream);
  margin-bottom: 0.6rem;
}
.seeu-footer__tag {
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--c-stone); margin-bottom: 2rem;
}
.seeu-footer__social { display: flex; gap: 1.4rem; }
.seeu-footer__social a {
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-stone);
  border-bottom: 1px solid rgba(250,248,244,0.12);
  padding-bottom: 0.12em;
  transition: color 0.2s;
}
.seeu-footer__social a:hover { color: var(--c-amber); }
.seeu-footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.seeu-footer__col h4 {
  font-family: var(--f-body); font-weight: 400;
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-stone);
  margin-bottom: 1.4rem;
}
.seeu-footer__col a {
  display: block; font-size: 0.88rem;
  color: rgba(250,248,244,0.42); margin-bottom: 0.8rem;
  transition: color 0.22s;
}
.seeu-footer__col a:hover { color: var(--c-cream); }

.seeu-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.seeu-footer__bottom p { font-size: 0.72rem; color: var(--c-stone); }
.seeu-footer__legal { display: flex; gap: 1.8rem; }
.seeu-footer__legal a { font-size: 0.68rem; color: var(--c-stone); transition: color 0.2s; }
.seeu-footer__legal a:hover { color: var(--c-cream); }

/* ── REVEAL ANIMATIONS ── */
.will-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.will-reveal.revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .seeu-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .seeu-split { grid-template-columns: 1fr; min-height: auto; }
  .seeu-split__media img { min-height: 60vw; }
  .seeu-editorial { grid-template-columns: 1fr; min-height: auto; }
  .seeu-editorial__media img { min-height: 55vw; }
  .seeu-products__grid { grid-template-columns: repeat(2, 1fr); }
  .seeu-intro { grid-template-columns: 1fr; }
  .seeu-intro__stamp { display: none; }
  .seeu-footer__top { grid-template-columns: 1fr; }
  .seeu-products__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .seeu-products__head .link-ul { margin-left: 0; }
}

@media (max-width: 680px) {
  .seeu-nav { grid-template-columns: 1fr auto; }
  .seeu-nav__left, .seeu-nav__right { display: none; }
  .seeu-nav__burger { display: flex; }
  .seeu-pillars__grid { grid-template-columns: 1fr; }
  .seeu-products__grid { grid-template-columns: 1fr; max-width: 400px; }
  .seeu-footer__cols { grid-template-columns: 1fr 1fr; }
  .seeu-footer__bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .seeu-marquee { animation: none; }
  .seeu-hero__slide { transition: opacity 0.1s; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
