/* ============================================================
   Practical Wood Projects — Global Styles (v2)
   Design intent: a trustworthy, slightly old-school woodworking
   publication. Warm off-white paper, charcoal ink, deep green CTAs,
   realistic project photos. Optimized for older readers on mobile.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --c-paper:        #fbf7f0;   /* page background */
  --c-cream:        #f3ead9;   /* warm surface */
  --c-cream-dark:   #ebdfc4;   /* deeper warm surface */
  --c-card:         #ffffff;   /* raised card */
  --c-border:       #d8c8a8;
  --c-border-soft:  #e6dcc4;

  --c-ink:          #1a1208;   /* primary text */
  --c-ink-2:        #4a3520;   /* secondary text */
  --c-ink-3:        #6b4f33;   /* tertiary / muted */

  --c-wood:         #8a6a3d;
  --c-wood-dark:    #4a3520;

  --c-green:        #1f5d3a;   /* primary action */
  --c-green-dark:   #15452a;   /* hover */
  --c-green-soft:   #e7f1ea;   /* soft selected state */

  --c-gold:         #b07c1a;   /* accent / focus */
  --c-gold-bright:  #e8b81a;   /* bright yellow for survey answer buttons */
  --c-gold-ink:     #1a1208;   /* dark text on bright yellow */

  /* Wood-grain accent (CSS-only) */
  --wood-grain:
    repeating-linear-gradient(
      90deg,
      rgba(138, 106, 61, 0.12) 0px,
      rgba(138, 106, 61, 0.12) 1px,
      transparent 1px,
      transparent 6px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(74, 53, 32, 0.10) 0px,
      rgba(74, 53, 32, 0.10) 2px,
      transparent 2px,
      transparent 12px
    ),
    linear-gradient(180deg, #c9a878 0%, #a07e4d 50%, #8a6a3d 100%);

  /* Type */
  --ff-serif:  Georgia, "Iowan Old Style", "Times New Roman", Times, serif;
  --ff-sans:   -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;

  /* Sizes (fluid) */
  --fs-base:   clamp(17px, 1.05vw + 14px, 19px);
  --fs-lead:   clamp(18px, 1.1vw + 15px, 20px);
  --fs-h2:     clamp(26px, 2.4vw + 14px, 36px);
  --fs-h1:     clamp(32px, 3.5vw + 14px, 48px);

  /* Mobile-safe headline clamp (used on hero/intro) */
  --fs-hero-h1: clamp(1.875rem, 5.5vw, 3.25rem);  /* ~30px..52px */

  /* Spacing */
  --gap-xs: 8px;
  --gap-sm: 14px;
  --gap:    22px;
  --gap-lg: 36px;
  --gap-xl: 56px;
  --gap-2xl: 80px;

  /* Radii (rounded for a warmer, more polished feel) */
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  20px;

  /* Shadows (subtle, warm-toned) */
  --shadow-sm: 0 1px 3px rgba(43, 29, 16, 0.08);
  --shadow:    0 4px 16px rgba(43, 29, 16, 0.10);
  --shadow-lg: 0 12px 36px rgba(43, 29, 16, 0.14);
  --shadow-img: 0 6px 18px rgba(43, 29, 16, 0.12);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
}

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

a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--c-green-dark); }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection {
  background: var(--c-green-soft);
  color: var(--c-ink);
}

/* ---------- Layout containers ---------- */
.container        { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 22px; }
.container-thin   { max-width: 640px;  margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
}

.brand-name {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c-ink);
}

.brand-tag {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--c-ink-3);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.brand:hover .brand-name { color: var(--c-ink); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
}

/* Compact header: just logo + primary CTA. Used on the homepage
   to keep the top of the page calm on mobile Meta traffic. */
.nav-compact {
  gap: 12px;
}

.nav a {
  color: var(--c-ink-2);
  text-decoration: none;
  letter-spacing: 0.2px;
}
.nav a:hover { color: var(--c-green); text-decoration: underline; }

