/* ===========================================================
   LIFE & LAUREN — One-Page Site
   Built from the Life & Lauren Brand Guidelines (v1.0)
=========================================================== */

:root {
  --sand: #FAF6EF;
  --blush-sand: #F1E4D3;
  --champagne: #E3C68B;
  --driftwood: #DDD2C4;
  --seafoam: #C9DED0;
  --sage: #9CAF93;
  --coral: #EFA492;
  --gold: #C9982E;
  --charcoal: #2E2A25;
  --ink: #4A443C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Quicksand', 'Helvetica Neue', sans-serif;

  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.eyebrow.sage { color: var(--sage); }
.eyebrow.coral { color: var(--coral); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  margin-top: 10px;
  margin-bottom: 18px;
}

.divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 24px;
  border: none;
}
.divider.sage { background: var(--sage); }
.divider.coral { background: var(--coral); }

.section-intro {
  max-width: 640px;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 48px;
}

section { padding: 110px 0; position: relative; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { box-shadow: 0 10px 24px rgba(201,152,46,0.32); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--sand); }
.btn-disabled { background: var(--driftwood); color: var(--ink); cursor: not-allowed; opacity: 0.75; }
.btn-disabled:hover { transform: none; }

/* ---------- Fade-in on scroll ----------
   Progressive enhancement: content is visible by default so it never
   depends on JavaScript running. Only once <html class="js"> is set
   (by script.js, before paint) do elements start hidden and animate in. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: 0 2px 16px rgba(46,42,37,0.06);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 30px; height: 30px; }
.nav-logo span {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; color: var(--charcoal);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal);
  opacity: 0.75; transition: opacity 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--champagne); opacity: 0.55;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: 180px; margin-bottom: 8px; }
.hero-wordmark {
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  letter-spacing: 6px; color: var(--charcoal); margin-top: 4px;
}
.hero-eyebrow {
  margin-top: 26px; font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
}
.hero-line { width: 50px; height: 1px; background: var(--gold); margin: 14px 0; }
.hero-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 22px;
  color: var(--ink); max-width: 560px; margin-top: 4px;
}
.hero-sub {
  margin-top: 22px; max-width: 480px; color: var(--ink); font-size: 14.5px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 10px; letter-spacing: 2px; color: #a89f8f;
  animation: bob 2.6s ease-in-out infinite;
}
.hero-scroll .line { width: 1px; height: 30px; background: var(--driftwood); }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============ JOURNAL / BLOG ============ */
#journal { background: var(--sand); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.blog-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(46,42,37,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(46,42,37,0.1); }
.blog-card.is-expanded:hover { transform: none; }
.blog-thumb {
  height: 190px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-thumb svg { width: 34px; height: 34px; opacity: 0.5; }
.blog-thumb .soon-badge {
  position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-weight: 600; font-size: 9px; letter-spacing: 1.5px;
  padding: 5px 10px; border-radius: 12px; color: var(--ink); text-transform: uppercase;
}
.blog-body { padding: 22px 24px 26px; }
.blog-tag {
  font-family: var(--font-body); font-weight: 700; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.blog-title { font-family: var(--font-display); font-size: 21px; margin-top: 8px; color: var(--charcoal); }
.blog-excerpt { font-size: 12.5px; color: var(--ink); margin-top: 8px; opacity: 0.85; }
.blog-read {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 1px; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
}
.blog-read-arrow { display: inline-block; transition: transform 0.3s ease; }
.blog-read[aria-expanded="true"] .blog-read-arrow { transform: rotate(90deg); }

.blog-expand {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.45s ease;
}
.blog-expand.is-open { opacity: 1; margin-top: 16px; }
.blog-expand-inner {
  padding-top: 16px; border-top: 1px solid var(--driftwood);
  font-size: 12.5px; line-height: 1.7; color: var(--ink);
}

.journal-footer { text-align: center; margin-top: 50px; }
.journal-footer p { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--ink); margin-bottom: 20px; }

/* ============ MAGAZINE ============ */
#magazine { background: var(--blush-sand); }
.magazine-layout { display: flex; align-items: center; gap: 80px; }
.magazine-cover-wrap { flex: 0 0 auto; }
.magazine-cover {
  width: 260px; aspect-ratio: 4419 / 6250; border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 50px rgba(46,42,37,0.18);
  position: relative; background: var(--sand);
}
.magazine-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.magazine-cover .masthead {
  height: 78px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--driftwood);
}
.magazine-cover .masthead img { width: 60px; }
.magazine-cover .issue-tag { font-size: 8px; letter-spacing: 1.5px; color: #9a8f7d; margin-top: 8px; font-family: var(--font-body); }
.magazine-cover .cover-photo {
  height: 262px; background: linear-gradient(160deg, var(--seafoam) 0%, var(--blush-sand) 60%, var(--champagne) 100%);
  position: relative;
}
.magazine-cover .cover-photo .cover-line { position: absolute; left: 18px; height: 8px; background: #fff; opacity: 0.85; border-radius: 2px; }
.magazine-info { flex: 1; }
.magazine-info p { color: var(--ink); font-size: 14.5px; max-width: 480px; margin-bottom: 30px; }
.magazine-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: 1.5px;
  color: var(--coral); text-transform: uppercase;
}
.magazine-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

/* ============ PHOTOGRAPHY ============ */
#photography { background: var(--sand); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 18px;
}
.photo-tile {
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.photo-tile svg { width: 26px; height: 26px; opacity: 0.55; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tile img.zoom { transform: scale(1.4); }
.photo-tile img.fit { object-fit: contain; }
.photo-tile .tile-label {
  position: absolute; bottom: 12px; left: 14px; font-family: var(--font-body);
  font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(46,42,37,0.55);
}
.photo-tile.span-2 { grid-column: span 2; }

#art { background: var(--sand); }
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.art-tile {
  border-radius: 12px; overflow: hidden; position: relative;
  aspect-ratio: 2 / 3;
}
.art-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.35); }
@media (max-width: 640px) {
  .art-grid { grid-template-columns: repeat(2, 1fr); }
}
.photo-tile.row-2 { grid-row: span 2; }
.photo-tile.row-3 { grid-row: span 3; }

