:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #66645f;
  --paper: #f7f2ea;
  --white: #ffffff;
  --line: #ddd8cb;
  --sage: #4f6b5c;
  --clay: #a5523e;
  --gold: #b98e46;
  --shadow: 0 18px 44px rgba(38, 32, 24, 0.14);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(247, 242, 234, 0.82);
  border-bottom: 1px solid rgba(221, 216, 203, 0.58);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: #7b7b78;
  border-radius: 6px;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 68px));
  align-items: end;
  overflow: hidden;
  padding: clamp(32px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.78), rgba(13, 12, 10, 0.34) 52%, rgba(13, 12, 10, 0.12)),
    linear-gradient(0deg, rgba(13, 12, 10, 0.44), rgba(13, 12, 10, 0.06) 42%),
    url("assets/hero-wide.png");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fffaf0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #e8c77c;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 9rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 860px;
}

.hero-title {
  color: #fffaf0;
  text-shadow: 0 0 18px rgba(255, 250, 240, 0.16);
}

.hero-title.neon-animate {
  background: linear-gradient(90deg, #fff36f, #ff4fd8, #43e7ff, #8bff8f, #fff36f);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: neonTitle 2600ms ease-out both;
}

@keyframes neonTitle {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    background-position: 0% 50%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 8px rgba(255, 79, 216, 0.82),
      0 0 20px rgba(67, 231, 255, 0.5),
      0 0 34px rgba(255, 243, 111, 0.34);
    filter: blur(2px) brightness(1.08);
  }

  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) brightness(1.24);
  }

  48% {
    opacity: 1;
    transform: translateY(0) scale(1);
    background-position: 100% 50%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 10px rgba(67, 231, 255, 0.9),
      0 0 24px rgba(255, 79, 216, 0.46),
      0 0 42px rgba(139, 255, 143, 0.34);
    filter: brightness(1.34);
  }

  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
    background-position: 42% 50%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 7px rgba(255, 243, 111, 0.72),
      0 0 18px rgba(255, 250, 240, 0.52);
    filter: brightness(1.14);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    color: #fffaf0;
    -webkit-text-fill-color: #fffaf0;
    text-shadow: 0 0 18px rgba(255, 250, 240, 0.16);
    filter: brightness(1);
  }
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy p:not(.kicker),
.section-lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.86);
}

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

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-socials a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.18);
}

.hero-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-socials a:nth-child(2) svg,
.hero-socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(38, 32, 24, 0.16);
}

.primary {
  background: var(--ink);
  color: var(--paper);
}

.secondary {
  background: transparent;
}

.hero .secondary {
  border-color: rgba(255, 250, 240, 0.82);
  color: #fffaf0;
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 54px);
  z-index: 1;
  display: grid;
  gap: 9px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.86rem;
  text-align: right;
  text-transform: uppercase;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.service-rail span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 720;
}

.service-rail span:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(54px, 9vw, 96px);
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

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

.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 14px;
}

.compact .kicker,
.compact h2 {
  grid-column: 1;
}

.clear-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--muted);
  padding: 7px 12px;
  cursor: pointer;
  font-weight: 700;
}

.clear-button:hover,
.clear-button:focus-visible {
  border-color: var(--clay);
  color: var(--ink);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 6px 14px;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.work-card {
  min-width: 0;
}

.work-card:nth-child(1),
.work-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card:nth-child(4) {
  grid-column: span 2;
}

.work-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(6)) {
  grid-column: span 1;
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(38, 32, 24, 0.1);
}

.work-card p {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.work-card:nth-child(4) img {
  aspect-ratio: 2 / 1;
}

.instagram-section {
  background: #fffaf0;
  border-block: 1px solid var(--line);
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.instagram-copy {
  position: sticky;
  top: 92px;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 248, 120, 0.14);
  padding: 22px clamp(20px, 6vw, 86px);
  background: #0b0b0a;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.86rem;
  font-weight: 760;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fffaf0;
}

.sns-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 11px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sns-list a:hover,
.sns-list a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--sage);
  box-shadow: 0 10px 22px rgba(38, 32, 24, 0.08);
}

