:root {
  color-scheme: light;
  --navy: #001f39;
  --navy-2: #06365c;
  --blue: #005eab;
  --lime: #9fd10a;
  --lime-dark: #568900;
  --gold: #f5c317;
  --ink: #061d34;
  --muted: #5e6972;
  --paper: #fbfcfb;
  --soft: #eef5e4;
  --ice: #eef6fb;
  --line: #d9e2da;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 31, 57, 0.14);
  --radius: 8px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(245, 195, 23, 0.95);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.55rem max(1.25rem, calc((100% - 1180px) / 2));
  background: rgba(251, 252, 251, 0.96);
  border-bottom: 1px solid rgba(217, 226, 218, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: var(--lime-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.78rem;
  border-radius: var(--radius);
  color: #223447;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--ice);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: calc(74svh + 1in);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 16, 31, 0.5) 0%, rgba(0, 16, 31, 0.26) 44%, rgba(0, 16, 31, 0.04) 70%),
    linear-gradient(0deg, rgba(0, 16, 31, 0.18), rgba(0, 16, 31, 0));
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 3.9rem 0 3.5rem;
}

.hero-inner > * {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 0.85rem;
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 5.2rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  margin: 1.1rem 0 0;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.45rem;
  line-height: 1.02;
}

.hero-copy {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(74, 124, 0, 0.28);
}

.button-primary:hover {
  background: #b5e714;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.button-outline:hover {
  background: var(--ice);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: calc(3.35rem + 1in) 0 0;
  list-style: none;
}

.hero-points li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.62rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 720;
}

.hero-points li::before {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.trust-band {
  background: var(--navy);
  color: var(--white);
}

.trust-grid {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.14);
}

.trust-grid p {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1.1rem;
  background: var(--navy);
}

.trust-grid strong {
  color: var(--lime);
  font-size: 1.28rem;
  line-height: 1.2;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 5.2rem 0;
}

.section-grid,
.planner-section,
.seminar-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 3rem;
  align-items: start;
}

.intro {
  padding-top: 4.6rem;
  padding-bottom: 4.3rem;
}

.section h2,
.method-copy h2,
.planner-copy h2,
.seminar-copy h2,
.contact-copy h2 {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section p,
.method-copy p,
.seminar-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.service-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.price-card,
.steps-grid article,
.planner,
.booking-form,
.flyer-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 31, 57, 0.07);
}

.service-card {
  min-height: 224px;
  padding: 1.25rem;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime), #4d8d00);
  position: relative;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.call-icon::before {
  left: 19px;
  top: 15px;
  width: 21px;
  height: 28px;
  border: 6px solid var(--white);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 18px;
  transform: rotate(-38deg);
}

.call-icon::after {
  right: 12px;
  top: 13px;
  width: 16px;
  height: 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: -9px 2px 0 -3px var(--white);
}

.wifi-icon {
  background: linear-gradient(135deg, #0c64b2, #014483);
}

.wifi-icon::before,
.wifi-icon::after {
  left: 13px;
  top: 16px;
  width: 32px;
  height: 32px;
  border: 5px solid var(--white);
  border-color: var(--white) transparent transparent transparent;
  border-radius: 50%;
}

.wifi-icon::after {
  left: 22px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-width: 4px;
}

.lock-icon::before {
  left: 18px;
  top: 25px;
  width: 23px;
  height: 21px;
  background: var(--white);
  border-radius: 4px;
}

.lock-icon::after {
  left: 21px;
  top: 12px;
  width: 17px;
  height: 21px;
  border: 5px solid var(--white);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
}

.photo-icon {
  background: linear-gradient(135deg, #f5c317, #dd8d00);
}

.photo-icon::before {
  inset: 14px 11px;
  border: 4px solid var(--white);
  border-radius: 6px;
}

.photo-icon::after {
  left: 19px;
  bottom: 18px;
  width: 24px;
  height: 15px;
  background: var(--white);
  clip-path: polygon(0 100%, 39% 34%, 58% 60%, 77% 22%, 100% 100%);
}

.app-icon {
  background: linear-gradient(135deg, #0c64b2, #8cc000);
}

.app-icon::before {
  left: 14px;
  top: 14px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 3px;
  box-shadow: 18px 0 0 var(--white), 0 18px 0 var(--white), 18px 18px 0 var(--white);
}

.star-icon {
  background: linear-gradient(135deg, #9fd10a, #f5c317);
}

.star-icon::before {
  left: 13px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--white);
  clip-path: polygon(50% 0, 61% 34%, 97% 34%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 3% 34%, 39% 34%);
}

.service-card h3,
.steps-grid h3,
.price-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p,
.steps-grid p,
.price-card p {
  margin: 0;
}

.steps-grid p {
  color: #b5121b;
  font-weight: 800;
}

.method-section {
  padding: 5.1rem max(1.25rem, calc((100% - 1120px) / 2));
  background:
    linear-gradient(90deg, rgba(0, 31, 57, 0.96), rgba(6, 54, 92, 0.94)),
    url("assets/coach-photo.png") right center / auto 100% no-repeat;
  color: var(--white);
}

.method-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.method-copy h2,
.method-copy p {
  color: var(--white);
}

.method-copy p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps-grid article {
  min-height: 220px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
}

.steps-grid span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--lime);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 950;
}

.pricing-section {
  padding-bottom: 4.1rem;
}

.price-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.price-card.featured {
  border-color: rgba(159, 209, 10, 0.7);
  box-shadow: var(--shadow);
}

.price-card .price-label {
  color: var(--blue);
}

.price-card h3 {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 3rem;
}

.price-card p:last-child {
  margin-top: auto;
}

.addon-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.addon-row p {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1rem;
  background: var(--white);
}

.addon-row p:first-child {
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  text-transform: uppercase;
}

.addon-row span {
  color: var(--muted);
}

.addon-row strong {
  color: var(--lime-dark);
  font-size: 1.3rem;
}

.planner-section {
  align-items: center;
  border-top: 1px solid var(--line);
}

.planner-copy p:last-child,
.contact-copy p {
  max-width: 560px;
}

.planner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  overflow: hidden;
}

