:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-strong: #111820;
  --text: #14181f;
  --muted: #5d6673;
  --line: #d9d4c9;
  --accent: #1f5f72;
  --accent-strong: #163f4d;
  --warm: #b86f3a;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(246, 244, 239, 0.92);
  border-bottom: 1px solid rgba(217, 212, 201, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-strong);
  color: #ffffff;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  min-height: calc(100vh - 75px);
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4.35vw, 3.85rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-text,
.section-copy,
.section-heading p,
.access-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 680px;
}

.hero h1 {
  margin-bottom: 30px;
}

.hero-eyebrow {
  letter-spacing: 0.14em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--accent);
}

.profile-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.headshot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.profile-panel-copy {
  position: relative;
  padding: 24px;
  padding-bottom: 70px;
}

.profile-panel-copy p {
  margin-bottom: 8px;
  color: var(--muted);
}

.profile-panel-copy .panel-name {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
}

.degree-line {
  white-space: nowrap;
}

.profile-linkedin {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.profile-linkedin:hover {
  box-shadow: 0 10px 22px rgba(17, 24, 32, 0.18);
  transform: translateY(-1px);
}

.profile-linkedin img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.linkedin-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 8px;
  background: #0077b5;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 0.88;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(17, 24, 32, 0.24);
}

.linkedin-float:hover {
  background: #084f96;
}

.linkedin-dot {
  width: 9px;
  height: 9px;
  align-self: flex-start;
  margin-top: 11px;
  border-radius: 50%;
  background: #ffffff;
}

.linkedin-text {
  transform: translateY(3px);
}

.profile-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-section .section-copy {
  max-width: 880px;
}

.profile-narrative {
  position: relative;
  padding-top: 18px;
  line-height: 1.76;
}

.profile-narrative::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: rgba(31, 95, 114, 0.34);
}

.profile-narrative p {
  max-width: 800px;
}

.profile-narrative p:last-child {
  margin-bottom: 0;
}

.section-copy p:last-child,
.section-heading p:last-child,
.access-copy p:last-child,
.contact-section p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.with-action {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.work-grid,
.workshop-grid {
  display: grid;
  gap: 18px;
}

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

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

.work-grid article,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.workshop-heading {
  max-width: none;
}

.workshop-title-copy,
.workshop-intro-row p {
  max-width: 820px;
}

.workshop-intro-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.workshop-help-link {
  flex: 0 0 auto;
  margin-top: 2px;
  text-align: right;
  white-space: nowrap;
}

.see-more-link {
  white-space: nowrap;
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 14px;
}

.project-image {
  position: relative;
  display: flex;
  min-height: 180px;
  align-items: flex-end;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(31, 95, 114, 0.16), rgba(184, 111, 58, 0.16));
  padding: 16px;
  overflow: hidden;
}

.workshop-nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -6px 0 24px;
}

.workshop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0 14px;
  text-decoration: none;
}

.filter-button:hover,
.filter-button.active {
  border-color: rgba(31, 95, 114, 0.42);
  background: rgba(31, 95, 114, 0.1);
  color: var(--accent-strong);
}

.project-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin-top: 18px;
}

.project-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.project-pagination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
}

.text-button:hover {
  color: var(--accent-strong);
}

.text-button.is-hidden {
  display: none;
}

.is-hidden,
.project-card.is-hidden {
  display: none !important;
}

.workshop-page-hero {
  padding-bottom: 56px;
}

.workshop-directory {
  padding-top: 40px;
}

.workshop-directory-heading {
  max-width: 820px;
}

.workshop-filter-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.filter-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.workshop-results-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
}

.empty-state {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.empty-state p {
  color: var(--muted);
}

.project-photo,
.project-detail-photo {
  width: 100%;
  border-radius: var(--radius);
}

.project-image-frame {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 10px;
}

.project-photo {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.project-detail-photo {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.project-meta .status {
  margin-top: 0;
}

.project-detail {
  padding-bottom: 48px;
}

.project-back-link {
  display: inline-flex;
  margin-bottom: 28px;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 70px);
}

.project-detail-copy h1 {
  margin-bottom: 18px;
}

.project-detail-meta {
  margin-bottom: 24px;
}

.project-detail-image {
  min-height: 340px;
}

.project-detail-frame {
  min-height: 340px;
}

.project-detail-photo {
  height: 100%;
}

.project-story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  gap: clamp(28px, 5vw, 56px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.project-story {
  display: grid;
  gap: 26px;
}

.project-story article {
  max-width: 820px;
}

.project-story p:not(.eyebrow),
.project-action-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.project-action-panel {
  align-self: start;
  border-left: 2px solid rgba(31, 95, 114, 0.24);
  padding-left: 22px;
}

.project-action-panel .button {
  margin-bottom: 18px;
}

.project-image-label,
.project-image span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-strong);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.project-image-frame .project-image-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.16);
}

.project-image-automation {
  background:
    linear-gradient(135deg, rgba(31, 95, 114, 0.76), rgba(31, 95, 114, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 20px);
}

.project-image-tools {
  background:
    linear-gradient(135deg, rgba(184, 111, 58, 0.68), rgba(184, 111, 58, 0.14)),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.42), transparent 34%);
}

.project-image-games {
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.82), rgba(31, 95, 114, 0.38)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.12) 50% 75%, transparent 75%);
  background-size: auto, 34px 34px;
}

.project-image-other {
  background:
    linear-gradient(135deg, rgba(93, 102, 115, 0.7), rgba(31, 95, 114, 0.16)),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.36), transparent 28%);
}

.project-image-websites {
  background:
    linear-gradient(135deg, rgba(31, 95, 114, 0.7), rgba(246, 244, 239, 0.14)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 12%, transparent 12% 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 10%, transparent 10% 100%);
  background-size: auto, 42px 42px, 42px 42px;
}

