/* ==========================================================================
   The Art of Strategic Execution — artofstrategicexecution.com
   Palette sampled from the book cover. Layout mirrors the original Wix page.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: "Havana Sunset Script"; src: url("fonts/HavanaSunsetScript.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Bebas Neue Pro"; src: url("fonts/BebasNeuePro-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Bebas Neue Pro"; src: url("fonts/BebasNeuePro-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/DMSans-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/DMSans-Italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/DMSans-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/DMSans-MediumItalic.woff2") format("woff2"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/DMSans-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("fonts/IBMPlexSans-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("fonts/IBMPlexSans-Italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("fonts/IBMPlexSans-MediumItalic.woff2") format("woff2"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("fonts/IBMPlexSans-SemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --navy: #14305a;
  --navy-deep: #0f2444;
  --ink: #111418;
  --text: #1f2a37;
  --muted: #4b5563;
  --paper: #f4f6fb;
  --paper-2: #eef1f7;
  --card: #ffffff;
  --line: #dfe3ec;
  --red: #c8102e;
  --yellow: #f2c230;
  --green: #209040;

  --font-display: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-title: "Bebas Neue Pro", "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-script: "Havana Sunset Script", "Brush Script MT", cursive;
  --font-serif: Georgia, Palatino, "Book Antiqua", "Palatino Linotype", serif;

  --container: 1216px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 8vw, 104px);
  --header-h: 68px;
  --radius-card: 28px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: var(--text); background: var(--card); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; }
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 8px; top: 8px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 38px); line-height: 1.35; letter-spacing: 0; text-transform: uppercase; color: var(--ink); }
.h2 em { font-style: italic; }
.h2 .accent, .accent { color: var(--navy); }
.h2--center { text-align: center; }
.section--navy .h2 { color: #fff; }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.3vw, 30px); line-height: 1.3; color: var(--ink); }

/* Tri-colour rule taken from the cover's paint strokes */
.rule { display: block; width: 84px; height: 6px; margin-top: 18px; border-radius: 3px; background: linear-gradient(90deg, var(--red) 0 33.33%, var(--yellow) 33.33% 66.66%, var(--green) 66.66% 100%); }
.h2--center + .rule { margin-inline: auto; }

