@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bg: #050505;
  --surface: rgba(12, 14, 22, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f1f1f7;
  --muted: #a6a6b1;
  --accent: #ffffff;
  --accent-strong: #ffffff;
}
* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
body {
  margin: 0;
  color: var(--text);
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}
.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('../images/Interview1_edited.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: grayscale(1) contrast(1.05);
}
.scanline {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 48%, rgba(255, 255, 255, 0.04) 49%, transparent 50%);
  background-size: 100% 4px;
}
.page-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home {
  background: #f2f2f2;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.home .page-backdrop {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/BG.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: none;
}
.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}
.home .site-logo {
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.home .site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.home .site-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 180ms ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.home .site-nav a:hover,
.home .site-nav a.active {
  opacity: 1;
}
.gallery-page {
  min-height: 100vh;
}
.site-theme-page .page-backdrop,
.contact-page .page-backdrop,
.gallery-page .page-backdrop {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/BG.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: none;
}
.site-theme-page .site-header,
.contact-page .site-header,
.gallery-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}
.site-theme-page .site-brand,
.contact-page .site-brand,
.gallery-page .site-brand {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.site-theme-page .site-nav,
.contact-page .site-nav,
.gallery-page .site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.site-theme-page .site-nav a,
.contact-page .site-nav a,
.gallery-page .site-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 180ms ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.site-theme-page .site-nav a:hover,
.site-theme-page .site-nav a.active,
.contact-page .site-nav a:hover,
.contact-page .site-nav a.active,
.gallery-page .site-nav a:hover,
.gallery-page .site-nav a.active {
  opacity: 1;
}
.site-theme-page .content,
.contact-page .content,
.gallery-page .content {
  padding-top: 7rem;
}
.about-page {
  min-height: 100vh;
}
.about-page .site-brand {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.site-subtitle {
  display: none;
}
.about-page .content {
  max-width: 1180px;
  padding-top: 8rem;
}
.about-page .page-section {
  margin-top: 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.about-page .page-section:first-child {
  border-top: 0;
  padding-top: 3rem;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: start;
}
.about-hero-copy h1 {
  margin-bottom: 1.6rem;
}
.about-richtext {
  display: grid;
  gap: 1.15rem;
}
.about-richtext p,
.about-list p,
.about-project-item p {
  margin: 0;
  max-width: 58rem;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.8);
}
.about-hero-media {
  margin: 0;
  width: min(70%, 420px);
  justify-self: end;
  align-self: start;
  margin-top: 0.35rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.about-hero-media img,
.about-footer-image {
  display: block;
  width: 100%;
  height: auto;
}
.about-section-heading {
  margin-bottom: 1.75rem;
}
.about-section-heading h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.04;
}
.about-list,
.about-project-stack {
  display: grid;
  gap: 1rem;
}
.about-list a,
.about-project-item a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.18em;
}
.about-series-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.about-series-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.about-series-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.about-project-item {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.about-project-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.about-project-item h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}
.about-footer-links {
  display: grid;
  gap: 1.5rem;
}
.about-footer-image {
  max-width: 260px;
}
.about-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.72em;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 14rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 14, 22, 0.94);
  backdrop-filter: blur(12px);
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 25;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #fff;
  opacity: 0.86;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}
