:root {
  --cream: #fff8e8;
  --cream-2: #f6ecd6;
  --paper: #fffdf7;
  --white: #ffffff;
  --green: #173a33;
  --green-2: #24584d;
  --gold: #d8ad39;
  --gold-soft: #f3d982;
  --ink-soft: #51645f;
  --line: #e6d7b8;
  --shadow: 0 20px 50px rgba(64, 44, 10, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 173, 57, 0.13), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 48%, #fff5dd 100%);
  color: var(--green);
  font-family:
    var(--font-geist-sans, "Trebuchet MS"), ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a:focus-visible {
  outline: 3px solid rgba(216, 173, 57, 0.65);
  outline-offset: 4px;
}

.top-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.top-note span {
  font-weight: 700;
}

.top-note a {
  color: var(--gold-soft);
  font-weight: 800;
}

.top-note a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(290px, 1fr) auto minmax(290px, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(230, 215, 184, 0.9);
  background: rgba(255, 253, 247, 0.97);
  padding: 16px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-size: 24px;
  font-family: "Arial Black", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  object-fit: contain;
}

.brand:hover {
  color: var(--green-2);
  transform: translateY(-1px);
}

.site-header nav {
  display: flex;
  gap: 32px;
  justify-self: center;
  color: var(--green);
  font-size: 18px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-header nav a,
.footer-links a {
  position: relative;
}

.site-header nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header nav a:hover {
  color: var(--green-2);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.site-header nav a:hover::after,
.footer-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
}

.header-call,
.primary,
.secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 850;
  line-height: 1.2;
}

.header-call,
.primary {
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 10px 24px rgba(168, 120, 20, 0.16);
}

.header-call:hover,
.primary:hover {
  background: #e5bd49;
  box-shadow: 0 14px 30px rgba(168, 120, 20, 0.24);
  transform: translateY(-2px);
}

.secondary {
  border: 1px solid rgba(23, 58, 51, 0.2);
  background: var(--paper);
  color: var(--green);
}

.secondary:hover {
  border-color: rgba(23, 58, 51, 0.42);
  box-shadow: 0 12px 26px rgba(23, 58, 51, 0.1);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  max-width: 1240px;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 54px) 48px;
}

.hero-copy {
  position: relative;
  padding-left: clamp(18px, 2vw, 28px);
}