.paint-band { height: 14px; background: url("assets/paint-band.jpg") center / cover no-repeat; }
.paint-band--thick { height: 22px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 10px 28px; border-radius: 999px; font-family: var(--font-body); font-size: 17px; font-weight: 400; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15, 36, 68, .25); }
.btn--wide { min-width: min(350px, 100%); }
.btn--sm { min-height: 40px; padding: 6px 20px; font-size: 15px; font-weight: 600; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: rgba(244, 246, 251, .94); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(15, 36, 68, .06); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { display: inline-flex; align-items: baseline; gap: 7px; text-decoration: none; color: var(--navy-deep); white-space: nowrap; line-height: 1; }
.wordmark__the { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--ink); }
.wordmark__art { font-family: var(--font-script); font-weight: 700; font-size: 27px; letter-spacing: .06em; margin-inline: 1px 3px; position: relative; top: 2px; }
.wordmark__title { font-family: var(--font-title); font-weight: 700; font-size: 22px; letter-spacing: .12em; margin-left: 4px; text-transform: uppercase; }
.c-red { color: var(--red); } .c-yellow { color: #e0ad12; } .c-green { color: var(--green); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a { font-size: 16px; color: var(--text); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav__links a:hover { color: var(--navy); border-bottom-color: var(--yellow); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; border-radius: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy-deep); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--paper); padding-top: clamp(40px, 6vw, 84px); padding-bottom: clamp(56px, 7vw, 96px); }
.hero__title { text-align: center; color: var(--ink); line-height: 1; }
.hero__title-top { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(40px, 5vw, 58px); }
.hero__art { font-family: var(--font-script); font-style: normal; font-weight: 700; font-size: 1.62em; letter-spacing: .1em; margin-inline: .22em .12em; display: inline-block; line-height: 1; vertical-align: -0.12em; }
.hero__title-main { display: block; margin-top: clamp(14px, 2vw, 26px); font-family: var(--font-title); font-weight: 700; font-size: clamp(40px, 5.6vw, 64px); letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.hero__subtitle { margin-top: clamp(28px, 4vw, 52px); font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.7vw, 48px); line-height: 1.25; color: var(--navy-deep); }
.hero__grid { margin-top: clamp(28px, 3.4vw, 48px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 3vw, 40px); align-items: start; }
.hero__question { font-family: var(--font-display); font-weight: 400; font-size: clamp(21px, 1.9vw, 25px); line-height: 1.4; color: var(--navy-deep); margin-bottom: 26px; }
.hero__copy p { margin-bottom: 22px; }
.hero__copy ul { margin: -8px 0 22px 1.9em; }
.hero__copy li { margin-bottom: 4px; padding-left: 4px; }
.hero__copy li::marker { color: var(--red); }
.hero__copy li:nth-child(2)::marker { color: #e0ad12; }
.hero__copy li:nth-child(3)::marker { color: var(--green); }
.hero__cover img { width: 100%; box-shadow: 0 24px 60px rgba(15, 36, 68, .10); }
.hero__quote { margin-top: clamp(28px, 3vw, 44px); color: var(--muted); }
.hero__quote p { font-style: italic; }
.hero__quote cite { font-style: normal; display: block; margin-top: 2px; }
.hero__quote strong { font-weight: 600; color: var(--text); }

/* ---------- Benefits (rebuilt from the Amazon A+ cards) ---------- */
.benefits { background: var(--card); padding-top: clamp(56px, 7vw, 88px); }
.benefits__grid { margin-top: clamp(30px, 3.4vw, 44px); list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.benefit { background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.benefit:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 36, 68, .10); }
.benefit img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.benefits__about { margin-block: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: clamp(32px, 5vw, 72px); align-items: center; }
.benefits__text p { color: var(--text); }
.benefits__text p + p { margin-top: 18px; }
.benefits__cover img { width: 100%; }

/* ---------- Buy band ---------- */
.buy { padding-block: clamp(56px, 7vw, 100px); }
.buy__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.buy__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.2vw, 40px); line-height: 1.2; text-transform: uppercase; }
.buy__title a { color: inherit; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.badges { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; }
.badge { display: flex; align-items: center; justify-content: center; width: 200px; height: 80px; padding: 12px 16px; background: #fff; border-radius: 16px; transition: transform .2s ease, box-shadow .2s ease; }
.badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .22); }
.badge img { max-height: 100%; width: auto; object-fit: contain; }
.buy__bulk-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.4; text-transform: uppercase; margin-top: 8px; }
.buy__bulk p { margin-top: 14px; color: rgba(255, 255, 255, .92); }
.buy__bulk a { color: #fff; text-underline-offset: 3px; }

.rating { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 26px; color: #fff; text-decoration: none; }
.rating:hover .rating__text { text-decoration: underline; text-underline-offset: 3px; }
.rating__stars { display: inline-flex; gap: 3px; color: var(--yellow); }
.rating__stars svg { width: 22px; height: 22px; fill: currentColor; }
.rating__text { font-size: 16px; color: rgba(255, 255, 255, .92); }
.rating__text strong { font-weight: 600; color: #fff; }

/* ---------- Banner sections (speaking, toolkit) ---------- */
.banner { position: relative; padding-block: clamp(64px, 8vw, 104px); background-size: cover; background-position: center; isolation: isolate; }
.banner::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.banner--speaking { background-image: url("assets/speaking-bg.jpg"); background-position: center 30%; }
.banner--speaking::before { background: rgba(255, 255, 255, .58); }
.banner--toolkit { background-image: url("assets/toolkit-bg.jpg"); }
.banner--toolkit::before { background: linear-gradient(rgba(20, 48, 90, .28), rgba(20, 48, 90, .28)); }
.banner__card { max-width: 886px; margin-inline: auto; padding: clamp(28px, 4vw, 48px) clamp(22px, 3vw, 32px); }
.banner__card--solid { background: #fff; border: 2px solid var(--navy-deep); }
.banner__card--glass { background: rgba(244, 246, 251, .94); box-shadow: 0 24px 60px rgba(15, 36, 68, .18); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.banner__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.3vw, 28px); line-height: 1.35; text-transform: uppercase; color: var(--ink); }
.banner__card p { margin-top: 14px; color: var(--ink); }
.banner__card p + p { margin-top: 2px; }
.banner__card .btn { margin-top: 22px; }

/* ---------- Praise ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.praise__grid { margin-top: clamp(36px, 4vw, 56px); }
.quote-card { background: var(--paper-2); border-radius: var(--radius-card); padding: 32px 32px 36px; }
.quote-card::before { content: ""; display: block; width: 32px; height: 3px; border-radius: 2px; background: var(--navy); margin-bottom: 40px; opacity: .85; }
.cards-3 .quote-card:nth-child(1)::before { background: var(--red); }
.cards-3 .quote-card:nth-child(2)::before { background: var(--yellow); }
.cards-3 .quote-card:nth-child(3)::before { background: var(--green); }
.quote-card__headline { font-family: var(--font-body); font-style: italic; font-weight: 500; font-size: 20px; line-height: 1.4; color: var(--navy-deep); }
.quote-card blockquote { margin-top: 2px; font-size: 16px; line-height: 1.62; color: var(--navy-deep); }
.quote-card figcaption { margin-top: 18px; font-size: 16px; line-height: 1.6; color: var(--ink); }
.quote-card figcaption strong { font-weight: 600; }

/* ---------- Courses ---------- */
.courses__intro { margin-top: 18px; color: var(--muted); max-width: 1100px; }
.courses__grid { margin-top: clamp(30px, 3.4vw, 44px); gap: 30px; }
.course-card { background: var(--card); border-radius: var(--radius-card); padding: 32px; display: flex; flex-direction: column; box-shadow: 0 1px 0 rgba(15, 36, 68, .04); transition: transform .25s ease, box-shadow .25s ease; }
.course-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 36, 68, .10); }
.course-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; }
.course-card__title { margin-top: 26px; font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.3; color: var(--ink); }
.course-card__title a { text-underline-offset: 5px; text-decoration-thickness: 2px; }
.course-card__title a:hover { color: var(--navy); }
.course-card p { margin-top: 14px; font-size: 16px; line-height: 1.3; color: var(--muted); flex: 1; }
.link-arrow { margin-top: 22px; align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; padding: 6px 10px; font-size: 17px; letter-spacing: .05em; color: var(--navy); text-decoration: none; border-radius: 8px; }
.link-arrow svg { width: 14px; height: 14px; transition: transform .2s ease; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- Contents ---------- */
.contents__list { margin-top: 30px; list-style: none; max-width: 1180px; }
.contents__list li + li { margin-top: 22px; }
.contents__list h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.4; text-transform: uppercase; color: var(--navy-deep); }
.contents__list p { margin-top: 8px; color: var(--muted); }

