/* ============ VARIABLES ============ */
:root {
  --cream: #F5EFE4;
  --cream-deep: #EDE4D3;
  --paper: #FBF7F0;
  --ink: #2A1F18;
  --ink-soft: #5C4F44;
  --terracotta: #C97456;
  --terracotta-deep: #A85A40;
  --sage: #8FA88B;
  --sage-deep: #6B8A6A;
  --ochre: #D4A24C;
  --line: rgba(42, 31, 24, 0.12);
  --shadow-soft: 0 1px 2px rgba(42,31,24,0.04), 0 8px 24px rgba(42,31,24,0.06);
  --shadow-lift: 0 4px 12px rgba(42,31,24,0.08), 0 24px 60px rgba(42,31,24,0.10);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: rgba(201,116,86,0.25); }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-variation-settings: "opsz" 144, "SOFT" 50; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-variation-settings: "opsz" 100, "SOFT" 50; }
h3 { font-size: 1.5rem; }
p { color: var(--ink-soft); }
a { transition: color 0.2s ease; }
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded, img[loading="eager"] { opacity: 1; }
section[id] { scroll-margin-top: 80px; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

.section-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 700; margin-bottom: 16px; display: block;
}

/* ============ PAGE LOADER ============ */
.page-loader { position: fixed; inset: 0; background: var(--cream); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { animation: loaderPulse 1s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--terracotta), var(--ochre)); z-index: 999; width: 0%; }
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--terracotta); color: white; padding: 12px 24px; border-radius: 0 0 8px 8px; font-weight: 600; z-index: 10000; text-decoration: none; }
.skip-link:focus { top: 0; }

/* ============ ANNOUNCEMENT ============ */
.announcement { background: var(--ink); color: var(--cream); text-align: center; padding: 10px 16px; font-size: 0.82rem; letter-spacing: 0.04em; font-weight: 500; position: relative; }
.announcement span { color: var(--ochre); margin: 0 6px; }
.announcement-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(245,239,228,0.5); cursor: pointer; font-size: 1.1rem; }

/* ============ NAV ============ */
nav { border-bottom: 1px solid var(--line); padding: 18px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); background: rgba(245,239,228,0.92); transition: padding 0.3s ease; }
nav.scrolled { padding: 12px 0; box-shadow: 0 2px 12px rgba(42,31,24,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark-svg { width: 38px; height: 38px; transition: transform 0.3s ease; }
.logo:hover .logo-mark-svg { transform: rotate(-8deg) scale(1.05); }
.logo-text { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em; }
.logo-text em { font-style: italic; color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 100; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { background: var(--ink); color: var(--cream); padding: 10px 22px; border-radius: 100px; text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: transform 0.2s; }
.nav-cta:hover { transform: translateY(-1px); }

/* Mobile nav */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.menu-toggle svg { width: 24px; height: 24px; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.menu-toggle .close-icon { display: none; }
.menu-toggle.active .hamburger-icon { display: none; }
.menu-toggle.active .close-icon { display: block; }
.mobile-overlay { display: none; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: flex !important; flex-direction: column; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--paper); padding: 100px 36px 40px; gap: 0; box-shadow: -8px 0 30px rgba(0,0,0,0.1); transition: right 0.3s ease; z-index: 150; }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .mobile-overlay.open { display: block; position: fixed; inset: 0; background: rgba(42,31,24,0.4); z-index: 140; }
}

/* ============ HERO ============ */
.hero { padding: 80px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 28px; }
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 100; }
.hero-sub { font-size: 1.15rem; margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary { background: var(--terracotta); color: white; padding: 16px 32px; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 14px rgba(201,116,86,0.3); }
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,116,86,0.4); }
.btn-secondary { color: var(--ink); padding: 16px 24px; text-decoration: none; font-weight: 600; font-size: 1rem; border-bottom: 1.5px solid var(--ink); }
.hero-trust { display: flex; align-items: center; gap: 18px; font-size: 0.88rem; color: var(--ink-soft); }
.stars { color: var(--ochre); letter-spacing: 2px; font-size: 1rem; }
.hero-trust strong { color: var(--ink); font-weight: 600; }

