/*
  Code by Noah Chang
  Want fast, high quality websites for your projects? Email me at thenoahchang@gmail.com
*/
/* Living OIT — static clone of projectlivingoit.wixsite.com/living-oit */

:root {
  --navy: #001f3f;
  --navy-deep: #001b33;
  --orange: #ff8c00;
  --sky: #e1f5fe;
  --slate: #40576f;
  --slate-soft: #3a6d8c;
  --slate-panel: #457b9d;
  --contact-bg: #41576f;
  --ticker-bg: #41576f;
  --gray: #e1e8ee;
  --off-white: #fafafa;
  --white: #ffffff;
  --text: #40576f;
  --heading: #001f3f;
  --instagram: #e1306c;
  --success: #489f48;
  --error: #d82222;
  --max: 1120px;
  --header-h: 84px;
  --ticker-h: 40px;
  --radius: 28px;
  --radius-sm: 22px;
  --shadow: 0 12px 40px rgba(0, 31, 63, 0.08);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Onest", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: #116dff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  background: var(--sky);
  position: sticky;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
  height: auto;
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

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

.site-nav a {
  font-weight: 500;
  color: var(--navy);
  position: relative;
}

.site-nav a:hover {
  color: var(--slate-soft);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #e67e00;
  border-color: #e67e00;
}

.btn-secondary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.req {
  color: var(--error);
}

/* Hero — header (nav + ticker) + this section = 100vh */
.hero {
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
  padding: 2rem 0 2.5rem;
  background: var(--white);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero > .container {
  width: min(100% - 3rem, 1280px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.hero .lede {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  max-width: 40rem;
  line-height: 1.55;
  color: var(--slate);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  min-height: min(52vh, 520px);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-tint {
  background: var(--sky);
}

.section-soft {
  background: var(--off-white);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 1.5rem;
}

.section-title-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Journey bento */
.journey-section {
  background: var(--sky);
  min-height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 3.5rem 0;
}

.journey-bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  color: inherit;
}

.bento-card:hover {
  transform: translateY(-3px);
}

.bento-feature {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}

.bento-feature-media {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

.bento-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-feature-copy {
  padding: 1.5rem 1.6rem 1.75rem;
}

.bento-feature-copy h3,
.bento-reflections h3,
.bento-qa h3,
.bento-curated h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin: 0 0 0.65rem;
}

.bento-feature-copy p,
.bento-reflections p,
.bento-qa p,
.bento-curated p {
  margin: 0;
  color: var(--slate);
  line-height: 1.55;
}

.bento-reflections {
  grid-column: 2 / span 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  min-height: 210px;
}

.bento-logo {
  width: min(160px, 28vw);
  height: auto;
  object-fit: contain;
}

.bento-qa,
.bento-curated {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.bento-qa {
  grid-column: 2;
  grid-row: 2;
}

.bento-curated {
  grid-column: 3;
  grid-row: 2;
}

.journey-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.link-access {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 1.05rem;
}

.link-access:hover {
  color: #e67e00;
}

.card-media {
  border-radius: 14px;
  overflow: hidden;
  margin: -0.25rem -0.25rem 0.5rem;
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.resource-card .card-media {
  margin: 0;
  border-radius: 0;
}

.resource-card .card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.resource-card h5 {
  font-size: 1.2rem;
  margin: 0;
}

.resource-card p {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
}

/* Home contact band */
.home-contact-section {
  background: #ffffff;
  height: 100vh;
  min-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #e1f5fe;
  border-bottom: 2px solid #e1f5fe;
}

.home-contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 3.2vw;
  width: 100%;
  box-sizing: border-box;
}

/* bleeds off the left edge, rounded on the right only */
.form-shell {
  background: #e1f5fe;
  border-radius: 0 36px 36px 0;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 48%;
  min-width: 0;
  height: 55vh;
  box-sizing: border-box;
}

.form-panel,
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: none;
}

.form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
}

.home-contact-form {
  gap: 0.75rem;
}

.home-contact-form .field label {
  color: #222;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.home-contact-form .field input,
.home-contact-form .field textarea {
  border: 1px solid #cfd6dd;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  background: #fff;
  font-size: 0.95rem;
}

.home-contact-form .field textarea {
  min-height: 88px;
  resize: none;
}

.home-contact-form .btn-block {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #f58e26;
  border-color: #f58e26;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.home-contact-form .btn-block:hover {
  background: #e07d12;
  border-color: #e07d12;
}

.reach-panel {
  background: #457b9d;
  color: var(--white);
  border-radius: 36px 0 0 36px;
  padding: 2.25rem clamp(2rem, 4.5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 63vh;
  flex: 1 1 48%;
  min-width: 0;
  box-sizing: border-box;
}

.reach-panel h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.reach-panel p {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  max-width: 18rem;
  line-height: 1.45;
  font-weight: 400;
}

/* Contact page */
.contact-page {
  background: var(--contact-bg);
  padding: 4rem 0;
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-page-copy h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin-bottom: 1.25rem;
}

.contact-page-copy > p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  max-width: 30rem;
  margin-bottom: 2rem;
}

.contact-page .email-block {
  margin: 0;
}

.contact-page .email-block h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.contact-page .email-block a {
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

.contact-page .email-block a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page .form-card {
  padding: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--gray);
  background: var(--white);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--slate-soft);
  box-shadow: 0 0 0 3px rgba(58, 109, 140, 0.15);
}

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

.form-status {
  display: none;
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(72, 159, 72, 0.12);
  color: var(--success);
  font-weight: 600;
}

.form-status.show {
  display: block;
}

.email-block {
  margin: 1.25rem 0 2rem;
}

.email-block a {
  color: var(--slate-soft);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* About */
.about-container {
  width: min(100% - 3rem, 1360px);
}

.about-section .section-intro {
  max-width: 48rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.75rem 2.5rem;
}

.team-card {
  text-align: left;
}

.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--gray);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--slate);
}

/* Article / reflections */
.article {
  padding: 3.5rem 0 5rem;
}

.article > .container {
  width: min(100% - 3rem, 900px);
}

.article-header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.article-header h1 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.1;
}

