:root {
  --green-950: #173124;
  --green-850: #1f4331;
  --green-700: #2f6046;
  --green-100: #e7f0e7;
  --cream: #fbf8f1;
  --cream-strong: #f1eadc;
  --amber: #e7a13a;
  --amber-strong: #c88428;
  --ink: #253028;
  --ink-soft: #5f6b62;
  --white: #ffffff;
  --line: #ded7ca;
  --radius: 8px;
  --shadow: 0 12px 34px rgba(23, 49, 36, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

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

a {
  color: var(--green-700);
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--green-950);
  line-height: 1.13;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 49, 36, 0.96);
  box-shadow: 0 4px 18px rgba(23, 49, 36, 0.15);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-menu a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-menu a:hover,
.dropdown-toggle:hover,
.nav-menu a.active,
.dropdown.active .dropdown-toggle {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.nav-menu a.nav-cta {
  background: var(--amber);
  color: var(--green-950);
}

.nav-menu a.nav-cta:hover,
.nav-menu a.nav-cta.active {
  background: var(--amber-strong);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 248px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: flex;
  width: 100%;
  border-radius: 6px;
  color: var(--green-950);
  padding: 10px 12px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--green-100);
  color: var(--green-950);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background: var(--green-950);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 32, 23, 0.68), rgba(14, 32, 23, 0.43) 46%, rgba(14, 32, 23, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, 92%);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 650;
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2.1vw, 22px);
  max-width: 820px;
  margin: 0 auto 34px;
  font-weight: 700;
}

.btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--green-950);
}

.btn-primary:hover {
  background: var(--amber-strong);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark-outline {
  color: var(--green-950);
  border-color: var(--green-700);
  background: transparent;
}

.btn-dark-outline:hover {
  background: var(--green-100);
}

section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-block;
  justify-self: start;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}

.section-title-single-line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(30px, 3.35vw, 42px);
}

.section-sub {
  color: var(--ink-soft);
  font-size: 19px;
  max-width: 710px;
}

.follow-sub {
  max-width: none;
  white-space: nowrap;
}

.intro-band {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.86);
  padding: 46px 0;
}

.intro-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.intro-band-grid p {
  min-width: 0;
}

.stat-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  color: var(--amber);
  stroke-width: 1.8;
}

.intro-band strong {
  display: block;
  color: var(--amber);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.intro-band span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.25;
  white-space: nowrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-media {
  min-height: 190px;
  background-image: linear-gradient(rgba(20, 40, 28, 0.18), rgba(20, 40, 28, 0.18)), var(--card-image);
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 26px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
}

.card .btn {
  margin-top: 20px;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 118px 0 72px;
  background-image: linear-gradient(180deg, rgba(17, 34, 25, 0.58), rgba(17, 34, 25, 0.72)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 66px);
  margin-bottom: 14px;
  max-width: 900px;
}

.page-hero h1.page-title-single-line {
  max-width: none;
  white-space: nowrap;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  font-size: 20px;
  font-weight: 700;
}

.article-hero {
  min-height: 520px;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 5.2vw, 62px);
}

.article-meta {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-section {
  background: var(--cream-strong);
}

.article-shell {
  max-width: 920px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-700);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.article-content {
  display: grid;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}

.article-content p,
.article-content li {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 12px;
  color: var(--green-950);
}

.article-content h4 {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content a {
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flipped-media img {
  transform: scaleX(-1);
}

.prose {
  display: grid;
  gap: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.cream-section {
  background: var(--cream-strong);
}

.experience-section {
  padding: 80px 0;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: center;
}

.experience-copy {
  display: grid;
  gap: 18px;
}

.experience-copy p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.owner-signature {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: var(--shadow);
  padding: 34px;
}

.owner-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 26px;
}

.signature-mark {
  width: min(100%, 260px);
  height: auto;
  margin-bottom: 20px;
}

.owner-signature p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.home-testimonials-section {
  background: var(--green-950);
}

.home-testimonials-section .section-title {
  color: var(--white);
}

.home-testimonials-section .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber);
}

.home-testimonials-section .t-nav button {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.home-testimonials-section .t-nav button:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--green-950);
}

.t-nav {
  display: flex;
  gap: 10px;
}

.t-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green-700);
  background: var(--white);
  color: var(--green-950);
  font-size: 18px;
  cursor: pointer;
}

.t-nav button:hover {
  background: var(--green-700);
  color: var(--white);
}

.testimonial-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(420px, 86vw);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  scrollbar-width: none;
}

.testimonial-scroller::-webkit-scrollbar {
  display: none;
}

.testimonial-grid {
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  scroll-snap-type: none;
  padding: 0;
  scrollbar-width: auto;
}

.testimonial-grid .testimonial-card {
  scroll-snap-align: none;
}