.sns-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sns-list a:nth-child(2) svg,
.sns-list a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.sns-list span {
  font-size: 0.86rem;
  font-weight: 760;
}

.sns-list small {
  display: none;
}

.instagram-embed {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 199, 124, 0.18), rgba(79, 107, 92, 0.08)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(38, 32, 24, 0.08);
}

.instagram-embed iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #ffffff;
}

.video-section {
  background: #151515;
  color: #fffaf0;
}

.career-content[hidden] {
  display: none;
}

.public-portfolio {
  margin-bottom: clamp(34px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  padding-bottom: clamp(30px, 5vw, 58px);
}

.public-media-tabs {
  margin-bottom: 22px;
}

.public-photo-grid {
  margin-top: 0;
}

.career-lock {
  max-width: 560px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  padding: clamp(22px, 4vw, 34px);
}

.career-lock .kicker {
  color: #e8c77c;
}

.career-lock p:not(.kicker) {
  color: rgba(255, 250, 240, 0.72);
}

.career-lock-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.career-lock-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.9rem;
  font-weight: 760;
}

.career-lock-form input {
  min-height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  padding: 10px 13px;
}

.career-lock-form input:focus {
  border-color: #e8c77c;
  outline: 3px solid rgba(232, 199, 124, 0.18);
}

.career-lock-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  padding-top: 16px;
}

.career-lock-contact span {
  width: fit-content;
  border: 1px solid rgba(232, 199, 124, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255, 250, 240, 0.9);
  background: rgba(232, 199, 124, 0.08);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.career-lock-contact a {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8c77c;
  border-radius: 999px;
  padding: 12px 18px;
  background: #e8c77c;
  color: #111111;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.career-lock-contact a:hover,
.career-lock-contact a:focus-visible {
  transform: translateY(-2px);
  background: #f5d98f;
}

.career-lock-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: #e8c77c;
  font-weight: 760;
}

.video-heading {
  align-items: start;
}

.video-heading .kicker {
  color: #e8c77c;
}

.video-heading h2 {
  margin-bottom: 0;
}

.portfolio-view-note {
  max-width: 320px;
  margin: 4px 0 0;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.section-note {
  max-width: 360px;
  margin: 4px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.98rem;
}

.video-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.video-tools[hidden],
.video-grid[hidden] {
  display: none;
}

.media-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  padding: 5px;
}

.media-tab {
  min-width: 92px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 250, 240, 0.74);
  cursor: pointer;
  font-weight: 780;
}

.media-tab.active {
  background: #e8c77c;
  color: #151515;
}

.video-search {
  display: block;
}

.video-search input {
  width: min(520px, 100%);
  min-height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  padding: 10px 13px;
}

.video-search input:focus {
  border-color: #e8c77c;
  outline: 3px solid rgba(232, 199, 124, 0.18);
}

.genre-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 148px;
  overflow: auto;
  padding-right: 4px;
}

.genre-button {
  min-height: 34px;
  border: 1px solid rgba(255, 250, 240, 0.17);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.06);
  color: rgba(255, 250, 240, 0.76);
  cursor: pointer;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 720;
}

.genre-button.active {
  border-color: #e8c77c;
  background: #e8c77c;
  color: #151515;
}

.video-count {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.9rem;
}

.video-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  color: rgba(255, 250, 240, 0.72);
  padding: 24px;
}

.portfolio-pending {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  color: rgba(255, 250, 240, 0.72);
  padding: 32px;
  text-align: center;
}

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

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

.photo-grid[hidden] {
  display: none;
}

.works-more-button {
  display: flex;
  width: fit-content;
  justify-self: center;
  min-height: 44px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.72);
  color: #111111;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 840;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.works-more-button:hover,
.works-more-button:focus-visible {
  transform: translateY(-2px);
  border-color: #111111;
  background: #ffffff;
}

.works-more-button[hidden] {
  display: none;
}

.photo-portfolio-intro {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 2px;
}

.photo-portfolio-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  color: #e8c77c;
  font-size: 0.78rem;
  font-weight: 760;
}