.hero-copy::before {
  position: absolute;
  top: 6px;
  bottom: 10px;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  border-radius: 999px;
  background: rgba(216, 173, 57, 0.18);
  padding: 8px 13px;
  color: #815f12;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead,
.program-photo p,
.program-list p,
.daily-rows span,
.tuition-copy p,
.visit p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-photos {
  position: relative;
  min-height: 620px;
}

.hero-main-photo {
  width: 100%;
  height: 600px;
  border: 8px solid var(--white);
  border-radius: 36px 36px 36px 10px;
  box-shadow: 0 28px 70px rgba(15, 55, 48, 0.2);
  object-fit: cover;
}

.hero-small-photo {
  position: absolute;
  right: -10px;
  bottom: 42px;
  width: 34%;
  min-width: 170px;
  height: 210px;
  border: 7px solid var(--white);
  border-radius: 24px 8px 24px 24px;
  box-shadow: 0 20px 46px rgba(15, 55, 48, 0.18);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  bottom: 34px;
  left: -22px;
  display: grid;
  width: min(230px, 46%);
  gap: 4px;
  border: 1px solid rgba(216, 173, 57, 0.42);
  border-radius: 22px;
  background: var(--green);
  padding: 20px;
  color: var(--white);
  box-shadow: 0 20px 48px rgba(15, 55, 48, 0.22);
}

.hero-note strong {
  color: var(--gold-soft);
  font-size: 42px;
  line-height: 1;
}

.hero-note span {
  font-weight: 700;
  line-height: 1.35;
}

.welcome-strip {
  display: grid;
  max-width: 1040px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0 auto 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.welcome-strip div {
  display: grid;
  gap: 4px;
  justify-items: center;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px 12px;
  text-align: center;
}

.welcome-strip strong {
  font-size: 28px;
  line-height: 1;
}

.welcome-strip span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.program,
.inside-look,
.daily-life,
.tuition,
.visit {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(18px, 4vw, 54px);
}

.program,
.inside-look,
.visit {
  scroll-margin-top: 100px;
}

.daily-life {
  scroll-margin-top: 92px;
}

.tuition {
  scroll-margin-top: 170px;
}

.program {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.program-photo {
  display: grid;
  gap: 16px;
}

.program-photo img {
  width: 100%;
  height: 470px;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.program-photo p {
  margin: 0;
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  font-size: 16px;
}

.program-content {
  display: grid;
  gap: 24px;
}

.program-list {
  display: grid;
  border-top: 1px solid rgba(23, 58, 51, 0.16);
}

.program-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(23, 58, 51, 0.16);
  padding: 22px 0;
}

.program-list article:hover span {
  background: var(--gold);
  color: var(--green);
  transform: translateY(-2px);
}

.program-list span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(216, 173, 57, 0.7);
  border-radius: 999px;
  color: #815f12;
  font-size: 13px;
  font-weight: 900;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.program-list h3 {
  margin-bottom: 6px;
  font-size: 23px;
}

.program-list p {
  margin-bottom: 0;
}

.inside-look {
  gap: 28px;
}

.inside-look > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.inside-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.inside-grid .wide {
  grid-row: span 2;
}

.inside-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.inside-grid figure:hover img {
  transform: scale(1.035);
}

.inside-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(23, 58, 51, 0.9);
  color: var(--white);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.daily-life {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 36px;
  align-items: stretch;
}

.daily-content {
  display: grid;
  align-content: center;
  border-radius: 30px;
  background: var(--green);
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
}

.daily-content .eyebrow {
  background: rgba(216, 173, 57, 0.18);
  color: var(--gold-soft);
}

.daily-rows {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.daily-rows article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 17px 18px;
}

.daily-rows strong {
  color: var(--gold-soft);
  font-size: 18px;
}

.daily-rows span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.daily-life > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.tuition {
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: 34px;
  align-items: center;
}

.tuition-copy p:not(.eyebrow) {
  margin: 18px 0 0;
}

.price-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.price-panel article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  padding: 28px;
}

.price-panel .special {
  border-color: var(--gold);
  background: linear-gradient(135deg, #ffffff 0%, #fff5cf 100%);
}

.price-panel span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-panel strong {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.price-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.visit {
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 76px;
}

.visit > img {
  width: 100%;
  height: 430px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visit .address {
  margin-top: 20px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  max-width: none;
  background: var(--green);
  color: var(--white);
}

.footer-inner {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(320px, 1fr) minmax(420px, auto);
  gap: 18px 48px;
  align-items: start;
  margin: 0 auto;
  border-top: 1px solid rgba(216, 173, 57, 0.32);
  padding: 24px clamp(20px, 4vw, 54px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-text {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-brand img {
  width: 94px;
  height: 94px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.footer-brand span,
.footer-address,
.footer-email,
.footer-links {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-brand span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  white-space: nowrap;
}

.footer-right {
  display: grid;
  min-height: 94px;
  align-content: space-between;
  justify-self: end;
  justify-items: start;
  gap: 10px;
  text-align: left;
}

.footer-email {
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
}

.footer-email:hover {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-links a:last-child {
  color: var(--gold);
}

.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--gold);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.social-links a:hover {
  border-color: rgba(216, 173, 57, 0.72);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.employment-intro {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  display: grid;
  align-items: center;
  background: var(--green);
  color: white;
}
.employment-intro > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.employment-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 45, 39, .93), rgba(16, 45, 39, .68) 45%, rgba(16, 45, 39, .1));
}
.employment-intro-copy {
  width: min(1180px, 100%);
  margin: auto;
  padding: 56px 54px;
}
.employment-intro .eyebrow { background: none; color: var(--gold-soft); padding: 0; }
.employment-intro h1 { font-size: 60px; line-height: 1.08; }
.employment-intro-copy > p:not(.eyebrow) { max-width: 430px; font-size: 20px; line-height: 1.6; }
.employment-details {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  max-width: 1180px;
  margin: auto;
  padding: 64px 54px 80px;
}
.position-overview h2 { font-size: 38px; line-height: 1.15; margin-bottom: 24px; }
.position-overview > p:not(.eyebrow) { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.position-facts { margin: 28px 0; }
.position-facts > div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.position-facts dt { font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.position-facts dd { margin: 0; font-size: 17px; font-weight: 700; }
.position-contact a { color: var(--green); text-decoration: underline; text-underline-offset: 4px; }
.application-panel { border-left: 1px solid var(--line); padding-left: 36px; scroll-margin-top: 130px; }
.application-panel h2 { font-size: 30px; line-height: 1.2; margin-bottom: 12px; }
.application-intro { color: var(--ink-soft); line-height: 1.5; }
.application-notice { border-left: 3px solid var(--gold); padding-left: 12px; font-size: 14px; line-height: 1.5; }
.employment-form { display: grid; gap: 22px; margin-top: 26px; }
.form-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.employment-form label { display: block; font-size: 14px; font-weight: 700; line-height: 1.5; }
.employment-form input, .employment-form select, .employment-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid #9faea6;
  border-radius: 6px;
  background: var(--white);
  color: var(--green);
  padding: 12px;
  font: 400 16px/1.5 "Segoe UI", sans-serif;
}
.employment-form textarea { resize: vertical; }
.employment-form :is(input, select, textarea, button):focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.employment-form input[type="file"] { font-size: 13px; padding: 10px; }
.employment-form input::file-selector-button { padding: 8px 12px; border: 0; border-radius: 4px; background: var(--green); color: white; margin-right: 10px; cursor: pointer; }
.field-optional, .file-help { font-weight: 400; color: var(--ink-soft); }
.file-help { display: block; font-size: 13px; margin-top: 6px; }
.employment-form button { border: 0; cursor: pointer; font: inherit; font-weight: 700; justify-self: start; transition: background-color 180ms, transform 180ms; }
.application-feedback { margin: 0; font-size: 14px; line-height: 1.6; }
.application-feedback:empty { display: none; }
.employment-form .form-honeypot { display: none; }
.employment-form .form-section-title { margin: 12px 0 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 20px; }
.employment-form .form-section-title:first-of-type { border: 0; padding: 0; margin: 0; }
.application-question { min-width: 0; padding: 0; margin: 0; border: 0; }
.application-question legend { padding: 0; font-size: 15px; font-weight: 700; line-height: 1.6; }
.question-help { display: block; color: var(--ink-soft); font-size: 13px; font-weight: 400; line-height: 1.6; margin: 6px 0 10px; }
.choice-list { display: grid; gap: 6px; margin-top: 10px; }
.choice-list-short { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.employment-form .choice-option { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border: 1px solid #cbd2ca; border-radius: 6px; font-size: 15px; font-weight: 400; background: var(--paper); cursor: pointer; }
.choice-option:hover { border-color: var(--green); }
.employment-form .choice-option:has(input:checked) { background: #e9f0e9; border-color: var(--green); }
.employment-form input[type="checkbox"] { width: 18px; height: 18px; min-height: 18px; flex: 0 0 18px; margin: 2px 0 0; padding: 0; accent-color: var(--green); }
.application-disclosure { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.employment-form button:disabled { opacity: .65; cursor: wait; transform: none; }
.application-feedback:not(:empty) { padding: 16px; border-left: 3px solid var(--gold); background: var(--paper); }
.application-feedback[data-state="error"] { border-color: #a53228; }
.application-feedback[data-state="success"] { border-color: var(--green); }
@media (max-width: 1020px) {
  .employment-intro-copy { padding: 42px 24px; }
  .employment-details { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 56px; }
  .application-panel { border-left: 0; border-top: 1px solid var(--line); padding: 32px 0 0; }
}
@media (max-width: 560px) {
  .employment-intro { min-height: 380px; }
  .employment-intro h1 { font-size: 44px; }
  .employment-intro::after { background: rgba(16, 45, 39, .77); }
  .position-overview h2 { font-size: 32px; }
  .form-pair { grid-template-columns: 1fr; gap: 22px; }
  .employment-form button { width: 100%; }
  .footer-brand { gap: 10px; }
  .footer-brand img { width: 76px; height: 76px; }
  .footer-brand strong { font-size: 21px; }
  .footer-brand-text { min-width: 0; }
  .footer-brand span { white-space: normal !important; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1020px) {
  .brand span,
  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding: 12px 18px;
  }

  .header-call {
    padding-inline: 16px;
    font-size: 14px;
  }

  .hero,
  .program,
  .daily-life,
  .tuition,
  .visit {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-photos {
    min-height: auto;
  }

  .hero-main-photo {
    height: 430px;
  }

  .hero-small-photo {
    display: none;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
    left: auto;
    width: min(220px, 52%);
  }

  .welcome-strip,
  .price-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .welcome-strip {
    margin-inline: 18px;
  }

  .program-photo {
    order: 2;
  }

  .inside-look > div:first-child {
    display: block;
  }

  .inside-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .inside-grid .wide {
    grid-row: auto;
  }

  .inside-grid figure,
  .inside-grid .wide {
    height: 300px;
  }

  .daily-life > img,
  .visit > img {
    min-height: 0;
    height: 340px;
  }

  .actions,
  .visit-actions {
    flex-direction: column;
  }

  .footer-inner {
    gap: 16px;
    padding: 24px 18px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand span {
    max-width: calc(100vw - 36px);
    white-space: nowrap;
  }

  .footer-right {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .footer-address {
    white-space: normal;
  }

  .footer-actions {
    display: grid;
    justify-items: center;
    justify-content: center;
    gap: 12px;
  }

  .footer-links,
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .top-note {
    font-size: 13px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .header-call {
    min-height: 44px;
  }

  .hero-copy {
    padding-left: 16px;
  }

  .hero-main-photo {
    height: 360px;
    border-width: 6px;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .welcome-strip strong {
    font-size: 24px;
  }

  .program-photo img {
    height: 340px;
  }

  .program-list article,
  .daily-rows article {
    grid-template-columns: 1fr;
  }

  .inside-grid figure,
  .inside-grid .wide {
    height: 260px;
  }

  .inside-grid figcaption {
    border-radius: 14px;
  }

  .footer-brand span {
    font-size: 13px;
  }
}