.nav .nav-cta {
  background: var(--c-green);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--r);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}
.nav .nav-cta:hover { background: var(--c-green-dark); color: #fff; text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: #241808;
  color: #e6d6b8;
  padding: 44px 0 22px;
  margin-top: var(--gap-2xl);
  font-size: 15px;
}

.site-footer a { color: #f0d9a8; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
}

.footer-brand-block .brand-name { color: #fff; }
.footer-brand-block .brand-tag  { color: #b9a584; }

.footer-about {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #c9b894;
  max-width: 360px;
}

.footer-heading {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b9a584;
  margin: 0 0 12px;
  font-weight: 700;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #3a2810;
  text-align: center;
  font-size: 13px;
  color: #9c8866;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--c-ink);
  line-height: 1.18;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: 22px; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-wood);
  margin-bottom: 12px;
  font-weight: 800;
  background: var(--c-cream);
  padding: 5px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--gap-lg);
}
.section-heading h2 { margin-top: 4px; }
.section-heading .lede {
  color: var(--c-ink-2);
  font-size: var(--fs-lead);
  margin: 8px auto 0;
  max-width: 580px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background-color: var(--c-green);
  color: #ffffff;
  border-color: var(--c-green);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #ffffff;
}

.btn-secondary {
  background-color: var(--c-card);
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--c-green);
  color: #ffffff;
}

.btn-gold {
  background-color: var(--c-gold);
  color: #ffffff;
  border-color: var(--c-gold);
}
.btn-gold:hover,
.btn-gold:focus {
  background-color: #8e6012;
  border-color: #8e6012;
  color: #ffffff;
}

.btn-green-outline {
  background-color: transparent;
  color: var(--c-green);
  border-color: var(--c-gold);
}
.btn-green-outline:hover,
.btn-green-outline:focus {
  background-color: var(--c-green);
  color: #ffffff;
  border-color: var(--c-green);
}