/* ---------- Author ---------- */
.author__grid { display: grid; grid-template-columns: minmax(0, 592fr) minmax(0, 592fr); gap: clamp(28px, 3vw, 40px); align-items: center; }
.author__photo img { width: 100%; }
.author__body .h2 { margin-bottom: 22px; }
.author__body p { font-size: 17px; line-height: 1.38; color: rgba(255, 255, 255, .95); }
.author__body p + p { margin-top: 22px; }

/* ---------- Resources ---------- */
.resources .h3 { margin-top: clamp(36px, 4vw, 52px); }
.resources .h3 em { font-style: italic; }
.file-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-underline-offset: 3px; }
.file-link img { width: 22px; height: 22px; }
.book-list { margin: 22px 0 0 1.9em; }
.book-list li { margin-bottom: 6px; color: var(--text); }
.book-list a { color: var(--ink); text-underline-offset: 3px; }
.book-list a:hover, .file-link:hover { color: var(--navy); }
.resources__note { margin-top: 10px; color: var(--muted); }
.blog__grid { margin-top: 26px; gap: 30px; }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 36, 68, .10); }
.post-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.post-card__body { padding: 24px 24px 30px; }
.post-card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.35; color: var(--ink); }
.post-card:hover .post-card__title { color: var(--navy); }
.post-card__excerpt { margin-top: 12px; font-size: 15px; line-height: 1.5; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Final CTA ---------- */
.cta__grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.cta .buy__title { color: var(--navy); }
.cta .badge { border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(15, 36, 68, .06); }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper); color: var(--muted); font-size: 15px; }
.site-footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 32px; padding-block: 26px; }
.site-footer ul { display: flex; flex-wrap: wrap; gap: 8px 26px; list-style: none; }
.site-footer a { color: var(--navy); text-underline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { gap: 20px; }
  .wordmark__title { font-size: 20px; letter-spacing: .1em; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { gap: 8px; }
  .nav__links { position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; gap: 0; padding: 8px var(--gutter) 18px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(15, 36, 68, .10); display: none; }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav__links li:last-child a { border-bottom: 0; }
  .hero__grid, .buy__grid, .author__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__cover { max-width: 560px; margin-inline: auto; }
  .author__photo { max-width: 520px; }
  .cards-3, .benefits__grid { grid-template-columns: minmax(0, 1fr); }
  .benefit { max-width: 420px; width: 100%; margin-inline: auto; }
  .benefits__about { grid-template-columns: minmax(0, 1fr); }
  .benefits__cover { max-width: 240px; margin-inline: auto; }
  .quote-card::before { margin-bottom: 26px; }
  .cta__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wordmark__title { display: none; }
  .wordmark__the { font-size: 18px; }
  .wordmark__art { font-size: 30px; }
  .badge { width: calc(50% - 12px); min-width: 140px; height: 72px; }
  .badges { gap: 16px; }
  .course-card { padding: 22px; }
  .quote-card { padding: 26px 24px 30px; }
  .btn--wide { width: 100%; }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
