/* ============================================================
   BUSAN ESSNCE, Main Stylesheet
   Palette: Coral #f28b82 · Sea Blue #006fcf · Orchid #9b046f
             Sand #f2e5ca · Peach #f09078 · Charcoal #2a2a2a
============================================================ */

:root {
  --coral:       #f28b82;
  --coral-dark:  #e0736a;
  --blue:        #006fcf;
  --orchid:      #9b046f;
  --sand:        #f2e5ca;
  --peach:       #f09078;
  --charcoal:    #2a2a2a;
  --ink:         #1a1a1a;
  --paper:       #ffffff;
  --paper-2:     #faf7f3;
  --text:        #2a2a2a;
  --text-mute:   #6b6b6b;
  --border:      #e8ddd0;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(42,42,42,0.09);
  --shadow-lg:   0 12px 48px rgba(42,42,42,0.14);
  --nav-h:       72px;
  --transition:  0.28s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--peach));
  z-index: 9999; transition: width 0.1s linear;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.accent { color: var(--coral); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head p {
  color: var(--text-mute);
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

.btn-ghost-sm {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  font-size: 0.8rem;
}
.btn-ghost-sm:hover { background: var(--sand); }

.btn-full { width: 100%; justify-content: center; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex: 1;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.nav-account {
  color: var(--text);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.nav-account:hover { opacity: 1; color: var(--coral); }

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 4px;
  color: var(--text);
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--coral); }
.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.5rem 24px;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.25rem 0;
}
.mobile-menu.open { display: flex; }

/* ---- CART DRAWER ---- */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 800;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 380px;
  max-width: 95vw;
  height: 100%;
  background: #fff;
  z-index: 850;
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { right: 0; }
.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-head h3 { font-size: 1.1rem; }
.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-mute);
  line-height: 1;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-mute);
  line-height: 2;
}
.cart-empty a { color: var(--coral); font-weight: 600; }
.cart-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--sand);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; }
.cart-item-price { font-size: 0.85rem; color: var(--coral); font-weight: 700; margin-top: 2px; }
.cart-item-remove {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-mute);
  cursor: pointer;
}
.cart-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,16,12,0.72) 0%, rgba(26,16,12,0.35) 60%, rgba(26,16,12,0.18) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 5rem 0;
}
.hero-text .eyebrow { color: var(--sand); opacity: 0.85; }
.hero-text h1 { color: #fff; line-height: 1.1; }
.hero-text .body {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-products { display: flex; align-items: center; justify-content: flex-end; }
.hero-product-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.hero-product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  padding: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}
.hero-product-card:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); }
.hero-product-card img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--sand);
}
.hero-product-info span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.hero-product-info p { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin: 2px 0; }
.hero-product-info strong { font-size: 0.95rem; color: var(--coral); }
.hero-product-card.featured { background: rgba(242,139,130,0.12); border: 1.5px solid rgba(242,139,130,0.3); }

/* ---- PROOF BAND ---- */
.proof-band {
  background: var(--charcoal);
  padding: 28px 0;
}
.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2.5rem;
  text-align: center;
}
.proof-item strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.proof-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ---- WHAT SECTION ---- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.what-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.what-text h2 { margin-bottom: 1.25rem; }
.what-text p { color: var(--text-mute); line-height: 1.75; margin-bottom: 1rem; font-size: 1.05rem; }
.what-pillars { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0 2.5rem; }
.pillar { display: flex; gap: 1.25rem; align-items: flex-start; }
.pillar-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--coral);
  background: rgba(242,139,130,0.1);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.pillar p { font-size: 0.9rem; color: var(--text-mute); line-height: 1.6; margin: 0; }