/* Yellow survey answer button — high contrast, dominant CTA */
.btn-yellow {
  background-color: var(--c-gold-bright);
  color: var(--c-gold-ink);
  border: 2px solid #c89a14;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-yellow:hover,
.btn-yellow:focus {
  background-color: #d9a915;
  border-color: #a37d10;
  color: var(--c-gold-ink);
}

.btn-ghost {
  background-color: transparent;
  color: var(--c-ink-2);
  border-color: var(--c-border);
}
.btn-ghost:hover,
.btn-ghost:focus {
  background-color: var(--c-cream);
  color: var(--c-ink);
  border-color: var(--c-ink-3);
}

.btn-block  { display: flex; width: 100%; }
.btn-large  { min-height: 64px; font-size: 19px; padding: 18px 28px; }
.btn-small  { min-height: 42px; font-size: 14px; padding: 9px 16px; }

/* Visible focus state for keyboard accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
.quiz-option:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}

/* ---------- Section spacing ---------- */
.section        { padding: 64px 0; }
.section-tight  { padding: 32px 0; }
.section-large  { padding: 88px 0; }

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

/* ---------- Hero (split) ---------- */
.hero {
  padding: 32px 0 28px;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-border-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

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

/* Mobile-first stacked hero used on the homepage. */
.hero-stack {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-stack .eyebrow {
  margin: 0 0 12px;
}

.hero-stack h1 {
  font-size: var(--fs-hero-h1);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-stack p.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink-2);
  max-width: 540px;
  margin: 0 auto 22px;
  font-family: var(--ff-sans);
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 18px;
}

.hero-cta-stack .btn { width: 100%; }

.trust-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-3);
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-chips svg { color: var(--c-green); flex: 0 0 auto; }

.hero h1 {
  font-size: var(--fs-hero-h1);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero p.lede {
  font-size: var(--fs-lead);
  color: var(--c-ink-2);
  max-width: 540px;
  margin: 0 0 26px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-ink-3);
  flex-wrap: wrap;
}

.hero-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg { flex: 0 0 auto; }

.hero-figure {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-cream-dark);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  margin: 8px auto 0;
  max-width: 820px;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-figure .figure-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(26, 18, 8, 0.85);
  color: #f0d9a8;
  padding: 8px 12px;
  border-radius: var(--r);
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ---------- Category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

.category-card {
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  padding: 18px 18px;
  text-align: left;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.category-card .icon {
  flex: 0 0 42px;
  height: 42px;
  background: var(--c-cream);
  border: 1px solid var(--c-border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  flex-shrink: 0;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: var(--ff-serif);
  line-height: 1.2;
}

.category-card p {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.45;
  margin: 0;
}

/* ---------- Project cards (image-led) ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.project-card {
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.project-card .thumb {
  aspect-ratio: 4 / 3;
  background: var(--c-cream-dark);
  overflow: hidden;
}

.project-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card .body {
  padding: 16px 18px 18px;
}

.project-card h3 {
  font-size: 18px;
  margin: 0 0 4px;
}

.project-card .meta {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--c-ink-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Benefit row ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-top: var(--gap);
}

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

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px;
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.benefit:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit .icon {
  flex: 0 0 36px;
  height: 36px;
  color: var(--c-green);
}

.benefit h3 {
  font-size: 18px;
  margin: 0 0 4px;
}

.benefit p {
  font-size: 15px;
  font-family: var(--ff-sans);
  color: var(--c-ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Check list ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 var(--gap);
}

.checklist li {
  position: relative;
  padding: 6px 0 6px 30px;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  background: var(--c-green);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  background:
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-dark) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  max-width: 640px;
  margin: 0 auto 12px;
}

.cta-band p {
  font-size: var(--fs-lead);
  color: var(--c-ink-2);
  max-width: 540px;
  margin: 0 auto var(--gap);
}

/* ============================================================
   QUIZ PAGE (/free-plans/)
   ============================================================ */

.quiz-page-hero {
  background:
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-paper) 100%);
  border-bottom: 1px solid var(--c-border-soft);
  padding: 52px 0 28px;
}

.quiz-page-hero .hero-grid {
  grid-template-columns: 1.05fr 1fr;
}

.quiz-page-hero h1 {
  font-size: clamp(30px, 3.5vw + 12px, 46px);
  line-height: 1.1;
  margin: 8px 0 14px;
}

.quiz-page-hero .lede {
  font-size: var(--fs-lead);
  color: var(--c-ink-2);
  max-width: 520px;
  margin: 0 0 18px;
}

.quiz-page-hero .lede strong { color: var(--c-ink); }

.quiz-bullets {
  max-width: 420px;
  margin: 0 0 22px;
  font-size: 16px;
}

.quiz-meta {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-ink-3);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quiz-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 4 / 3.4;
}

.quiz-collage .thumb {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--c-cream-dark);
  position: relative;
}

.quiz-collage .thumb.tall {
  grid-row: 1 / 3;
}

.quiz-collage .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-collage .thumb .caption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(26, 18, 8, 0.82);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-sm);
}

.quiz-card-wrap {
  max-width: 720px;
  margin: -56px auto 0;
  padding: 0 22px 56px;
  position: relative;
  z-index: 2;
}

.quiz-card {
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 36px 36px 30px;
}

@media (max-width: 600px) {
  .quiz-card { padding: 26px 22px 22px; }
}

.progress-wrap {
  margin: 0 0 18px;
  text-align: center;
}

.progress-label {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-wood);
  font-weight: 800;
  margin-bottom: 8px;
}

.progress-bar {
  background: var(--c-cream-dark);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--c-border-soft);
}

.progress-fill {
  background: var(--c-green);
  height: 100%;
  width: 33.33%;
  transition: width 0.3s ease;
}

