/*
  Provisional prototype palette — not an official school brand palette.
  Replace these tokens only after the school approves its visual identity.
*/
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eaf2fa;
  --surface-warm: #f6f1e8;
  --ink: #24384d;
  --heading: #102d4d;
  --muted: #52677c;
  --line: #d5e0ec;
  --primary: #2368a8;
  --primary-strong: #123f70;
  --primary-bright: #1673c9;
  --primary-soft: #dfecf8;
  --accent: #1e5e98;
  --accent-soft: #f3e9d5;
  --navy: #0d2f52;
  --focus: #b44d12;
  --shadow-sm: 0 8px 24px rgba(13, 47, 82, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 47, 82, 0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1160px;
  --header-height: 72px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button {
  font-family: var(--font-body);
}

main:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

figure,
blockquote,
dl,
dd,
p {
  margin-top: 0;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

[hidden] {
  display: none !important;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--surface);
  border-radius: 6px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.prototype-notice {
  color: #38536c;
  background: #e8f1f9;
  border-bottom: 1px solid #cbdcea;
  font-size: 0.78rem;
}

.prototype-notice-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  padding-block: 7px;
}

.prototype-notice strong {
  color: #174f82;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(213, 224, 236, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 14px;
}

.brand {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--navy);
  border: 2px solid #ffffff;
  border-radius: 11px 11px 15px 15px;
  box-shadow: 0 0 0 1px #aec4d9, inset 0 -4px 0 rgba(35, 104, 168, 0.55);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-copy {
  line-height: 1.2;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--heading);
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.menu-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  color: var(--heading);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--primary-soft);
}

.menu-icon {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-icon i {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 8px 0 16px;
}

.nav a {
  min-height: 45px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: #294760;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--primary-strong);
  background: var(--surface-soft);
}

.nav .nav-cta {
  justify-content: center;
  margin-top: 4px;
  color: #ffffff;
  background: var(--primary-strong);
}

.nav .nav-cta:hover {
  color: #ffffff;
  background: #092944;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 76px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(225, 238, 250, 0.78)),
    var(--surface);
}

.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -170px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(35, 104, 168, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(35, 104, 168, 0.04), 0 0 0 84px rgba(35, 104, 168, 0.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(2.55rem, 12vw, 4.8rem);
  line-height: 0.99;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
}

.hero-actions {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--primary-strong);
}

.btn-primary:hover {
  background: #092f55;
}

.btn-secondary {
  color: var(--primary-strong);
  background: transparent;
  border-color: #8eacca;
}

.btn-secondary:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
}

.hero-media {
  margin-bottom: 0;
}

.photo-placeholder {
  position: relative;
  overflow: hidden;
  background: #dceaf6;
  border: 1px solid #bcd0e3;
}

.photo-placeholder-hero {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 80px 12px 12px 12px;
  box-shadow: var(--shadow-lg);
}

.photo-placeholder-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: #c8daea;
}

.placeholder-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: #254760;
  background: rgba(248, 252, 255, 0.96);
  border: 1px solid #b9cede;
  border-radius: 6px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.placeholder-scene,
.scene-building,
.scene-sun {
  position: absolute;
  display: block;
}

.placeholder-scene {
  z-index: 2;
  inset: 0;
}

.scene-sun {
  top: 19%;
  right: 13%;
  width: 58px;
  height: 58px;
  background: #d5a94f;
  border-radius: 50%;
}

.scene-building {
  z-index: 2;
  bottom: 13%;
  background: var(--navy);
  border: 5px solid rgba(255, 255, 255, 0.65);
  border-bottom: 0;
}

.scene-building::before {
  content: "";
  position: absolute;
  inset: 18px 12px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 8px, transparent 8px 18px);
}

.scene-building-left {
  left: 8%;
  width: 43%;
  height: 30%;
}

.scene-building-center {
  left: 38%;
  width: 38%;
  height: 48%;
  background: var(--primary);
}

.scene-building-right {
  right: 6%;
  width: 25%;
  height: 25%;
}

.hero-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.quick-access {
  position: relative;
  z-index: 3;
  margin-top: -28px;
  padding-bottom: 30px;
}