.hero-visual { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.hero-product-img { width: 100%; max-width: 560px; border-radius: 20px; box-shadow: var(--shadow-lift); transform: rotate(-2deg); transition: transform 0.4s ease; cursor: zoom-in; }
.hero-product-img:hover { transform: rotate(0deg) scale(1.02); }

.floating-badge { position: absolute; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lift); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 10px; opacity: 0; animation: badgeFloat 0.6s ease-out forwards; }
.badge-1 { top: 8%; right: -8%; transform: rotate(4deg); animation-delay: 0.8s; }
.badge-2 { bottom: 6%; left: -6%; transform: rotate(-4deg); animation-delay: 1.1s; }
@keyframes badgeFloat { from { opacity: 0; transform: scale(0.8) translateY(10px); } to { opacity: 1; } }
.badge-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; }
.badge-1 .badge-icon { background: var(--terracotta); }
.badge-2 .badge-icon { background: var(--sage); }

/* Hero responsive */
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } .hero { padding: 50px 0 70px; } }

/* ============ TRUST STRIP ============ */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 32px 0; background: var(--paper); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trust-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.trust-logos { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.trust-logo { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink-soft); font-style: italic; opacity: 0.7; }
.trust-logo.bold { font-family: 'Manrope', sans-serif; font-weight: 800; font-style: normal; }