.needs-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.25rem;
  border: 0;
}

.needs-list legend {
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-weight: 950;
}

.needs-list label {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.needs-list input {
  width: 20px;
  height: 20px;
  accent-color: var(--lime-dark);
  flex: 0 0 auto;
}

.estimate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.68rem;
  padding: 1.25rem;
  background: var(--ice);
  border-left: 1px solid var(--line);
}

.estimate p,
.estimate span {
  margin: 0;
  color: var(--muted);
}

.estimate strong {
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.08;
}

.estimate .button {
  margin-top: 0.35rem;
}

.seminar-section {
  align-items: center;
  padding-top: 4.1rem;
}

.seminar-copy p:last-of-type {
  max-width: 575px;
}

.flyer-preview {
  margin: 0;
  overflow: hidden;
}

.flyer-preview img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
}

.flyer-preview figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.audience-strip {
  padding: 3.2rem max(1.25rem, calc((100% - 1120px) / 2));
  background: var(--soft);
}

.audience-strip div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.audience-strip .section-kicker {
  margin: 0;
  color: var(--lime-dark);
}

.audience-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audience-strip li {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(86, 137, 0, 0.26);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.contact-section {
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-methods a {
  width: fit-content;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-methods span {
  color: var(--muted);
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.booking-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-weight: 850;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #c9d6dc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  font-weight: 520;
}

.booking-form textarea {
  min-height: 132px;
  resize: vertical;
}

.booking-form button {
  justify-self: start;
}

.form-status {
  margin: 0;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(86, 137, 0, 0.34);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--lime-dark);
  font-weight: 800;
}

.site-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1.25rem, calc((100% - 1120px) / 2));
  background: var(--navy);
  border-top: 5px solid var(--lime);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .method-inner,
  .section-grid,
  .planner-section,
  .seminar-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .method-section {
    background:
      linear-gradient(90deg, rgba(0, 31, 57, 0.97), rgba(6, 54, 92, 0.94)),
      url("assets/coach-photo.png") right center / auto 100% no-repeat;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planner {
    grid-template-columns: 1fr;
  }

  .estimate {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand img {
    width: 58px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 75svh;
  }

  .hero-points {
    margin-top: 3.35rem;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 16, 31, 0.9) 0%, rgba(0, 16, 31, 0.74) 63%, rgba(0, 16, 31, 0.25) 100%),
      linear-gradient(0deg, rgba(0, 16, 31, 0.2), rgba(0, 16, 31, 0));
  }

  .hero-inner {
    width: min(100% - 32px, 1120px);
    padding-block: 3rem 2.7rem;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 3.1rem;
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 355px;
    font-size: 1.8rem;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 1.02rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid p {
    min-height: 92px;
    padding-inline: 1rem;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 4.1rem 0;
  }

  .intro {
    padding-top: 3.3rem;
  }

  .section h2,
  .method-copy h2,
  .planner-copy h2,
  .seminar-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .service-grid,
  .price-grid,
  .steps-grid,
  .addon-row,
  .audience-strip div,
  .audience-strip ul {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .steps-grid article {
    min-height: auto;
  }

  .method-section {
    padding-block: 4.2rem;
    background: var(--navy);
  }

  .flyer-preview img {
    max-height: 560px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-lede {
    font-size: 1.55rem;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