.quiz-step { display: none; }
.quiz-step.is-active { display: block; }

.quiz-question {
  text-align: center;
  margin: 8px 0 18px;
}

.quiz-question h2 {
  font-size: 26px;
  margin: 0;
  line-height: 1.2;
}

.quiz-options {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  background: var(--c-paper);
  border: 2px solid var(--c-border-soft);
  border-radius: var(--r);
  padding: 18px 20px;
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  min-height: 64px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.quiz-option:hover {
  border-color: var(--c-green);
  background-color: var(--c-cream);
}

.quiz-option.is-selected {
  border-color: var(--c-green);
  background-color: var(--c-green-soft);
  color: var(--c-ink);
}

.quiz-option .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  margin-right: 14px;
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 28px;
}

.quiz-next {
  text-align: center;
  margin: 4px 0 4px;
}

.quiz-next .btn {
  min-width: 200px;
  opacity: 0.45;
  pointer-events: none;
}

.quiz-next.is-ready .btn {
  opacity: 1;
  pointer-events: auto;
}

.reassurance-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--gap);
  max-width: 720px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.reassurance-row .item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-2);
}

.reassurance-row .item .icon { color: var(--c-green); flex: 0 0 22px; }

/* ---------- Email opt-in final step ---------- */
.optin-heading {
  text-align: center;
  margin-top: 4px;
}

.optin-heading .eyebrow { color: var(--c-green); background: var(--c-green-soft); border-color: var(--c-green-soft); }

.optin-heading h2 {
  margin: 6px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.optin-form {
  background: var(--c-paper);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r);
  padding: 20px 18px 14px;
  margin: 12px 0 4px;
}

.optin-form label {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--c-ink);
}

.optin-input {
  width: 100%;
  padding: 16px 14px;
  font-size: 18px;
  font-family: var(--ff-sans);
  border: 2px solid var(--c-border);
  border-radius: var(--r);
  background: #fff;
  color: var(--c-ink);
  margin-bottom: 12px;
}

.optin-input:focus {
  border-color: var(--c-green);
  outline: none;
}

.optin-form button { width: 100%; }

.optin-consent {
  font-size: 12px;
  color: var(--c-ink-3);
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
  font-family: var(--ff-sans);
}

.optin-error {
  display: none;
  background: #fde8d8;
  border: 1px solid #c14a2a;
  color: #6b1e0c;
  padding: 10px 12px;
  border-radius: var(--r);
  margin-bottom: 10px;
  font-size: 14px;
  font-family: var(--ff-sans);
}

.optin-error.is-visible { display: block; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* "What's inside" thumbnails row */
.whats-inside {
  padding: 56px 0 0;
}

.whats-inside .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
}

.whats-inside .item {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--c-ink-2);
}

.whats-inside .thumb {
  aspect-ratio: 1;
  background: var(--c-cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
}

.whats-inside .thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   DOWNLOAD PAGE (/download/)
   ============================================================ */

.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  margin: 56px 0 28px;
}

@media (max-width: 900px) {
  .download-grid { grid-template-columns: 1fr; padding: 32px 26px; }
}

.download-grid h1 {
  font-size: clamp(28px, 2.6vw + 12px, 38px);
  margin: 0 0 12px;
}

.download-grid p {
  font-size: var(--fs-lead);
  color: var(--c-ink-2);
  margin: 0 0 22px;
}

.download-grid .download-note {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-ink-3);
  font-style: italic;
  margin-top: 14px;
}

.pdf-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 0.78;
  background: #fff;
  border: 1px solid #c9b894;
  border-radius: var(--r-lg);
  box-shadow:
    0 18px 40px rgba(43, 29, 16, 0.18),
    0 2px 6px rgba(43, 29, 16, 0.08);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-serif);
  color: var(--c-ink);
  transform: rotate(-2deg);
  overflow: hidden;
}

