/* ============================================================
   Peter Ricciardi — Mind Shift. Profit Lift.
   Rebuilt to match the Figma file (desktop 1440 / mobile 440).
   Font: Acumin VF in Figma → Inter substitute (closest free face;
   Acumin is an Adobe Fonts family and can be swapped in via a
   Typekit kit if a license is available).
   ============================================================ */

:root {
  --blue: #0eb3dd;
  --ink: #232323;
  --ink-soft: #444444;
  --gray: #303030;
  --bg: #f4f4f4;
  --dark: #0e0e0e;
  --white: #ffffff;
  --max: 1440px;
  --pad: clamp(20px, 6.4vw, 92px);   /* fluid side inset; = 92px at 1440 */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 132px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Sections are full-bleed (backgrounds span the whole viewport); their
   inner content is centred at the 1440px design canvas. --canvas is the
   content width (1440 minus the 92px design insets) so wide screens keep
   the same content width as the design with the background extending out. */
:root { --canvas: 1256px; }

/* shared inset that also centres content at the canvas on wide screens */
.pad {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.accent { color: var(--blue); }

/* ---------- Section tag (mark + label) ---------- */
.tag {
  display: inline-flex;
  align-items: flex-start;
  gap: 15px;
}
.tag img { width: 21px; height: 24px; flex-shrink: 0; }
.tag span {
  font-weight: 500;            /* Acumin Medium */
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #000;
}
.tag-light span { color: var(--bg); }

/* ---------- ORDER THE BOOK button ---------- */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 284px;
  max-width: 100%;
  padding: 20px 28px;
  background: #000;
  color: var(--bg);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -1px;
  text-transform: uppercase;
  transition: background .2s ease;
}
.btn-book:hover { background: var(--blue); }

/* ============================================================
   Tag banner   (Figma: bg #000, 14px Acumin Bold, tracking 2px)
   ============================================================ */
.tag-banner { background: #000; padding: 18px 24px; text-align: center; }
.tag-banner p {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
}
.tag-banner .dot { color: var(--blue); }

/* ============================================================
   Nav   (Figma: bg rgba(244,244,244,.9), logo 200x41, items 16px Bold)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
  max-width: 1196px;       /* centred → 122px inset at 1440, fluid below */
  margin: 0 auto;
  padding: 0 20px;
}
.logo img { width: 200px; height: 41px; object-fit: contain; }
.nav-menu { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav-menu-links { display: flex; gap: clamp(12px, 1.4vw, 24px); }
.nav-menu-logo, .nav-menu-cta { display: none; }   /* desktop: only the link row */
.nav-menu-links a {
  font-weight: 700;
  font-size: 15px;
  line-height: 28px;
  color: var(--gray);
  transition: color .2s ease;
}
.nav-menu-links a:hover { color: var(--blue); }

/* desktop ORDER THE BOOK button on the right of the nav */
.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: #000;
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 28px; background: #000; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero   (Title+text: pt70 pb250, body 1186 centred, gap 80)
   ============================================================ */
.hero { background: var(--white); }
.hero-body {
  width: min(1186px, 100% - 2 * var(--pad));
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: clamp(80px, 10vw, 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 5.5vw, 80px);
}
.hero-title-group { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.eye { width: clamp(104px, 9.2vw, 128px); display: block; }
.eye img { width: 100%; height: auto; display: block; }

.hero-title {
  width: 100%;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: clamp(34px, 4.85vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.072em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}
.hero-title .accent { font-size: clamp(36px, 5.15vw, 72px); line-height: 1.06; }

/* Bio */
.bio { width: 832px; max-width: 100%; }
.bio-row { display: flex; gap: 28px; align-items: flex-start; }
.bio-photo { width: 152px; height: 152px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.bio-text {
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.34;
  color: var(--ink-soft);
}
.bio-text strong { font-weight: 600; color: var(--ink-soft); }
.bio-sign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.signature {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.bio-sign .mark { width: 21px; height: 24px; }
.bio-line { display: block; height: 1px; width: 100%; background: var(--ink); margin-top: 9px; }

/* Dark photo band */
.hero-band {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url("../assets/band-bg.jpg") center / cover no-repeat;
}
.hero-band-inner {
  position: relative;
  min-height: 467px;
  display: flex;
  align-items: flex-end;              /* bottom-align text to ~the book's bottom */
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 60px);
  padding: 64px var(--pad) clamp(70px, 7.5vw, 96px);
  max-width: 1306px;
  margin: 0 auto;
}
.band-book {
  position: absolute;
  left: var(--pad);
  top: -90px;                  /* book pokes up above the band, into the white hero */
  width: clamp(240px, 28vw, 390px);
  z-index: 5;                  /* sits on top of everything */
}
.band-book img { width: 100%; }
.band-text {
  width: 738px;
  max-width: 56%;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);    /* even spacing between every item */
}
.band-text .mark { width: 21px; height: 24px; }
.band-kicker {
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}
.band-head {
  font-weight: 700;
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.band-head .period { font-size: .8em; }
.band-sub {
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.5;
}
.band-sub strong { font-weight: 400; }

/* ============================================================
   Meet Peter   (bg #f4f4f4, pad 92, pt77 pb78, content 1256)
   ============================================================ */
.meet { background: var(--bg); }
.meet .pad { padding-top: 77px; padding-bottom: 78px; }
.meet .tag { margin-bottom: 33px; }
.meet-all { display: flex; flex-direction: column; gap: 48px; max-width: 1256px; color: var(--ink); }
.meet-grp1 { display: flex; flex-direction: column; gap: 20px; text-transform: uppercase; }
.meet-lead { font-weight: 500; font-size: clamp(26px, 2.9vw, 40px); line-height: 1.2; }
.meet-lead strong { font-weight: 700; }
.meet-sub { font-weight: 400; font-size: clamp(20px, 2vw, 28px); line-height: 1.28; }
.meet-grp2 { display: flex; flex-direction: column; gap: 12px; }
.meet-grp2 p { font-weight: 400; font-size: clamp(17px, 1.7vw, 24px); line-height: 1.34; }
.meet-grp2 em { font-weight: 600; }

/* ============================================================
   Expertise   (bg #0e0e0e)
   ============================================================ */
.expertise { background: var(--dark); }
.expertise-head { padding-top: 78px; padding-bottom: 50px; max-width: 1440px; }
.expertise-head .tag { margin-bottom: 24px; display: flex; }
.expertise-title {
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 20px;
}
.expertise-title .accent { font-weight: 700; }
.expertise-sub {
  font-weight: 600;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--bg);
}

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin-inline: auto; }
.exp-col {
  min-height: 569px;
  padding: 78px clamp(20px, 3vw, 40px) 60px;
  border-right: 1px solid #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;   /* pills/icons/headings line up across columns */
  gap: 24px;
  text-align: center;
}
.exp-col:last-child { border-right: none; }
.pill {
  width: 223px;
  max-width: 100%;
  padding: 8px 0;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--bg);
  text-align: center;
}
.exp-icon { width: 80px; height: 80px; }
.exp-h {
  width: 100%;
  max-width: 319px;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--bg);
}
.exp-h .reg { font-weight: 400; }
.exp-h.exp-italic em { font-weight: 600; }
.exp-p {
  width: 100%;
  max-width: 319px;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: #d6d6d6;
}

/* ============================================================
   Author quote + photo   (bg #f4f4f4, py60)
   ============================================================ */
.author { background: var(--bg); padding: 60px 0 0; position: relative; }
.author-head { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; padding: 0 24px; }
.author-quote {
  width: 1148px;
  max-width: 100%;
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--ink);
}
.author-quote .accent { font-weight: 700; }
.author-sub {
  width: 737px;
  max-width: 100%;
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.34;
  color: var(--ink);
}
.author-sub strong { font-weight: 500; }
.author .btn-book { margin-top: 9px; }
.author-photos {
  position: relative;
  margin-top: clamp(90px, 9vw, 140px);     /* room for the head to rise above the band */
  height: clamp(180px, 20vw, 300px);       /* the photo band */
  background: url("../assets/author-band.jpg") center 38% / cover no-repeat;
  background-color: #cbc7c1;
  overflow: visible;
}
/* Cutout is sized by HEIGHT so it is always taller than the band — Peter's
   head rises above the band into the section above (matches Figma). */
