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

:root {
  --navy:   #1a1a2e;
  --navy2:  #141428;
  --navy3:  #0f0f1e;
  --gold:   #b8922a;
  --gold2:  #d4a843;
  --cream:  #f0ead6;
  --warm:   #9b8c6e;
  --muted:  #6b6052;
  --light:  #f7f3ec;
  --white:  #ffffff;
  --border: rgba(184,146,42,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--light); color: #2c2416; line-height: 1.7; font-size: 16px; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,46,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { text-decoration: none; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--cream); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--warm); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold2); }
.nav-cta { background: var(--gold); color: var(--navy3); text-decoration: none; padding: 8px 18px; border-radius: 4px; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold2); }

/* ── HERO ── */
.hero { background: var(--navy); min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 5rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://octogenarianentrepreneur.com/cdn/shop/files/Etsy_Say_it_without_saying_banner.png'); background-size: cover; background-position: center; opacity: 0.12; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(44px, 8vw, 72px); font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-sub { font-size: 17px; color: var(--warm); line-height: 1.75; max-width: 520px; margin: 0 auto 2.5rem; font-weight: 300; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── SIGNAL BAR ── */
.signal-bar { background: var(--navy2); padding: 1.4rem 2rem; text-align: center; }
.signal-bar p { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; color: var(--warm); }
.signal-bar p strong { color: var(--cream); font-style: normal; font-weight: 400; }

/* ── SHARED ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 38px); font-weight: 400; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.section-sub { color: var(--muted); font-size: 16px; max-width: 520px; margin-bottom: 3rem; font-weight: 300; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--navy3); padding: 14px 30px; border-radius: 4px; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold2); }
.btn-ghost { border: 1px solid rgba(155,140,110,0.5); color: var(--warm); padding: 14px 30px; border-radius: 4px; text-decoration: none; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold2); }
.btn-outline { display: inline-block; border: 1.5px solid var(--navy); color: var(--navy); padding: 13px 32px; border-radius: 4px; text-decoration: none; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-dark { display: inline-block; background: var(--navy3); color: var(--cream); padding: 14px 32px; border-radius: 4px; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s; }
.btn-dark:hover { background: var(--navy2); }
.btn-buy { font-size: 15px; padding: 16px 36px; margin-top: 1.5rem; width: 100%; text-align: center; }
.view-all-wrap { text-align: center; margin-top: 3rem; }

/* ── COLLECTIONS ── */
.collections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; border: 1px solid rgba(26,26,46,0.1); border-radius: 8px; overflow: hidden; }
.coll-card { background: var(--white); text-decoration: none; color: inherit; display: flex; flex-direction: column; overflow: hidden; transition: background 0.2s; position: relative; }
.coll-card:hover { background: #faf7f0; }
.coll-card:hover .coll-arrow { opacity: 1; transform: translateX(0); }
.coll-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.coll-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; }
.coll-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.coll-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.coll-count { font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.coll-arrow { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 18px; color: var(--gold); opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.prod-card { background: var(--white); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-3px); }
.prod-img-wrap { position: relative; background: #e8e2d5; aspect-ratio: 1; overflow: hidden; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--navy3); font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.prod-body { padding: 1rem 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.prod-collection, .prod-collection-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.prod-collection-label a { color: var(--gold); text-decoration: none; }
.prod-name { font-size: 14px; font-weight: 500; color: var(--navy); line-height: 1.4; flex: 1; margin-bottom: 10px; }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; }
.prod-price { font-size: 15px; font-weight: 500; color: var(--navy); }
.prod-shipping, .free-ship { font-size: 11px; color: var(--gold); }

/* ── PRODUCT PAGE ── */
.product-page { padding: 7rem 0 5rem; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 5rem; }
.product-main-img { width: 100%; border-radius: 8px; }
.product-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2; }
.product-price { font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 1.25rem; }
.product-hook { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; color: var(--muted); margin-bottom: 1.5rem; padding-left: 1rem; border-left: 2px solid var(--gold); }
.product-content { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.what-it-says { background: var(--navy); border-radius: 6px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.what-it-says h3 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.what-it-says ul { list-style: none; }
.what-it-says li { font-size: 14px; color: var(--warm); padding: 4px 0; }
.what-it-says li::before { content: '— '; color: var(--gold); }
.product-note { font-size: 12px; color: var(--muted); margin-top: 0.75rem; text-align: center; }
.related-section { border-top: 1px solid rgba(26,26,46,0.08); padding-top: 3rem; }

/* ── STORY ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-quote { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2.5vw, 26px); font-style: italic; color: var(--gold); line-height: 1.4; margin-bottom: 1.5rem; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.story-body { font-size: 15px; color: var(--warm); line-height: 1.8; font-weight: 300; margin-bottom: 1.25rem; }
.story-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.pillar { padding: 1.25rem; background: rgba(255,255,255,0.03); }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--gold); margin-bottom: 6px; line-height: 1; }
.pillar-name { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.pillar-text { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-body { padding: 1.25rem; }
.blog-date { font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 4rem 2rem; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px); color: var(--navy3); font-weight: 400; margin-bottom: 0.75rem; }
.cta-band p { font-size: 16px; color: rgba(26,26,46,0.7); margin-bottom: 2rem; font-weight: 300; }

/* ── NEWSLETTER ── */
.email-form { display: flex; max-width: 440px; margin: 0 auto; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.email-form input { flex: 1; background: rgba(255,255,255,0.05); border: none; padding: 14px 18px; font-size: 14px; color: var(--cream); font-family: 'Inter', sans-serif; outline: none; }
.email-form input::placeholder { color: var(--muted); }
.email-form button { background: var(--gold); border: none; padding: 14px 22px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy3); cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s; }
.email-form button:hover { background: var(--gold2); }

/* ── PROSE (blog/about) ── */
.prose { font-size: 16px; color: #3a2e20; line-height: 1.8; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin: 2rem 0 1rem; }
.prose h3 { font-size: 18px; color: var(--navy); margin: 1.5rem 0 0.75rem; font-weight: 500; }
.prose p { margin-bottom: 1.25rem; }
.prose ul { margin: 0 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--gold); }
.prose strong { font-weight: 500; color: var(--navy); }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 1.25rem; font-family: 'Playfair Display', serif; font-style: italic; color: var(--muted); margin: 1.5rem 0; font-size: 18px; }

/* ── FOOTER ── */
footer { background: var(--navy3); padding: 3.5rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); margin-bottom: 0.75rem; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .story-grid, .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
}