.pdf-mockup::before {
  /* book spine shadow */
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(43, 29, 16, 0.15);
}

.pdf-mockup .pdf-label {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-wood);
  font-weight: 800;
  border: 1px solid var(--c-border);
  padding: 4px 8px;
  display: inline-block;
  align-self: flex-start;
  border-radius: 2px;
  margin-bottom: 18px;
}

.pdf-mockup .pdf-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 10px;
}

.pdf-mockup .pdf-subtitle {
  font-style: italic;
  color: var(--c-ink-2);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.pdf-mockup .pdf-projects {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--c-ink-2);
  border-top: 1px solid var(--c-border);
  padding-top: 12px;
  line-height: 1.6;
}

.pdf-mockup .pdf-projects li {
  padding: 2px 0;
}

.pdf-mockup .pdf-badge {
  margin-top: auto;
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--c-wood);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--c-border);
  padding-top: 12px;
}

/* Ted's bridge */
.affiliate-bridge {
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  margin: 36px 0 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bridge-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  margin: 8px 0 18px;
}

@media (max-width: 800px) {
  .bridge-grid { grid-template-columns: 1fr; }
  .bridge-figure { order: -1; max-width: 360px; margin: 0 auto; }
}

.bridge-text { text-align: center; }

.bridge-figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  border: 1px solid var(--c-border-soft);
}

.bridge-figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.affiliate-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-wood);
}

.affiliate-bridge h2 {
  margin: 0 0 8px;
  text-align: center;
}

.affiliate-bridge .lede {
  text-align: center;
  font-size: var(--fs-lead);
  color: var(--c-ink-2);
  max-width: 620px;
  margin: 0 auto 20px;
}

.affiliate-bridge .checklist {
  max-width: 540px;
  margin: 8px auto 24px;
}

.affiliate-bridge .btn-wrap {
  text-align: center;
  margin: 22px 0 6px;
}

.affiliate-disclosure-inline {
  font-size: 13px;
  color: var(--c-ink-3);
  text-align: center;
  max-width: 620px;
  margin: 14px auto 0;
  font-style: italic;
  font-family: var(--ff-sans);
}

.prefer-free {
  text-align: center;
  margin: 36px 0 0;
  font-size: 17px;
  color: var(--c-ink-2);
  font-family: var(--ff-sans);
}

.prefer-free h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-family: var(--ff-serif);
}

/* ============================================================
   LEGAL / GENERIC PAGES
   ============================================================ */

.legal-page { padding: 44px 0 16px; }
.legal-page h1 { text-align: center; margin-bottom: 24px; }
.legal-page h2 { margin-top: 28px; font-size: 22px; }
.legal-page p, .legal-page li {
  font-size: 17px;
  line-height: 1.65;
}
.legal-page ul { padding-left: 22px; }
.legal-page code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; }
.updated-line {
  text-align: center;
  font-size: 14px;
  color: var(--c-ink-3);
  font-style: italic;
  font-family: var(--ff-sans);
  margin-bottom: 18px;
}