.author-cutout {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: clamp(300px, 31vw, 460px);
  width: auto;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.22));
}

/* ============================================================
   Book details   (bg #f4f4f4, pad92 py78, gap70)
   ============================================================ */
.book {
  background: var(--bg);
  display: flex;
  gap: clamp(32px, 4.8vw, 70px);
  align-items: center;
  padding: clamp(48px, 5.4vw, 78px) max(var(--pad), calc((100% - var(--canvas)) / 2));
}
.book-text { flex: 1.45 1 0; min-width: 0; max-width: 722px; display: flex; flex-direction: column; gap: 20px; }
.book-text .mark { width: 21px; height: 24px; filter: brightness(0); }
.book-copy { display: flex; flex-direction: column; gap: 28px; }
.book-lead {
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  color: var(--ink);
}
.book-lead .black-i { font-weight: 900; color: var(--blue); }
.book-rethink {
  font-weight: 400;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
}
.book-bottom { display: flex; flex-direction: column; gap: 48px; align-items: flex-start; margin-top: 28px; }

/* rethink list — column-major: 3 rows x 2 cols */
.rethink {
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0 20px;
}
.rethink li {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  color: var(--ink);
}
.rethink .arrow { width: 34px; height: 34px; transform: rotate(90deg); flex-shrink: 0; }

