:root {
  --yellow: #fff500;
  --ink: #1a1a1a;
  --white: #ffffff;
  --blue: #275dad;
  --gray: #f2f2f2;
  --muted: #6f6f6f;
  --shadow: 0 20px 40px rgba(26, 26, 26, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 20px;
}

h2 {
  margin-bottom: 25px;
}

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

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

main {
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 2vw 120px;
}

.bg-accent {
  position: fixed;
  z-index: -1;
  filter: blur(0px);
}

.bg-accent--one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 245, 0, 0.35), rgba(255, 255, 255, 0));
  top: -120px;
  right: -120px;
}

.bg-accent--two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(39, 93, 173, 0.18), rgba(255, 255, 255, 0));
  bottom: -200px;
  left: -200px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid #ececec;
}

.nav {
  max-width: 1376px;
  margin: 0 auto;
  padding: 20px 2vw;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #fff500;
  color: #1a1a1a;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  background: var(--white);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease, color 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: #fff500;
  color: #1a1a1a;
}

.cta-youtube {
  background: #ff0b51;
  color: #ffffff;
}

.cta-youtube:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ghost:hover {
  background: #fff500;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  padding: 100px 0 80px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.05;
  margin: 20px 0;
}

.hero p {
  font-size: 23px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-card__image {
  height: 380px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
  border: 2px solid #ededed;
  overflow: hidden;
}

.hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.hero-card__meta .label {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.hero-card__meta h3 {
  font-size: 48px;
  line-height: 1.05;
  margin-top: 8px;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--muted);
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 600;
  font-size: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 17px;
  color: var(--muted);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.section-sub {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.section-head > p,
.mission-copy > p,
.media-copy > p,
.skills-copy > p,
.cta-copy > p,
.audit-inner > p {
  font-size: 23px;
}

.section-head h2 {
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.15;
}

.headline-xl {
  font-size: clamp(50px, 4.9vw, 74px);
}

.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  padding: 96px 0;
}

.mission-copy h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  margin: 0 0 25px;
  line-height: 1.15;
}

.mission-copy p {
  color: var(--muted);
}

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

.info-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #ededed;
  background: var(--gray);
}

.work {
  padding: 96px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid #ececec;
  overflow: hidden;
  display: grid;
  gap: 16px;
}