/* ---- PRODUCTS GRID ---- */
.products-section { padding: 80px 0; background: var(--paper-2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.products-grid.wide { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.product-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-badge.new { background: var(--blue); }
.quick-add {
  position: absolute;
  bottom: -40px;
  left: 0; right: 0;
  background: var(--coral);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: bottom 0.25s ease;
}
.product-card:hover .quick-add { bottom: 0; }
.product-meta {
  padding: 1rem 1.1rem 1.25rem;
}
.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}
.product-meta h3 { font-size: 0.95rem; font-weight: 700; margin: 0.3rem 0 0.2rem; }
.product-meta p { font-size: 0.82rem; color: var(--text-mute); }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-top: 0.6rem; }

/* ---- SUNSCREEN SECTION ---- */
.sunscreen-section {
  padding: 80px 0;
  background: var(--sand);
}
.sunscreen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sunscreen-text h2 { margin-bottom: 1.25rem; }
.sunscreen-text p { color: var(--text-mute); line-height: 1.75; margin-bottom: 1.5rem; }
.sun-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.sun-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
}
.sun-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.sunscreen-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- INGREDIENT SECTION ---- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ingredient-card {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ingredient-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.ingredient-card h3 { margin-bottom: 0.75rem; }
.ingredient-card p { color: var(--text-mute); line-height: 1.65; font-size: 0.95rem; margin-bottom: 1rem; }
.more-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.04em;
  transition: letter-spacing var(--transition);
}
.more-link:hover { letter-spacing: 0.08em; }

/* ---- JOURNAL ---- */
.journal-section { background: var(--sand); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.journal-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.journal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.journal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.journal-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.journal-body { padding: 1.5rem; }
.journal-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 0.6rem;
}
.journal-body h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 0.6rem; }
.journal-body p { font-size: 0.88rem; color: var(--text-mute); line-height: 1.65; margin-bottom: 1rem; }

.journal-featured { margin-bottom: 3rem; }
.journal-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.journal-featured-card:hover { box-shadow: var(--shadow-lg); }
.journal-featured-img img { width: 100%; height: 360px; object-fit: cover; }
.journal-featured-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journal-featured-text h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.journal-featured-text p { color: var(--text-mute); line-height: 1.7; margin-bottom: 1.5rem; }

/* ---- PARTNERS ---- */
.partners-section {
  padding: 60px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-section .section-head { margin-bottom: 2rem; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.partner-cell {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  transition: border-color var(--transition), background var(--transition);
}
.partner-cell:hover { border-color: var(--coral); background: rgba(242,139,130,0.05); }
.partner-cell span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ---- SIGNUP SECTION ---- */
.signup-section {
  padding: 80px 0;
  background: var(--charcoal);
}
.signup-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.signup-inner .eyebrow { color: var(--peach); }
.signup-inner h2 { color: #fff; margin-bottom: 1rem; }
.signup-inner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.signup-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.signup-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  outline: none;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.4); }
.signup-form .btn { border-radius: 0; padding: 14px 22px; }
.signup-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 1rem; }

/* ---- CTA BIG ---- */
.cta-big {
  padding: 100px 0;
  background: var(--sand);
  text-align: center;
}
.cta-big h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.cta-big p { color: var(--text-mute); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 120px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 0.5rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-mute); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 80px 0 16px;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.breadcrumb a { color: var(--coral); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-mute); }

/* ---- CATALOG ---- */
.catalog-section {}
.catalog-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--paper-2);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

/* ---- PRODUCT PAGE ---- */
.product-page {}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.gallery-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--sand);
}
.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.thumb {
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color var(--transition);
}
.thumb.active { border-color: var(--coral); }
.thumb img { width: 72px; height: 72px; object-fit: cover; }

.product-purchase h1 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.25rem; }
.product-subtitle { font-size: 0.9rem; color: var(--text-mute); margin-bottom: 1.25rem; }
.product-price-big { font-size: 1.8rem; font-weight: 900; color: var(--ink); margin-bottom: 1.25rem; }
.price-note { font-size: 0.9rem; font-weight: 400; color: var(--text-mute); }
.product-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pbadge {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: rgba(242,139,130,0.1);
  border: 1px solid rgba(242,139,130,0.25);
  color: var(--coral);
  text-transform: uppercase;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.qty-row label { font-size: 0.85rem; font-weight: 600; color: var(--text-mute); }
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.qty-ctrl button {
  width: 36px; height: 36px;
  background: var(--paper-2);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background var(--transition);
}
.qty-ctrl button:hover { background: var(--sand); }
.qty-ctrl span { padding: 0 1rem; font-weight: 700; }
.guarantee { font-size: 0.8rem; color: var(--text-mute); margin-top: 0.75rem; margin-bottom: 1.75rem; }

/* ---- ACCORDION ---- */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  transition: color var(--transition);
}
.accordion-head:hover { color: var(--coral); }
.accordion-head span { font-size: 1.2rem; font-weight: 400; color: var(--text-mute); transition: transform var(--transition); }
.accordion-head.open span { transform: rotate(45deg); color: var(--coral); }
.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.7;
}
.accordion-body.open { display: block; }

