:root {
  --bg: #f5efe6;
  --surface: rgba(255, 248, 239, 0.82);
  --surface-strong: #fffaf3;
  --ink: #1f2430;
  --muted: #5f6675;
  --accent: #0c6b58;
  --accent-2: #ef8f3b;
  --accent-3: #16324f;
  --line: rgba(22, 50, 79, 0.12);
  --shadow: 0 18px 45px rgba(23, 34, 56, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 143, 59, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(12, 107, 88, 0.18), transparent 26%),
    linear-gradient(145deg, #f8f2ea 0%, #f1ebe1 45%, #e8f0ee 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(124, 177, 223, 0.94);
  border-bottom: 1px solid rgba(22, 50, 79, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.brand-text {
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  color: #16324f;
}

.brand-text span {
  color: rgba(22, 50, 79, 0.72);
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface-strong);
  color: var(--accent-3);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(22, 50, 79, 0.88);
  transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.45);
  color: #16324f;
}

.page {
  padding: 0 0 4rem;
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.9), rgba(245, 239, 230, 0.78)),
    url("assets/campus-gallery.png") center top/cover no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0 auto 2rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(22, 50, 79, 0.96), rgba(12, 107, 88, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: #fff7ef;
  box-shadow: var(--shadow);
}

.hero-full {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin-bottom: 2rem;
}

.hero-home {
  background:
    linear-gradient(135deg, rgba(15, 37, 59, 0.58), rgba(12, 107, 88, 0.36)),
    url("assets/home-banner.png") center/cover no-repeat;
}

.hero-home h1,
.hero-home p,
.hero-home .eyebrow,
.hero-home .glass-card {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-note {
  margin: 0 0 0.8rem;
  color: #fff7ef;
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -100px;
  top: -120px;
  background: rgba(239, 143, 59, 0.22);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0.9rem 0 1rem;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.hero p,
.section-heading p,
.after-banner-copy p,
.feature-tile p,
.card p,
.stats-card p,
.timeline p,
.contact-list li,
.feature-list li,
.footer-grid p {
  color: inherit;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.7;
}

.hero p {
  max-width: 60ch;
  color: rgba(255, 247, 239, 0.85);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: #fff6ea;
  color: var(--accent-3);
  box-shadow: 0 12px 28px rgba(8, 18, 33, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff9f2;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(10, 20, 38, 0.24);
}

.glass-card,
.card,
.stats-card,
.info-block,
.timeline,
.contact-panel,
.table-wrap {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
}

.glass-card strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
}

.glass-card span {
  display: block;
  color: rgba(255, 248, 239, 0.78);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.badge-grid,
.grid-3,
.grid-2,
.stats-grid,
.footer-grid,
.contact-grid,
.program-grid,
.admission-grid {
  display: grid;
  gap: 1.25rem;
}

.badge-grid,
.grid-3,
.stats-grid,
.program-grid,
.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.section {
  margin-top: 2rem;
  scroll-margin-top: 6rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading p {
  color: var(--muted);
  max-width: 70ch;
}

.notice-board-section {
  margin-top: -0.6rem;
  scroll-margin-top: 6rem;
}

.notice-board-section .section-heading {
  margin-bottom: 0.75rem;
}

.after-banner-section {
  margin-top: 1.5rem;
}

.after-banner-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(233, 243, 239, 0.86)),
    radial-gradient(circle at top left, rgba(239, 143, 59, 0.24), transparent 34%),
    url("assets/campus-gallery.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.after-banner-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.94), rgba(255, 250, 243, 0.52), rgba(12, 107, 88, 0.14));
  pointer-events: none;
}

.after-banner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(0.4rem, 1.5vw, 1rem);
}

.after-banner-copy h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
  color: var(--accent-3);
}

.after-banner-copy p {
  margin: 0 0 1.25rem;
  max-width: 56ch;
  color: var(--muted);
}

.why-highlight {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.1rem;
  border: 2px solid rgba(22, 50, 79, 0.88);
  border-radius: 14px;
  background: #fff6d8;
  color: var(--accent-3);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 6px 6px 0 rgba(22, 50, 79, 0.14);
}

.why-highlight::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(12, 107, 88, 0.14);
}

.after-banner-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: stretch;
}

.feature-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(22, 50, 79, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 24px rgba(23, 34, 56, 0.07);
}

.feature-tile span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.feature-tile h3 {
  margin: 0 0 0.3rem;
  color: var(--accent-3);
  font-size: 1rem;
  line-height: 1.2;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.feature-tile-accent {
  background: linear-gradient(160deg, rgba(22, 50, 79, 0.95), rgba(12, 107, 88, 0.86));
  color: #fff8f0;
}

.feature-tile-accent h3,
.feature-tile-accent p {
  color: inherit;
}

.headline-highlight {
  display: inline-block;
  padding: 0.2rem 0.75rem 0.28rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 143, 59, 0.22), rgba(12, 107, 88, 0.14));
  box-shadow: inset 0 -1px 0 rgba(12, 107, 88, 0.1);
}

.notice-board-heading {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--accent-3);
  border-radius: 14px;
  background: #fff6d8;
  color: var(--accent-3);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 7px 7px 0 rgba(22, 50, 79, 0.16);
}