.photo-portfolio-intro h3 {
  color: #fffaf0;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.photo-portfolio-intro p {
  color: rgba(255, 250, 240, 0.66);
}

.photo-category-tabs {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}

.photo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: #20201f;
}

.photo-card.wide {
  grid-column: span 1;
}

.photo-view-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-view-button:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.07);
}

.photo-card:nth-child(2n) img {
  aspect-ratio: 16 / 10;
}

.photo-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.9);
  padding: clamp(18px, 4vw, 48px);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox img {
  display: block;
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
}

.photo-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 38px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  cursor: pointer;
  padding: 8px 14px;
  font-weight: 760;
}

body.lightbox-open {
  overflow: hidden;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: #20201f;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0c0c0c;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0c0c0c;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.64);
  color: #fffaf0;
  font-size: 1.15rem;
  transform: translate(-50%, -50%);
}

.video-thumb:hover img,
.video-thumb:focus-visible img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.video-card div {
  padding: 14px 15px 16px;
}

.video-card span {
  display: block;
  margin-bottom: 4px;
  color: #fffaf0;
  font-weight: 780;
}

.video-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.9rem;
}

.video-card.wide {
  grid-column: span 2;
}

.band {
  background: #e9eee9;
  border-block: 1px solid #d3ddd3;
}

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

.service-list {
  padding: 20px;
  border: 1px solid rgba(79, 107, 92, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.service-media {
  overflow: hidden;
  margin: 18px -10px -10px;
  border-radius: 8px;
  background: #151515;
}

.service-media video,
.service-media img,
.service-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.service-media video {
  background: #151515;
}

.service-list h3 {
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 1.35rem;
}

.service-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
}

.booking-grid,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  justify-content: center;
}

.booking-panel,
.booking-form,
.inquiry-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(38, 32, 24, 0.08);
}

.booking-panel,
.booking-form {
  padding: clamp(18px, 3vw, 28px);
}

.date-list {
  display: grid;
  gap: 10px;
}

.date-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
}

.date-chip strong {
  display: block;
}

.date-chip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.category-field {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.date-field {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.category-field legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.date-field legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.booking-form .undecided-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form .undecided-option input {
  width: auto;
  margin: 0;
  accent-color: var(--sage);
}

.date-options {
  display: grid;
  gap: 10px;
}

.date-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.date-option label {
  display: grid;
  gap: 6px;
}

.date-remove-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--muted);
  cursor: pointer;
  padding: 7px 12px;
  font-weight: 760;
}

.date-remove-button:hover,
.date-remove-button:focus-visible {
  border-color: var(--clay);
  color: var(--ink);
}

.date-add-button {
  width: fit-content;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  padding: 7px 12px;
  font-weight: 760;
}

.date-add-button:hover,
.date-add-button:focus-visible {
  border-color: var(--sage);
}

.request-tabs {
  display: inline-flex;
  gap: 6px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 5px;
}

.request-tab {
  min-width: 82px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 760;
}

.request-tab.active {
  background: var(--ink);
  color: var(--paper);
}

.category-panels {
  min-height: 246px;
}

.category-group {
  display: grid;
  gap: 8px;
}

.category-group[hidden] {
  display: none;
}

.category-group p {
  margin: 0 0 2px;
  color: var(--ink);
  font-weight: 780;
}