.book-cover { flex: 1 1 0; min-width: 0; display: flex; justify-content: center; }
.book-cover img { width: 506px; max-width: 100%; }

/* ============================================================
   Testimonials   (bg #f4f4f4, px77 py60)
   ============================================================ */
.testimonials { background: var(--bg); padding: 60px max(var(--pad), calc((100% - var(--canvas)) / 2)); position: relative; overflow: hidden; }
.testimonials-inner { display: flex; gap: clamp(48px, 11vw, 200px); justify-content: center; }
.t-author {
  flex: 1 1 0;
  min-width: 0;
  max-width: 458px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.t-author h3 { font-weight: 700; font-size: clamp(34px, 3.3vw, 46px); line-height: 1.1; color: var(--blue); }
.t-role { font-weight: 400; font-size: 16px; line-height: 1.3; text-transform: uppercase; color: #808080; margin-top: 4px; }
.t-divider { display: block; width: 120px; height: 2px; background: var(--ink); margin-top: 15px; }

.t-quote { flex: 1 1 0; min-width: 0; max-width: 458px; display: flex; flex-direction: column; gap: 25px; }
.t-mark { width: 30px; height: 16px; }
.t-quote p { font-weight: 300; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.5; color: var(--ink); }
.t-quote p em strong { font-weight: 700; }

/* Book-title italics rendered as faux-oblique: Inter's TRUE italic f/l have
   curled tails that aren't present in the Figma (Acumin) design. Skewing the
   upright glyphs gives the slant without the tails. */
.meet-grp2 em,
.exp-h.exp-italic em,
.book-lead .black-i,
.t-quote p em {
  font-style: normal;
  display: inline-block;
  transform: skewX(-10deg);
}

/* ============================================================
   Company / Ten9Eight7   (bg #0e0e0e, pad92 py78, centred)
   ============================================================ */
.company {
  background: var(--dark);
  padding: 78px var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.company-logo { width: 687px; max-width: 100%; height: auto; }
.company-line { display: block; width: 365px; height: 2px; background: var(--blue); margin: 40px 0 56px; }
.company-lead {
  width: 1070px;
  max-width: 100%;
  font-weight: 500;
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 40px;
}
.company-sub {
  width: 680px;
  max-width: 100%;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.45;
  color: #9f9f9f;
}

/* ============================================================
   Footer   (bg #0e0e0e, pt80 pb99, px ~61)
   ============================================================ */
.footer { background: var(--dark); padding: 80px var(--pad) 99px; }
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 2.5vw, 32px);
  max-width: 1243px;
  margin: 0 auto;
}
.footer-left { flex: 1 1 560px; min-width: 0; max-width: 601px; }
.footer-intro { display: flex; gap: 20px; align-items: flex-start; }
.footer-book { width: 296px; flex-shrink: 0; }
.footer-book img { width: 296px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.footer-looking { flex: 1 1 0; min-width: 0; color: var(--bg); }
.footer-looking strong { font-weight: 700; font-size: clamp(24px, 2.5vw, 34px); line-height: 1.3; display: block; }
.footer-looking .reg { font-weight: 400; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.5; display: block; margin-top: 18px; }

.rethink-footer { margin-top: 20px; gap: 0 20px; }
.rethink-footer li { height: 46px; font-size: 16px; color: var(--bg); }

.footer-blurb { margin-top: 20px; color: var(--bg); max-width: 601px; }
.footer-blurb em { font-weight: 600; font-style: italic; font-size: 18px; line-height: 28px; display: block; }
.footer-blurb strong { font-weight: 500; font-size: 16px; line-height: 28px; }

/* Form */
.footer-form-wrap { flex: 1 1 430px; min-width: 0; }
.contact-form {
  width: 100%;
  max-width: 610px;
  height: 620px;
  border: 1px solid var(--bg);
  border-radius: 20px;
  padding: 50px 43px 40px 41px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  padding: 20px 24px;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b4b4b4; }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--blue); }
