:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f4f6fa;
  --ink: #171717;
  --muted: #5f6773;
  --line: rgba(23, 23, 23, 0.08);
  --accent: #ff8a5b;
  --accent-deep: #d85b2b;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 91, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

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

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.page {
  width: min(calc(100% - 28px), var(--container));
  margin: 18px auto 42px;
}

.shared-header-mount {
  min-height: 96px;
}

.page > section + section {
  margin-top: 22px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: var(--header-left, 16px);
  z-index: 30;
  width: var(--header-width, min(calc(100% - 28px), var(--container)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 249, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-shell {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(216, 91, 43, 0.16);
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px;
  font-size: 0.94rem;
  background: linear-gradient(135deg, rgba(248, 246, 241, 0.92), rgba(255, 241, 233, 0.76));
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(23, 23, 23, 0.03);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 240, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 91, 43, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 24px rgba(15, 23, 42, 0.08);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav > a,
.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 16px;
  color: #3c434d;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-nav > a.is-active,
.nav-link.is-active,
.nav-dropdown-toggle.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #d86a44, #b65435);
  box-shadow: 0 12px 24px rgba(184, 84, 53, 0.26);
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 91, 43, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 240, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(15, 23, 42, 0.05);
}

.nav-lang-toggle__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 14px;
  color: #7a4b37;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-lang-toggle__item:hover,
.nav-lang-toggle__item:focus-visible {
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-lang-toggle__item.is-active {
  background: linear-gradient(135deg, #d86a44, #b65435);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(184, 84, 53, 0.2);
}

.nav-lang-toggle__item.is-locked {
  color: rgba(122, 75, 55, 0.48);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding-right: 32px;
  background: rgba(255, 237, 228, 0.78);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: translateY(-30%) rotate(-135deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 18px;
  transform: translateX(-50%);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 15;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 241, 0.98));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.nav-dropdown-label {
  padding: 6px 12px 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-menu a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.1);
  transform: translateX(2px);
}

.nav-dropdown-menu a.is-active {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  padding-top: 28px;
  align-items: stretch;
}

.hero-single {
  grid-template-columns: 1fr;
}

.hero-copy,
.hero-visual,
.section-card,
.info-card,
.gallery-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.section-card,
.gallery-card {
  padding: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  line-height: 1.1;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.hero-copy h1 {
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.tag-row span {
  padding: 9px 12px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: var(--surface-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.placeholder-frame {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1.5px dashed rgba(23, 23, 23, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 250, 0.88));
  text-align: center;
}

.placeholder-frame strong,
.gallery-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.meta-grid,
.two-col,
.results-grid,
.gallery-grid,
.challenge-grid,
.approach-grid {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

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

.two-col {
  grid-template-columns: 1fr;
}

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

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

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

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

.project-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 91, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(216, 91, 43, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
}

.project-showcase-section::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 22px;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 138, 91, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.75;
  pointer-events: none;
}

.project-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 20px;
}

.showcase-card {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.96));
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 91, 0.18);
  box-shadow:
    0 28px 50px rgba(15, 23, 42, 0.11),
    0 0 0 1px rgba(255, 138, 91, 0.08);
}

.showcase-card-side {
  margin-top: 42px;
}

.showcase-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(242, 244, 248, 0.9)),
    radial-gradient(circle at top left, rgba(255, 138, 91, 0.08), transparent 32%);
}

.showcase-scroll {
  position: absolute;
  inset: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 26px;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 23, 23, 0.24) transparent;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.1),
    0 2px 12px rgba(15, 23, 42, 0.04);
  background: rgba(255, 255, 255, 0.66);
}

.showcase-scroll::-webkit-scrollbar {
  width: 8px;
}

.showcase-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.showcase-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.18);
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-card-side .showcase-placeholder {
  min-height: 336px;
}

.showcase-placeholder::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
}

.showcase-card:hover .showcase-placeholder::before {
  opacity: 1;
}