.work-thumb {
  height: 220px;
  background: linear-gradient(140deg, #ffffff, #f4f4f4);
  overflow: hidden;
}

.work-thumb--alt {
  background: linear-gradient(140deg, #ffffff, #eaeaea);
}

.work-thumb--dark {
  background: linear-gradient(140deg, #1a1a1a, #3d3d3d);
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-meta {
  padding: 0 16px 20px;
}

.work-meta span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logos {
  padding: 40px 0 60px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  text-align: center;
  color: var(--muted);
}

.logo-strip {
  margin-top: 16px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
  color: var(--ink);
}

.services {
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-grid article {
  background: var(--yellow);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #e6e600;
  font-size: 17px;
}

.services-grid h3 {
  font-size: 1.8em;
}

.keyfacts {
  padding: 96px 0;
}

.keyfacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.keyfact-card {
  background: var(--gray);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 30px;
  font-size: 17px;
}

.keyfact-card h3 {
  font-size: 1.8em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.keyfact-card p {
  color: var(--muted);
}

.testimonials {
  padding: 96px 0;
}

.fullwidth-image {
  width: 100%;
  margin-left: 0;
  transform: none;
  padding: 0;
  margin-bottom: 80px;
}

.fullwidth-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

.portfolio {
  padding: 0 0 96px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  min-height: 240px;
  background: var(--white);
}

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

.portfolio-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff500;
  color: #1a1a1a;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-grid article {
  border-radius: 18px;
  border: 1px solid #ededed;
  padding: 30px;
  background: var(--white);
  font-size: 17px;
}

.testimonial-grid p {
  margin-bottom: 16px;
}

.clients {
  padding: 46px;
  background: var(--gray);
  border-radius: 32px;
  margin: 56px 0;
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.clients-image {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #ededed;
  background: var(--white);
  aspect-ratio: 1 / 1;
  width: 100%;
}

.clients-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clients-content .section-head,
.clients-content .client-grid {
  padding-left: 28px;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.client-grid span {
  background: var(--white);
  border: 1px solid #e3e3e3;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 15px;
}

.skills {
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.skills-copy {
  max-width: 420px;
}

.skills-copy h2 {
  font-size: clamp(50px, 4.9vw, 74px);
  line-height: 1.15;
}

.skills-columns {
  display: contents;
}

.skills-columns > div {
  padding-top: 33px;
}

.skills-columns ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 17px;
}

.skills h3 {
  font-size: 1.5em;
}

.media {
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
}

.media-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.media-copy h2 {
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.media-list {
  display: grid;
  gap: 22px;
}

.media-list article {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 30px;
}

.media-list article.media-card-newsletter {
  background: #275dad !important;
  border-color: #275dad !important;
  color: #ffffff !important;
}

.media-list article.media-card-newsletter h3 a,
.media-list article.media-card-newsletter p {
  color: #ffffff !important;
}

.media-list article.media-card-newsletter h3 a {
  color: var(--yellow) !important;
}

.media-list article.media-card-podcast {
  background: var(--yellow) !important;
  border-color: #e6e600 !important;
}

.media-list article.media-card-podcast p {
  color: #1a1a1a !important;
}

.media-list article.media-card-youtube {
  background: #ff0b51 !important;
  border-color: #ff0b51 !important;
  color: #ffffff !important;
}

.media-list article.media-card-youtube p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.media-list article.media-card-youtube h3 a {
  color: var(--yellow) !important;
}

.media-list h3 {
  margin-bottom: 8px;
  font-size: 34px;
}

.media-list h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.media-list h3 a:hover {
  color: var(--yellow);
  text-decoration: none;
}

.media-list article.media-card-newsletter h3 a:hover,
.media-list article.media-card-youtube h3 a:hover {
  color: #ffffff !important;
}

.media-card-podcast h3 a:hover {
  color: #ffffff;
}

.media-list p {
  color: var(--muted);
}

.media-platforms {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.media-platforms .ghost {
  padding: 8px 14px;
  font-size: 14px;
}

.media-card-podcast .media-platforms .ghost:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.about-plus {
  padding: 96px 0;
}

.about-plus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-plus-card {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 30px;
}

.about-plus-card h3 {
  margin-bottom: 10px;
}

.about-plus-card p {
  color: var(--muted);
}

.partner {
  padding: 96px 0;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-grid span {
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid #e6e600;
  border-radius: 999px;
  padding: 9px 16px;
}

.provided {
  padding: 96px 0;
}

.provided-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.provided-list li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2px 0;
  font-weight: 500;
}

.academic {
  padding: 96px 0;
}

.academic-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.academic-list article {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 30px;
}

.academic-list h3 {
  margin-bottom: 10px;
}

.academic-list p {
  color: var(--muted);
  margin-bottom: 10px;
}

.founder {
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.founder-image {
  height: 360px;
  border-radius: 28px;
  background: linear-gradient(120deg, #ffffff, #e9e9e9);
  border: 2px solid #ededed;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faqs {
  padding: 80px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--white);
  font-size: 17px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  color: var(--muted);
  margin-top: 12px;
}

.cta-block {
  padding: 96px 0 56px;
}

.international + .cta-block {
  padding-top: 36px;
}

.clients + .cta-block {
  padding-top: 24px;
}

.cta-inner {
  background: var(--blue);
  color: var(--white);
  border-radius: 28px;
  padding: 52px;
  display: grid;
  gap: 22px;
}

.cta-inner .eyebrow,
.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
}

.vita-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin: 18px 0 24px;
}

.cta-inner .cta {
  background: var(--yellow);
  color: var(--ink);
  justify-self: start;
}

.cta-inner .ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.cta-inner .ghost:hover {
  background: #fff500;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.cta-inner--newsletter {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 28px;
}

.cta-copy .hero-actions {
  margin-top: 8px;
}

.cta-image {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.podcast {
  padding: 96px 0;
}

.podcast-top {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

.podcast-cover {
  margin-bottom: 0;
}

.podcast-cover img {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #e1e1e1;
}

.podcast-latest {
  background: var(--gray);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}

.podcast-latest h3 {
  margin: 8px 0 6px;
}

.podcast-latest .latest-meta {
  color: var(--muted);
  font-size: 16px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.podcast-card {
  background: var(--white);
  border: 1px solid #ededed;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 24px rgba(26, 26, 26, 0.06);
}

.podcast-card h3 {
  margin-bottom: 10px;
}
.podcast-card p {
  color: var(--muted);
}

.podcast-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.international {
  padding: 96px 0 40px;
}

.international .section-head {
  margin-bottom: 56px;
}

.international-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  margin-bottom: 64px;
}

.international-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: var(--white);
}

.international-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.international-intro {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.international-intro h3 {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.international-intro p {
  color: var(--muted);
  margin-bottom: 12px;
}

.international-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.international-content article {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 30px;
}

.international-content h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.1;
}

.international-content p {
  color: var(--muted);
  margin-bottom: 12px;
}

.international-sparring {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e6e600;
  margin-top: 86px;
}

.international-sparring h3 {
  margin-bottom: 12px;
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1.1;
  max-width: 70%;
}

.international-sparring p {
  color: #1a1a1a;
  margin-bottom: 12px;
  max-width: 70%;
}

.cta-emphasis {
  background: #1a1a1a;
  color: #ffffff;
  font-size: 18px;
  padding: 14px 26px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.2);
}

.cta-emphasis:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.international-sparring .cta-emphasis {
  margin-top: 30px;
}

.audit {
  padding: 96px 0 32px;
}

.audit-inner {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: 40px;
}

.audit-inner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 880px;
}

.audit-inner .cta {
  margin-top: 18px;
  background: #fff500;
  color: #1a1a1a;
}

.audit-inner .cta:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.site-footer {
  max-width: 1376px;
  margin: 0 auto;
  padding: 40px 2vw 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid #ededed;
  color: var(--muted);
  font-size: 16px;
}

.site-footer h3 {
  color: var(--ink);
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer .cta,
.site-footer .ghost {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
}

.site-footer .ghost {
  margin-top: 10px;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.newsletter-popup.is-open {
  display: block;
}

.newsletter-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.newsletter-popup__panel {
  position: relative;
  width: min(92vw, 560px);
  margin: 10vh auto 0;
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(26, 26, 26, 0.25);
}

.newsletter-popup__image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.newsletter-popup__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.newsletter-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.newsletter-popup__panel h2 {
  margin-top: 10px;
}

.newsletter-popup__panel p {
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .hero,
  .mission,
  .founder {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .services-grid,
  .keyfacts-grid,
  .testimonial-grid,
  .podcast-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-plus-grid,
  .academic-list,
  .provided-list,
  .international-content {
    grid-template-columns: 1fr;
  }

  .international-top {
    grid-template-columns: 1fr;
  }

  .podcast-latest {
    flex-direction: column;
    align-items: flex-start;
  }

  .podcast-top {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-end;
    position: relative;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-inner--newsletter {
    grid-template-columns: 1fr;
  }

  .skills {
    grid-template-columns: 1fr;
  }

  .clients-layout {
    grid-template-columns: 1fr;
  }

  .media {
    grid-template-columns: 1fr;
  }

  .nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 2vw;
    left: 2vw;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 18px 36px rgba(26, 26, 26, 0.12);
    z-index: 40;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.is-open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  main {
    padding: 0 6vw 80px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .skills-columns {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 28px;
  }
}