/* ============ PROBLEM SECTION ============ */
.problem { background: var(--cream-deep); }
.problem-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.problem-header p { font-size: 1.1rem; margin-top: 18px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.problem-card { background: var(--paper); padding: 32px 28px; border-radius: 16px; border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.problem-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px; }
.problem-title { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.problem-card p { font-size: 0.92rem; }

.solution-transition { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.solution-transition p { font-size: 1.1rem; margin-top: 18px; }
.solution-transition em { font-style: italic; color: var(--terracotta); font-family: 'Fraunces', serif; }

.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar { background: var(--paper); padding: 44px 38px; border-radius: 20px; border: 1px solid var(--line); display: flex; gap: 24px; align-items: flex-start; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pillar-num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-style: italic; color: var(--terracotta); line-height: 1; flex-shrink: 0; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 12px; font-variation-settings: "opsz" 60, "SOFT" 50; }
.pillar p { font-size: 0.95rem; }

@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .problem-grid { grid-template-columns: 1fr; } }

/* ============ INSIDE THE BOOK ============ */
.inside { background: var(--ink); color: var(--cream); }
.inside h2 { color: var(--cream); }
.inside p { color: rgba(245,239,228,0.7); }
.inside .section-eyebrow { color: var(--ochre); }
.inside-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.inside-visual { aspect-ratio: 1/1; border-radius: 24px; overflow: hidden; }
.pages-list { list-style: none; margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.pages-list li { padding: 12px 0; border-bottom: 1px solid rgba(245,239,228,0.12); font-size: 0.95rem; color: var(--cream); display: flex; align-items: center; gap: 12px; }
.pages-list li::before { content: ''; width: 6px; height: 6px; background: var(--ochre); border-radius: 50%; flex-shrink: 0; }

.craft-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.craft-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--cream); font-weight: 600; padding: 10px 14px; background: rgba(245,239,228,0.06); border-radius: 10px; border: 1px solid rgba(245,239,228,0.1); }

.safety-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.safety-badge { display: flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; color: var(--cream); background: rgba(245,239,228,0.08); border: 1px solid rgba(245,239,228,0.12); }
.safety-badge-icon { width: 20px; height: 20px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; }

@media (max-width: 900px) { .inside-grid { grid-template-columns: 1fr; gap: 50px; } .craft-highlights { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALS ============ */
.testimonials-header { text-align: center; margin-bottom: 40px; }
.review-summary { display: flex; align-items: center; gap: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 24px 32px; margin-bottom: 40px; flex-wrap: wrap; }
.review-big-number { font-family: 'Fraunces', serif; font-size: 3.5rem; color: var(--terracotta); line-height: 1; }
.review-stars-big { color: var(--ochre); font-size: 1.4rem; letter-spacing: 3px; }
.review-count { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }
.review-bars { flex: 1; min-width: 200px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; font-size: 0.78rem; color: var(--ink-soft); }
.review-bar-label { width: 20px; text-align: right; font-weight: 600; }
.review-bar-track { flex: 1; height: 6px; background: var(--cream-deep); border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--ochre); border-radius: 3px; transition: width 1s ease; }
.review-bar-pct { width: 32px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--paper); padding: 36px 32px; border-radius: 20px; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.testimonial-stars { color: var(--ochre); letter-spacing: 2px; margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-quote { font-family: 'Fraunces', serif; font-size: 1.15rem; line-height: 1.45; color: var(--ink); margin-bottom: 24px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 600; color: var(--terracotta); }
.author-info { font-size: 0.85rem; }
.author-name { font-weight: 700; color: var(--ink); }
.author-role { color: var(--ink-soft); }

.testimonial.featured { background: var(--sage); color: var(--cream); grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 60px; padding: 48px 56px; }
.testimonial.featured .testimonial-quote { color: var(--cream); font-size: 1.5rem; flex: 2; }
.testimonial.featured .author-name { color: var(--cream); }
.testimonial.featured .author-role { color: rgba(245,239,228,0.8); }
.testimonial.featured .author-avatar { background: var(--cream); color: var(--sage-deep); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { flex-direction: column; gap: 30px; padding: 36px 28px; }
}

/* ============ PRICING ============ */
.pricing-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 40px 32px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.price-card:hover:not(.featured) { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.04); z-index: 2; }
.price-card.featured:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(42,31,24,0.2); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ochre); color: var(--ink); padding: 6px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.price-name { font-family: 'Fraunces', serif; font-size: 1.4rem; margin-bottom: 6px; }
.price-tag-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 12px; }
.price-was { font-size: 1.1rem; color: var(--ink-soft); text-decoration: line-through; opacity: 0.6; }
.price-card.featured .price-was { color: rgba(245,239,228,0.5); }
.price-now { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 500; line-height: 1; }
.price-now .currency { font-size: 1.4rem; vertical-align: top; }
.price-savings { display: inline-block; background: rgba(143,168,139,0.18); color: var(--sage-deep); padding: 4px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 700; margin-bottom: 24px; }
.price-card.featured .price-savings { background: rgba(212,162,76,0.2); color: var(--ochre); }
.price-features { list-style: none; margin-bottom: 32px; flex: 1; }
.price-features li { padding: 10px 0; font-size: 0.92rem; display: flex; align-items: flex-start; gap: 12px; border-top: 1px solid var(--line); }
.price-card.featured .price-features li { border-color: rgba(245,239,228,0.12); color: var(--cream); }
.feat-check { color: var(--terracotta); font-weight: 700; flex-shrink: 0; }
.price-card.featured .feat-check { color: var(--ochre); }
.price-cta { width: 100%; padding: 14px; border-radius: 100px; border: none; font-weight: 700; cursor: pointer; font-size: 0.95rem; text-decoration: none; text-align: center; display: block; transition: all 0.2s; font-family: 'Manrope', sans-serif; }
.price-cta.primary { background: var(--terracotta); color: white; }
.price-cta.primary:hover { background: var(--terracotta-deep); }
.price-cta.dark { background: var(--ochre); color: var(--ink); }
.price-cta.dark:hover { background: #C9963F; }
.price-cta.outline { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.price-cta.outline:hover { background: var(--ink); color: var(--cream); }

.trust-seals { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.trust-seal { display: flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 8px 16px; font-size: 0.8rem; font-weight: 600; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } .price-card.featured:hover { transform: none; } }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer; transition: background 0.2s; }
.faq-item:hover { background-color: rgba(201,116,86,0.03); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--ink); list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--terracotta); transition: transform 0.2s; font-family: 'Manrope', sans-serif; font-weight: 300; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { color: var(--ink-soft); margin-top: 14px; font-size: 0.96rem; line-height: 1.6; }

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ FINAL CTA ============ */
.final-cta { background: var(--terracotta); color: var(--cream); text-align: center; }
.final-cta h2 { color: var(--cream); margin-bottom: 20px; }
.final-cta h2 em { font-style: italic; }
.final-cta p { color: rgba(245,239,228,0.9); font-size: 1.1rem; margin-bottom: 36px; }
.final-cta .btn-primary { background: var(--ink); color: var(--cream); box-shadow: none; padding: 18px 40px; }
.final-cta .btn-primary:hover { background: #1a1310; }
.guarantee-row { display: flex; justify-content: center; gap: 40px; margin-top: 36px; font-size: 0.88rem; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: rgba(245,239,228,0.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-text { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--cream); font-weight: 500; }
.footer-logo-text em { font-style: italic; color: var(--ochre); }
.footer-tagline { font-size: 0.92rem; line-height: 1.5; max-width: 280px; }
.footer-heading { font-family: 'Manrope', sans-serif; color: var(--cream); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: rgba(245,239,228,0.65); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--ochre); }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(245,239,228,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: var(--terracotta); }
.footer-mini-form { display: flex; gap: 8px; }
.footer-mini-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(245,239,228,0.15); border-radius: 8px; background: rgba(245,239,228,0.06); color: var(--cream); font-size: 0.85rem; font-family: 'Manrope', sans-serif; outline: none; }
.footer-mini-form input::placeholder { color: rgba(245,239,228,0.3); }
.footer-mini-form button { padding: 10px 18px; background: var(--ochre); color: var(--ink); border: none; border-radius: 8px; font-weight: 700; font-size: 0.82rem; cursor: pointer; font-family: 'Manrope', sans-serif; }
.footer-bottom { border-top: 1px solid rgba(245,239,228,0.12); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 20px; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } section { padding: 70px 0; } }

