:root {
  --navy: #062e68;
  --navy-2: #0d427f;
  --green: #2f9b3a;
  --green-2: #16883b;
  --yellow: #f4b42a;
  --ink: #11233d;
  --muted: #5a6a7f;
  --line: #dbe4ee;
  --soft: #f5f9fd;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(6, 46, 104, 0.14);
  --radius: 8px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-kicker {
  color: #1d2e45;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 800;
}

.brand-name {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 900;
}

.brand-mark {
  width: 48px;
  height: 48px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .spark {
  fill: var(--yellow);
  stroke: var(--yellow);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 48px);
  color: #071f45;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--green);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-2);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-contact {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-width: max-content;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f08a00;
  font-size: clamp(1.18rem, 1.55vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-phone svg {
  width: 0.9em;
  height: 0.9em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.header-contact p {
  margin: 0;
  color: #26364b;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(6, 46, 104, 0.22);
}

.header-cta svg,
.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  align-items: stretch;
  min-height: calc(100vh - 88px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 92px) clamp(24px, 4vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 72%, rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 18% 15%, rgba(244, 180, 42, 0.16), transparent 32%),
    var(--white);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 18px;
  color: #121a26;
  border-left: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 5.4vw, 5.2rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green);
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.9vw, 1.65rem);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.lead span {
  display: inline-block;
  position: relative;
  color: var(--green-2);
}

.lead span::after {
  position: absolute;
  right: -2px;
  bottom: 0.05em;
  left: -2px;
  z-index: -1;
  height: 0.42em;
  background: rgba(244, 180, 42, 0.42);
  border-radius: 999px;
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  min-width: 230px;
  padding: 0 24px;
  font-size: 1.1rem;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  box-shadow: 0 13px 24px rgba(6, 46, 104, 0.24);
}

.button.secondary {
  color: var(--green-2);
  background: var(--white);
  border: 2px solid var(--green-2);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #eaf1f8;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04) 30%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.goal-note {
  position: absolute;
  top: 56px;
  right: clamp(22px, 5vw, 80px);
  z-index: 1;
  transform: rotate(-2deg);
  padding: 18px 24px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 3px solid rgba(13, 66, 127, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-weight: 900;
}

.goal-note::after {
  display: block;
  width: 76%;
  height: 5px;
  margin-top: -4px;
  margin-left: auto;
  background: var(--yellow);
  content: "";
}

.section-inner {
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto;
}

.features {
  padding: 28px 0 22px;
  background: linear-gradient(180deg, #edf6ff 0, #ffffff 100%);
}

.features h2,
.courses h2,
.results h2,
.pricing-access h2,
.contact-cta h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}

.features h2 {
  text-align: center;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.features-lead {
  max-width: 980px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1040px;
  margin: 30px auto 0;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 58% 42%;
  margin-top: 18px;
  align-items: stretch;
  min-height: 100%;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(11, 57, 96, 0.12);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 46px) clamp(22px, 3vw, 32px) clamp(22px, 3vw, 32px);
}

.feature-number {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 36px;
  margin: 0;
  padding: 3px 14px;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(6, 46, 104, 0.16);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.feature-card:nth-child(even) .feature-number {
  background: var(--navy-2);
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: #1d2e45;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.72;
}

.feature-card p + p {
  margin-top: 8px;
}

.feature-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  padding: 5px 10px;
  color: var(--green-2);
  background: #eef7ef;
  border: 1px solid rgba(47, 155, 58, 0.22);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.feature-card a,
.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-2);
  font-weight: 900;
}

.feature-card a::after,
.text-link::after {
  margin-left: 10px;
  content: "→";
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card img:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.feature-card img:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-card:nth-child(even) {
  grid-template-columns: 42% 58%;
}

.feature-card:nth-child(even) img {
  order: -1;
}

.feature-card:nth-child(even) .feature-content {
  order: 1;
}

.news-strip {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.news-inner h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
}

.news-inner h2 svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-inner a {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #17263b;
  font-weight: 700;
}

.news-inner time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.courses,
.pricing-access {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--white);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 26px;
  text-align: center;
}

.section-heading p,
.label {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading h2,
.results h2,
.pricing-access h2,
.contact-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.35;
}

.course-grid,
.result-stats,
.two-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.course-grid article,
.result-stats div,
.two-column section {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.two-column section > .label,
.two-column section > h2 {
  text-align: center;
}

.course-grid h3,
.pricing-access h2 {
  margin: 0 0 10px;
}

.course-grid h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.course-grid p,
.pricing-access p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(280px, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.access-address {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
  line-height: 1.7;
}

.access-info {
  display: grid;
  gap: 10px;
  margin: 0;
}

.access-info div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.access-info dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.access-info dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.map-embed {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  aspect-ratio: 4 / 3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
}

.results {
  padding: clamp(56px, 7vw, 86px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 46, 104, 0.92), rgba(12, 89, 126, 0.88)),
    url("assets/hero-classroom.png") center / cover;
}

.results h2,
.results .label {
  color: var(--white);
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
}

.result-stats {
  margin: 0;
}

.result-stats div {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.result-stats dt {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.result-stats dd {
  margin: 8px 0 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 900;
}

.two-column {
  grid-template-columns: 1fr;
}

.contact-cta {
  padding: clamp(50px, 7vw, 74px) 0;
  background: #eef7ef;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.course-page-hero {
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 253, 0.9)),
    url("assets/feature-02-planning.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.course-page-heading {
  max-width: 920px;
  text-align: center;
}

.course-page-heading h1,
.course-detail h2,
.price-section h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}

.course-page-heading h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.25;
}

.course-page-heading > p:not(.label) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.85;
}

.course-detail,
.price-section {
  padding: clamp(56px, 7vw, 86px) 0;
  background: var(--white);
}

.course-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.course-detail h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.35;
}