.photography-footer { text-align: center; margin-top: 46px; }
.photography-footer p { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--ink); }

/* ============ PARTNERS ============ */
#partners { background: var(--blush-sand); }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.partner-card {
  background: #fff; border-radius: 14px; padding: 30px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: 0 2px 14px rgba(46,42,37,0.06);
}
.partner-mark {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.partner-mark svg { width: 22px; height: 22px; }
.partner-name { font-family: var(--font-display); font-size: 22px; color: var(--charcoal); }
.partner-desc { font-size: 12.5px; color: var(--ink); margin-top: 6px; opacity: 0.85; }
.partner-code {
  display: inline-block; margin-top: 14px; padding: 7px 14px;
  border: 1.5px dashed var(--driftwood); border-radius: 20px;
  font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: 1.5px;
  color: var(--gold);
}
.partner-btn { display: block; margin-top: 16px; width: fit-content; padding: 11px 24px; font-size: 11px; }

/* ============ AMAZON STOREFRONT ============ */
#shop { background: var(--sand); }
.shop-card {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: #fff; border-radius: 20px; padding: 56px 48px;
  box-shadow: 0 2px 14px rgba(46,42,37,0.06);
}
.shop-card .eyebrow { text-align: center; }
.shop-card .section-title { text-align: center; }
.shop-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blush-sand);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.shop-icon svg { width: 24px; height: 24px; }
.shop-card .magazine-badge { display: flex; margin: 22px auto 26px; }

/* ============ CONNECT ============ */
#connect { background: var(--charcoal); color: var(--sand); text-align: center; }
#connect .eyebrow { color: var(--champagne); }
#connect .section-title { color: var(--sand); }
#connect .section-intro { color: var(--driftwood); margin-left: auto; margin-right: auto; }

.social-row { display: flex; justify-content: center; gap: 22px; margin-bottom: 56px; }
.social-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(250,246,239,0.25);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.social-btn svg { width: 22px; height: 22px; fill: var(--sand); }
.social-btn:hover { border-color: var(--gold); background: rgba(201,152,46,0.12); transform: translateY(-3px); }

.connect-divider {
  width: 60px; height: 1px; background: rgba(250,246,239,0.2); margin: 0 auto 50px;
}

.wl-card {
  max-width: 420px; margin: 0 auto;
  background: rgba(250,246,239,0.04);
  border: 1px solid rgba(250,246,239,0.14);
  border-radius: 18px; padding: 34px 30px;
}
.wl-card p.wl-intro { font-size: 13px; color: var(--driftwood); margin-bottom: 22px; }
.wl-button {
  display: flex; align-items: center; gap: 16px;
  background: #0f0d0b; border-radius: 14px; padding: 16px 22px;
  border: 1px solid rgba(227,198,139,0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.wl-button:hover { transform: translateY(-3px); border-color: var(--champagne); }
.wl-mark { flex-shrink: 0; }
.wl-button .wl-text { text-align: left; white-space: nowrap; }
.wl-button .wl-cta { font-family: var(--font-body); font-weight: 700; font-size: 9.5px; letter-spacing: 2px; color: var(--champagne); text-transform: uppercase; }
.wl-button .wl-name { font-family: var(--font-display); font-size: 18px; color: var(--sand); margin-top: 3px; white-space: nowrap; }
.wl-button .wl-arrow { flex-shrink: 0; margin-left: 14px; color: var(--champagne); font-size: 16px; }

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--charcoal); color: var(--driftwood);
  padding: 40px 0; text-align: center; border-top: 1px solid rgba(250,246,239,0.08);
}
footer.site-footer img { width: 30px; margin: 0 auto 12px; }
footer.site-footer .foot-name { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--sand); }
footer.site-footer .foot-copy { font-family: var(--font-body); font-size: 10px; letter-spacing: 1px; margin-top: 8px; opacity: 0.6; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: 0; height: 100vh; width: 240px;
    background: var(--sand); padding: 100px 32px; box-shadow: -8px 0 30px rgba(46,42,37,0.12);
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav-links.nav-links-open { transform: translateX(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--driftwood); }
  .nav-toggle { display: flex; z-index: 110; }
  .card-grid { grid-template-columns: 1fr; }
  .magazine-layout { flex-direction: column; text-align: center; gap: 40px; }
  .magazine-info p { margin-left: auto; margin-right: auto; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-tile.span-2 { grid-column: span 1; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { flex-direction: column; }
  section { padding: 80px 0; }
  .hero-logo { width: 140px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 22px; }
  .social-row { gap: 16px; }
}