.article-kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.byline {
  color: var(--slate);
  font-size: 1.15rem;
}

.article-hero {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.article-body p {
  margin-bottom: 1.4rem;
}

.article-body h2,
.article-body h3 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
}

.provider-questions {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 1.75rem;
  border-radius: var(--radius-sm);
  background: var(--sky);
}

.provider-questions ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.provider-questions li {
  margin-bottom: 0.4rem;
}

.chart-wrap {
  max-width: 900px;
  margin: 2rem auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.chart-wrap img {
  width: 100%;
  height: auto;
}

.article > .container.map-section,
.map-section {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto 4rem;
  padding: 0;
}

.clinics-map-heading {
  text-align: center;
  max-width: 760px;
  margin: 3rem auto 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.clinics-map-lede {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.25rem;
  color: var(--slate);
}

.map-embed {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray);
  aspect-ratio: 750 / 560;
}

.clinics-iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Resources contact footer */
.resources-contact {
  background: var(--contact-bg);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.resources-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  width: min(100% - 3rem, 1200px);
}

.resources-contact-copy h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 14ch;
}

.resources-contact .email-block {
  margin: 0;
}

.resources-contact .email-block h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.resources-contact .email-block a {
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

.resources-contact .email-block a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resources-contact .form-card {
  padding: 2rem;
  border-radius: 24px;
}

.resources-contact .btn-block {
  border-radius: 999px;
}

/* News ticker */
.news-ticker {
  background: var(--ticker-bg);
  color: var(--white);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 2;
}

.news-ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-width: 0;
}

.news-ticker-label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-right: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.news-ticker-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 1.5rem, #000 calc(100% - 1.5rem), transparent);
}

.news-ticker-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: news-scroll 42s linear infinite;
}

.news-ticker:hover .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker-track a {
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 500;
}

.news-ticker-track a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-ticker-track a::after {
  content: "•";
  margin-left: 2.5rem;
  opacity: 0.55;
  text-decoration: none;
}

@keyframes news-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker-track {
    animation: none;
  }
}

/* Footer */
.site-footer {
  background: var(--sky);
  color: var(--slate);
  padding: 1.75rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  color: #6b7c8f;
  font-size: 0.95rem;
}

.social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: var(--instagram);
  color: var(--white);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

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

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* Article pages show content immediately — no fade-in */
  .article .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .home-contact-layout,
  .contact-page-grid,
  .resources-contact-grid,
  .resource-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .resources-contact-copy h2 {
    max-width: none;
  }


  .home-contact-section {
    height: auto;
    min-height: 100vh;
    padding: 2.5rem 0;
  }

  .home-contact-layout {
    flex-direction: column;
    padding: 0;
    gap: 4vh;
  }

  .form-shell,
  .reach-panel {
    width: 92%;
    flex: none;
    height: auto;
    min-height: 0;
  }

  .form-shell {
    padding: 1.5rem;
  }

  .reach-panel {
    align-self: flex-end;
    padding: 2.5rem 2rem;
    min-height: 40vh;
  }

  .journey-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-feature {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .bento-reflections {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .bento-qa,
  .bento-curated {
    grid-column: auto;
    grid-row: auto;
  }

  .resource-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0 1rem;
  }

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

  .journey-bento,
  .resource-grid,
  .team-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .bento-feature,
  .bento-reflections {
    grid-column: auto;
  }

  .bento-reflections {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bento-logo {
    width: 120px;
    justify-self: start;
  }

  .hero {
    padding-top: 1.75rem;
    min-height: calc(100vh - var(--header-h) - var(--ticker-h));
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .header-inner {
    padding: 0.75rem 0;
    height: auto;
  }

  .btn.header-cta {
    padding: 0.7rem 1.1rem;
    font-size: 0.8rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