.quick-grid {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-grid li {
  min-width: 0;
}

.quick-grid a {
  min-height: 84px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.quick-grid a:hover {
  background: #f8fbfe;
  border-color: #8fafd0;
}

.quick-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-radius: 12px;
}

.quick-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quick-grid small,
.quick-grid strong {
  display: block;
}

.quick-grid small {
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.quick-grid strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  line-height: 1.3;
}

.quick-arrow {
  color: var(--primary-bright);
  font-size: 1.1rem;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.section-profile {
  background: var(--bg);
}

.section-tinted {
  background: var(--surface-soft);
  border-block: 1px solid #d6e3ef;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.section h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.05;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-note {
  max-width: 400px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.split {
  display: grid;
  gap: 40px;
  align-items: start;
}

.feature-list {
  margin: 30px 0 0;
}

.feature-list div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-list dt {
  color: var(--heading);
  font-weight: 800;
}

.feature-list dd {
  color: var(--muted);
}

.quote-card {
  position: relative;
  margin-bottom: 0;
  padding: 30px 25px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px 52px 8px 8px;
  box-shadow: var(--shadow-lg);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 29px;
  right: 26px;
  color: #83b8e6;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
}

.quote-label {
  display: inline-block;
  margin-bottom: 36px;
  padding-bottom: 7px;
  color: #d8e9f7;
  border-bottom: 1px solid rgba(216, 233, 247, 0.45);
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-card blockquote {
  margin: 0;
}

.quote-card blockquote p {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.85rem);
  line-height: 1.38;
}

.quote-card figcaption,
.quote-card cite {
  color: #c2d5e6;
  font-size: 0.78rem;
  font-style: normal;
}

.cards {
  display: grid;
  gap: 14px;
}

.card {
  position: relative;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary);
  border-radius: 6px 6px var(--radius) var(--radius);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.content-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 8px;
  color: #674719;
  background: var(--accent-soft);
  border: 1px solid #ddc898;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.content-status-confirmation {
  color: #4d3b15;
  background: #f2e8bd;
  border-color: #ddcc7f;
}

.card h3 {
  margin: 12px 0 8px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-grid {
  display: grid;
  gap: 16px;
}

.news-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-media {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #ffffff;
  background-color: #285f91;
  isolation: isolate;
}

.news-media::before,
.gallery-placeholder::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(10, 32, 43, 0.75)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0 2px, transparent 2px 13px);
}

.news-media-featured {
  min-height: 240px;
  background: #1d5f9c;
}

.news-media-warm {
  background: #536f8a;
}

.news-media-cool {
  background: #294d73;
}

.news-media span,
.gallery-placeholder span {
  padding: 6px 8px;
  color: #ffffff;
  background: rgba(9, 31, 43, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-content {
  padding: 20px;
}

.news-meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.news-meta time,
.news-date-placeholder {
  padding-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.news-content h3 {
  margin: 14px 0 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.news-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery-section {
  background: #e8f0f8;
  border-block: 1px solid #d4e1ed;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-item,
.gallery-item figure {
  min-width: 0;
  margin: 0;
}

.gallery-item figure {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #ccd9e6;
  border-radius: var(--radius-sm);
}

.gallery-placeholder {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: #245e93;
  isolation: isolate;
}

.gallery-placeholder-two {
  background: #506d89;
}

.gallery-placeholder-three {
  background: #2e5277;
}

.gallery-placeholder-four {
  background: #3c5e87;
}

.gallery-item figcaption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.cta-section {
  background: var(--surface);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 32px 23px;
  color: #ffffff;
  background: var(--primary-strong);
  border-radius: 8px 56px 8px 8px;
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.035), 0 0 0 72px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.section-kicker-light {
  color: #d4e9fa;
}

.cta-panel h2 {
  color: #ffffff;
}

.cta-panel p:not(.section-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: #d8e8f5;
}

.confirmation-note {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 9px;
  color: #fff3dd;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  font-size: 0.73rem;
  font-weight: 700;
}

.cta-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.btn-light {
  color: var(--primary-strong);
  background: #ffffff;
}

.btn-light:hover {
  background: #eaf3fb;
}

.btn-outline-light {
  color: #ffffff;
  background: transparent;
  border-color: #9dc0df;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.contact-section {
  background: var(--surface-soft);
}

.contact-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-style: normal;
}

.contact-card dl {
  margin: 16px 0 0;
}

.contact-card dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-card dd {
  margin: 3px 0 0;
  color: var(--heading);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--primary-strong);
}

.footer {
  padding: 34px 0;
  color: #ffffff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  gap: 25px;
}

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

.brand-mark-footer {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  background: #dfecf8;
  border-color: var(--navy);
  color: var(--primary-strong);
  font-size: 1rem;
  box-shadow: 0 0 0 1px #7897b2;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

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

.footer-brand div span {
  margin-top: 2px;
  color: #bdcbd5;
  font-size: 0.72rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d8e2e9;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-nav a:hover {
  color: #ffffff;
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }

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

  .feature-list div {
    grid-template-columns: minmax(140px, 0.42fr) 1fr;
    gap: 20px;
  }

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

  .news-card-featured {
    grid-column: 1 / -1;
  }

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

  .gallery-item-large {
    grid-row: span 2;
  }

  .gallery-item-large .gallery-placeholder {
    min-height: 475px;
  }

  .gallery-item-wide {
    grid-column: 1 / -1;
  }

  .cta-panel {
    padding: 42px;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    align-items: end;
    gap: 40px;
    margin-bottom: 38px;
  }

  .section-note {
    justify-self: end;
  }

  .cards.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card {
    padding: 26px;
  }

  .cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
  }

  .cta-actions {
    min-width: 220px;
    margin-top: 0;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .nav-wrap {
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav {
    width: auto;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
  }

  .nav a {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .nav .nav-cta {
    min-height: 42px;
    margin: 0 0 0 5px;
    padding-inline: 15px;
  }

  .hero {
    padding: 88px 0 98px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.8fr);
    gap: 68px;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.2vw, 5.2rem);
  }

  .quick-access {
    margin-top: -42px;
  }

  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .quick-grid a {
    min-height: 98px;
  }

  .split {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.75fr);
    gap: 70px;
  }

  .quote-card {
    padding: 38px 34px;
  }

  .news-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
  }

  .news-card-featured {
    grid-column: auto;
  }

  .news-media {
    min-height: 220px;
  }

  .news-media-featured {
    min-height: 270px;
  }

  .gallery-grid {
    grid-template-columns: 1.15fr 0.9fr 0.9fr;
    grid-template-rows: repeat(2, minmax(180px, auto));
  }

  .gallery-item-large {
    grid-row: 1 / 3;
  }

  .gallery-item-large .gallery-placeholder {
    min-height: 448px;
  }

  .gallery-item-wide {
    grid-column: 2 / 4;
  }

  .gallery-item-wide .gallery-placeholder {
    min-height: 190px;
  }
}

@media (min-width: 1100px) {
  .nav {
    gap: 5px;
  }

  .nav a {
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .section {
    padding: 104px 0;
  }
}

@media (max-width: 359px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

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

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

  .menu-toggle {
    padding-inline: 10px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 2.38rem;
  }

  .photo-placeholder-hero {
    border-radius: 56px 10px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