.contact-form textarea { resize: none; flex: 1; min-height: 120px; }
.form-row { display: flex; gap: 22px; }
.form-row input { flex: 1; }
.checkbox { display: flex; align-items: center; gap: 14px; color: var(--white); font-size: 16px; }
.checkbox input { width: 23px; height: 22px; accent-color: var(--white); flex-shrink: 0; }
.checkbox a { color: #0081fe; text-decoration: underline; }
.btn-send {
  align-self: flex-end;
  width: 195px;
  height: 50px;
  background: var(--white);
  color: #000;
  border: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity .2s ease;
}
.btn-send:hover { opacity: .85; }

/* Footer bottom bar */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;   /* logo | copyright | social */
  align-items: center;
  gap: 24px;
  max-width: 1235px;
  margin: 60px auto 0;
}
.footer-bottom .footer-logo { justify-self: start; }
.footer-bottom .copyright { text-align: center; }
.footer-bottom .socials { justify-self: end; }
.footer-logo { width: 259px; height: 52px; object-fit: contain; }
.copyright { font-weight: 400; font-size: 14px; line-height: 26px; color: var(--white); }
.socials { display: flex; gap: 20px; }
.socials a { color: var(--white); opacity: .85; transition: opacity .2s, color .2s; }
.socials svg { width: 22px; height: 22px; display: block; }
.socials a:hover { opacity: 1; color: var(--blue); }

/* Floating side socials */
.side-socials {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.side-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  color: var(--ink);
  transition: color .2s ease, transform .2s ease;
}
.side-socials a:hover { color: var(--blue); transform: translateY(-2px); }
.side-socials svg { width: 22px; height: 22px; display: block; }

/* ============================================================
   Responsive
   ============================================================ */

/* Base styles above are fluid (clamp/min/flex) and scale continuously
   from ~360px up to the 1440px design width, then centre above 1440.
   The queries below only restack multi-column layouts and tune the phone. */