.home .content {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home .welcome-area {
  display: block;
  position: relative;
  min-height: 120vh;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.home .hero-panel {
  position: relative;
  width: 100vw;
  min-height: inherit;
  overflow: hidden;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home .hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  pointer-events: none;
}
.home .hero-panel {
  cursor: zoom-in;
}
.home .hero-overlay {
  position: absolute;
  left: 7rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: 13.2rem;
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.home .hero-overlay .eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.95);
}
.home .hero-overlay h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 0.94;
  font-weight: 400;
  color: #fff;
}
.home .hero-overlay .hero-description {
  display: none;
}
.home .hero-click-hint {
  position: fixed;
  left: 50%;
  bottom: calc(5.2rem + 0.35rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02rem;
  pointer-events: none;
  z-index: 23;
}
.home .hero-click-chevron {
  width: 1.85rem;
  height: 1.85rem;
  border-top: 4px solid rgba(255, 255, 255, 0.96);
  border-right: 4px solid rgba(255, 255, 255, 0.96);
  transform: rotate(-45deg);
  opacity: 0.94;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45));
}
.home .hero-click-chevron:last-child {
  opacity: 0.66;
  margin-top: -0.35rem;
}
.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}
.hero-modal.open {
  display: flex;
}
.hero-modal-panel {
  display: flex;
  flex-direction: column;
  position: relative;
  width: min(96vw, 1320px);
  max-width: min(96vw, 1320px);
  max-height: 92vh;
  border-radius: 24px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.96);
}
.hero-modal-panel::-webkit-scrollbar {
  width: 0.7rem;
}
.hero-modal-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.hero-modal-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.26);
  border: 2px solid rgba(17, 17, 17, 0.96);
  border-radius: 999px;
}
.hero-modal-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.38);
}
.hero-modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 8.5rem);
  object-fit: contain;
  background: #111;
}
.hero-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.hero-modal-nav span {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-0.1rem);
}
.hero-modal-nav-prev {
  left: 1rem;
}
.hero-modal-nav-next {
  right: 1rem;
}
.hero-modal-copy {
  flex-shrink: 0;
  padding: 1rem 1.15rem 1.2rem;
  color: #fff;
}
.hero-modal-copy .eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.82);
}
.hero-modal-copy h1 {
  margin: 0;
  font-size: clamp(0.78rem, 1.5vw, 1.15rem);
  line-height: 0.95;
  font-weight: 400;
  color: #fff;
}
.hero-modal-copy .hero-description {
  margin: 0.7rem 0 0;
  max-width: 28rem;
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
.hero-modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.home .thumb-scroll {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
}
.home .thumb-scroll::-webkit-scrollbar {
  height: 0.45rem;
}
.home .thumb-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}
.home .thumb-card {
  position: relative;
  width: 100%;
  height: 5.5rem;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: #fff;
  padding: 0;
  cursor: pointer;
  appearance: none;
  display: block;
}
.home .thumb-card::after {
  content: attr(data-hero-title);
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  padding: 0.28rem 0.38rem;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.2rem);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}
.home .thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
}
.home .thumb-card:hover::after,
.home .thumb-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.home .thumb-card.active {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.home footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 22;
  margin-top: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.home footer .thumb-strip {
  position: relative;
  margin-top: 0;
  padding: 0;
  background: transparent;
}
.home footer .thumb-scroll {
  padding: 0;
}
.home footer .thumb-card {
  height: 5.2rem;
}
.home .thumb-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.home .thumb-nav span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-0.08rem);
}
.home .thumb-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.home .thumb-nav-prev {
  left: 0.35rem;
}
.home .thumb-nav-next {
  right: 0.35rem;
}
.home footer .copyright-line {
  padding: 0.75rem 1.5rem;
}
@media (max-width: 980px) {
  .home .site-header {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
  }
  .home .thumb-strip {
    margin-top: 2rem;
    padding-top: 0;
  }
  .home footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .home .hero-overlay {
    left: 2rem;
  }
  .home .hero-click-hint {
    bottom: calc(5.2rem + 0.3rem);
  }
}
@media (max-width: 720px) {
  .home .site-header {
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }
  .home .site-logo {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }
  .home .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .nav-dropdown-menu {
    left: auto;
    right: 0;
    min-width: 11rem;
  }
  .home .content {
    padding: 0;
  }
  .hero-modal-copy {
    padding: 0.85rem 0.95rem 1rem;
  }
  .hero-modal-nav {
    width: 3rem;
    height: 3rem;
  }
  .hero-modal-nav span {
    font-size: 2.2rem;
  }
  .hero-modal-copy h1 {
    font-size: clamp(1.3rem, 7vw, 1.9rem);
  }
  .hero-modal-copy .hero-description {
    font-size: 0.74rem;
    line-height: 1.55;
  }
  .home .hero-overlay {
    display: none;
  }
  .home .hero-click-hint {
    bottom: calc(5.2rem + 0.15rem);
    gap: 0;
  }
  .home .hero-click-chevron {
    width: 1.45rem;
    height: 1.45rem;
    border-top-width: 3px;
    border-right-width: 3px;
  }
  .home .hero-click-chevron:last-child {
    margin-top: -0.28rem;
  }
  .home .thumb-card::after {
    content: attr(data-thumb-name);
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.2rem;
    padding: 0.18rem 0.24rem;
    font-size: 0.48rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
    transform: none;
  }
  .home .thumb-scroll {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 6.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 2.75rem;
  }
  .home .thumb-card {
    scroll-snap-align: start;
  }
  .home .thumb-scroll::-webkit-scrollbar {
    display: none;
  }
  .home .thumb-nav {
    display: inline-flex;
  }
}
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.welcome-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 8rem);
}
.hero-copy {
  padding: 0;
  max-width: 32rem;
}
.eyebrow {
  display: none;
  margin: 0 0 1rem;
  color: var(--muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
}
h1 {
  font-size: clamp(1.2rem, 2vw, 2.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
h3 {
  font-size: 1.25rem;
}
.lead {
  margin: 1.5rem 0 0;
  line-height: 1.9;
  color: var(--muted);
  max-width: 44rem;
}

.site-theme-page .lead,
.contact-page .lead,
.gallery-page .lead,
.about-page .lead {
  line-height: 1.38;
}
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-link {
  display: inline-flex;
  padding: 0.95rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.hero-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}
.hero-panel {
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.card {
  padding: 2rem;
  background: rgba(10, 11, 16, 0.8);
  border: 1px solid var(--border);
  border-radius: 28px;
}
.card p {
  color: var(--muted);
  line-height: 1.8;
}
.carousel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.carousel-card {
  display: grid;
  gap: 1rem;
}
.carousel-heading {
  margin: 0;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.carousel {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(10, 11, 16, 0.86);
  padding: 3rem 0 1.5rem;
}
.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 420ms ease;
  will-change: transform;
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 0 3.25rem;
}
.carousel-slide img {
  display: block;
  width: 100%;
  height: clamp(320px, 62vw, 720px);
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  background: #090909;
}
.carousel-slide .image-label {
  position: absolute;
  left: 4.5rem;
  bottom: 1.25rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 40%);
  z-index: 5;
}
.carousel-stage {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 420px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 450ms ease, opacity 450ms ease, width 450ms ease;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide.selected {
  z-index: 10;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 520px;
  opacity: 1;
}
.slide.prev,
.slide.next {
  z-index: 8;
  width: 360px;
  opacity: 0.9;
}
.slide.prev {
  left: 20%;
  transform: translate(-50%, -45%) scale(0.8);
}
.slide.next {
  left: 80%;
  transform: translate(-50%, -45%) scale(0.8);
}
.slide.prevLeftSecond,
.slide.nextRightSecond {
  z-index: 6;
  width: 280px;
  opacity: 0.65;
}
.slide.prevLeftSecond {
  left: 5%;
  transform: translate(-50%, -35%) scale(0.6);
}
.slide.nextRightSecond {
  left: 95%;
  transform: translate(-50%, -35%) scale(0.6);
}
.slide.hideLeft,
.slide.hideRight {
  opacity: 0;
  transform: translate(-50%, 100%) scale(0.4);
  z-index: 1;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  z-index: 10;
  position: relative;
}
.carousel-button {
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d61f3a, #ff3d5d);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 25px rgba(214, 31, 58, 0.28);
}
.carousel-button:hover {
  background: linear-gradient(135deg, #ff3d5d, #ff1f3a);
  transform: translateY(-1px);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  position: relative;
  z-index: 10;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.carousel-dot.active {
  background: rgba(255, 255, 255, 0.95);
}
@media (max-width: 900px) {
  .carousel-grid {
    grid-template-columns: 1fr;
  }
  .carousel {
    padding: 2rem 0 1.5rem;
  }
  .slide {
    width: 280px;
    height: 360px;
  }
  .slide.selected {
    width: 420px;
  }
}
@media (max-width: 640px) {
  .carousel {
    padding: 1.5rem 0 1rem;
  }
  .carousel-slide {
    padding: 0 1.25rem;
  }
  .carousel-slide img {
    height: clamp(250px, 72vw, 420px);
  }
  .carousel-slide .image-label {
    left: 2rem;
    right: 2rem;
    bottom: 0.9rem;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
  .carousel-control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.7rem;
  }
  .slide,
  .slide.selected {
    width: 100%;
    left: 50%;
  }
  .slide.selected {
    width: calc(100% - 2rem);
  }
  .slide.prev,
  .slide.next,
  .slide.prevLeftSecond,
  .slide.nextRightSecond {
    display: none;
  }
}
.carousel-control:hover {
  background: rgba(0, 0, 0, 0.92);
}
.carousel-control:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}
.carousel-control.prev {
  left: 1.25rem;
}
.carousel-control.next {
  right: 1.25rem;
}
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 35;
}
.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
}
.image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.image-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.hero-shell {
  display: grid;
  gap: 3rem;
  padding: 3rem 0 4rem;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 5rem);
}
.hero-copy {
  max-width: 34rem;
}
.hero-copy .eyebrow {
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-copy h1 {
  font-size: clamp(3.4rem, 4.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 1.4rem;
}
.hero-copy .lead {
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}
.hero-media {
  display: grid;
  place-items: center;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
}
.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
}
.thumb-strip {
  display: grid;
  gap: 1.25rem;
}
.thumb-label {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.thumb-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.thumb-scroll::-webkit-scrollbar {
  height: 0.5rem;
}
.thumb-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}
.thumb-card {
  min-width: 16rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.thumb-card img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}
.thumb-card:hover img {
  transform: scale(1.03);
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-media img {
    max-height: 60vh;
  }
}
@media (max-width: 720px) {
  .hero-shell {
    gap: 2rem;
    padding: 2rem 1.25rem 3rem;
  }
  .hero-copy h1 {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
  }
  .hero-copy .lead {
    font-size: 1rem;
  }
  .thumb-scroll {
    grid-auto-columns: minmax(14rem, 1fr);
  }
}
@media (max-width: 520px) {
  .thumb-scroll {
    grid-auto-columns: minmax(12rem, 1fr);
  }
  .hero-media {
    padding: 0.75rem;
  }
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-panel .image-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-section {
  margin-top: 4rem;
}
.page-section p {
  max-width: 55rem;
  line-height: 1.9;
  color: var(--muted);
}

.site-theme-page .page-section p,
.contact-page .page-section p,
.gallery-page .page-section p,
.about-page .page-section p {
  line-height: 1.38;
}
.page-section .section-inner {
  display: grid;
  gap: 2rem;
}
.page-section .section-inner.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}
.gesture-intro-layout {
  align-items: start;
}
.gesture-catalogue-cta {
  display: grid;
  gap: 1rem;
  align-self: start;
  justify-items: start;
  padding-top: 0.35rem;
}
.gesture-catalogue-cta p {
  margin: 0;
  max-width: 20rem;
}
.form-card,
.bio-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(10, 11, 16, 0.86);
  border: 1px solid var(--border);
}
.form-field {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.form-field label {
  font-size: 0.8rem;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.button-primary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}
.button-small {
  padding: 0.72rem 1.2rem;
  font-size: 0.92rem;
}
.link-inline {
  color: var(--text);
  text-decoration: underline;
}
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}
.thumb-strip {
  margin-top: 3rem;
}
.thumb-label {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}
.thumb-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
}
.thumb-scroll::-webkit-scrollbar {
  height: 0.45rem;
}
.thumb-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}
.thumb-card {
  min-width: 16rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.thumb-card img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}