.showcase-index {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: rgba(23, 23, 23, 0.42);
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.info-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 251, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 30px rgba(15, 23, 42, 0.045);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.challenge-card,
.approach-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 32px rgba(15, 23, 42, 0.04);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.challenge-card::before,
.approach-card::before,
.results-grid .info-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 138, 91, 0.9), rgba(216, 91, 43, 0.15));
}

.challenge-card:hover,
.approach-card:hover,
.results-grid .info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 91, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 22px 38px rgba(15, 23, 42, 0.07);
}

.meta-grid .info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 91, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 36px rgba(15, 23, 42, 0.06);
}

.challenge-card strong,
.approach-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.challenge-card p,
.approach-card p {
  margin: 0;
}

.approach-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 138, 91, 0.18), rgba(255, 255, 255, 0.92));
  color: var(--accent-deep);
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 18px rgba(255, 138, 91, 0.08);
}

.insight-block {
  position: relative;
  padding: 34px;
  padding-left: 45px;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 91, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 249, 245, 0.98), rgba(255, 255, 255, 0.98));
}

.insight-block::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 25px;
  width: 34px;
  height: 34px;
  border-top: 2px solid rgba(216, 91, 43, 0.22);
  border-left: 2px solid rgba(216, 91, 43, 0.22);
  border-top-left-radius: 16px;
}

.insight-block::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 30px;
  width: 34px;
  height: 34px;
  border-right: 2px solid rgba(216, 91, 43, 0.18);
  border-bottom: 2px solid rgba(216, 91, 43, 0.18);
  border-bottom-right-radius: 16px;
}

.insight-text {
  max-width: 24ch;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.meta-grid .info-card,
.results-grid .info-card {
  display: grid;
  gap: 8px;
}

.info-card strong {
  display: block;
  margin-bottom: 0;
  color: var(--accent-deep);
}

.section-card h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.section-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section-card .list-tight li + li {
  margin-top: 10px;
}

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

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  border: 1.5px dashed rgba(23, 23, 23, 0.14);
  border-radius: 29px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 246, 250, 0.88));
  text-align: center;
}

.gallery-card:first-child .gallery-placeholder {
  min-height: 360px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(216, 91, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.back-to-top span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 246, 241, 0.96);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.22);
  background: rgba(255, 250, 246, 0.98);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px);
}

.results-grid .info-card {
  min-height: 100%;
}

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

.results-grid .info-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-width: 1000px) {
  .site-header {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-header-bar {
    gap: 12px;
    width: 100%;
  }

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

  .site-nav {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    border-radius: 26px;
    padding: 10px;
    margin-top: 10px;
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .site-nav > a,
  .nav-link,
  .nav-dropdown-toggle {
    min-height: 42px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-lang-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .nav-lang-toggle__item {
    flex: 1;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .hero,
  .gallery-grid,
  .challenge-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-copy h1,
  .section-card h2 {
    max-width: none;
  }

  .gallery-card:first-child .gallery-placeholder {
    min-height: 300px;
  }

  .showcase-card-side {
    margin-top: 0;
  }

  .showcase-placeholder,
  .showcase-card-side .showcase-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .hero-copy,
  .hero-visual,
  .section-card,
  .gallery-card {
    padding: 20px;
  }

  .placeholder-frame {
    min-height: 300px;
  }

  .gallery-card {
    padding: 0;
  }

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

  .insight-block {
    padding: 24px 20px;
  }

  .insight-block::before,
  .insight-block::after {
    display: none;
  }

  .project-showcase-section {
    padding: 20px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .back-to-top span:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.92rem;
  }

  .gallery-placeholder,
  .gallery-card:first-child .gallery-placeholder {
    min-height: 220px;
    padding: 20px;
  }

  .showcase-placeholder,
  .showcase-card-side .showcase-placeholder,
  .gallery-card:first-child .showcase-placeholder {
    min-height: 240px;
  }

  .showcase-scroll {
    inset: 12px;
    border-radius: 20px;
  }

  .page > section + section {
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .hero-copy,
  .hero-visual,
  .section-card,
  .project-showcase-section,
  .insight-block {
    padding-left: 18px;
    padding-right: 18px;
  }

  .showcase-scroll {
    inset: 10px;
  }
}
