/* AdsWithoutAgency · Shared Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0F0E0C;
  --paper: #F5F0E6;
  --paper-2: #EDE6D6;
  --rule: #1A1815;
  --muted: #5C574E;
  --accent: #C7462D;
  --accent-ink: #6E230F;
  --tag-bg: #E4DBC4;
  --whatsapp: #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Fraunces', Georgia, serif; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo em { font-style: italic; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent-ink);
  margin-bottom: 32px;
  font-style: italic;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.eyebrow strong {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 44px;
}

/* ============================================================
   VSL
   ============================================================ */
.vsl-wrap {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto 32px;
  overflow: hidden;
  cursor: pointer;
}
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--paper);
}
.play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.2s;
}
.vsl-wrap:hover .play-btn { transform: scale(1.06); }
.play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 22px solid var(--paper);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.vsl-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  opacity: 0.85;
}
.vsl-note {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.6);
  margin-top: 6px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-block;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { background: var(--paper-2); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 88px 0; border-bottom: 1px solid var(--rule); }
.section-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* ============================================================
   WHO THIS IS FOR (2-col x 3-row grid)
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.who-item {
  padding: 36px 32px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
}
.who-item:nth-child(odd) {
  border-right: 1px solid var(--rule);
}
.who-marker {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}
.who-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ============================================================
   WHAT YOU'LL LEARN (2-col x 3-row grid)
   ============================================================ */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.learn-item {
  padding: 36px 32px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
}
.learn-item:nth-child(odd) {
  border-right: 1px solid var(--rule);
}
.learn-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
}
.learn-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-photo-icon {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px;
  color: var(--muted);
  opacity: 0.4;
}
.about-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.about-role {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 32px;
  font-size: 18px;
}
.about-body p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--ink);
}
.about-body p:last-child { color: var(--muted); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.price-tag {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.price-card.featured .price-tag { color: var(--accent); }
.price-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.price-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  min-height: 44px;
}
.price-card.featured .price-desc { color: rgba(245, 240, 230, 0.7); }
.price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount .period {
  font-size: 18px;
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.price-card.featured .price-amount .period { color: rgba(245, 240, 230, 0.6); }
.price-daily {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-card.featured .price-daily { color: rgba(245, 240, 230, 0.6); }
.price-features {
  list-style: none;
  margin: 32px 0;
  flex-grow: 1;
}
.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.price-card.featured .price-features li {
  border-bottom-color: rgba(245, 240, 230, 0.15);
}
.price-features li::before {
  content: "→";
  color: var(--accent);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  flex-shrink: 0;
}
.price-btn {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: auto;
}
.price-btn:hover { background: var(--accent-ink); }
.price-card:not(.featured) .price-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.price-card:not(.featured) .price-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 120px 24px;
  border-bottom: none;
}
.final-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.final-cta p {
  font-size: 19px;
  color: rgba(245, 240, 230, 0.7);
  margin-bottom: 40px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-primary {
  padding: 20px 40px;
  font-size: 16px;
}

/* ============================================================
   PAGE HEADERS (interior pages)
   ============================================================ */
.page-header {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--rule);
}
.page-header .eyebrow-static {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 20ch;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.page-header .lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
}

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */
.content-page {
  padding: 72px 0 120px;
}
.content-page h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--ink);
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
}
.content-page p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}
.content-page p.muted { color: var(--muted); font-size: 15px; }
.content-page ul, .content-page ol {
  margin: 12px 0 24px 24px;
  padding: 0;
}
.content-page li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.content-page strong { font-weight: 600; color: var(--ink); }
.content-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.content-page a:hover { color: var(--accent-ink); }
.content-page .meta {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
}
.content-page .highlight-box {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 28px 32px;
  margin: 24px 0 32px;
  border-radius: 2px;
}
.content-page .highlight-box p:last-child { margin-bottom: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-block {
  padding: 32px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  margin-bottom: 24px;
}
.contact-block h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.contact-block p {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-block a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.contact-block a:hover { text-decoration: underline; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 20px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.faq-item summary {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ============================================================
   404
   ============================================================ */
.not-found {
  padding: 160px 0 200px;
  text-align: center;
}
.not-found .num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 180px;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.not-found h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.not-found p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ============================================================
   FOOTER (comprehensive)
   ============================================================ */
footer.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo {
  color: var(--paper);
  font-size: 24px;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(245, 240, 230, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  font-style: italic;
}
.footer-col ul {
  list-style: none;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(245, 240, 230, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.5);
}

/* ============================================================
   WHATSAPP STICKY
   ============================================================ */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.whatsapp-sticky svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.whatsapp-sticky-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.whatsapp-sticky-label small {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .hero { padding: 48px 0 40px; }
  section { padding: 64px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px;
    border-bottom: 1px solid var(--rule);
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .mobile-nav-toggle { display: block; }
  .pricing-grid { grid-template-columns: 1fr; }
  .who-grid, .learn-grid { grid-template-columns: 1fr; }
  .who-item, .learn-item { border-right: none !important; padding: 28px 20px; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .whatsapp-sticky-label { display: none; }
  .whatsapp-sticky { padding: 14px; }
  .page-header { padding: 56px 0 40px; }
  .content-page h2 { font-size: 26px; }
  .not-found .num { font-size: 120px; }
}
