/* =============================================
   Just Naturals by Justine — Shared Styles v3
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --honey:       #C97C44;
  --honey-light: #E8A870;
  --honey-pale:  #FDF3EC;
  --lavender:    #9B87B8;
  --lav-light:   #C2B4D6;
  --lav-pale:    #F2EEF8;
  --teal:        #5FA89E;
  --teal-light:  #8ECBC5;
  --teal-pale:   #EAF5F3;
  --cream:       #FAF8F4;
  --cream-mid:   #F3EDE3;
  --cream-dark:  #E8DFD0;
  --charcoal:    #2A1F14;
  --mid:         #7A6A58;
  --soft:        #A89880;
  --white:       #FFFFFF;
  --shadow:      0 2px 16px rgba(42,31,20,0.08);
  --shadow-lg:   0 8px 32px rgba(42,31,20,0.14);
  --radius:      16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(12px, -18px) scale(1.04); }
  66%       { transform: translate(-8px, 10px) scale(0.97); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--honey);
  color: var(--white);
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0 2.5rem;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 2.5rem;
  opacity: 0.7;
}

/* ── NAV ── */
header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(42,31,20,0.10); }
nav { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-leaf { font-size: 1.6rem; line-height: 1; }
.logo-text .name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); line-height: 1.1; }
.logo-text .name span { color: var(--honey); }
.logo-text .sub { font-size: 0.58rem; color: var(--soft); letter-spacing: 2px; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 0.15rem; }
nav ul a { display: block; padding: 0.45rem 0.85rem; color: var(--mid); text-decoration: none; font-weight: 700; font-size: 0.87rem; border-radius: 8px; transition: background 0.2s, color 0.2s; }
nav ul a:hover, nav ul a.active { background: var(--honey-pale); color: var(--honey); }
.nav-cta { background: var(--honey) !important; color: var(--white) !important; border-radius: 50px !important; padding: 0.45rem 1.1rem !important; }
.nav-cta:hover { background: var(--honey-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--charcoal); border-radius: 2px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, var(--cream) 0%, #EDE6F5 55%, #FDF0E6 100%);
  color: var(--charcoal);
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatBlob 9s ease-in-out infinite;
}
.hero-blob-1 { width: 360px; height: 360px; top: -120px; left: -100px; background: radial-gradient(circle, rgba(155,135,184,0.22) 0%, transparent 70%); }
.hero-blob-2 { width: 280px; height: 280px; bottom: -80px; right: -60px; background: radial-gradient(circle, rgba(201,124,68,0.18) 0%, transparent 70%); animation-delay: -4s; animation-duration: 12s; }
.hero-inner { position: relative; max-width: 740px; margin: 0 auto; z-index: 1; animation: fadeInUp 0.9s ease both; }
.hero-badge { display: inline-block; background: var(--honey-pale); border: 1px solid rgba(201,124,68,0.35); color: var(--honey); font-size: 0.73rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.6rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.2rem; color: var(--charcoal); }
.hero h1 em { color: var(--honey); font-style: italic; }
.hero .lead { font-size: clamp(1rem, 2vw, 1.12rem); color: var(--mid); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; cursor: pointer; border: none; font-family: 'Nunito', sans-serif; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.14); }
.btn-clay, .btn-honey { background: var(--honey); color: var(--white); }
.btn-clay:hover, .btn-honey:hover { background: var(--honey-light); }
.btn-sage { background: var(--teal); color: var(--white); }
.btn-sage:hover { background: var(--teal-light); }
.btn-outline { background: transparent; color: var(--charcoal); border: 2px solid rgba(42,31,20,0.25); margin-left: 0.75rem; }
.btn-outline:hover { background: rgba(42,31,20,0.06); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); margin-left: 0.75rem; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ── MAIN / SECTIONS ── */
main { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }
.section-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--honey); margin-bottom: 0.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.25; }
.section-sub { color: var(--mid); font-size: 1rem; max-width: 580px; margin-bottom: 2.5rem; line-height: 1.8; }
.divider { width: 44px; height: 3px; background: var(--honey); border-radius: 2px; margin: 0.5rem 0 1.2rem; }

