:root {
  --background: #131313;
  --surface-lowest: #0e0e0e;
  --surface-low: #1c1b1b;
  --surface: #20201f;
  --surface-high: #2a2a2a;
  --surface-highest: #353535;
  --text: #e5e2e1;
  --muted: #c8c6c5;
  --dim: #8e9192;
  --ghost: rgba(68, 71, 72, 0.15);
  --amber: #e9c349;
  --amber-deep: #997a00;
  --amber-soft: rgba(233, 195, 73, 0.18);
  --shadow: rgba(19, 19, 19, 0.35);
  --font-display: "Noto Serif KR", "Times New Roman", serif;
  --font-body: "Manrope", Arial, sans-serif;
  --radius: 20px;
  --radius-soft: 14px;
  --content-width: min(1320px, calc(100vw - 48px));
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(233, 195, 73, 0.09), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.035), transparent 26%),
    linear-gradient(180deg, #151514 0%, #101010 100%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  inset: auto;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.ambient-left {
  top: 4rem;
  left: -10rem;
  background: rgba(233, 195, 73, 0.08);
}

.ambient-right {
  top: 24rem;
  right: -12rem;
  background: rgba(255, 255, 255, 0.04);
}

.site-header,
.site-footer,
.app-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: var(--content-width);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 1.5rem 0;
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-logo {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(26, 139, 255, 0.18));
}

.brand-wordmark {
  display: inline-block;
}

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

.site-nav a,
.site-footer a {
  position: relative;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.site-nav a.is-active,
.site-footer a.is-active {
  color: var(--amber);
}

.site-nav a.is-active::after,
.site-footer a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.35rem;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #2f2400;
  box-shadow: 0 12px 28px rgba(233, 195, 73, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--ghost);
}

.header-cta {
  white-space: nowrap;
}

.app-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 1rem 0 6rem;
}

.route-bar,
.statement-band,
.service-strip,
.cta-panel,
.contact-card,
.info-card,
.quote-block,
.site-footer,
.filter-row,
.library-card,
.gallery-copy {
  background: rgba(32, 32, 31, 0.82);
  backdrop-filter: blur(18px);
}

.route-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 2rem;
  align-items: center;
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-soft);
  margin-bottom: 3rem;
}

.route-copy strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}

.route-copy p {
  margin: 0.55rem 0 0;
  max-width: 42rem;
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.7;
}