.contact-form {
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  margin: 22px 0 12px;
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 14px;
  margin: 14px 0 6px;
  color: var(--c-ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  font-size: 16px;
  font-family: var(--ff-sans);
  border: 2px solid var(--c-border);
  border-radius: var(--r);
  background: var(--c-paper);
  color: var(--c-ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================================
   Mobile fine-tuning
   ============================================================ */

@media (max-width: 600px) {
  body { font-size: 18px; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .quiz-question h2 { font-size: 22px; }
  .quiz-option { font-size: 16px; padding: 14px 14px; min-height: 56px; }
  .btn { font-size: 16px; }
  .btn-large { font-size: 18px; min-height: 60px; }
  .category-grid, .project-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 44px 0; }
  .hero { padding: 36px 0 28px; }
  .nav { gap: 12px; font-size: 13px; }
  .nav .nav-cta { padding: 7px 12px; }
  .pdf-mockup { transform: none; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   INTRO LANDING PAGE — /free-plans/
   Compact, mobile-first, ONE job: drive to /survey/
   ============================================================ */

.intro-page {
  background: var(--c-paper);
  min-height: 100vh;
}

.intro-header {
  padding: 14px 16px 4px;
  text-align: center;
}

.intro-header .brand-name {
  font-size: 14px;
  letter-spacing: 1.8px;
}

.intro-header .brand-tag {
  font-size: 12px;
  margin-top: 2px;
}

.intro-main {
  padding: 4px 16px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.intro-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-wood);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-align: center;
}

.intro-h1 {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero-h1);
  font-weight: 700;
  line-height: 1.12;
  color: var(--c-ink);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.intro-sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-ink-2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 18px;
  font-family: var(--ff-sans);
}

.intro-visual {
  margin: 0 0 18px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--c-cream-dark);
  box-shadow: var(--shadow-img);
  border: 1px solid var(--c-border-soft);
}

.intro-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.intro-support {
  text-align: center;
  font-size: 15px;
  color: var(--c-ink-3);
  margin: 0 0 18px;
  font-family: var(--ff-sans);
}

.intro-cta-wrap {
  margin: 0 0 8px;
}

.intro-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--c-green);
  border: 2px solid var(--c-green);
  border-radius: var(--r);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.intro-cta:hover,
.intro-cta:focus {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: #ffffff;
}

.intro-trust {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-ink-3);
  margin: 14px 0 0;
}

/* ===== How it works (below the fold) ===== */
.how-it-works {
  padding: 48px 16px 56px;
  max-width: 720px;
  margin: 0 auto;
}

.how-it-works h2 {
  text-align: center;
  font-size: 24px;
  margin: 0 0 24px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-card);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r);
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
}

.how-step .num {
  flex: 0 0 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-green);
  color: #fff;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 17px;
  border-radius: 50%;
}

.how-step h3 {
  font-size: 17px;
  margin: 0 0 4px;
  font-family: var(--ff-serif);
}

.how-step p {
  font-size: 14px;
  color: var(--c-ink-3);
  margin: 0;
  font-family: var(--ff-sans);
  line-height: 1.5;
}

.how-cta-bottom {
  text-align: center;
  margin: 32px 0 0;
}

