/* Readjoo — landing site styles */

:root {
  --brand: #EA3829;
  --brand-deep: #C92B20;
  --brand-dark: #9E1F17;
  --brand-soft: #FDECE9;
  --brand-tint: #FFF5F3;

  --ink: #1C1917;
  --ink-2: #44403C;
  --ink-3: #78716C;
  --ink-4: #A8A29E;

  --bg: #FAF8F5;
  --bg-warm: #FFF9F7;
  --surface: #FFFFFF;
  --line: #EDE7E1;
  --line-strong: #DED5CC;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .06), 0 1px 3px rgba(28, 25, 23, .04);
  --shadow: 0 4px 16px rgba(28, 25, 23, .06), 0 1px 3px rgba(28, 25, 23, .04);
  --shadow-lg: 0 24px 60px -20px rgba(28, 25, 23, .22), 0 8px 24px -12px rgba(28, 25, 23, .12);
  --shadow-brand: 0 16px 40px -16px rgba(234, 56, 41, .45);

  --maxw: 1160px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: 820px; }

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border: 1px solid rgba(234, 56, 41, .16);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 20px;
}

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-3); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: .98rem; font-weight: 600;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-deep); color: #fff; }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--ink-4); color: var(--ink); }
.btn--sm { padding: 10px 20px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 245, .84);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 74px; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__links a {
  color: var(--ink-2); font-size: .95rem; font-weight: 500; text-decoration: none;
  transition: color .15s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--brand-deep); }
.nav__cta { margin-left: 4px; }

@media (max-width: 920px) {
  .nav { height: 66px; gap: 14px; }
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__logo img { height: 26px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 108px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(234, 56, 41, .13), transparent 62%),
    radial-gradient(760px 420px at 4% 100%, rgba(234, 56, 41, .07), transparent 60%),
    var(--bg-warm);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--brand-deep); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .92rem; color: var(--ink-3); }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.tick { color: var(--brand); font-weight: 700; }

.hero__art { position: relative; }
.hero__card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--surface);
}
.hero__card img { width: 100%; height: 420px; object-fit: cover; }
.hero__badge {
  position: absolute; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); line-height: 1.1; }
.hero__badge span { font-size: .8rem; color: var(--ink-3); }
.hero__badge--a { left: -22px; bottom: 64px; }
.hero__badge--b { right: -16px; top: 40px; }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; margin-bottom: 22px; }
  .hero__card img { height: 260px; }
  .hero__badge--a { left: 10px; bottom: -18px; }
  .hero__badge--b { right: 10px; top: -18px; }
}

/* ---------- Stat strip ---------- */
.stats { border-block: 1px solid var(--line); background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink); line-height: 1.1; }
.stat span { font-size: .9rem; color: var(--ink-3); }
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Section head ---------- */
.sec-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p:last-child { margin-bottom: 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

.icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 1.2rem;
}

/* Service cards with image */
.service {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service__img { height: 208px; overflow: hidden; position: relative; }
.service__img img { width: 100%; height: 100%; object-fit: cover; }
.service__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.service__body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.service__price { font-family: var(--font-display); font-size: 1.55rem; color: var(--ink); margin: 4px 0 14px; }
.service__price small { font-family: var(--font-body); font-size: .85rem; color: var(--ink-3); font-weight: 500; }
.list { list-style: none; margin: 0 0 22px; padding: 0; }
.list li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .96rem; }
.list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--brand); font-weight: 700; font-size: .9rem;
}
.service__body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Steps ---------- */
.step { position: relative; padding-top: 8px; }
.step__num {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: var(--brand); opacity: .3; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: .96rem; margin-bottom: 0; }

/* ---------- Dark band ---------- */
.band {
  background: linear-gradient(135deg, #2B211F 0%, #3A2420 55%, #4A2119 100%);
  color: rgba(255,255,255,.78);
  border-radius: var(--radius-xl);
  padding: clamp(38px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.band::after {
  content: ""; position: absolute; inset: auto -80px -140px auto;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,56,41,.42), transparent 68%);
}
.band h2, .band h3 { color: #fff; }
.band .eyebrow { background: rgba(255,255,255,.1); color: #FFC9C2; border-color: rgba(255,255,255,.18); }
.band__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 860px) { .band__grid { grid-template-columns: 1fr; gap: 30px; } }
.band__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.band__list li { display: flex; gap: 14px; align-items: flex-start; }
.band__list strong { color: #fff; display: block; font-size: .98rem; }
.band__list span { font-size: .9rem; color: rgba(255,255,255,.66); }
.band__list .dot {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  background: rgba(234,56,41,.24); color: #FFB4AB;
  display: grid; place-items: center; font-size: .9rem; font-weight: 700;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: .95rem; }
thead th {
  text-align: left; font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--bg-warm);
}
tbody td { padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
tbody td strong { color: var(--ink); }
.amount { font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--font-display);
  font-size: 1.1rem; color: var(--ink); font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.5rem; font-family: var(--font-body); line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 14px 0 0; font-size: .98rem; max-width: 80ch; }

/* ---------- CTA ---------- */
.cta {
  text-align: center; border-radius: var(--radius-xl);
  padding: clamp(44px, 6vw, 76px) 28px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 60%, var(--brand-dark) 100%);
  color: rgba(255,255,255,.86);
  box-shadow: var(--shadow-brand);
}
.cta h2 { color: #fff; }
.cta p { max-width: 56ch; margin-inline: auto; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta .btn--ghost { background: #fff; color: var(--brand-deep); border-color: #fff; }

/* ---------- Inner page hero ---------- */
.page-hero {
  background:
    radial-gradient(900px 380px at 82% -20%, rgba(234, 56, 41, .12), transparent 60%),
    var(--bg-warm);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: .3em; }
.page-hero .lede { margin-bottom: 0; }
.updated { font-size: .86rem; color: var(--ink-4); margin-top: 18px; }

/* ---------- Prose / legal ---------- */
.prose { max-width: 80ch; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: 2.2em; scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose table { min-width: 460px; }
.prose .table-wrap { margin-bottom: 1.4em; }

.callout {
  background: var(--brand-tint); border: 1px solid rgba(234,56,41,.18);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm); padding: 20px 24px; margin: 0 0 1.6em;
  font-size: .96rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--ink); }

.toc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px; margin-bottom: 40px;
}
.toc h4 { margin-bottom: .6em; font-family: var(--font-body); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 34px; font-size: .93rem; }
@media (max-width: 620px) { .toc ol { columns: 1; } }
.toc li { margin-bottom: .35em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card .big {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--ink);
  margin: 6px 0; word-break: break-word; line-height: 1.35;
}
.contact-card .big a { color: var(--ink); }
.contact-card .big a:hover { color: var(--brand-deep); }
.contact-card .meta { font-size: .9rem; color: var(--ink-3); margin: 0; }

address { font-style: normal; }

.hours { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.hours li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours span:first-child { color: var(--ink-2); }
.hours span:last-child { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1C1917; color: rgba(255,255,255,.62);
  padding: clamp(56px, 7vw, 80px) 0 32px; font-size: .93rem;
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 28px; margin-bottom: 18px; }
.footer__brand p { max-width: 36ch; font-size: .92rem; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .15s ease; }
.footer__links a:hover { color: #fff; text-decoration: none; }
.footer__contact a { color: rgba(255,255,255,.62); }
.footer__contact a:hover { color: #fff; }
.footer__contact p { margin-bottom: 10px; }
.footer__bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .86rem; color: rgba(255,255,255,.45);
}
.footer__bottom a { color: rgba(255,255,255,.45); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-3); }
.small { font-size: .9rem; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