.course-detail p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.9;
}

.lesson-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lesson-flow li {
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lesson-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.lesson-flow strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.25rem;
}

.lesson-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.75;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(11, 57, 96, 0.1);
}

.price-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  white-space: nowrap;
}

.price-table th {
  color: var(--navy);
  background: #eef7ef;
  font-weight: 900;
}

.price-table thead th {
  background: var(--navy);
  color: var(--white);
}

.price-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
}

.price-table td {
  color: var(--ink);
  font-weight: 800;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th:last-child,
.price-table td:last-child {
  border-right: 0;
}

.price-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.form-hero {
  min-height: calc(100vh - 88px);
  padding: clamp(54px, 7vw, 92px) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.92)),
    url("assets/hero-classroom.png") center / cover;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.form-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.25;
}

.form-intro p:not(.label) {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.netlify-detection-form {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 900;
}

.required-mark {
  color: #d12f2f;
  font-size: 0.78rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd7e4;
  border-radius: var(--radius);
  font: inherit;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(47, 155, 58, 0.18);
  border-color: var(--green);
}

.postal-lookup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.lookup-button {
  min-height: 48px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.lookup-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.address-status {
  min-height: 1.4em;
  margin: -8px 0 0;
}

.form-submit {
  width: fit-content;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-error {
  min-height: 1.4em;
  margin: -10px 0 0;
  color: #c62828;
  font-size: 0.9rem;
  font-weight: 900;
}

.confirm-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.confirm-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.confirm-list dt {
  color: var(--muted);
  font-weight: 900;
}

.confirm-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  white-space: pre-wrap;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.confirm-button {
  font: inherit;
  cursor: pointer;
}

.confirm-submit-form {
  margin: 0;
}

.success-message {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    min-height: 420px;
  }

  .course-grid,
  .results-layout,
  .result-stats {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    grid-template-columns: 58% 42%;
  }

  .feature-card:nth-child(even) {
    grid-template-columns: 42% 58%;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .course-detail-layout,
  .lesson-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand-kicker {
    font-size: 0.68rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .header-contact {
    justify-items: end;
  }

  .header-phone {
    font-size: 0.95rem;
  }

  .header-contact p {
    font-size: 0.66rem;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .hero-copy {
    padding: 34px 20px 44px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-visual {
    min-height: 320px;
  }

  .goal-note {
    top: 20px;
    right: 18px;
    padding: 12px 16px;
    font-size: 1.05rem;
  }

  .hero-actions,
  .news-inner,
  .contact-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .section-inner {
    width: min(100% - 32px, 1450px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(even) .feature-content,
  .feature-content {
    order: 0;
  }

  .feature-content {
    padding: 22px;
  }

  .feature-card img {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .access-layout {
    grid-template-columns: 1fr;
  }

  .news-inner {
    gap: 6px;
    padding: 16px 0;
  }

  .contact-layout .button {
    justify-self: stretch;
  }

  .two-fields {
    grid-template-columns: 1fr;
  }

  .postal-lookup {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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