.testimonial-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: open-quote;
  display: block;
  height: 24px;
  color: var(--amber);
  font-family: "Fraunces", Georgia, serif;
  font-size: 48px;
  line-height: 0.8;
}

.testimonial-person {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-person img {
  width: 92px;
  max-height: 48px;
  object-fit: contain;
}

.testimonial-person strong {
  display: block;
  color: var(--green-950);
  line-height: 1.25;
}

.testimonial-person span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.news-card .outlet {
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 900;
}

.news-card .date {
  color: var(--ink-soft);
  font-size: 14px;
}

.news-card p:last-of-type {
  color: var(--ink-soft);
  flex: 1;
}

.news-card a {
  font-weight: 900;
  text-decoration: none;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.social-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.social-card strong {
  display: block;
  color: var(--green-700);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.follow-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.follow-heading .section-title {
  margin-bottom: 0;
}

.social-icon-row {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--green-700);
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(23, 49, 36, 0.1);
}

.social-icon-link:hover {
  background: var(--green-700);
  color: var(--white);
}

.social-icon-link svg {
  width: 22px;
  height: 22px;
}

.social-icon-link rect,
.social-icon-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon-link path {
  fill: currentColor;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
}

.instagram-tile {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--green-100);
  border-radius: 4px;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.instagram-tile:hover img {
  transform: scale(1.045);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-panel a {
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-700);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

.job-panel {
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.externship-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: stretch;
}

.externship-callout,
.externship-card,
.externship-apply-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.externship-callout {
  display: grid;
  align-content: center;
  gap: 18px;
  border-left: 8px solid var(--amber);
  padding: 32px;
}

.externship-callout strong {
  color: var(--green-950);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.16;
}

.externship-program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}

.externship-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 320px);
  column-gap: 20px;
  align-items: start;
  padding: 30px;
}

.externship-number {
  grid-column: 1;
  grid-row: 1;
  color: var(--amber);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.08;
  margin-top: -5px;
}

.externship-card-content {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 10px;
}

.externship-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.externship-card-media {
  grid-column: 3;
  grid-row: 1;
  align-self: stretch;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--green-100);
}

.externship-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.externship-card p,
.externship-card li {
  color: var(--ink);
}

.externship-card p {
  line-height: 1.36;
}

.externship-card .feature-list {
  margin: 0;
}

.externship-card .feature-list li {
  font-size: 16px;
}

.externship-card .feature-list li::before {
  width: 0;
  height: 0;
  margin-top: 8px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--amber);
  border-radius: 0;
  background: transparent;
}

.externship-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.externship-skills li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-strong);
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.08;
}

.externship-apply-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
}

.externship-contact-list,
.externship-social {
  display: flex;
  flex-wrap: wrap;
}

.externship-contact-list {
  gap: 14px 24px;
  margin-top: 18px;
}

.externship-contact-list a {
  font-weight: 900;
  text-decoration: none;
}

.externship-social {
  gap: 10px;
  margin-top: 24px;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 52px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

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

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

@media (max-width: 1120px) {
  .nav-menu a,
  .dropdown-toggle {
    padding: 8px 9px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--green-950);
    padding: 18px 4%;
    box-shadow: 0 14px 28px rgba(12, 25, 18, 0.2);
  }

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

  .nav-menu a,
  .dropdown-toggle {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    gap: 4px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0 8px;
  }

  .dropdown-menu a {
    color: var(--white);
    justify-content: center;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .intro-band-grid,
  .cards,
  .news-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title-single-line,
  .intro-band span,
  .follow-sub {
    white-space: normal;
  }

  .content-grid,
  .content-grid.reverse,
  .experience-layout,
  .contact-layout,
  .externship-intro-grid,
  .externship-apply-card {
    grid-template-columns: 1fr;
  }

  .externship-card {
    grid-template-columns: 72px minmax(0, 1fr);
    row-gap: 18px;
  }

  .externship-card-media {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .owner-signature {
    align-self: auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    min-height: auto;
    padding: 72px 0;
  }

  .page-hero h1.page-title-single-line {
    white-space: normal;
  }

  .intro-band-grid,
  .cards,
  .news-grid,
  .social-grid,
  .testimonial-grid,
  .externship-program-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-form,
  .testimonial-card,
  .news-card,
  .social-card,
  .externship-card,
  .externship-callout,
  .card-body {
    padding: 24px;
  }

  .externship-apply-card {
    padding: 24px;
  }

  .externship-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .externship-number {
    font-size: 48px;
  }

  .follow-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .social-icon-row {
    margin-bottom: 0;
  }

  .social-icon-link {
    width: 42px;
    height: 42px;
  }

  .instagram-gallery {
    gap: 5px;
    margin-top: 26px;
  }

  .instagram-tile {
    border-radius: 3px;
  }
}