@media (min-width: 700px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .how-step { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== Intro footer (compact) ===== */
.intro-footer {
  background: #241808;
  color: #c9b894;
  padding: 28px 16px;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 13px;
}

.intro-footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.intro-footer-links a {
  color: #f0d9a8;
  text-decoration: none;
}

.intro-footer-links a:hover { text-decoration: underline; color: #fff; }

.intro-footer-copy {
  font-size: 12px;
  color: #9c8866;
  margin: 0;
}

/* ============================================================
   DEDICATED SURVEY PAGE — /survey/
   Mobile-first. No decorative graphics. Brand → question → buttons.
   ============================================================ */

.survey-page {
  background: var(--c-paper);
  min-height: 100vh;
  padding: 0 16px;
}

/* Wood-grain brand strip at the top of the survey page.
   Replaces the Bucks-style logo banner with a CSS-only wood
   texture that keeps the PWP brand name. */
.survey-wood-strip {
  position: relative;
  margin: 0 -16px 18px;
  padding: 18px 16px 14px;
  background: var(--wood-grain);
  border-bottom: 1px solid rgba(43, 29, 16, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.survey-wood-strip .brand-name {
  font-size: 16px;
  letter-spacing: 1.4px;
  color: #1a1208;
  background: rgba(251, 247, 240, 0.92);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}

.survey-wood-strip .brand-tag {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #2b1d10;
  margin-top: 2px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  max-width: 100%;
  overflow-wrap: break-word;
}

.survey-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 4px 0 48px;
}

@media (min-width: 700px) {
  .survey-wrap { max-width: 620px; padding: 28px 0 64px; }
}

.survey-brand {
  text-align: center;
  padding: 6px 0 18px;
  border-bottom: 1px solid var(--c-border-soft);
  margin-bottom: 22px;
}

.survey-brand .brand-name {
  font-size: 13px;
  letter-spacing: 1.8px;
}

.survey-brand .brand-tag {
  font-size: 11px;
  margin-top: 1px;
}

.survey-step { display: none; }
.survey-step.is-active { display: block; }

.survey-progress {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-wood);
  text-align: center;
  margin-bottom: 10px;
}

.survey-progress-bar {
  height: 6px;
  background: var(--c-cream-dark);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--c-border-soft);
  margin-bottom: 22px;
}

.survey-progress-fill {
  background: var(--c-green);
  height: 100%;
  width: 33.33%;
  transition: width 0.3s ease;
}

.survey-question {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.15;
  color: #1a1208;
  text-align: center;
  text-transform: uppercase;
  margin: 4px 0 18px;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (min-width: 700px) {
  .survey-question { font-size: 34px; margin-bottom: 24px; }
}

.survey-answers {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.survey-answer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  min-height: 64px;
  padding: 16px 18px;
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--c-gold-ink);
  background: var(--c-gold-bright);
  border: 2px solid #c89a14;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.06s ease;
  -webkit-tap-highlight-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (min-width: 700px) {
  .survey-answer {
    min-height: 70px;
    font-size: 20px;
  }
}

.survey-answer:hover {
  background: #d9a915;
  border-color: #a37d10;
}

.survey-answer:active {
  transform: scale(0.99);
}

.survey-answer.is-selected {
  background: #c89a14;
  border-color: #1a1208;
  box-shadow: 0 0 0 3px rgba(26, 18, 8, 0.30);
}

.survey-back {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-ink-3);
  background: none;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
  text-decoration: underline;
}

.survey-back:hover { color: var(--c-ink); }

/* Email step on /survey/ */
.survey-email-step .optin-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-green);
  background: var(--c-green-soft);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.survey-email-step .optin-heading-row {
  text-align: center;
  margin-bottom: 18px;
}

.survey-email-step .optin-h2 {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-ink);
  margin: 0 0 8px;
}

@media (min-width: 700px) {
  .survey-email-step .optin-h2 { font-size: 30px; }
}

.survey-email-step .optin-sub {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--c-ink-2);
  margin: 0;
}

.survey-email-step .optin-input {
  width: 100%;
  min-height: 60px;
  padding: 16px 16px;
  font-size: 18px;
  font-family: var(--ff-sans);
  border: 2px solid var(--c-border);
  border-radius: var(--r);
  background: #fff;
  color: var(--c-ink);
  margin: 6px 0 12px;
}

.survey-email-step .optin-input:focus {
  border-color: var(--c-green);
  outline: none;
}

.survey-email-step .submit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--c-gold);
  border: 2px solid var(--c-gold);
  border-radius: var(--r);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.survey-email-step .submit-cta:hover,
.survey-email-step .submit-cta:focus {
  background: #8e6012;
  border-color: #8e6012;
}

.survey-email-step .submit-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.survey-email-step .consent {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: var(--c-ink-3);
  line-height: 1.5;
  text-align: center;
  margin: 12px 0 0;
}

.survey-email-step .optin-error {
  display: none;
  background: #fde8d8;
  border: 1px solid #c14a2a;
  color: #6b1e0c;
  padding: 10px 12px;
  border-radius: var(--r);
  margin: 0 0 10px;
  font-size: 14px;
  font-family: var(--ff-sans);
}

.survey-email-step .optin-error.is-visible { display: block; }

/* ============================================================
   GLOBAL — keep headlines from clipping on small phones
   ============================================================ */
h1, h2, h3, h4, p {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Make sure no horizontal scrolling on the body */
html, body { overflow-x: hidden; }