.notice-board-heading::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: #ef8f3b;
  box-shadow: 0 0 0 5px rgba(239, 143, 59, 0.18);
}

.notice-board-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(12, 107, 88, 0.18);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 12px 28px rgba(23, 34, 56, 0.08);
}

.notice-board-card h3 {
  margin: 0 0 0.35rem;
}

.notice-board-card p {
  margin: 0;
  color: var(--muted);
}

.notice-board-card .btn {
  width: auto;
}

.notice-inline-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-3);
  color: #fffaf3;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.notice-label {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 107, 88, 0.12);
  color: var(--accent);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card,
.stats-card,
.info-block,
.timeline,
.contact-panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.card h3,
.stats-card h3,
.info-block h3,
.timeline h3,
.contact-panel h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.card p,
.stats-card p,
.info-block p,
.timeline p,
.contact-list li {
  color: var(--muted);
}

.accent-card {
  background: linear-gradient(150deg, rgba(239, 143, 59, 0.18), rgba(255, 255, 255, 0.82));
}

.highlight-card {
  position: relative;
  border: 2px solid rgba(239, 143, 59, 0.55);
  background: linear-gradient(135deg, rgba(239, 143, 59, 0.28), rgba(255, 248, 239, 0.96));
  box-shadow: 0 20px 48px rgba(239, 143, 59, 0.18);
}

.highlight-card::before {
  content: "Important Update";
  position: absolute;
  top: -14px;
  left: 1.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fffaf3;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deep-card {
  background: linear-gradient(160deg, rgba(22, 50, 79, 0.96), rgba(30, 72, 107, 0.88));
  color: #fff8f0;
}

.deep-card .kicker,
.deep-card h3,
.deep-card li {
  color: #fff8f0;
}

.deep-card p {
  color: rgba(255, 248, 240, 0.78);
}

.deep-card .feature-list li::before {
  background: var(--accent-2);
}

.pathway-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.16);
  border: 1px solid rgba(255, 248, 240, 0.28);
  color: #fff8f0;
  line-height: 1;
}

.pathway-highlight-light {
  background: rgba(12, 107, 88, 0.12);
  border-color: rgba(12, 107, 88, 0.22);
  color: var(--accent);
}

.student-highlight {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: rgba(22, 50, 79, 0.1);
  border: 1px solid rgba(22, 50, 79, 0.18);
  color: var(--accent-3);
  font-weight: 800;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.program-media {
  overflow: hidden;
  padding: 0;
}

.program-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.program-media .content {
  padding: 1.4rem;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.stats-card strong {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-3);
}

.feature-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.feature-list li,
.contact-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.feature-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

th {
  background: rgba(22, 50, 79, 0.06);
  color: var(--accent-3);
}

.timeline {
  position: relative;
}

.timeline-step {
  padding: 0.9rem 0 0.9rem 1.3rem;
  border-left: 2px solid rgba(12, 107, 88, 0.24);
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 1.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
}

.timeline-step strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--accent-3);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(22, 50, 79, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 3rem;
}

.footer-wrap {
  border-top: 1px solid rgba(22, 50, 79, 0.12);
  padding-top: 1.6rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.footer-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    position: relative;
    padding: 0.85rem 0;
  }

  .hero-grid,
  .after-banner-panel,
  .badge-grid,
  .grid-3,
  .grid-2,
  .stats-grid,
  .footer-grid,
  .contact-grid,
  .program-grid,
  .admission-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .hero {
    padding: 1.8rem 0 2.2rem;
  }

  .hero-full {
    border-radius: 0 0 26px 26px;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .button-row {
    gap: 0.75rem;
  }

  .after-banner-section {
    margin-top: 1.5rem;
  }

  .notice-board-section {
    margin-top: 1rem;
  }

  .after-banner-cards {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: auto;
  }

  .feature-tile-accent {
    transform: none;
  }

  .notice-board-card {
    align-items: stretch;
    padding: 1.2rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    margin-top: 1.5rem;
  }
}

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

  .site-header {
    backdrop-filter: blur(10px);
  }

  .nav-wrap {
    gap: 0.8rem;
  }

  .brand {
    gap: 0.65rem;
    max-width: calc(100% - 96px);
  }

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

  .brand-text strong {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .brand-text span {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .menu-toggle {
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
  }

  .hero {
    padding: 1.5rem 0 1.9rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
    margin: 0.7rem 0 0.9rem;
    max-width: 10ch;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.74rem;
    padding: 0.42rem 0.75rem;
  }

  .card,
  .stats-card,
  .info-block,
  .timeline,
  .contact-panel,
  .glass-card {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .highlight-card::before {
    left: 1rem;
    top: -12px;
    font-size: 0.68rem;
    padding: 0.3rem 0.7rem;
  }

  .image-card img {
    min-height: 220px;
  }

  th,
  td {
    padding: 0.85rem;
    font-size: 0.92rem;
  }

  .footer-grid {
    gap: 0.85rem;
  }

  .footer-note {
    font-size: 0.88rem;
  }
}

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

  .brand {
    max-width: calc(100% - 86px);
  }

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

  .button-row {
    margin-top: 1.1rem;
  }

  .site-nav {
    right: 0.5rem;
    left: 0.5rem;
  }
}