/* ============ OVERLAYS & WIDGETS ============ */
.social-notification { position: fixed; bottom: 24px; left: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-lift); display: flex; align-items: center; gap: 14px; z-index: 85; max-width: 340px; transform: translateX(-120%); transition: transform 0.4s ease; }
.social-notification.visible { transform: translateX(0); }
.notif-avatar { width: 40px; height: 40px; background: var(--cream-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 600; color: var(--terracotta); flex-shrink: 0; }
.notif-text { font-size: 0.85rem; color: var(--ink); line-height: 1.4; }
.notif-text strong { font-weight: 700; }
.notif-time { font-size: 0.75rem; color: var(--ink-soft); display: block; margin-top: 2px; }
.notif-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 1rem; }

.img-modal-overlay { position: fixed; inset: 0; background: rgba(42,31,24,0.9); z-index: 1000; display: none; align-items: center; justify-content: center; cursor: zoom-out; padding: 40px; }
.img-modal-overlay.active { display: flex; }
.img-modal-overlay img { max-width: 90%; max-height: 90vh; border-radius: 12px; }
.img-modal-close { position: absolute; top: 20px; right: 24px; color: var(--cream); font-size: 2rem; background: none; border: none; cursor: pointer; }

.whatsapp-widget { position: fixed; bottom: 24px; right: 80px; z-index: 88; display: flex; align-items: center; gap: 10px; }
.whatsapp-tooltip { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; font-size: 0.82rem; font-weight: 600; box-shadow: var(--shadow-soft); opacity: 0; transform: translateX(10px); transition: all 0.3s ease; pointer-events: none; }
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-btn { width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; box-shadow: 0 4px 14px rgba(37,211,102,0.4); transition: transform 0.3s ease; }
.whatsapp-btn:hover { transform: scale(1.1); }

.sticky-cta-bar { position: fixed; bottom: -80px; left: 0; right: 0; background: var(--paper); border-top: 1px solid var(--line); padding: 14px 24px; z-index: 90; box-shadow: 0 -4px 20px rgba(42,31,24,0.08); transition: bottom 0.35s ease; display: flex; align-items: center; justify-content: center; gap: 24px; }
.sticky-cta-bar.visible { bottom: 0; }
.sticky-price { font-family: 'Fraunces', serif; font-size: 1.3rem; }
.sticky-price .was { font-size: 0.9rem; text-decoration: line-through; color: var(--ink-soft); margin-right: 8px; }

.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--ink); color: var(--cream); border: none; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 80; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--terracotta); }

@media (max-width: 768px) {
  .whatsapp-widget { right: 16px; }
  .whatsapp-tooltip { display: none; }
  .social-notification { left: 12px; right: 12px; max-width: none; }
  .sticky-cta-bar .sticky-label { display: none; }
}

/* ============ FOCUS & ACCESSIBILITY ============ */
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
@media print { nav, .announcement, .sticky-cta-bar, .back-to-top, .scroll-progress, .social-notification, .whatsapp-widget { display: none !important; } }

/* ============ HERO ANIMATION ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero h1, .hero-sub, .hero-eyebrow, .hero-ctas, .hero-trust { animation: fadeUp 0.8s ease-out backwards; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-ctas { animation-delay: 0.3s; }
.hero-trust { animation-delay: 0.4s; }
.hero-visual { animation: fadeUp 1s ease-out 0.3s backwards; }

/* ============ MOBILE (480px) ============ */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.75rem !important; }
  .hero { padding: 40px 0 60px; }
  .btn-primary { padding: 14px 24px; }
  .hero-ctas { gap: 10px; }
  .trust-logos { gap: 20px; }
  .pillar { padding: 28px 24px; gap: 16px; }
}