.project-image-media {
  background:
    linear-gradient(135deg, rgba(31, 95, 114, 0.58), rgba(246, 244, 239, 0.2)),
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.46), transparent 18%),
    linear-gradient(160deg, transparent 48%, rgba(17, 24, 32, 0.18) 49% 52%, transparent 53%);
}

.project-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 6px 6px 0;
}

.project-content h3 {
  margin-top: 16px;
}

.project-content .status {
  margin-top: 0;
}

.project-content .text-link {
  margin-top: auto;
}

.work-grid article {
  grid-column: span 2;
}

.work-grid article:nth-child(4),
.work-grid article:nth-child(5) {
  grid-column: span 3;
}

.work-number {
  display: inline-flex;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(31, 95, 114, 0.28);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.work-grid p,
.project-card p,
.form-note {
  color: var(--muted);
}

.status {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(31, 95, 114, 0.1);
  color: var(--accent-strong);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.access-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: #ffffff;
  padding: clamp(32px, 6vw, 56px);
}

.access-section .eyebrow {
  color: #8bd3e7;
}

.access-section p {
  color: rgba(255, 255, 255, 0.72);
}

.access-form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.access-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 14px;
  font: inherit;
}

.form-note {
  min-height: 25px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

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

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-thank-you {
  align-content: center;
  min-height: 390px;
  border-color: rgba(184, 111, 58, 0.28);
  background:
    linear-gradient(135deg, rgba(184, 111, 58, 0.1), rgba(31, 95, 114, 0.06)),
    var(--surface);
}

.contact-thank-you h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.contact-thank-you p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hidden-field {
  display: none;
}

.turnstile-widget {
  min-height: 65px;
}

.access-turnstile.is-hidden {
  display: none;
}

.turnstile-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(31, 95, 114, 0.05);
  color: var(--muted);
  padding: 14px;
  font-size: 0.92rem;
}

.admin-login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.admin-login-form {
  width: min(100%, 460px);
}

.admin-page h1 {
  margin-bottom: 28px;
}

.admin-status {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(31, 95, 114, 0.1);
  color: var(--accent-strong);
  padding: 6px 12px;
  font-weight: 700;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-dashboard-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 24px;
}

.admin-form {
  position: sticky;
  top: 92px;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.checkbox-label input {
  width: auto;
}

.admin-checkbox-spacer {
  align-self: end;
  min-height: 48px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-list h2 {
  margin: 18px 0 0;
  font-size: 1.4rem;
}

.admin-list h2:first-child {
  margin-top: 0;
}

.admin-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.admin-list-item h3,
.admin-list-item p {
  margin-bottom: 4px;
}

.admin-list-item p,
.admin-small {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-small {
  overflow-wrap: anywhere;
}

.admin-list-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
}

.admin-list-actions form {
  margin: 0;
}

.admin-project-card {
  align-items: stretch;
  grid-template-columns: clamp(220px, 24vw, 360px) minmax(0, 1fr);
}

.admin-project-card .project-content {
  min-height: 180px;
}

.admin-project-card .project-image,
.admin-project-card .project-image-frame {
  min-height: 168px;
}

.admin-project-card .button {
  min-height: 38px;
}

.private-project-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  border-radius: 999px;
  background: #b42318;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.2);
}

.private-project-title {
  display: inline-flex;
  margin-left: 8px;
  color: #b42318;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.admin-project-pill {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(184, 111, 58, 0.12);
  color: var(--warm);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.top-project-pill {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(0, 119, 181, 0.12);
  color: #0077b5;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-project-list {
  gap: 18px;
}

.admin-project-editor {
  position: static;
}

.admin-editor-grid {
  display: block;
}

.admin-editor-fields {
  display: grid;
  gap: 16px;
}

.admin-attempt-item {
  display: block;
}

.admin-alert-item {
  border-color: rgba(184, 111, 58, 0.42);
  background: linear-gradient(135deg, rgba(184, 111, 58, 0.08), rgba(255, 255, 255, 0.96));
}

.admin-security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-security-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

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

.admin-preview-panel {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
}

.admin-preview-card {
  margin-top: 6px;
  width: 100%;
}

.admin-preview-card .project-content {
  min-height: 180px;
}

.admin-preview-empty {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 32, 0.48);
  padding: 20px;
}

.admin-confirm-dialog {
  width: min(100%, 480px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 22px;
}

.admin-confirm-message {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.admin-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 20px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .profile-section,
  .access-section,
  .contact-section,
  .project-detail-grid,
  .project-story-section {
    grid-template-columns: 1fr;
  }

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

  .work-grid article,
  .work-grid article:nth-child(4),
  .work-grid article:nth-child(5) {
    grid-column: auto;
  }

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

  .profile-panel {
    max-width: 460px;
  }

  .degree-line {
    white-space: normal;
  }

  .contact-actions {
    margin-top: 0;
  }

  .admin-dashboard-grid,
  .admin-security-grid,
  .admin-layout,
  .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-form {
    position: static;
  }

  .project-action-panel {
    border-left: 0;
    border-top: 2px solid rgba(31, 95, 114, 0.24);
    padding-top: 22px;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .section {
    width: min(100% - 28px, 1120px);
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    font-size: 2.7rem;
  }

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

  .journey-card {
    grid-template-columns: 1fr;
  }

  .project-image {
    min-height: 150px;
  }

  .section-heading.with-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .workshop-nav-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .workshop-intro-row {
    flex-direction: column;
  }

  .workshop-help-link {
    text-align: left;
  }

  .input-row,
  .form-grid,
  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .button {
    width: 100%;
  }

  .project-detail-image {
    min-height: 220px;
  }

  .workshop-results-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .linkedin-float {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}