.category-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.booking-form .category-group input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--sage);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  padding: 11px 12px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(79, 107, 92, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

.inquiry-section {
  padding-top: 0;
}

.inquiry-list {
  min-height: 92px;
  padding: 8px;
}

.inquiry-item {
  display: grid;
  gap: 3px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.inquiry-item:last-child {
  border-bottom: 0;
}

.inquiry-item strong {
  font-size: 1rem;
}

.inquiry-item span,
.empty-state {
  color: var(--muted);
  font-size: 0.92rem;
}

.empty-state {
  margin: 0;
  padding: 18px;
}

@media (max-width: 940px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

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

  .work-card,
  .work-card:nth-child(1),
  .work-card:nth-child(4),
  .work-card:nth-child(6),
  .work-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(6)) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-lists {
    grid-template-columns: 1fr;
  }

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

  .instagram-copy {
    position: static;
  }

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

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .video-card.wide {
    grid-column: span 2;
  }

  .photo-card.wide {
    grid-column: span 2;
  }
}

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

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 610px;
    background:
      linear-gradient(90deg, rgba(13, 12, 10, 0.78), rgba(13, 12, 10, 0.26) 58%, rgba(13, 12, 10, 0.08)),
      linear-gradient(0deg, rgba(13, 12, 10, 0.46), rgba(13, 12, 10, 0.08) 48%),
      url("assets/hero-mobile.png");
    background-position: center;
    background-size: cover;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-socials {
    gap: 8px;
  }

  .hero-socials a {
    flex: 1 1 150px;
    justify-content: center;
  }

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

  .photo-card.wide {
    grid-column: span 1;
  }

  .service-rail {
    grid-template-columns: 1fr;
  }

  .request-tabs {
    width: 100%;
  }

  .request-tab {
    flex: 1;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

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

  .video-card.wide {
    grid-column: span 1;
  }

  .hero-meta {
    position: static;
    margin-top: 28px;
    text-align: left;
  }

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

  .compact {
    display: block;
  }

  .clear-button {
    margin-top: 6px;
  }
}

/* NEON: black / ivory / neon-yellow brand direction */
:root {
  --ink: #fff8c7;
  --muted: rgba(255, 250, 240, 0.68);
  --paper: #050505;
  --white: #fffaf0;
  --line: rgba(255, 248, 120, 0.18);
  --sage: #fff16a;
  --clay: #8e8e87;
  --gold: #fff16a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body {
  background: #050505;
  color: #fffaf0;
}

.site-header {
  background: rgba(5, 5, 5, 0.78);
  border-bottom-color: rgba(255, 248, 120, 0.16);
}

.brand,
.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fffaf0;
}

.main-nav {
  color: rgba(255, 250, 240, 0.62);
}

.brand-mark {
  background: #242421;
  box-shadow: 0 0 24px rgba(255, 241, 106, 0.16);
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.38) 56%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08) 44%),
    url("assets/hero-wide.png");
  background-position: center;
  background-size: cover;
}

.kicker,
.video-heading .kicker,
.career-lock .kicker {
  color: #fff16a;
}

.button.primary,
.media-tab.active,
.genre-button.active,
.cinema-button {
  background: #fff16a;
  color: #050505;
}

.button.primary {
  border-color: #fff16a;
}

.button.secondary,
.hero-socials a {
  border-color: rgba(255, 241, 106, 0.28);
  color: #fffaf0;
}

.band,
.instagram-section,
.booking-section {
  background: #0b0b0a;
  border-block-color: rgba(255, 248, 120, 0.12);
}

.section-heading h2,
.booking-form h2,
.service-list h3 {
  color: #fffaf0;
}

.service-list,
.booking-form,
.sns-list a {
  border-color: rgba(255, 248, 120, 0.16);
  background: rgba(255, 250, 240, 0.055);
  color: #fffaf0;
}

.service-list li,
.booking-form label,
.sns-list span {
  color: rgba(255, 250, 240, 0.72);
}

.booking-form input,
.booking-form textarea,
.booking-form select,
.date-option,
.request-panel {
  border-color: rgba(255, 248, 120, 0.16);
  background: rgba(255, 250, 240, 0.06);
  color: #fffaf0;
}

.booking-mail-panel {
  max-width: 860px;
  margin-inline: auto;
}

.mail-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.mail-request-grid article {
  border: 1px solid rgba(255, 248, 120, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.05);
}

.mail-request-grid span {
  display: block;
  margin-bottom: 8px;
  color: #fff16a;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mail-request-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.75;
}

.mail-request-button {
  margin-top: 0;
}

.instagram-embed {
  border-color: rgba(255, 248, 120, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 241, 106, 0.16), rgba(255, 250, 240, 0.04)),
    #0b0b0a;
}

@media (max-width: 620px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.12)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08) 48%),
      url("assets/hero-mobile.png");
    background-position: center;
    background-size: cover;
  }

  .mail-request-grid {
    grid-template-columns: 1fr;
  }
}