.star-ingredients { display: flex; flex-direction: column; gap: 1rem; }
.star-ing { display: flex; gap: 1rem; align-items: flex-start; }
.ing-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.star-ing strong { font-size: 0.9rem; color: var(--ink); display: block; margin-bottom: 0.25rem; }
.star-ing p { font-size: 0.85rem; color: var(--text-mute); margin: 0; }

.founders-corner { display: flex; gap: 1.5rem; align-items: flex-start; padding: 0.5rem 0; }
.founder-photo-wrap img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sand); }
.founder-msg p { font-size: 0.88rem; color: var(--text-mute); line-height: 1.7; font-style: italic; margin-bottom: 0.5rem; }
.founder-msg strong { font-size: 0.8rem; font-weight: 700; color: var(--coral); }

/* ---- OUR STORY ---- */
.story-hero {
  height: 55vh;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.story-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-hero-inner { position: relative; height: 100%; }
.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,16,12,0.65) 0%, rgba(26,16,12,0.22) 100%);
}
.story-hero-text {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 24px;
}
.story-hero-text h1 { color: #fff; }

.story-body { max-width: 900px; margin: 0 auto; }
.story-lead { text-align: center; margin-bottom: 3rem; }
.story-lead h2 { margin-bottom: 0.75rem; }
.story-lead .lead-p { font-size: 1.15rem; color: var(--text-mute); line-height: 1.7; }
.story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.story-two-col p { color: var(--text-mute); line-height: 1.8; font-size: 1rem; margin-bottom: 1rem; }

.values-section { padding: 80px 0; background: var(--sand); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.value-img img { width: 100%; height: 200px; object-fit: cover; }
.value-card h3 { padding: 1.25rem 1.5rem 0.5rem; font-size: 1.05rem; }
.value-card p { padding: 0 1.5rem 1.5rem; font-size: 0.9rem; color: var(--text-mute); line-height: 1.65; }

.founder-section { background: var(--paper-2); }
.founder-full {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-full-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-full-text h2 { margin-bottom: 1.5rem; }
.founder-full-text p { color: var(--text-mute); line-height: 1.8; margin-bottom: 1.25rem; }
.founder-sig { font-size: 1rem; color: var(--coral); font-weight: 700; display: block; margin-top: 0.5rem; }

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mute); line-height: 1.7; margin-bottom: 2rem; }
.contact-block { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(242,139,130,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); display: block; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
a.contact-value:hover { color: var(--coral); }
.contact-quick h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 0.75rem; }
.contact-quick a { display: block; font-size: 0.9rem; font-weight: 600; color: var(--coral); margin-bottom: 0.5rem; }
.contact-quick a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 { margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mute); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); }

/* ---- LOGIN ---- */
.login-page body, body.login-page { background: var(--paper); }
.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.login-left {
  position: relative;
  overflow: hidden;
}
.login-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.login-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,16,12,0.45) 0%, rgba(155,4,111,0.55) 100%);
}
.login-left-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 3rem;
}
.login-logo { height: 40px; width: auto; margin-bottom: auto; }
.login-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.login-brand-line {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: #fff;
}
.login-form-wrap { width: 100%; max-width: 400px; }
.login-back {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}
.login-back:hover { color: var(--coral); }
.login-form-wrap h1 { margin-bottom: 0.5rem; }
.login-sub { color: var(--text-mute); font-size: 0.95rem; margin-bottom: 2rem; }
.demo-hint {
  background: rgba(242,139,130,0.08);
  border: 1.5px solid rgba(242,139,130,0.28);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.demo-hint strong { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral); margin-bottom: 0.25rem; }
.demo-hint span { font-size: 0.82rem; color: var(--text); font-family: monospace; }
.auth-form .form-group { margin-bottom: 1.25rem; }
.password-wrap { display: flex; gap: 0; }
.password-wrap input { border-radius: 6px 0 0 6px; }
.pw-toggle {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-left: none;
  border-radius: 0 6px 6px 0;
  background: var(--paper-2);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mute);
}
.form-note { font-size: 0.82rem; text-align: right; margin-top: -0.5rem; margin-bottom: 1.25rem; }
.form-note a { color: var(--coral); }
.login-switch { text-align: center; font-size: 0.88rem; color: var(--text-mute); margin-top: 1.5rem; }
.login-switch a { color: var(--coral); font-weight: 600; }

