/* Nieuwsbriefing: landing page
   Baked-in final design values (from Claude Design handoff):
     brand green   #1F8A5B  (logo + primary buttons)
     green ring    #DCEFE3
     accent orange #C4761E  (eyebrow, step badges, quote marks, wildcard rule, checks)
     accent dark   #995C17  (links, accent text)
     accent soft   #F0DFC9  (step-number background)
     corner radius 12px     (buttons) */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: #FAF6EE;
  color: #201C15;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Brand / logo ---- */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  font-family: "Newsreader", serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.brand__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1F8A5B;
  box-shadow: 0 0 0 4px #DCEFE3;
  flex: 0 0 auto;
  position: relative;
  top: -1px;
}

.masthead {
  padding: 30px 0 20px;
}

/* ---- Headings ---- */

.h1 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

.h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-size: clamp(1.5rem, 3.5vw, 2.05rem);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  padding: 56px 0 0;
  background: #FAF6EE;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #995C17;
  margin-bottom: 16px;
}

.hero__lead {
  font-size: 1.16rem;
  color: #3a3226;
  max-width: 62ch;
  margin: 0 0 1.1em;
}

/* ---- Links ---- */

a.link {
  color: #995C17;
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a.link:hover {
  text-decoration-thickness: 2px;
}

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

.section {
  padding: 44px 0;
}

.section--intro {
  padding: 4px 0 44px;
}

.section--band {
  background: #F2EADB;
  border-top: 1px solid #E7DDC9;
  border-bottom: 1px solid #E7DDC9;
}

.section p {
  margin: 0 0 1.1em;
}

.section p:last-of-type {
  margin-bottom: 0;
}

.muted {
  color: #6E6558;
}

.lead-xl {
  font-size: 1.22rem;
  margin: 0;
  font-weight: 400;
}

.constrain {
  max-width: 60ch;
}

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

.btn-row {
  margin: 26px 0 0;
  text-align: center;
}

.btn-row--steps {
  margin: 26px 0 8px;
}

.btn-row--testimonials {
  margin: 28px 0 8px;
}

.btn {
  display: inline-block;
  background: #1F8A5B;
  color: #fff;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(31, 138, 91, 0.24);
}

/* ---- How it works ---- */

.steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.steps__num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F0DFC9;
  color: #995C17;
  font-family: "Newsreader", serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: 2px;
}

.steps p {
  margin: 0;
  color: #3a3226;
}

/* ---- Phone mock-up ---- */

.phone-stage {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.phone {
  width: 344px;
  max-width: 90vw;
  background: #0f0f10;
  border-radius: 58px;
  padding: 14px;
  box-shadow: 0 32px 72px rgba(60, 45, 20, 0.24), 0 8px 20px rgba(60, 45, 20, 0.12);
}

.phone__screen {
  position: relative;
  background: #fff;
  border-radius: 46px;
  overflow: hidden;
  height: 764px;
}

.phone__notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 30px;
  background: #000;
  border-radius: 16px;
  z-index: 3;
}

.phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.mail-head {
  padding: 14px 20px 14px;
  border-bottom: 1px solid #eee;
}

.mail-head__subject {
  font-family: "Newsreader", serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: #1a1a1a;
  line-height: 1.25;
}

.mail-from {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
}

.mail-from__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #DCEFE3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mail-from__avatar span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1F8A5B;
}

.mail-from__meta {
  flex: 1;
  min-width: 0;
}

.mail-from__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.mail-from__name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.92rem;
}

.mail-from__time {
  color: #999;
  font-size: 0.76rem;
  flex: 0 0 auto;
}

.mail-from__addr {
  color: #6E6558;
  font-size: 0.8rem;
  margin-top: 1px;
}

.mail-from__addr--to {
  color: #999;
}

.mail-body {
  padding: 16px 20px 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mail-body__greeting {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.5;
}

.mail-item {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 15px 16px;
  margin: 0 0 14px;
}

.mail-item:last-child {
  margin: 0;
}

.mail-item__title {
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.mail-item__source {
  margin: 3px 0 0;
  color: #999;
  font-size: 12.5px;
}

.mail-item__why {
  margin: 9px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #333;
}

.mail-item__summary {
  margin: 9px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #555;
}

.mail-item__why b,
.mail-item__summary b {
  color: #1a1a1a;
}

.mail-item__link {
  margin: 10px 0 0;
  font-size: 13.5px;
  color: #995C17;
  font-weight: 600;
}

.mail-item__feedback {
  margin: 9px 0 0;
  font-size: 12px;
  color: #999;
}

.mail-item__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #8a5a00;
  background: #fff4d6;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.phone__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff 82%);
  pointer-events: none;
}

.phone-caption {
  text-align: center;
  color: #6E6558;
  font-size: 0.95rem;
  margin: 20px 0 0;
}

/* ---- Callout / wildcard ---- */

.callout {
  background: #FAF6EE;
  border: 1px solid #E7DDC9;
  border-left: 4px solid #C4761E;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 10px;
  color: #3a3226;
}

/* ---- Before / after compare ---- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.compare-card {
  border-radius: 20px;
  padding: 28px 26px;
}

.compare-card--before {
  background: #F2EADB;
  border: 1px solid #E7DDC9;
}

.compare-card--after {
  background: #1F8A5B;
  box-shadow: 0 16px 38px rgba(31, 138, 91, 0.22);
}

.compare-card__label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.compare-card--before .compare-card__label {
  color: #8A8072;
}

.compare-card--after .compare-card__label {
  color: rgba(255, 255, 255, 0.72);
}

.compare-card__title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.compare-card--before .compare-card__title {
  color: #201C15;
}

.compare-card--after .compare-card__title {
  color: #fff;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.compare-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.4;
}

.compare-card--before .compare-list li {
  color: #4A4335;
}

.compare-card--after .compare-list li {
  color: rgba(255, 255, 255, 0.93);
}

.compare-ico {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.compare-card--before .compare-ico {
  background: #9B9284;
  color: #fff;
}

.compare-card--after .compare-ico {
  background: #FAF6EE;
  color: #1F8A5B;
}

@media (max-width: 620px) {
  .compare {
    grid-template-columns: 1fr;
  }
}

/* ---- Pricing ---- */

.price-card {
  background: #FAF6EE;
  border: 1px solid #E7DDC9;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(60, 45, 20, 0.05);
}

.price-card__amount {
  font-family: "Newsreader", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #201C15;
  line-height: 1;
}

.price-card__sub {
  color: #6E6558;
  font-size: 0.98rem;
  margin-top: 2px;
}

.price-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.price-list li {
  display: flex;
  gap: 10px;
  color: #3a3226;
  font-size: 1rem;
}

.price-list li span {
  color: #995C17;
  font-weight: 700;
}

.price-card .btn-row {
  margin: 22px 0 0;
  text-align: left;
}

/* ---- Testimonials ---- */

.quotes {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.quote {
  background: #FAF6EE;
  border: 1px solid #E7DDC9;
  border-radius: 12px;
  padding: 18px 22px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.14rem;
  color: #2c261c;
}

.quote__mark {
  color: #C4761E;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
}

.quote__mark--open {
  margin-right: 0.16em;
}

.quote__mark--close {
  margin-left: 0.14em;
}

/* ---- About ---- */

.about {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about__photo {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(60, 45, 20, 0.14);
}

.about p {
  margin: 0;
}

/* ---- Footer ---- */

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid #E7DDC9;
  color: #6E6558;
  font-size: 0.92rem;
}

.site-footer .brand {
  color: #201C15;
  margin-bottom: 8px;
}