/* ---- Tablet & small laptop: stack columns, switch to hamburger nav ---- */
@media (max-width: 1080px) {
  /* drop the blur so the fixed menu isn't trapped in the bar; keep the bar white */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: #ffffff; }
  .nav-cta { display: none; }                /* desktop-only button */
  .nav-menu { flex: none; }
  .nav-toggle { display: flex; position: relative; z-index: 210; }
  .nav-toggle.open { border: 1px solid #c9c9c9; border-radius: 8px; }

  /* Full-screen menu overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 72vh;
    height: 72dvh;             /* ~3/4 of the screen, per Figma (not full) */
    z-index: 200;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 28px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
    overflow-y: auto;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu-logo { display: block; }
  .nav-menu-logo img { width: 230px; height: auto; }
  .nav-menu-links {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.7vh, 28px);
  }
  .nav-menu-links a {
    font-size: 20px;
    color: var(--ink);
  }
  .nav-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 620px;
    padding: 22px;
    background: #000;
    color: var(--bg);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  /* Hero band → stacked, flat dark (as in the mobile design) */
  .hero-band { background: var(--dark); }
  .hero-band-inner { flex-direction: column; align-items: center; text-align: center; gap: 0; padding: 40px var(--pad) 60px; min-height: 0; }
  .band-book { position: static; width: clamp(200px, 36vw, 300px); margin: -60px auto 28px; }
  .band-text { width: 100%; max-width: 640px; }
  .band-text .mark { margin: 0 auto 6px; }

  /* Expertise → single column */
  .expertise-grid { grid-template-columns: 1fr; }
  .exp-col { min-height: 0; border-right: none; border-top: 1px solid #444; padding: 50px 24px; }
  .exp-col:first-child { border-top: none; }

  /* Book → stacked, cover on top */
  .book { flex-direction: column; gap: 40px; }
  .book-text { order: 2; max-width: 640px; width: 100%; flex: none; }
  .book-cover { order: 1; flex: none; }
  .book-cover img { width: clamp(220px, 42vw, 360px); }

  /* Testimonials → stacked */
  .testimonials-inner { flex-direction: column; gap: 36px; align-items: flex-start; }
  .t-author, .t-quote { max-width: 640px; width: 100%; flex: none; }

  .side-socials { display: none; }
}

/* ---- Footer stacks earlier (its two columns need more room) ---- */
@media (max-width: 1180px) {
  .footer-main { flex-direction: column; align-items: center; }
  .footer-left { flex: none; width: 100%; max-width: 601px; }
  .footer-form-wrap { flex: none; width: 100%; max-width: 610px; }
  .contact-form { height: auto; }
}

/* ---- Footer bottom bar stacks & centres on phones / small tablets ---- */
@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    margin-top: 48px;
  }
}

/* ---- Phone ---- */
@media (max-width: 600px) {
  html { scroll-padding-top: 92px; }

  .nav-inner { height: 70px; }
  .logo img { width: 150px; height: auto; }

  /* Author quote → 3 lines on mobile (keep "...SAID THAT" on one line) */
  .author-head { padding: 0 16px; }
  .author-quote { font-size: clamp(15px, 5vw, 28px); line-height: 1.14; }
  /* breathing room between the ORDER THE BOOK button and the photo */
  .author-photos { margin-top: 156px; }

  /* Bio stacks */
  .bio-row { flex-direction: column; align-items: center; text-align: center; }
  .bio-photo { width: 160px; height: 160px; }
  /* signature: mark centred on top, name below, then the line */
  .bio-sign { flex-direction: column-reverse; align-items: center; gap: 16px; }
  .bio-line { margin-top: 22px; }

  /* rethink lists → single column */
  .rethink { grid-auto-flow: row; grid-template-rows: none; }
  .rethink li { height: 44px; }

  /* Footer intro stacks */
  .footer-intro { flex-direction: column; align-items: center; text-align: center; }
  .footer-book { width: clamp(180px, 56vw, 240px); }
  .footer-book img { width: 100%; }
  .footer-looking { text-align: center; }
  .rethink-footer { justify-content: center; }

  /* Contact form: roomier spacing + full-width Send button (per Figma) */
  .contact-form { padding: 30px 26px 32px; gap: 30px; }
  .form-row { flex-direction: column; gap: 30px; }
  .contact-form textarea { min-height: 80px; }
  .btn-send { width: 100%; align-self: stretch; height: 56px; margin-top: 6px; }
}

/* ---- Small phone ---- */
@media (max-width: 400px) {
  .tag-banner p { font-size: 10px; letter-spacing: 1px; }
  .nav-inner { padding: 0 16px; }
  .logo img { width: 132px; }
}