.route-meter {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.route-meter-track,
.route-meter-bar,
.submit-meter span {
  position: absolute;
  inset: 0 auto 0 0;
}

.route-meter-bar,
.submit-meter span {
  width: 25%;
  background: linear-gradient(90deg, var(--amber), #ffe088);
  box-shadow: 0 0 18px rgba(233, 195, 73, 0.75);
  transition: width 450ms ease;
}

.screen {
  display: none;
  padding-bottom: 4rem;
}

.screen.is-active {
  display: block;
  animation: screen-fade 520ms ease;
}

.hero,
.page-intro,
.session-snapshot,
.statement-band,
.featured-section,
.live-clips-section,
.service-strip,
.gear-section,
.cta-panel,
.library-admin-access,
.filter-row,
.gallery-grid,
.quote-block,
.detail-grid,
.contact-layout {
  margin-bottom: 4.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  min-height: calc(100vh - var(--header-height) - 7rem);
}

.hero-copy,
.page-intro {
  max-width: 50rem;
}


.eyebrow {
  display: inline-block;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.display-title,
.section-title,
.feature-meta h3,
.gallery-copy h2,
.info-card h3,
.contact-card h2,
.quote-block p,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

display-title,
display-compact,
.guide-page-title {
  max-width: none;
}

.display-title {
  margin-top: 1rem;
  font-size: clamp(3.7rem, 8vw, 7.4rem);
}

.display-title em {
  font-style: italic;
  color: var(--muted);
}

.guide-page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.display-compact {
  font-size: clamp(3rem, 7vw, 6rem);
}

.lede,
.intro-copy,
.gallery-copy p,
.service-card p,
.gear-copy .lede,
.info-card p,
.micro-copy,
.bullet-list,
.feature-meta span,
.feature-meta .meta-kicker,
.library-card p,
.library-card span,
.site-footer p {
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.lede {
  max-width: 32rem;
  margin: 1.4rem 0 0;
  font-size: 1rem;
}

.hero-actions,
.cta-actions,
.page-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions,
.cta-actions {
  margin-top: 2rem;
}

.page-intro-actions {
  margin-top: 1.25rem;
}

.hero-visual,
.gear-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-low);
}

.hero-visual {
  min-height: 40rem;
}

.hero-visual::after,
.feature-media::after,
.gallery-card::after,
.gear-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-visual img,
.gear-visual img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-visual figcaption {
  position: absolute;
  inset: auto 1.35rem 1.35rem 1.35rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-visual figcaption span {
  color: rgba(229, 226, 225, 0.72);
  font-size: 0.7rem;
}

.hero-visual figcaption strong {
  font-size: 0.95rem;
}

.statement-band {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-radius: var(--radius);
}

.session-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.session-snapshot article {
  min-height: 10.5rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background:
    linear-gradient(180deg, rgba(42, 42, 42, 0.72), rgba(16, 16, 16, 0.94)),
    var(--surface-lowest);
}

.snapshot-kicker {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.session-snapshot strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.session-snapshot p {
  max-width: 21rem;
  margin: 0.8rem 0 0;
  color: rgba(229, 226, 225, 0.68);
  line-height: 1.75;
  font-size: 0.92rem;
}

.statement-line {
  display: block;
  width: 56px;
  height: 2px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
}

.statement-band h2 {
  max-width: 62rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.22;
}

.statement-band em {
  color: var(--amber);
  font-style: italic;
}

.statement-band p {
  margin: 1.75rem 0 0;
  color: rgba(229, 226, 225, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-title {
  margin-top: 0.65rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.ghost-link {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.ghost-link:hover {
  color: var(--amber);
  transform: translateX(4px);
}

.feature-grid,
.clip-grid,
.gear-section,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.studio-preview-section,
.gallery-spotlight,
.gallery-grid-dynamic {
  margin-bottom: 4.5rem;
}

.section-intro {
  margin: -0.4rem 0 2rem;
  max-width: 46rem;
}

.studio-preview-grid,
.gallery-spotlight,
.gallery-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.3rem;
}

.studio-preview-card,
.gallery-shot-card,
.gallery-spotlight-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-low);
}

.studio-preview-card {
  grid-column: span 3;
  min-height: 18rem;
}

.studio-preview-card[data-size="feature"] {
  grid-column: span 6;
  min-height: 24rem;
}

.studio-preview-card[data-size="wide"] {
  grid-column: span 6;
  min-height: 18rem;
}

.studio-preview-button,
.gallery-shot-button {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
  text-align: left;
}

.studio-preview-button::after,
.gallery-shot-button::after,
.gallery-spotlight-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.72) 100%);
}

.studio-preview-button img,
.gallery-shot-button img,
.gallery-spotlight-visual img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.studio-preview-button:hover img,
.gallery-shot-button:hover img,
.gallery-spotlight-visual:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.studio-preview-caption,
.gallery-shot-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem;
}

.studio-preview-caption small,
.gallery-shot-overlay small {
  color: rgba(229, 226, 225, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-preview-caption strong,
.gallery-shot-overlay strong,
.gallery-spotlight-copy .section-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.studio-preview-caption strong,
.gallery-shot-overlay strong {
  font-size: 1.25rem;
}

.gallery-shot-overlay span {
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.7;
  font-size: 0.92rem;
}

.gallery-shot-card {
  grid-column: span 3;
  min-height: 17rem;
}

.gallery-shot-card[data-size="hero"] {
  grid-column: span 6;
  min-height: 31rem;
}

.gallery-shot-card[data-size="wide"] {
  grid-column: span 6;
  min-height: 21rem;
}

.gallery-spotlight-visual {
  grid-column: span 7;
  min-height: 30rem;
}

.gallery-spotlight-copy {
  grid-column: span 5;
  align-self: center;
}

.gallery-spotlight-copy .section-title {
  margin-top: 0.65rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.gallery-spotlight-copy .bullet-list {
  margin-top: 1.4rem;
}

.gallery-detail-grid .detail-images img {
  min-height: 18rem;
  object-fit: cover;
}

.feature-card {
  display: grid;
  gap: 1.4rem;
}

.feature-card-offset {
  margin-top: 4rem;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-low);
}

.feature-media.portrait {
  aspect-ratio: 4 / 5;
}

.feature-media img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.feature-card:hover .feature-media img,
.gallery-card:hover img,
.hero-visual:hover img,
.gear-visual:hover img,
.library-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.feature-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.feature-meta.feature-meta-column {
  display: grid;
  gap: 0.9rem;
}

.feature-meta h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.meta-kicker {
  margin: 0 0 0.35rem;
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-summary {
  margin: 0.75rem 0 0;
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.feature-meta-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(229, 226, 225, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-badge {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
}

.feature-empty {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(32, 32, 31, 0.72);
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.clip-card {
  display: grid;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(32, 32, 31, 0.82);
  backdrop-filter: blur(18px);
}

.clip-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  aspect-ratio: 16 / 9;
  background: var(--surface-low);
}

.clip-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clip-copy {
  display: grid;
  gap: 0.65rem;
}

.clip-kicker {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clip-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.clip-copy p {
  margin: 0;
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card {
  padding: 2.25rem;
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.7), rgba(28, 27, 27, 0.9));
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 1.2rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.gear-copy {
  align-self: center;
}

.gear-list,
.bullet-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.gear-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.gear-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(233, 195, 73, 0.8);
}

.gear-visual {
  padding: 1rem;
  background: rgba(42, 42, 42, 0.82);
  transform: rotate(1.5deg);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
}

.cta-panel h2 {
  margin-top: 0.9rem;
  max-width: 34rem;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}

.page-intro {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.page-intro-split {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  align-items: end;
  gap: 3rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-soft);
}

.library-admin-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.library-admin-access-copy {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.filter-button {
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: rgba(229, 226, 225, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
}

.admin-shell {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: rgba(32, 32, 31, 0.82);
  backdrop-filter: blur(18px);
}

.admin-shell-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.admin-title {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-copy {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(229, 226, 225, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-status.is-server {
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
}

.admin-status.is-local {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(229, 226, 225, 0.72);
}

.admin-login-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.admin-login-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-session-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(229, 226, 225, 0.62);
  line-height: 1.7;
}

.admin-composer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.25rem;
}

.admin-post-form,
.admin-posts-panel {
  padding: 1.2rem;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--ghost);
}

.admin-post-form {
  display: grid;
  gap: 1rem;
}

.admin-form-head {
  display: grid;
  gap: 0.65rem;
}

.admin-form-copy {
  max-width: 34rem;
  margin: 0;
  color: rgba(229, 226, 225, 0.66);
  line-height: 1.8;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--ghost);
}

.admin-image-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: var(--surface-low);
}

.admin-image-preview-copy {
  display: grid;
  gap: 0.35rem;
}

.admin-image-preview-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.admin-image-preview-copy span {
  color: rgba(229, 226, 225, 0.66);
  line-height: 1.7;
  word-break: break-word;
}

.field input[type="file"] {
  padding: 0.45rem;
}

.field input[type="file"]::file-selector-button {
  margin-right: 0.9rem;
  padding: 0.78rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    color 220ms ease;
}

.field input[type="file"]:hover::file-selector-button {
  background: rgba(233, 195, 73, 0.2);
  transform: translateY(-1px);
}

.admin-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-submit-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-note {
  max-width: 28rem;
  margin: 0;
  color: rgba(229, 226, 225, 0.58);
  line-height: 1.7;
}

.admin-panel-head {
  margin-bottom: 1rem;
}

.admin-list-title {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.admin-post-list {
  display: grid;
  gap: 0.9rem;
}

.admin-post-item {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-post-thumb {
  width: 4.2rem;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-low);
}

.admin-post-thumb img {
  height: 100%;
  object-fit: cover;
}

.admin-post-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.admin-post-copy span,
.admin-post-copy p,
.admin-empty {
  color: rgba(229, 226, 225, 0.62);
}

.admin-post-copy span {
  display: block;
  margin-top: 0.2rem;
}

.admin-post-copy p {
  margin: 0.45rem 0 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-post-actions {
  display: grid;
  gap: 0.55rem;
}

.admin-action-button {
  min-height: 2.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(229, 226, 225, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.admin-action-button:hover {
  transform: translateY(-1px);
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
}

.admin-edit {
  background: rgba(233, 195, 73, 0.08);
  color: var(--amber);
}

.admin-edit:hover {
  background: rgba(233, 195, 73, 0.16);
}

.admin-empty {
  margin: 0;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.7;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.library-card {
  display: grid;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.library-card-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  aspect-ratio: 1 / 1;
}

.library-card-media img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    transform 700ms ease,
    filter 700ms ease,
    opacity 700ms ease;
  opacity: 0.86;
}

.library-card:hover .library-card-media img {
  opacity: 1;
}

.library-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.library-card h3 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.library-card-type {
  padding: 0.4rem 0.55rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(229, 226, 225, 0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.library-card p {
  margin: 0;
}

.library-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(229, 226, 225, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.library-card-flag {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
}

.library-empty {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(32, 32, 31, 0.82);
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.3rem;
}

.gallery-card,
.gallery-copy {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 18rem;
}

.gallery-card {
  background: var(--surface-low);
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.gallery-large {
  grid-column: span 8;
  min-height: 30rem;
}

.gallery-wide {
  grid-column: 2 / span 7;
  min-height: 27rem;
}

.gallery-grid > .gallery-card:not(.gallery-large):not(.gallery-wide) {
  grid-column: span 4;
}

.gallery-copy {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.gallery-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.gallery-copy p {
  margin: 1rem 0 0;
}

.line-accent {
  width: 7rem;
  height: 2px;
  margin-top: 1.8rem;
  background: linear-gradient(90deg, var(--amber), rgba(255, 224, 136, 0.12));
}

.gallery-caption {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 1;
}

.gallery-caption p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.gallery-caption span {
  color: rgba(229, 226, 225, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-block {
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius);
  text-align: center;
}

.quote-block p {
  max-width: 54rem;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-style: italic;
}

.quote-block span {
  display: inline-block;
  margin-top: 1.25rem;
  color: rgba(229, 226, 225, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.detail-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-images img {
  border-radius: var(--radius-soft);
  min-height: 18rem;
  object-fit: cover;
  opacity: 0.78;
}

.detail-images img:nth-child(2) {
  margin-top: 3.5rem;
}

.detail-copy {
  align-self: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(19rem, 0.68fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.contact-card,
.info-card,
.map-card {
  border-radius: var(--radius);
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-map-feature {
  position: relative;
  overflow: hidden;
  min-height: clamp(28rem, 56vw, 40rem);
  padding: 0;
  background: var(--surface-lowest);
  isolation: isolate;
}

.contact-map-feature .map-embed {
  filter: grayscale(0.18) saturate(0.58) brightness(0.74) contrast(1.08) invert(0.92) hue-rotate(180deg);
}

.contact-map-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.2) 38%, rgba(6, 6, 6, 0.82) 100%),
    radial-gradient(circle at 18% 100%, rgba(233, 195, 73, 0.12), transparent 34%);
}

.contact-map-overlay {
  position: absolute;
  inset: auto auto clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(calc(100% - 2rem), 34rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 8px);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.42), rgba(18, 18, 18, 0.78));
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.contact-map-overlay .section-title {
  margin: 0;
  max-width: 18rem;
  color: rgba(247, 244, 240, 0.96);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.contact-map-copy {
  margin: 0;
  max-width: 28rem;
  color: rgba(247, 244, 240, 0.82);
  line-height: 1.8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}


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

.field {
  display: grid;
  gap: 0.7rem;
}

.field span {
  color: rgba(229, 226, 225, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 0;
  border: 0;
  border-bottom: 1px solid rgba(68, 71, 72, 0.6);
  background: transparent;
  color: var(--text);
  outline: none;
  transition: border-color 220ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(229, 226, 225, 0.28);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--amber);
}

.micro-copy {
  max-width: 18rem;
  margin: 0;
  font-size: 0.82rem;
}

.contact-info-card h3,
.contact-scope-card h3 {
  max-width: 18rem;
}

.contact-info-card .info-list dd a,
.contact-scope-list a {
  color: var(--text);
  text-decoration: none;
}

.contact-scope-card {
  display: grid;
  gap: 1.4rem;
}

.contact-scope-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-scope-list li {
  display: grid;
  gap: 0.35rem;
}

.contact-scope-list strong {
  color: rgba(229, 226, 225, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-scope-list span {
  color: rgba(229, 226, 225, 0.78);
  line-height: 1.7;
}

.contact-sidebar {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.info-card {
  padding: 1.5rem;
}

.info-card h3 {
  margin-top: 0.9rem;
  font-size: 1.7rem;
  line-height: 1.28;
}

.info-list {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 0;
}

.info-list dt {
  color: rgba(229, 226, 225, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.info-card-muted {
  background: rgba(42, 42, 42, 0.92);
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  background: var(--surface-lowest);
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.22) contrast(1.05);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38));
}

.map-coords {
  position: absolute;
  inset: auto auto 1rem 1rem;
  z-index: 1;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(32, 32, 31, 0.8);
  color: rgba(229, 226, 225, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-practical,
.faq-section,
.equipment-section,
.product-spotlight {
  display: grid;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.contact-service-strip {
  gap: 1.15rem;
  border-radius: var(--radius);
}

.contact-inline-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  color: rgba(229, 226, 225, 0.72);
  font-size: 0.95rem;
}

.contact-inline-note a {
  color: var(--amber);
  font-weight: 700;
}

.faq-grid,
.equipment-grid,
.product-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.faq-card,
.equipment-card,
.product-card {
  border-radius: var(--radius);
  background: rgba(32, 32, 31, 0.82);
  backdrop-filter: blur(18px);
}

.faq-card,
.equipment-card {
  padding: 1.5rem;
}

.faq-question,
.equipment-kicker {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-card p {
  margin: 0.95rem 0 0;
  color: rgba(229, 226, 225, 0.74);
  line-height: 1.8;
}

.equipment-card h3 {
  margin: 0.9rem 0 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.equipment-card p {
  margin: 0.95rem 0 0;
  color: rgba(229, 226, 225, 0.74);
  line-height: 1.8;
}

.product-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 10px);
  aspect-ratio: 1 / 1;
  background: transparent;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.22));
  transition: transform 700ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-card-copy {
  display: grid;
  gap: 0.55rem;
}

.product-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.product-card-copy p {
  margin: 0;
  color: rgba(229, 226, 225, 0.72);
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: var(--content-width);
  margin: 0 auto 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-soft);
}

.site-footer strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-logo {
  width: 3.15rem;
  height: 3.15rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(69, 128, 255, 0.16));
}

.footer-brand-text {
  display: grid;
  gap: 0.1rem;
}

.footer-brand-text p {
  margin: 0;
}

.site-footer p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
}

.site-footer-copy {
  display: grid;
  gap: 0.2rem;
}

.site-footer-meta {
  color: rgba(229, 226, 225, 0.54);
  font-size: 0.72rem;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 6rem;
  background: rgba(8, 8, 8, 0.9);
  z-index: 30;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  width: min(920px, 100%);
  margin: 0;
  display: grid;
  gap: 1rem;
}

.lightbox-figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(32, 32, 31, 0.92);
}

.lightbox-caption {
  display: grid;
  gap: 0.4rem;
}

.lightbox-caption span,
.lightbox-caption small {
  color: rgba(229, 226, 225, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightbox-caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.lightbox-caption p {
  margin: 0;
  color: rgba(229, 226, 225, 0.74);
  line-height: 1.7;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(233, 195, 73, 0.18);
  color: var(--amber);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

#lightboxPrev {
  left: 2rem;
}

#lightboxNext {
  right: 2rem;
}

.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 4;
  min-width: 18rem;
  max-width: 24rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(42, 42, 42, 0.92);
  color: var(--text);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-page .site-header {
  position: static;
}

.admin-page-shell {
  padding-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes screen-fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .page-intro-split,
  .gear-section,
  .detail-grid,
  .contact-layout,
  .admin-composer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .feature-grid,
  .clip-grid,
  .library-grid,
  .service-strip,
  .faq-grid,
  .equipment-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-snapshot {
    grid-template-columns: 1fr;
  }

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

  .gallery-large,
  .gallery-wide,
  .gallery-grid > .gallery-card:not(.gallery-large):not(.gallery-wide),
  .gallery-copy {
    grid-column: auto;
  }

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

  .studio-preview-card,
  .studio-preview-card[data-size="feature"],
  .studio-preview-card[data-size="wide"],
  .gallery-shot-card,
  .gallery-shot-card[data-size="hero"],
  .gallery-shot-card[data-size="wide"],
  .gallery-spotlight-visual,
  .gallery-spotlight-copy {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  :root {
    --content-width: min(100vw - 24px, 100vw - 24px);
    --header-height: auto;
  }

  .site-header {
      position: static;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 0.5rem 1.25rem;
      padding: 0.75rem 1rem;
    }

    .brand {
      grid-column: 1;
      grid-row: 1;
      gap: 0.65rem;
    }

    .brand-logo {
      width: 2.1rem;
      height: 2.1rem;
    }

    .brand-wordmark {
      font-size: 0.88rem;
    }

    .header-cta {
      grid-column: 2;
      grid-row: 1;
      justify-self: end;
      align-self: center;
      min-height: 2.25rem;
      padding: 0.5rem 0.85rem;
      border-radius: 8px;
      font-size: 0.62rem;
      letter-spacing: 0.14em;
    }

    .site-nav {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-content: center;
      gap: 0.85rem 1.25rem;
      flex-wrap: wrap;
    }

    .site-nav a {
      font-size: 0.82rem;
    }

    .app-shell {
      width: var(--content-width);
      overflow-x: hidden;
    }

  .route-bar,
  .section-heading,
  .library-admin-access,
  .cta-panel,
  .admin-shell-head,
  .admin-submit-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .route-bar {
    gap: 1rem;
  }

  .feature-grid,
  .clip-grid,
  .library-grid,
  .service-strip,
  .faq-grid,
  .equipment-grid,
  .product-grid,
  .detail-images,
  .admin-login-form,
  .admin-post-actions {
    grid-template-columns: 1fr;
  }

  .feature-card-offset,
  .detail-images img:nth-child(2) {
    margin-top: 0;
  }

  .feature-meta {
    flex-direction: column;
  }

  .route-meter {
    width: 100%;
  }

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

  .admin-post-item {
    grid-template-columns: 1fr;
  }

  .admin-image-preview {
    grid-template-columns: 1fr;
  }

  .admin-action-button {
    width: 100%;
  }

  .gallery-card,
  .gallery-large,
  .gallery-wide {
    min-height: 20rem;
  }

  .studio-preview-grid,
  .gallery-grid-dynamic,
  .gallery-spotlight {
    grid-template-columns: 1fr;
  }

  .studio-preview-card,
  .studio-preview-card[data-size="feature"],
  .studio-preview-card[data-size="wide"],
  .gallery-shot-card,
  .gallery-shot-card[data-size="hero"],
  .gallery-shot-card[data-size="wide"],
  .gallery-spotlight-visual {
    min-height: 20rem;
  }

  .lightbox {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .lightbox-close,
  .lightbox-nav {
    position: static;
    transform: none;
    width: 100%;
  }

  .lightbox-figure img {
    max-height: 56vh;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: auto;
  }
}


html {
  color-scheme: dark;
}

body {
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(233, 195, 73, 0.96);
  color: #241b00;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.display-title,
.section-title,
.cta-panel h2,
.quote-block p {
  text-wrap: balance;
}

.app-shell {
  padding: 0 0 6rem;
}

.hero-home {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 5rem;
  min-height: calc(100svh - var(--header-height) - 1rem);
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-home .hero-copy,
.hero-home .hero-visual {
  grid-column: 1;
  grid-row: 1;
}

.hero-home .hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(34rem, calc(100vw - 48px));
  max-width: none;
  margin-left: max(24px, calc((100vw - var(--content-width)) / 2));
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(3rem, 6vh, 5rem);
}

.hero-home .display-title {
  font-size: clamp(4.2rem, 10vw, 8.8rem);
}

.hero-home .lede {
  max-width: 28rem;
  color: rgba(229, 226, 225, 0.84);
}

.hero-home .hero-visual {
  min-height: inherit;
  border-radius: 0;
}

.hero-home .hero-visual::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.76) 0%, rgba(7, 7, 7, 0.42) 38%, rgba(7, 7, 7, 0.16) 64%, rgba(7, 7, 7, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
}

.hero-home .hero-visual img {
  transform: none;
  filter: saturate(0.92) contrast(1.04) brightness(0.78);
}

.hero-home .hero-visual figcaption {
  inset: auto max(24px, calc((100vw - var(--content-width)) / 2)) 1.5rem auto;
  text-align: right;
}

.hero-home .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.statement-band {
  max-width: 62rem;
  margin-inline: auto;
  padding: 0 0 1rem;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
}

.service-strip {
  background: transparent;
  backdrop-filter: none;
  border-top: 1px solid var(--ghost);
  border-bottom: 1px solid var(--ghost);
  border-radius: 0;
}

.service-card {
  background: transparent;
}

.service-card + .service-card {
  box-shadow: inset 1px 0 0 var(--ghost);
}

.cta-panel {
  background: linear-gradient(180deg, rgba(233, 195, 73, 0.08), rgba(24, 24, 23, 0.72));
  box-shadow: inset 0 0 0 1px rgba(233, 195, 73, 0.14);
}

.contact-practical .section-heading .lede,
.faq-section .section-heading .lede {
  max-width: 32rem;
}

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

.info-list dd {
  line-height: 1.7;
}

.map-card {
  min-height: 20rem;
}

@media (max-width: 1100px) {
  .hero-home {
    min-height: auto;
  }

  .hero-home .hero-copy {
    width: min(32rem, calc(100vw - 48px));
    padding-top: 7rem;
  }

  .contact-map-feature {
    min-height: 24rem;
  }
}

@media (max-width: 780px) {
  .hero-home {
    min-height: calc(100svh - 1rem);
    margin-bottom: 4rem;
  }

  .hero-home .hero-copy {
    width: calc(100vw - 48px);
    margin-left: 24px;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }

  .hero-home .display-title {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .hero-home .hero-visual figcaption {
    left: 24px;
    right: 24px;
    text-align: left;
    bottom: 1rem;
  }

  .contact-map-feature {
    min-height: 22rem;
  }

  .contact-map-overlay {
    inset: auto 1rem 1rem 1rem;
    width: auto;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .contact-map-overlay .section-title,
  .contact-map-copy {
    max-width: none;
  }

  .service-card + .service-card {
    box-shadow: inset 0 1px 0 var(--ghost);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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


/* Premium unification overrides */
.eyebrow,
.meta-kicker,
.clip-kicker,
.equipment-kicker,
.faq-question {
  color: rgba(233, 195, 73, 0.78);
  letter-spacing: 0.22em;
}

.button,
.ghost-link,
.filter-button,
.library-card-type,
.feature-meta-foot,
.map-coords {
  letter-spacing: 0.14em;
}

.filter-row,
.library-admin-access,
.library-card,
.quote-block {
  background: transparent;
  backdrop-filter: none;
}

.filter-row {
  padding: 1rem 0;
  border-top: 1px solid var(--ghost);
  border-bottom: 1px solid var(--ghost);
  border-radius: 0;
}

.library-admin-access {
  padding: 0.5rem 0 0;
}

.library-card {
  padding: 1.25rem 0;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 var(--ghost);
}

.library-card-media {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.library-card-type {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(229, 226, 225, 0.56);
}

.contact-card,
.contact-sidebar .info-card,
.contact-sidebar .map-card {
  backdrop-filter: none;
  box-shadow: inset 0 0 0 1px var(--ghost);
}

.contact-sidebar .info-card,
.contact-sidebar .map-card {
  background: rgba(255, 255, 255, 0.02);
}

.gallery-chapter-list {
  display: grid;
  gap: 4.5rem;
  margin-bottom: 4.5rem;
}

.gallery-chapter {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.55fr);
  gap: 2rem;
  align-items: start;
  padding-top: 2rem;
  border-top: 1px solid var(--ghost);
}

.gallery-chapter:first-child {
  padding-top: 0;
  border-top: 0;
}

.gallery-chapter-copy {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: grid;
  gap: 1rem;
}

.gallery-chapter-copy .lede {
  max-width: 22rem;
  margin: 0;
}

.gallery-grid-sequence .gallery-shot-card {
  grid-column: span 5;
  min-height: 18rem;
}

.gallery-grid-sequence .gallery-shot-card[data-size="hero"] {
  grid-column: span 7;
  min-height: 28rem;
}

.gallery-grid-sequence .gallery-shot-card[data-size="wide"] {
  grid-column: span 5;
  min-height: 21rem;
}

.gallery-grid-sequence .gallery-shot-card:nth-child(even) {
  margin-top: 1.75rem;
}

.quote-block {
  max-width: 44rem;
  padding: 0;
  text-align: left;
}

.quote-block p {
  max-width: none;
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.quote-block span {
  margin-top: 0.9rem;
  letter-spacing: 0.2em;
}

.contact-support {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ghost);
}

.contact-support-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.contact-support-head .lede {
  max-width: 30rem;
  margin: 0;
}

.contact-note-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-note-list li {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ghost);
}

.contact-note-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.contact-note-list span {
  color: rgba(229, 226, 225, 0.74);
  line-height: 1.75;
}

.faq-section-compact .section-heading {
  margin-bottom: 1.25rem;
}

.faq-stack {
  display: grid;
}

.faq-item {
  padding: 1rem 0;
  border-top: 1px solid var(--ghost);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--ghost);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
  letter-spacing: -0.03em;
}

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

.faq-item summary::after {
  content: "+";
  color: rgba(229, 226, 225, 0.5);
  font-family: var(--font-body);
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.9rem 0 0;
  max-width: 42rem;
  color: rgba(229, 226, 225, 0.74);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .gallery-chapter {
    grid-template-columns: 1fr;
  }

  .gallery-chapter-copy {
    position: static;
  }

  .contact-support-head {
    display: grid;
    gap: 0.8rem;
  }

  .contact-note-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .gallery-grid-sequence .gallery-shot-card,
  .gallery-grid-sequence .gallery-shot-card[data-size="hero"],
  .gallery-grid-sequence .gallery-shot-card[data-size="wide"] {
    grid-column: auto;
    min-height: 20rem;
  }

  .gallery-grid-sequence .gallery-shot-card:nth-child(even) {
    margin-top: 0;
  }

  .quote-block {
    max-width: none;
  }

  .faq-item summary {
    font-size: 1.15rem;
  }
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

/* Minimal refinement pass */
.hero-meta {
  margin: 0.85rem 0 0;
  color: rgba(229, 226, 225, 0.64);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement-band {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
  padding: 0.35rem 0 0.5rem;
}

.statement-band .eyebrow {
  color: rgba(229, 226, 225, 0.56);
}

.statement-line {
  width: 44px;
  margin: 0;
}

.statement-band h2 {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.45;
}

.statement-band em {
  color: inherit;
  font-style: normal;
}

.statement-band p {
  margin: 0;
  color: rgba(229, 226, 225, 0.48);
  letter-spacing: 0.16em;
}

.contact-map-actions .button-primary {
  box-shadow: 0 14px 28px rgba(233, 195, 73, 0.18);
}

.contact-map-actions .button-secondary {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 6px;
  border-radius: 10px;
}

@media (max-width: 780px), (max-height: 760px) {
  .hero-home .hero-copy {
    padding-top: 5.25rem;
    padding-bottom: 1.5rem;
  }

  .hero-home .display-title {
    font-size: clamp(3.15rem, 14vw, 4.9rem);
  }

  .hero-home .lede {
    margin-top: 1rem;
  }

  .hero-home .hero-actions {
    margin-top: 1.4rem;
    gap: 0.75rem;
  }

  .hero-home .hero-visual figcaption {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 780px) {
  .statement-band {
    gap: 0.7rem;
    padding-top: 0;
  }

  .statement-band h2 {
    font-size: 1.2rem;
    line-height: 1.55;
  }

  .contact-map-actions {
    width: 100%;
  }

  .contact-map-actions .button {
    flex: 1 1 12rem;
  }
}


/* 2026-03-31 reduction pass */
:root {
  --background: #050505;
  --surface-lowest: #050505;
  --surface-low: #0b0b0b;
  --surface: #101010;
  --surface-high: #161616;
  --surface-highest: #1d1d1d;
  --text: #f2f0ea;
  --muted: #c7c4bd;
  --dim: #8c8982;
  --ghost: rgba(255, 255, 255, 0.06);
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Helvetica Neue", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Helvetica Neue", sans-serif;
  --content-width: min(1180px, calc(100vw - 64px));
  --motion-smooth: 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: #050505;
}

.top-scroll-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(5.5rem, 14vw, 9rem);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.36) 54%, rgba(5, 5, 5, 0) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
}

.grain {
  opacity: 0.016;
}

.ambient {
  display: none;
}

.site-header {
  position: relative;
  z-index: 3;
  margin-top: 1rem;
  padding: 1rem 1.35rem;
  background: rgba(7, 7, 7, 0.52);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.site-nav a,
.site-footer a,
.button,
.ghost-link,
.filter-button,
.feature-media img,
.studio-preview-button img,
.gallery-shot-button img,
.hero-visual img {
  transition-duration: var(--motion-smooth);
  transition-timing-function: ease-in-out;
}

.button:active {
  transform: scale(0.98);
}

.hero-home {
  position: relative;
  grid-template-columns: 1fr;
  min-height: calc(100svh - var(--header-height) - 2.5rem);
  overflow: hidden;
  border-radius: 30px;
  background: #090909;
}

.hero-home .hero-copy,
.hero-home .hero-visual {
  grid-column: 1;
  grid-row: 1;
}

.hero-home .hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 34rem;
  padding: clamp(2.75rem, 6vw, 5rem);
}

.hero-home .display-title {
  max-width: 12ch;
  letter-spacing: -0.045em;
}

.hero-home .lede {
  max-width: 22rem;
}

.hero-home .hero-actions {
  margin-top: 1.75rem;
}

.hero-home .hero-visual {
  min-height: clamp(35rem, 82vh, 54rem);
  border-radius: inherit;
}

.hero-home .hero-visual::after {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.8) 34%, rgba(5, 5, 5, 0.2) 65%, rgba(5, 5, 5, 0.5) 100%);
}

.hero-home .hero-visual img {
  transform: none;
  filter: none;
  object-position: center center;
}

.hero-home .hero-visual figcaption {
  inset: auto 1.5rem 1.5rem auto;
  width: auto;
  padding: 0.85rem 1rem;
  background: rgba(5, 5, 5, 0.4);
  border-radius: 14px;
  backdrop-filter: blur(20px);
}

.statement-band,
.service-strip,
.cta-panel,
.quote-block,
.site-footer,
.filter-row {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.section-heading {
  margin-bottom: 2.6rem;
}

.feature-grid,
.clip-grid {
  gap: clamp(2rem, 4vw, 3rem);
}

.clip-card {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.clip-copy p,
.feature-summary,
.library-admin-access-copy {
  color: rgba(242, 240, 234, 0.64);
}

.service-strip {
  gap: 2rem;
  overflow: visible;
}

.service-card {
  padding: 0;
  background: transparent;
}

.service-card + .service-card {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.service-icon {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(233, 195, 73, 0.24);
}

.cta-panel {
  padding: 0;
  align-items: end;
}

.cta-panel h2 {
  max-width: 24rem;
}

.contact-card,
.contact-sidebar .info-card {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feature-empty,
.library-empty {
  padding: 0;
  background: transparent;
  color: rgba(242, 240, 234, 0.62);
  line-height: 1.8;
}

.site-footer {
  padding: 2rem 0 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 24px;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home .hero-copy {
    max-width: 100%;
    padding: 4.5rem 1.5rem 1.5rem;
  }

  .hero-home .hero-visual {
    min-height: 34rem;
  }

  .hero-home .hero-visual::after {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.58) 50%, rgba(5, 5, 5, 0.94) 100%);
  }

  .service-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card + .service-card {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 780px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 0.7rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: clamp(1rem, 7vw, 2rem);
  }

  .hero-home {
    width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home .hero-visual,
  .hero-home .hero-visual img {
    width: 100%;
  }
}


/* Library tag system */
.filter-row {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

.filter-row-copy {
  display: grid;
  gap: 0.45rem;
}

.filter-row-copy .micro-copy {
  max-width: 30rem;
  color: rgba(242, 240, 234, 0.62);
}

.filter-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-button {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(242, 240, 234, 0.68);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: rgba(233, 195, 73, 0.24);
  background: rgba(233, 195, 73, 0.1);
  color: var(--amber);
}

.library-card {
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  align-content: start;
}

.library-card > p {
  min-height: 0;
}

.library-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0;
  align-self: end;
}

.library-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(242, 240, 234, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.library-card-bottom {
  margin-top: 0;
}

.library-year-stack {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(3rem, 5vw, 4.75rem);
}

.library-year-group {
  display: grid;
  gap: 1.75rem;
}

.library-year-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.library-year-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.library-year-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.field-hint {
  color: rgba(242, 240, 234, 0.48);
  font-size: 0.76rem;
  line-height: 1.7;
}

.admin-tag-field {
  align-self: start;
}

.admin-post-copy p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
}

@media (max-width: 900px) {
  .filter-row-copy .micro-copy {
    max-width: none;
  }

  .filter-chip-list {
    gap: 0.6rem;
  }

  .library-year-head {
    align-items: start;
    flex-direction: column;
  }

  .library-year-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.guide-section {
  display: grid;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.guide-toc-card {
  position: sticky;
  top: 1.5rem;
  display: grid;
  gap: 1rem;
  align-self: start;
}

.guide-toc-list {
  display: grid;
  gap: 0.75rem;
}

.guide-toc-button {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(229, 226, 225, 0.78);
  font-size: 0.92rem;
  text-align: left;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.guide-toc-button:hover,
.guide-toc-button:focus-visible {
  background: rgba(233, 195, 73, 0.12);
  color: var(--amber);
  transform: translateX(4px);
}

.guide-content {
  display: grid;
  gap: 1.2rem;
}

.guide-card {
  display: grid;
  gap: 1.4rem;
  scroll-margin-top: 1.5rem;
}

.guide-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.3;
}

.guide-copy {
  margin: 0;
  color: rgba(229, 226, 225, 0.76);
  line-height: 1.8;
}

.guide-list,
.guide-bullet-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.guide-list {
  list-style: none;
}

.guide-bullet-list {
  padding-left: 1.1rem;
}

.guide-list li,
.guide-bullet-list li {
  color: rgba(229, 226, 225, 0.78);
  line-height: 1.8;
}

.guide-list li {
  display: grid;
  gap: 0.35rem;
}

.guide-list strong,
.guide-rule-group h4,
.guide-key-grid strong {
  color: rgba(229, 226, 225, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.guide-rule-group {
  display: grid;
  gap: 0.9rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-rule-group:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.guide-rule-group h4 {
  margin: 0;
}

.guide-key-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.guide-key-grid div {
  display: grid;
  gap: 0.45rem;
}

.guide-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.3rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc-card {
    position: static;
  }

  .guide-key-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact hero refresh */
.contact-hero {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  min-height: clamp(34rem, 72vw, 48rem);
}

.contact-hero-overlay {
  inset: auto auto clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem);
  width: min(calc(100% - 2.5rem), 31rem);
}

.contact-hero-overlay .display-title {
  margin: 0;
  max-width: 12ch;
  white-space: normal;
  font-size: clamp(1.7rem, 4.4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.contact-hero-note {
  position: absolute;
  right: clamp(1.25rem, 2vw, 1.75rem);
  bottom: clamp(1.25rem, 2vw, 1.75rem);
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(14px);
  text-align: right;
}

.contact-hero-note span {
  color: rgba(229, 226, 225, 0.46);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hero-note strong {
  color: rgba(247, 244, 240, 0.92);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.contact-prep-card {
  display: grid;
  gap: 1.4rem;
}

.contact-guide-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--ghost);
}

.contact-guide-link .section-title {
  margin: 0;
  max-width: 18ch;
}

.contact-guide-link .lede {
  max-width: 34rem;
  margin: 0.85rem 0 0;
}

.contact-guide-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .contact-bottom-grid,
  .contact-guide-link {
    grid-template-columns: 1fr;
  }

  .contact-guide-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .contact-hero {
    min-height: calc(100svh - 4rem);
    margin-bottom: 2rem;
  }

  .contact-hero-overlay {
    inset: auto 1rem 4.9rem 1rem;
    width: auto;
  }

  .contact-hero-note {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    text-align: left;
  }
}

/* Hero bottom shade: keep the photo bright at the top and melt it into the dark page below. */
.hero-home .hero-visual::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.18) 65%, rgba(5, 5, 5, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.12) 42%, rgba(5, 5, 5, 0.68) 78%, rgba(5, 5, 5, 0.96) 100%);
}

@media (max-width: 900px) {
  .hero-home .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.76) 78%, rgba(5, 5, 5, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.44) 0%, rgba(5, 5, 5, 0.16) 52%, rgba(5, 5, 5, 0.34) 100%);
  }
}

/* Navigation alignment and mobile toggle panel */
.nav-toggle {
  display: none;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.site-header .brand {
  justify-self: start;
}

.site-header .site-nav {
  justify-self: center;
  justify-content: center;
}

.site-header .header-cta {
  justify-self: end;
}

/* iPhone large-screen mobile stability pass */
@media (max-width: 780px) {
  :root {
    --content-width: calc(100vw - 24px);
  }

  .top-scroll-blur {
    height: 6.75rem;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.68) 0%, rgba(5, 5, 5, 0.28) 55%, rgba(5, 5, 5, 0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .site-header,
  .app-shell,
  .hero-home {
    width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.65rem;
    align-items: center;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.52rem 0.78rem;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(242, 240, 234, 0.88);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: none;
  }

  .site-header .header-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .site-header .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    justify-self: stretch;
    justify-content: stretch;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border: 0;
    background: transparent;
    transition:
      max-height 240ms ease,
      padding 240ms ease,
      opacity 180ms ease;
  }

  .site-header.is-nav-open .site-nav {
    max-height: 16rem;
    padding-top: 0.65rem;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header .site-nav a {
    display: flex;
    justify-content: center;
    padding: 0.72rem 0;
    font-size: 0.86rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-home {
    overflow: hidden;
  }

  .hero-home .hero-visual,
  .hero-home .hero-visual img {
    width: 100%;
  }

  .hero-home .hero-visual img {
    object-position: 40% center;
  }
}