/* ── PRODUCT CARDS ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.75rem; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-thumb { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.product-thumb.honey  { background: linear-gradient(135deg, #F5DBBF, #D4956A); }
.product-thumb.lav    { background: linear-gradient(135deg, #DDD4EE, #9B87B8); }
.product-thumb.teal   { background: linear-gradient(135deg, #C5E0DC, #5FA89E); }
.product-thumb.rose   { background: linear-gradient(135deg, #F2C8D6, #C47090); }
.product-thumb.sage   { background: linear-gradient(135deg, #C8DCCA, #7AAA7A); }
.product-thumb.sand   { background: linear-gradient(135deg, #EEE0C8, #C49560); }
.product-thumb.purple { background: linear-gradient(135deg, #DDD4EE, #9B87B8); }
.product-thumb.green  { background: linear-gradient(135deg, #C8DCCA, #7AAA7A); }
.product-thumb.clay   { background: linear-gradient(135deg, #EEE0C8, #C49560); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.product-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--honey); color: #fff; font-size: 0.66rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 50px; z-index: 2; }
.product-info { padding: 1.4rem; }
.product-info h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.3rem; line-height: 1.3; }
.product-sub { font-size: 0.75rem; color: var(--lavender); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.45rem; }
.product-info p { color: var(--mid); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.85rem; }
.product-price { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.75rem; }
.product-price span { font-size: 0.78rem; font-weight: 400; color: var(--soft); }

/* ── FEATURE CARDS ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); border-bottom: 3px solid var(--honey); transition: transform 0.2s; }
.feature-card:nth-child(2) { border-color: var(--lavender); }
.feature-card:nth-child(3) { border-color: var(--teal); }
.feature-card:nth-child(4) { border-color: var(--honey-light); }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.65rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.35rem; }
.feature-card p { color: var(--mid); font-size: 0.9rem; }

/* ── BAND ── */
.band { background: linear-gradient(135deg, #2A1F14 0%, #4A3828 100%); color: var(--white); padding: 4rem 1.5rem; text-align: center; }
.band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.85rem; }
.band p { color: var(--cream-dark); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; }

/* ── CALLOUT ── */
.callout { background: var(--honey-pale); border-left: 4px solid var(--honey); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.callout h4 { color: var(--charcoal); margin-bottom: 0.3rem; font-size: 0.92rem; }
.callout p { color: var(--mid); font-size: 0.92rem; margin: 0; }
.callout a { color: var(--honey); }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* ── MAKER PHOTO ── */
.maker-photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(135deg, var(--lav-pale), var(--teal-pale)); display: flex; align-items: center; justify-content: center; font-size: 4rem; box-shadow: var(--shadow); overflow: hidden; }
.maker-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* ── FOOTER ── */
footer { background: #2A1F14; color: var(--soft); text-align: center; padding: 2.5rem 1.5rem; font-size: 0.86rem; }
footer .footer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.35rem; }
footer a { color: var(--honey-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-links { display: flex; gap: 1.5rem; justify-content: center; margin: 0.6rem 0; flex-wrap: wrap; }
footer .tagline { color: var(--teal-light); font-size: 0.75rem; margin-top: 0.6rem; letter-spacing: 1px; }
footer .disclaimer { font-size: 0.74rem; color: #6A5A48; max-width: 560px; margin: 0.75rem auto 0; line-height: 1.5; }

/* ── FORMS ── */
input, textarea, select { padding: 0.75rem 1rem; border: 1.5px solid var(--cream-dark); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; background: var(--white); color: var(--charcoal); transition: border-color 0.2s; width: 100%; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--honey); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem 1.5rem; box-shadow: 0 8px 24px rgba(42,31,20,0.12); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .btn-outline, .btn-outline-white { margin-left: 0; margin-top: 0.75rem; display: block; text-align: center; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
}

/* ── NAV (v3 class names) ── */
.nav { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--charcoal); text-decoration: none; }
.nav-logo span { color: var(--honey); }
.nav-links { list-style: none; display: flex; gap: 0.15rem; }
.nav-links a { display: block; padding: 0.45rem 0.85rem; color: var(--mid); text-decoration: none; font-weight: 700; font-size: 0.87rem; border-radius: 8px; transition: background 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { background: var(--honey-pale); color: var(--honey); }
.btn-nav { background: var(--honey); color: var(--white) !important; border-radius: 50px; padding: 0.45rem 1.25rem; font-weight: 700; font-size: 0.87rem; text-decoration: none; transition: background 0.2s; }
.btn-nav:hover { background: var(--honey-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(145deg, var(--cream) 0%, #EDE6F5 55%, #FDF0E6 100%); padding: 4rem 1.5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 680px; margin: 0 auto; animation: fadeInUp 0.8s ease both; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.page-hero .lead { color: var(--mid); font-size: clamp(0.95rem, 2vw, 1.07rem); line-height: 1.8; max-width: 560px; margin: 0 auto; }

/* ── BAND INNER ── */
.band-inner { max-width: 640px; margin: 0 auto; }
.band .btn { background: var(--white); color: var(--charcoal); font-weight: 800; }
.band .btn:hover { background: var(--cream); }

/* ── FOOTER (v3 class names) ── */
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--honey-light); }
.footer-tagline { color: var(--soft); font-size: 0.82rem; margin-bottom: 1.1rem; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; margin: 0.75rem 0; flex-wrap: wrap; }
.footer-nav a { color: var(--soft); text-decoration: none; font-size: 0.84rem; font-weight: 600; transition: color 0.2s; }
.footer-nav a:hover { color: var(--honey-light); }
.footer-copy { font-size: 0.74rem; color: #6A5A48; margin-top: 0.75rem; }
.footer-credit { font-size: 0.72rem; color: #4A3C2C; margin-top: 0.4rem; letter-spacing: 0.5px; }

/* ── PULL QUOTE ── */
.pull-quote { background: var(--lav-pale); border-left: 4px solid var(--lavender); border-radius: 0 var(--radius) var(--radius) 0; padding: 2rem 2.5rem; margin: 2.5rem 0; max-width: 720px; }
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--charcoal); line-height: 1.75; margin: 0 0 0.75rem; }
.pull-quote cite { font-size: 0.82rem; color: var(--lavender); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-style: normal; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.5px; text-transform: uppercase; }

/* ── CONTACT CARDS ── */
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border-radius: var(--radius); padding: 1.1rem 1.25rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.contact-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 0.2rem; }
.contact-card p { color: var(--mid); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.contact-card a { color: var(--honey); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