.thumb-card:hover img {
  transform: scale(1.03);
}
@media (max-width: 980px) {
  .home .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-page .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-page .site-header,
  .about-page .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-hero {
    grid-template-columns: 1fr;
  }
  .about-hero-media {
    width: min(70%, 420px);
    justify-self: start;
  }
  .about-series-links {
    grid-template-columns: 1fr;
  }
  .page-section .section-inner.two-column {
    grid-template-columns: 1fr;
  }
  .home .social-side {
    position: relative;
    flex-direction: row;
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    padding: 0.75rem 0;
    justify-content: flex-start;
  }
  .home .social-link {
    writing-mode: horizontal-tb;
    rotate: 0deg;
    font-size: 0.75rem;
  }
  .home .hero-overlay {
    left: 2rem;
    right: 2rem;
    top: auto;
    bottom: 5rem;
    transform: none;
    max-width: none;
  }
  .home .thumb-strip {
    margin-top: 2rem;
    padding-top: 0;
  }
}
@media (max-width: 640px) {
  .content {
    padding: 3rem 1.5rem 4rem;
  }
  .site-header {
    overflow: visible;
  }
  .site-nav {
    justify-content: flex-start;
  }
  .nav-dropdown {
    position: static;
  }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1.5rem;
    right: 1.5rem;
    min-width: 0;
    width: auto;
  }
  .gallery-page .content {
    padding-top: 10.5rem;
  }
  .contact-page .site-nav,
  .gallery-page .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .about-page .content {
    padding-top: 10.9rem;
  }
  .about-page .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .about-page .page-section {
    padding: 2.25rem 0;
  }
  .about-hero-media {
    width: 50%;
    justify-self: center;
  }
}
