/* And This Is Love · funnel site styles
   Brand palette and type per brand/visual-identity.md
   Parchment #F6EFE4, Ink Espresso #2B2420, Warm Sand #D8C6AC,
   Deep Umber #5A4436, Sundried Clay #C1552F, Aged Gold #B4842A
   Fraunces (display serif) + Karla (body sans)
*/

:root {
  --parchment: #F6EFE4;
  --parchment-light: #FBF7F0;
  --ink: #2B2420;
  --sand: #D8C6AC;
  --umber: #5A4436;
  --clay: #C1552F;
  --clay-dark: #A8451F;
  --gold: #B4842A;
  --max-width: 760px;
  --wide-width: 1040px;
  --radius: 14px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--clay);
}

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

.container-wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
}

.accent-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--umber);
  font-size: 1.15rem;
}

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--clay);
}

.kicker--umber {
  color: var(--umber);
}

p {
  margin: 0 0 1.1em;
}

strong {
  font-weight: 700;
}

.lede {
  font-size: 1.2rem;
  color: var(--umber);
}

/* ---------- Header / masthead ---------- */

.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--sand);
  background: var(--parchment);
}

.masthead {
  text-decoration: none;
  display: inline-block;
  line-height: 1.1;
}

.masthead .top-line {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--umber);
}

.masthead .bottom-line {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--umber);
  font-size: 0.95rem;
  display: none;
}

@media (min-width: 640px) {
  .header-tagline {
    display: block;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  padding: 18px 34px;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--clay);
  color: var(--parchment);
}

.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--umber);
}

.btn-secondary:hover {
  background: var(--sand);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-sub {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--umber);
  margin-top: 12px;
}

/* ---------- Sections ---------- */

section {
  padding: 56px 0;
}

.section-tight {
  padding: 40px 0;
}

.hero {
  padding: 56px 0 48px;
}

.hero-cta-wrap {
  margin-top: 32px;
}

.section-alt {
  background: var(--parchment-light);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.section-dark {
  background: var(--ink);
  color: var(--parchment);
}

.section-dark h2, .section-dark h3 {
  color: var(--parchment);
}

.section-dark .accent-line {
  color: var(--sand);
}

.divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 0;
}

.center {
  text-align: center;
}

/* ---------- Cards ---------- */

.card {
  background: var(--parchment-light);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  padding: 28px;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tool-card {
  background: var(--parchment-light);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tool-number {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.tool-card h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.tool-card p {
  margin: 0;
  color: var(--umber);
  font-size: 0.98rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: var(--parchment);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Who it's for / not for */

.for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .for-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.for-list, .notfor-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.for-list li, .notfor-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
}

.for-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}

.notfor-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--umber);
  font-weight: 700;
}

/* FAQ */

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 22px 0;
}

.faq-item summary {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--clay);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin-top: 14px;
  color: var(--umber);
}

/* Price block */

.price-block {
  text-align: center;
}

.price-tag {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 3rem;
  color: var(--clay);
}

.price-was {
  text-decoration: line-through;
  color: var(--umber);
  font-size: 1.2rem;
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 48px 0 32px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--parchment);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.footer-disclaimer {
  color: var(--sand);
  font-size: 0.85rem;
  max-width: 640px;
  line-height: 1.5;
}

/* Forms */

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--umber);
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  background: var(--parchment-light);
  color: var(--ink);
}

.form-field input:focus {
  outline: 2px solid var(--clay);
  outline-offset: 1px;
}

/* Utility */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-umber { color: var(--umber); }
.small { font-size: 0.9rem; }
.tick-list { padding-left: 22px; }
.tick-list li { margin-bottom: 10px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 720px) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.checklist-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 0.92rem;
  color: var(--umber);
}

.checklist-inline li::before {
  content: "\2713 ";
  color: var(--clay);
  font-weight: 700;
}

.download-block {
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: var(--parchment-light);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download-block h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.download-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--umber);
}