/* ---- APP DASHBOARD ---- */
.app-page {}
.app-nav { position: relative; height: var(--nav-h); }
.app-user-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mute);
  background: var(--paper-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.app-main {
  padding-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h) - 60px);
  background: var(--paper-2);
}
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 24px;
}
.app-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.app-welcome h1 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.25rem; }
.app-welcome p { color: var(--text-mute); }
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.app-card.wide { grid-column: span 2; }
.app-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.app-card-head h2 { font-size: 1rem; font-weight: 800; }
.app-link { font-size: 0.8rem; font-weight: 600; color: var(--coral); }
.app-link:hover { text-decoration: underline; }

.orders-table { display: flex; flex-direction: column; gap: 0; }
.orders-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr 0.5fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.orders-header { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); padding-bottom: 0.5rem; }
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-pill.delivered { background: rgba(0,111,207,0.1); color: var(--blue); }
.status-pill.shipped { background: rgba(242,139,130,0.15); color: var(--coral-dark); }

.wishlist-items { display: flex; flex-direction: column; gap: 0.75rem; }
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.wishlist-item:last-child { border-bottom: none; }
.wishlist-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; background: var(--sand); }
.wishlist-item strong { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 2px; }
.wishlist-item span { font-size: 0.82rem; color: var(--coral); font-weight: 700; }

.skin-profile { display: flex; flex-direction: column; gap: 0; }
.skin-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.skin-row:last-child { border-bottom: none; }
.skin-row span { color: var(--text-mute); }
.skin-row strong { font-weight: 700; }

.routine-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.routine-step {
  display: flex;
  gap: 0.75rem;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  flex: 1;
  min-width: 180px;
}
.step-num {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--coral);
  background: rgba(242,139,130,0.1);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body strong { font-size: 0.88rem; display: block; margin-bottom: 0.25rem; }
.step-body p { font-size: 0.8rem; color: var(--text-mute); margin-bottom: 0.25rem; }
.step-time { font-size: 0.72rem; color: var(--coral); font-weight: 600; }
.routine-arrow { font-size: 1.25rem; color: var(--border); }

.account-details { display: flex; flex-direction: column; gap: 0; }
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row span { color: var(--text-mute); }

.rec-products { display: flex; flex-direction: column; gap: 0.75rem; }
.rec-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.rec-product:last-child { border-bottom: none; }
.rec-product img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; background: var(--sand); }
.rec-product strong { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 2px; }
.rec-why { font-size: 0.78rem; color: var(--text-mute); display: block; }
.rec-price { font-size: 0.88rem; font-weight: 700; color: var(--coral); display: block; margin-top: 2px; }

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  padding: 60px 0 0;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-logo { height: 36px; filter: brightness(0) invert(1); }
.foot-tag {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.6;
}
.foot-contact { margin-top: 0.75rem; }
.foot-contact a {
  font-size: 0.88rem;
  color: var(--coral);
  font-weight: 600;
}
.foot-contact a:hover { text-decoration: underline; }
.foot-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.foot-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.foot-col li, .foot-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.foot-col a:hover { color: var(--coral); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .hero-products { display: none; }
  .what-grid { grid-template-columns: 1fr; gap: 3rem; }
  .what-photo img { height: 340px; }
  .sunscreen-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sunscreen-img img { height: 320px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.wide { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .story-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .founder-full { grid-template-columns: 1fr; gap: 2rem; }
  .founder-full-photo img { height: 300px; }
  .product-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .app-card.wide { grid-column: span 2; }
  .login-split { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .journal-featured-card { grid-template-columns: 1fr; }
  .journal-featured-img img { height: 240px; }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section-pad { padding: 56px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid.wide { grid-template-columns: 1fr; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid.three-up { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .proof-grid { gap: 0; }
  .proof-item { padding: 0.5rem 1.25rem; }
  .proof-divider { width: 100%; height: 1px; }
  .values-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .app-card.wide { grid-column: span 1; }
  .routine-steps { flex-direction: column; }
  .routine-arrow { transform: rotate(90deg); }
  .orders-row { grid-template-columns: 1fr 1fr; font-size: 0.78rem; }
  .orders-header { display: none; }
  .signup-form { flex-direction: column; border-radius: 8px; }
  .signup-form input, .signup-form .btn { border-radius: 6px !important; }
}