@font-face {
  font-family: "CS Boopie";
  src: url("cs-boopie-font_craftsupplyco_241224/CS Boopie.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Morgan";
  src: url("Morgan-sans-font_Salamahtype_280125/Morgan.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: var(--text-light);
  --secondary-color: #2d2d2d;
  --accent-color: #ba88d7;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --section-padding: 8rem 0;
  --container-max-width: 1400px;
}

/* Shader transition overlay */
#shader-transition {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15000;
  opacity: 0;
  background-color: #000;
  transition: opacity 0.8s ease;
}

#shader-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

#shader-skip-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 15001;
  background: rgba(255, 235, 167, 0.08);
  border: 1px solid rgba(255, 235, 167, 0.7);
  border-radius: 4px;
  color: #ffeba7;
  font-family: "PPSupplyMono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

#shader-skip-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

#shader-skip-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 70px;
}

/* Lenis handles smooth scrolling — avoid native smooth conflict */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  background-color: rgba(25, 25, 25, 1);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Hide scrollbar only during nav auto-scroll transition */
body.is-programmatic-scroll {
  scrollbar-width: none;
}

body.is-programmatic-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Blackhole Loading Animation */
#blackhole {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(25, 25, 25, 1);
  display: flex;
}

#blackhole.hidden {
  display: none;
}

.blackhole-sound-control {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}

.bh-line-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.bh-sound-labels {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 36px;
  white-space: nowrap;
}

.bh-sound-on,
.bh-sound-off {
  color: #ffeba7;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.bh-sound-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
  animation: iconBlink 1.5s ease-in-out infinite;
}

.bh-scroll-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.bh-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-gray);
  animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.blackhole-sound-control .bh-sound-on { opacity: 0.3; }
.blackhole-sound-control .bh-sound-off { opacity: 1; }
.blackhole-sound-control.active .bh-sound-on { opacity: 1; }
.blackhole-sound-control.active .bh-sound-off { opacity: 0.3; }

.centerHover {
  width: 255px;
  height: 255px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -128px;
  margin-left: -128px;
  z-index: 2;
  cursor: pointer;
  line-height: 255px;
  text-align: center;
  transition: all 500ms;
}

.centerHover.open {
  opacity: 0;
  pointer-events: none;
}

.centerHover:hover span {
  color: #ddd;
}

.centerHover:hover span:before {
  background-color: #ddd;
}

.centerHover:hover span:after {
  background-color: #ddd;
}

.centerHover span {
  color: #666;
  font-family: serif;
  font-size: 18px;
  position: relative;
  transition: all 500ms;
}

.centerHover span:before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 16px;
  margin-right: 12px;
  margin-bottom: 4px;
  background-color: #666;
  transition: all 500ms;
}

.centerHover span:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 16px;
  margin-left: 12px;
  margin-bottom: 4px;
  background-color: #666;
  transition: all 500ms;
}

#blackhole canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: auto;
}

#main-content {
  opacity: 0;
  transition: opacity 0.5s ease-in;
  background-color: rgba(25, 25, 25, 1);
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
}

#main-content.visible {
  opacity: 1;
}

/* Dust/Scratches background effect for the entire site */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://img.freepik.com/premium-photo/white-dust-scratches-black-background_279525-2.jpg?w=640");
  background-repeat: repeat;
  opacity: 0.1;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

/* Animated noise effect */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent
    url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
  background-size: 300px 300px;
  animation: noise-animation 0.3s steps(5) infinite;
  opacity: 0.9;
  will-change: transform;
  z-index: 100;
  pointer-events: none;
}

@keyframes noise-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -3%);
  }
  20% {
    transform: translate(-4%, 2%);
  }
  30% {
    transform: translate(2%, -4%);
  }
  40% {
    transform: translate(-2%, 5%);
  }
  50% {
    transform: translate(-4%, 2%);
  }
  60% {
    transform: translate(3%, 0);
  }
  70% {
    transform: translate(0, 3%);
  }
  80% {
    transform: translate(-3%, 0);
  }
  90% {
    transform: translate(2%, 2%);
  }
  100% {
    transform: translate(1%, 0);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #3b0000 0%, #00001e 50%, #085b63 100%);
  background-size: 200% 100%;
  backdrop-filter: blur(10px);
  z-index: 997;
  padding: 1rem 0;
  min-height: 6rem;
  transition: all 0.3s ease;
  animation: gradientShift 10s ease infinite;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.nav-container {
  width: 100%;
  margin: 0;
  padding-left: 4rem;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  min-height: 4rem;
}

@media (max-width: 1200px) {
  .nav-container {
    padding-left: 3rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding-left: 2rem;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding-left: 1.5rem;
    padding-right: 0;
  }
}

.nav-logo {
  margin-left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
}

@media (max-width: 1200px) {
  .nav-logo {
    margin-left: 0;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    margin-left: 0;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    margin-left: 0;
    height: 100%;
  }
}

.nav-logo a {
  display: flex;
  height: 100%;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo a:hover {
  opacity: 0.8;
}

.header-logo-image {
  height: auto;
  max-height: 4rem;
  width: auto;
  max-width: 320px;
  display: block;
  margin-top: 0;
  margin-left: 0;
  padding-bottom: 10px;
  object-fit: contain;
  transform: scale(2.2);
  transform-origin: left center;
  pointer-events: none; /* 大きな透明部分がクリックを邪魔しないように */
}

@media (max-width: 1200px) {
  .header-logo-image {
    max-height: 4rem;
    max-width: 320px;
  }
}

@media (max-width: 968px) {
  .header-logo-image {
    max-height: 4rem;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .header-logo-image {
    max-height: 3.6rem;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .header-logo-image {
    max-height: 3.2rem;
    max-width: 240px;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: nowrap;
  margin-right: 1rem;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 968px) {
  .nav-menu {
    gap: 1rem;
  }
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 968px) {
  .nav-link {
    font-size: 0.8rem;
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hide icon & SVG by default (mobile / all widths)
   Use high specificity to override Material Symbols CSS (display: inline-block) */
.nav-menu .nav-link .nav-link-icon,
.nav-menu .nav-link .nav-link-svg {
  display: none;
}

/* Desktop nav: icon + rotating circular text on hover */
@media (min-width: 909px) {
  /* Hide underline — replaced by icon animation */
  .nav-menu > li > .nav-link::after {
    display: none;
  }

  .nav-menu > li > .nav-link:hover {
    color: var(--text-light);
  }

  .nav-link-text {
    display: inline-block;
    transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
  }

  /* Icon: absolutely centered over text, hidden by default */
  .nav-menu .nav-link .nav-link-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    font-size: 1.25rem;
    transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
    pointer-events: none;
  }

  .nav-menu .nav-link:hover .nav-link-text,
  .nav-menu .nav-link:focus-visible .nav-link-text {
    transform: scale(0);
    opacity: 0;
  }

  .nav-menu .nav-link:hover .nav-link-icon,
  .nav-menu .nav-link:focus-visible .nav-link-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  /* SVG circular text: shown on desktop, hidden via opacity/transform */
  .nav-menu .nav-link .nav-link-svg {
    display: block;
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    font-family: Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    transition: opacity 300ms ease-in-out 150ms,
                transform 300ms ease-in-out 150ms;
  }

  .nav-menu .nav-link:hover .nav-link-svg,
  .nav-menu .nav-link:focus-visible .nav-link-svg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .nav-menu .nav-link .nav-link-svg g {
    transform-origin: center;
    animation: nav-circle-rotate 6s linear infinite;
  }
}

@keyframes nav-circle-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  pointer-events: auto;
  padding: 0;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#menuToggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding-bottom: 20px;
}

.hamburger-icon-wrap {
  position: relative;
  width: 44px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon-wrap .hamburger-burger,
.hamburger-icon-wrap .hamburger-chips {
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -18px;
}

.hamburger-cross {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  opacity: 0;
  pointer-events: none;
}

.hamburger-cross-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 3px;
  margin-left: -15px;
  margin-top: -1.5px;
  border-radius: 999px;
  background: #ffde5e;
  border: 1px solid #f2c335;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transform-origin: 50% 50%;
}

.hamburger-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hamburger-text-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hamburger-text-close {
  opacity: 0;
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
}

.hamburger.active .hamburger-text-menu {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}

.hamburger.active .hamburger-text-close {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.hamburger-burger,
.hamburger-chips {
  position: absolute;
  width: 44px;
  height: auto;
  max-height: 36px;
  pointer-events: none;
  filter: saturate(1.2) contrast(1.05) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}

.hamburger-chips {
  opacity: 0;
  visibility: hidden;
  transform-origin: 35px 26px;
  scale: 1.05;
}

.chip-sauce-detail {
  transition: opacity 0.12s ease;
}

.hamburger.active .chip-sauce-detail {
  opacity: 0;
}

.hamburger-burger {
  opacity: 1;
  visibility: visible;
  transform-origin: center center;
}

.hamburger.active .hamburger-burger {
  opacity: 0;
  visibility: hidden;
}

.hamburger.active .hamburger-chips {
  opacity: 1;
  visibility: visible;
}

.hamburger .chip-no-sauce,
.hamburger .chip-with-sauce {
  transform-origin: 35.6px 28px;
  transition: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #191919;
  z-index: 1;
}

#webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent !important; /* キャンバスの背景を確実に透明に */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-logo-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeInLogo 3s ease-out 0.5s forwards;
  will-change: transform;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-text {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 10px;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--text-gray);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-1);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-sound-control {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-light);
  user-select: none;
  pointer-events: none;
}

.hero-sound-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: absolute;
  bottom: 120px; /* scroll-indicatorの真上（少し下に調整） */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  animation: iconBlink 1.5s ease-in-out infinite;
}

@keyframes iconBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.sound-on-text,
.sound-off-text {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: opacity 0.3s ease, cursor 0.3s ease;
  position: absolute;
  bottom: 40px; /* scroll-lineの縦センターより少し下に調整 */
  cursor: pointer;
  z-index: 10;
  pointer-events: auto !important;
  font-family: "Poppins", sans-serif;
  color: #ffeba7;
}

.sound-on-text {
  left: calc(50% - 30px);
  transform: translateX(-100%);
}

.sound-off-text {
  right: calc(50% - 30px);
  transform: translateX(100%);
}

.hero-sound-control.active .sound-on-text {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 10;
}

.hero-sound-control.active .sound-off-text {
  opacity: 0.3;
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 10;
}

.hero-sound-control:not(.active) .sound-on-text {
  opacity: 0.3;
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 1;
}

.hero-sound-control:not(.active) .sound-off-text {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 10;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-gray);
  animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  /* 参考サイトのグラデーション背景 */
  background: linear-gradient(90deg, #3b0000 0%, #00001e 50%, #085b63 100%);
  background-size: 200% 100%;
  animation: gradientShift 10s ease infinite;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.section-title {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 3rem;
  padding-top: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: auto;
  opacity: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.section-title-image {
  height: 30rem; /* 1.5倍さらに拡大（20rem × 1.5 = 30rem） */
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .section-title-image {
    height: 18rem; /* モバイルでも1.5倍（12rem × 1.5 = 18rem） */
  }
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

/* Profile Section */
.profile {
  /* 背景は.sectionで設定 */
  position: relative;
  z-index: 2;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  margin-top: 0;
  /* background inherits from .section */
  min-height: 55vh;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .profile {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .photography-pin {
    padding-bottom: 10rem; /* Increased bottom padding for mobile */
    margin-bottom: 0; /* Remove margin to prevent gap */
  }
}

@media (max-width: 480px) {
  .profile {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .photography-pin {
    padding-bottom: 12rem; /* Increased bottom padding for small mobile */
    margin-bottom: 0; /* Remove margin to prevent gap */
  }

  .photography-item-container {
    margin-bottom: 6rem; /* Increased margin for small mobile */
  }
}

.profile .section-title {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 2rem; /* 下部の余白も少し減らす */
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 968px) {
  .profile {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-image {
    order: 2;
    max-width: 500px;
    margin: 0.75rem auto;
    justify-self: center;
  }

  .profile-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
  }

  .profile-text {
    display: contents;
  }

  .profile-text h2 {
    order: 1;
    text-align: center;
  }

  .profile-text p {
    order: 3;
    text-align: center;
  }

  .profile-socials {
    order: 4;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .profile-content {
    gap: 1.5rem;
  }
}

.profile-image {
  position: relative;
  will-change: transform;
  margin: 0.75rem auto;
  display: block;
}

.profile-socials {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1.2rem;
  justify-content: center;
}

.profile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 1.2rem;
  transition: opacity 0.2s ease;
}

.profile-social-link:hover {
  opacity: 0.8;
}

.profile-social-link svg {
  width: 22px;
  height: 22px;
}

/* Instagram: グラデーション背景 + 白アイコン */
.profile-social-link[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.profile-social-link[aria-label="Instagram"] svg {
  stroke: #111;
  color: #111;
}

/* X: ブルー背景 + ダークアイコン */
.profile-social-link[aria-label="X"] {
  background: #1d4ed8;
  color: #111;
}

/* 区切り線 */
.profile-social-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: block;
  will-change: transform;
}

@media (max-width: 768px) {
  .profile-image img {
    border-radius: 15px;
  }
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: block;
}

.profile-text {
  will-change: transform;
}

.profile-text h2 {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* opacity: 0; */
}

@media (max-width: 768px) {
  .profile-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .profile-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.profile-text p {
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .profile-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .profile-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.link-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.link-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
}

/* About Section */
.about {
  min-height: 55vh;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}

.profile .container,
.about .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 968px) {
  .profile,
  .about {
    min-height: 50vh;
  }
}

.about h2 {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* opacity: 0; */
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about h2 {
    font-size: 1.5rem;
  }
}

.about p {
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.32rem;
  color: var(--text-gray);
  line-height: 1.72;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.1rem;
}

.about-highlight {
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.no-break {
  white-space: nowrap;
}

.about-contact {
  margin-top: 1.5rem !important;
}

.about-contact a {
  color: #c6c9cc;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.25s ease;
  position: relative;
  display: inline-block;
}

.about-contact a:hover {
  opacity: 1;
}

/* ===== Spark Text (Profile email) ===== */
#js-text,
#js-text span,
.about-contact a,
.about-contact a:visited {
  color: rgb(156, 230, 227) !important;
  text-decoration: none;
  text-transform: lowercase;
}

.about-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0%;
  height: 1px;
  background: var(--text-light);
  transition: width 0.9s ease;
}

.about-contact a:hover::after {
  width: 100%;
}

#js-text {
  display: inline-block;
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.3rem;
  text-shadow: 0 0 3px rgba(198, 201, 204, 0.3);
}

#js-text span {
  display: inline-block;
  margin: 0 0.02em;
  opacity: 1;
  visibility: visible;
  transition: transform 0.8s ease, opacity 0.6s ease, visibility 0.6s ease;
  will-change: transform, opacity;
}
/* ===== End Spark Text ===== */

@media (max-width: 768px) {
  .about p {
    font-size: 1.08rem;
    line-height: 1.66;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .about p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
}

/* Studio Section */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.studio-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(5px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.studio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.studio-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Works Section */
.works {
  /* 背景は.sectionで設定 */
  padding: 8rem 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

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

.work-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--primary-color);
}

.work-image {
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.work-item:nth-child(2) .work-image {
  background: var(--gradient-2);
}

.work-item:nth-child(3) .work-image {
  background: var(--gradient-3);
}

.work-item:nth-child(4) .work-image {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.work-item:hover .work-image {
  transform: scale(1.08);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-item:active .work-image {
  transform: scale(0.98);
}

.work-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.work-overlay p {
  color: var(--text-gray);
}

/* Price Section with Horizontal Scroll */
.price-pin {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  left: 0;
  background: linear-gradient(
    90deg,
    #000c17 0%,
    #001325 7.143%,
    #072234 14.286%,
    #1a3642 21.429%,
    #354d4e 28.571%,
    #546456 35.714%,
    #737859 42.857%,
    #8f8758 50%,
    #a48e52 57.143%,
    #af8d48 64.286%,
    #b0853c 71.429%,
    #a6752d 78.571%,
    #93601e 85.714%,
    #784810 92.857%,
    #593205 100%
  );
  background-size: 200% 100%;
  color: var(--text-light);
  position: relative;
  animation: gradientShift 10s ease infinite;
}

.price-pin .container {
  padding-top: 100px;
  padding-bottom: 0;
  text-align: center;
}

.price-pin-wrap {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 10vw;
  gap: 5vw;
  width: max-content; /* Ensure wrap width is calculated correctly */
  transform: translateX(0); /* Ensure initial position is 0 */
}

.price-pin-wrap > * {
  min-width: 60vw;
  padding: 0 2vw;
  flex-shrink: 0;
}

.price-item {
  flex-shrink: 0;
}

.price-item .price-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .price-pin-wrap {
    padding: 50px 5vw;
    gap: 3vw;
  }

  .price-pin-wrap > * {
    min-width: 80vw;
  }
}

/* Photography Section with Horizontal Scroll */
.photography-pin {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  left: 0;
  background: linear-gradient(
    90deg,
    #8a7a5a 0%,
    #1e3037 16.667%,
    #000012 33.333%,
    #000000 50%,
    #000000 66.667%,
    #301200 83.333%,
    #995e00 100%
  );
  background-size: 200% 100%;
  background-color: #000000;
  color: var(--text-light);
  position: relative;
  padding-bottom: 20vh;
  margin-bottom: 0;
  animation: gradientShift 10s ease infinite;
}

.photography-pin .container {
  padding-top: 380px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

.photography-pin h2 {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2a1a4e 0%, #1a3a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photography-lead {
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  color: #262B29;
  line-height: 1.9;
  margin: 0 auto 2.25rem;
  max-width: 52ch;
}

.photography-pin-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 10vw;
  gap: 7vw;
  width: max-content;
  padding-bottom: 1rem;
}

.photography-pin-wrap > * {
  min-width: 60vw;
  padding: 0 3vw;
  flex-shrink: 0;
}

.photography-item-container {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 620px;
  margin-bottom: 0;
}

.photography-item-container .inversion-lens {
  width: 100%;
  height: 500px;
  flex-shrink: 0;
  min-height: 500px;
}

/* headphone(photography-item-2)の古いグリッド用heightを強制上書き */
.photography-item-container .photography-item-2 {
  height: 500px !important;
  min-height: 500px !important;
}

.photography-item-container .project-info {
  margin-top: 2rem;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .section:not(.price):not(.photography-pin) {
    padding: 300px 0;
  }
  .section.contact-section {
    padding: 140px 0;
  }
  .section.price,
  .section.photography-pin {
    padding: 0;
  }
  .access-section {
    padding: 300px 0;
  }
  .profile {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }
  .about {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }
  .photography-pin .container {
    padding-top: 260px;
  }
}

@media (max-width: 768px) {
  .photography-pin-wrap {
    padding: 50px 5vw;
    gap: 3vw;
    padding-bottom: 6rem;
  }

  .photography-pin-wrap > * {
    min-width: 80vw;
  }

  .photography-item-container {
    margin-bottom: 5rem;
  }

  .photography-item-container .inversion-lens {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .photography-pin-wrap {
    padding-bottom: 8rem; /* Increased bottom padding for small mobile */
  }
}

/* Photography Section - Grid Layout (Legacy - keeping for reference) */
.photography {
  position: relative;
  padding: 100px 2rem;
  overflow: hidden;
  min-height: 100vh;
}

.photography h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* opacity: 0; */
}

@media (max-width: 768px) {
  .photography h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .photography h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .photography {
    padding: 60px 1.5rem;
  }
}

@media (max-width: 480px) {
  .photography {
    padding: 40px 1rem;
  }
}

.photography-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  row-gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .photography-grid-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    row-gap: 3rem;
  }
}

@media (max-width: 480px) {
  .photography-grid-container {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    row-gap: 2.5rem;
  }
}

.inversion-lens {
  position: relative;
  overflow: hidden;
  background-color: #111;
  border-radius: 8px;
}

.inversion-lens img {
  display: none;
}

@media (max-width: 768px) {
  .inversion-lens img {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.inversion-lens canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.photography-item-1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: transparent;
}

.photography-item-1 canvas {
  display: none;
}

.photography-item-5 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: transparent;
}

.photography-item-5 canvas {
  display: none;
}

.photography-item-6 {
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #111;
}

.photography-item-6 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: transparent;
}

.photography-item-6 canvas {
  display: none;
}

.photography-item-7 {
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #111;
}

.photography-item-7 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photography-item-7 canvas {
  display: none;
}

.project-info {
  font-size: 1rem;
  margin-top: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
  font-family: "PP Neue Montreal", sans-serif;
}

.project-date {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.project-title {
  font-family: "nimbus-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  margin-top: 0.125rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: -0.04em;
}

.equipment-bullet {
  display: inline-block;
  font-size: 0.5em;
  line-height: 1;
  margin-right: 0.45em;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .project-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 1.2rem;
  }
}

.project-subtitle {
  margin-top: 0.125rem;
  font-size: 1rem;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .project-subtitle {
    font-size: 0.9rem;
  }
}

.photography-item-1-container {
  grid-column: 2 / span 5;
  grid-row: 1 / span 2;
}

.photography-item-1 {
  height: 700px;
}

.photography-item-2-container {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.photography-item-2 {
  height: 300px;
}

.photography-item-3-container {
  grid-column: 2 / span 5;
  grid-row: 3;
  margin-top: 4rem;
}

.photography-item-3 {
  height: 350px;
}

.photography-item-4-container {
  grid-column: 8 / span 4;
  grid-row: 2 / span 2;
  margin-top: 4rem;
}

.photography-item-4 {
  height: 450px;
}

@media (max-width: 768px) {
  .photography-item-1-container {
    grid-column: 1 / span 6;
    grid-row: 1;
  }

  .photography-item-2-container {
    grid-column: 1 / span 3;
    grid-row: 2;
    margin-top: 3rem;
  }

  .photography-item-3-container {
    grid-column: 4 / span 3;
    grid-row: 2;
    margin-top: 3rem;
  }

  .photography-item-4-container {
    grid-column: 2 / span 4;
    grid-row: 3;
    margin-top: 3rem;
  }

  .photography-item-1,
  .photography-item-2,
  .photography-item-3,
  .photography-item-4 {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .photography-item-1-container,
  .photography-item-2-container,
  .photography-item-3-container,
  .photography-item-4-container {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .photography-item-2-container,
  .photography-item-3-container,
  .photography-item-4-container {
    margin-top: 2.5rem;
  }

  .photography-item-1,
  .photography-item-2,
  .photography-item-3,
  .photography-item-4 {
    height: 300px;
  }
}

/* Contact Section */
.contact {
  /* 背景は.sectionで設定 */
}

.contact h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* opacity: 0; */
}

@media (max-width: 768px) {
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact h2 {
    font-size: 1.5rem;
  }
}

.contact-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .contact-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .contact-text {
    font-size: 0.9rem;
  }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  will-change: transform;
}

@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.form-group {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .form-group {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-group {
    margin-bottom: 1rem;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 480px) {
  .form-group label {
    font-size: 0.9rem;
  }
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

@media (max-width: 768px) {
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
  .submit-button {
    padding: 0.9rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .submit-button {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Price Section */
.price {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Clear separators between major sections */
.profile,
.about,
.price {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.price__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 1.5rem;
}

.price__title {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.price__lead {
  font-family: Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  color: var(--text-gray);
  line-height: 1.9;
  margin: 0 auto 2.25rem;
  max-width: 52ch;
}

.price__section {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}

.price__section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  display: inline-block;
  position: relative;
  padding-bottom: 0.55rem;
}

.price__section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, currentColor 50%, transparent 100%);
  animation: price-heading-line 10s ease-in-out infinite;
}

@keyframes price-heading-line {
  0%   { clip-path: inset(0 0% 0 0); }
  20%  { clip-path: inset(0 0% 0 0); }
  88%  { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

.price__section dl {
  display: grid;
  gap: 0.5rem;
}

.price__section dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price__section dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price__section dt {
  color: var(--text-gray);
}

.price__section dd {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price__tax {
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

.price__section--recording {
  border-left: 3px solid #9ce6e3;
}

.price__section--recording h3 {
  color: #9ce6e3;
}

.price__section--track {
  border-left: 3px solid #f0c56e;
}

.price__section--track h3 {
  color: #f0c56e;
}

.price__section--option {
  border-left: 3px solid #c4a8e8;
}

.price__section--option h3 {
  color: #c4a8e8;
}

.price__section--plan p {
  margin: 0.3rem 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .price {
    min-height: 65vh;
  }

  .price__inner {
    padding: 48px 1rem;
  }

  .price__section {
    padding: 1rem 1rem 0.85rem;
  }

  .price__title {
    font-size: 2rem;
  }
}

.price h2 {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* opacity: 0; */
}

@media (max-width: 768px) {
  .price h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .price h2 {
    font-size: 1.5rem;
  }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.price-card {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(5px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  will-change: transform;
}

@media (max-width: 768px) {
  .price-card {
    padding: 2rem;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .price-card {
    padding: 1.5rem;
    border-radius: 10px;
  }
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.price-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .price-card h3 {
    font-size: 1.1rem;
  }
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.3rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-gray);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .amount {
    font-size: 2rem;
  }
}

.period {
  font-size: 1rem;
  color: var(--text-gray);
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
}

.price-features li {
  padding: 0.8rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #3b0000 0%, #00001e 50%, #085b63 100%);
  background-size: 200% 100%;
  padding: 2rem 0;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: gradientShift 10s ease infinite;
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-link {
  color: var(--text-gray);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 908px) {
  .nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
    z-index: 1003;
    display: flex !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    clip-path: circle(0% at calc(100% - 56px) 30px);
    transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease,
      clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    clip-path: circle(150% at calc(100% - 56px) 30px);
    background: linear-gradient(90deg, #3b0000 0%, #00001e 50%, #085b63 100%);
    background-size: 200% 100%;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    margin: 0;
    margin-right: 0;
    animation: gradientShift 10s ease infinite;
  }

  .nav-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    max-width: 90vw;
    padding: 0;
    margin: 0;
    z-index: 6;
    text-align: center;
    transform: translate(-50%, -50%);
    list-style: none;
  }

  .nav-menu li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
    text-align: center;
    list-style: none;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(110%);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
      opacity 0.6s ease;
  }

  .nav-menu li:nth-child(1) {
    transition-delay: 200ms;
  }

  .nav-menu li:nth-child(2) {
    transition-delay: 150ms;
  }

  .nav-menu li:nth-child(3) {
    transition-delay: 100ms;
  }

  .nav-menu li:nth-child(4) {
    transition-delay: 50ms;
  }

  .nav-menu li:nth-child(5) {
    transition-delay: 50ms;
  }

  .nav-menu li:nth-child(6) {
    transition-delay: 50ms;
  }

  .nav-menu li:nth-child(7) {
    transition-delay: 50ms;
  }

  .nav-menu.active li {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active li:nth-child(1) {
    transition-delay: 200ms;
  }

  .nav-menu.active li:nth-child(2) {
    transition-delay: 250ms;
  }

  .nav-menu.active li:nth-child(3) {
    transition-delay: 300ms;
  }

  .nav-menu.active li:nth-child(4) {
    transition-delay: 350ms;
  }

  .nav-menu.active li:nth-child(5) {
    transition-delay: 400ms;
  }

  .nav-menu.active li:nth-child(6) {
    transition-delay: 450ms;
  }

  .nav-menu.active li:nth-child(7) {
    transition-delay: 500ms;
  }

  .nav-menu.active .nav-link {
    font-size: clamp(2rem, 8vw, 9vh);
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 800;
    display: inline-block;
    position: relative;
    color: var(--text-light);
    transition: all 150ms linear;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    max-width: 100%;
    word-wrap: break-word;
    white-space: nowrap;
  }

  .nav-menu.active .nav-link:hover {
    text-decoration: none;
    color: #ffeba7;
  }

  .nav-menu.active .nav-link::after {
    display: block;
    position: absolute;
    top: 50%;
    content: "";
    height: 0.5vh;
    margin-top: -0.25vh;
    width: 0;
    left: 0;
    background-color: #353746;
    opacity: 0.8;
    transition: width 250ms linear;
  }

  .nav-menu.active .nav-link:hover::after {
    width: 100%;
  }

  .hamburger {
    display: none !important;
    z-index: 1005;
    cursor: pointer;
    position: relative;
    order: 2; /* Ensure hamburger is on the right side */
    pointer-events: auto !important;
    user-select: none;
    margin-right: 2rem;
    align-self: center;
    padding: 0;
  }

  .nav-logo {
    order: 1;
    position: relative;
    z-index: 1006; /* above nav-menu overlay (1003) and menuToggle (1005) */
  }

  #menuToggle {
    display: flex !important;
    order: 2;
    z-index: 1005;
    cursor: pointer;
    background: none;
    border: none;
    pointer-events: auto !important;
    color: var(--text-light);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-right: 2rem;
    position: relative;
  }

  .label-track {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 48px;
    height: 18px;
    min-height: 18px;
    text-align: left;
  }

  .label-menu,
  .label-close {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    line-height: 18px;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
      opacity 0.6s ease;
  }

  .label-menu {
    transform: translateX(0);
    opacity: 1;
  }

  .label-close {
    transform: translateX(-24px);
    opacity: 0;
  }

  body.nav-open .label-menu {
    transform: translateX(24px);
    opacity: 0;
  }

  body.nav-open .label-close {
    transform: translateX(0);
    opacity: 1;
  }

  .label-paren {
    flex-shrink: 0;
    margin-left: 1px;
    line-height: 18px;
  }

  .hamburger:hover {
    opacity: 0.8;
  }

  .menu-overlay {
    display: none;
  }

  @media (max-width: 908px) {
    .menu-overlay {
      display: none; /* Not needed with the new design */
    }
  }

  @media screen and (max-width: 991px) {
    .hamburger {
      margin-right: 1.5rem;
    }

    .nav-menu.active {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .nav-menu.active .nav-link {
      font-size: clamp(1.5rem, 7vw, 8vh);
    }
  }

  @media screen and (max-width: 768px) {
    .nav-menu.active .nav-link {
      font-size: clamp(1.2rem, 6vw, 7vh);
    }
  }

  @media screen and (max-width: 480px) {
    .nav-menu.active .nav-link {
      font-size: clamp(1rem, 5vw, 6vh);
    }
  }

  @media screen and (max-width: 768px) {
    .hamburger {
      margin-right: 1rem;
    }

    .nav-menu.active {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
  }

  @media screen and (max-width: 480px) {
    .hamburger {
      margin-right: 1rem;
    }
  }

  .logo-text {
    font-size: 3rem;
    letter-spacing: 5px;
  }

  .logo-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .photo-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

  .price-card.featured {
    transform: scale(1);
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
/* Mouse Stalker */
#mouse-stalker {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease,
    border-color 0.3s ease, opacity 0.3s ease;
  will-change: transform;
  opacity: 0; /* Hidden initially */
}

body:hover #mouse-stalker {
  opacity: 1; /* Show when mouse enters body */
}

#mouse-stalker.is-hover {
  width: 60px;
  height: 60px;
  background: rgba(186, 136, 215, 0.2); /* accent-color with low opacity */
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  #mouse-stalker {
    display: none;
  }
}

/* Mouse Cursor (Center Dot) */
#mouse-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-light);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease,
    opacity 0.3s ease;
  will-change: transform;
  opacity: 0; /* Hidden initially */
}

body:hover #mouse-cursor {
  opacity: 1;
}

#mouse-cursor.is-hover {
  background: var(--accent-color);
}

@media (max-width: 768px) {
  #mouse-cursor {
    display: none;
  }
}

/* Sound Control */
.sound-control {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  z-index: 1000;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-light);
  user-select: none;
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

.sound-control:hover {
  opacity: 0.8;
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.wave-line {
  width: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.sound-control:not(.active) .wave-line {
  height: 2px;
  opacity: 0.3;
  animation: none;
}

.sound-control.active .wave-line {
  animation: waveAnimation 1.2s ease-in-out infinite;
}

.sound-control.active .wave-line:nth-child(1) {
  animation-delay: 0s;
}

.sound-control.active .wave-line:nth-child(2) {
  animation-delay: 0.1s;
}

.sound-control.active .wave-line:nth-child(3) {
  animation-delay: 0.2s;
}

.sound-control.active .wave-line:nth-child(4) {
  animation-delay: 0.3s;
}

.sound-control.active .wave-line:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes waveAnimation {
  0%,
  100% {
    height: 2px;
    opacity: 0.3;
  }
  50% {
    height: 18px;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .sound-control {
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 12px;
  }

  .sound-text {
    min-width: 50px;
  }
}

/* Preloader */


/* ===== Fake-Shader Background (Profile → Photography) ===== */
.fake-shader-wrapper {
  position: relative;
}

.fake-shader-bg {
  --fs-speed: 10;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-image: url("data:image/png;base64,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");
  background-size: cover;
  animation: fs-hue 32s linear infinite;
  pointer-events: none;
}

.fake-shader-bg::before,
.fake-shader-bg::after {
  content: '';
  position: absolute;
  width: 300vmax;
  height: 300vmax;
  top: 50%;
  left: 50%;
  background-size: cover;
  pointer-events: none;
}

.fake-shader-bg::before {
  z-index: 1;
  mix-blend-mode: hard-light;
  animation: fs-spin calc(1s * var(--fs-speed)) linear infinite;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAXCAYAAABqBU3hAAAMEElEQVR4AQCBAH7/ANX////X////2v///97////h////4v///+L////h////3/7//934+f/c9PH/3PHr/97w6P/i8OX/5fHk/+ny5P/r8uP/7fLj/+7y4v/v8eP/8PLl//L06P/19uz/9/nx//r89f/6/fn/+fz6//b6+f/y9vf/7fHz/+nu8P/m6+7/AIEAfv8Azv3//9D+///T////1v///9n////b////2v7//9n5///X9Pb/1O7t/9Pq5v/U5+D/1ubc/9nm2v/d59n/4OjY/+Po1//k6Nf/5efX/+bn1//n6Nn/6enc/+zs4P/v7+X/8fHp//Hz7P/w8u7/7e/t/+nr6v/k5+f/4OPk/93h4v8AgQB+/wDC7f7/xO7//8bw///J8f//zPH9/83w+f/M7PL/yufq/8fh4f/F3Nj/xNfQ/8XUyv/H08b/ytPE/87Uw//R1cP/1NbC/9XVwf/W1cH/19TB/9jVw//Z1sX/3NnK/9/czv/h3tP/4d/W/+Df1//d3Nf/2djU/9TU0f/Q0M7/zc7M/wCBAH7/ALPZ5v+02ub/ttvm/7nc5f+62+L/u9nd/7nV1v+3z83/tMnE/7LEu/+xv7P/sbyu/7S7qv+3vKj/u72n/76+pv/Bvqb/wr6l/8O9pP/DvKX/xL2m/8a+qf/IwK3/y8Ox/83Gtv/Nx7n/zMa6/8nEuv/FwLf/wLu0/7u4sf+5ta//AIEAfv8AosPK/6PDyv+lxMn/p8TH/6jDxP+nwL7/pbu3/6O1rv+gr6T/namb/5yllP+do47/oKKL/6Ojif+npIj/q6WI/62lh/+upYb/r6SG/6+jhv+wo4f/saSJ/7Onjf+2qZL/uKyW/7mtmv+4rJv/tKqa/7CmmP+roZT/p52R/6Sbj/8AgQB+/wCTra7/lK2t/5WtrP+Wrar/lqum/5WnoP+Topj/kJyO/42Whf+KkHz/iox1/4uKcP+Oim3/kotr/5aNa/+ajmv/nI5q/52Naf+ejGj/noxo/56Maf+gjWv/oo9v/6SSdP+mlHj/p5V7/6aVff+iknz/no55/5mJdv+UhXP/koNx/wCBAH7/AIealP+HmpT/iJmS/4iYj/+Ilor/hpKE/4SMe/+AhnL/foBo/3x7YP98d1n/fnZV/4F2U/+GeFL/inpS/457Uv+QfFH/kXtQ/5F6T/+ReU//knlQ/5N6Uv+VfFb/l39a/5mBX/+agmL/mIFj/5V/Yv+Qel//i3Zc/4dyWf+Eb1f/AIEAfv8Afop//36Kfv9/inz/f4h5/36Fc/98gWz/eXtk/3Z1Wv9zb1H/cmpJ/3NoRP91Z0D/emg+/39qPv+DbT7/h24//4pvPv+Lbj3/i208/4tsPP+LbDz/jG0//45vQ/+QcUf/knRL/5J1Tv+RdE//jXFO/4hsS/+DZ0f/fmNE/3thQv8AgQB+/wB5f23/eX9t/3l+av95fGf/eHlh/3Z0Wv9zb1L/cGlJ/25kQP9tYDn/b140/3JeMf93YDD/fWMx/4JlMf+GZzL/iGgy/4lnMP+JZi//iWUv/4lkL/+KZTH/i2c1/45qOv+PbD7/j21A/45rQf+KaED/hGM8/35eOP96WTX/d1cy/wCBAH7/AHZ3Yf92dmD/dnVd/3VzWv90cFT/cmxN/3BnRf9uYT3/bF01/2xaLv9uWSr/c1oo/3hcKP9+Xyn/g2Iq/4hkKv+KZSr/i2Qo/4piJ/+JYSb/iWAn/4phKf+MYyz/jmYx/49nNf+PaDf/jWY4/4hjNv+CXTL/fFgt/3dTKf90UCf/AIEAfv8Ac3FX/3RwVv90b1T/c21Q/3JqS/9xZkT/b2I9/21dNf9sWS7/bVco/3BXJP91WCP/e1sj/4FeJP+GYSX/imMm/4xjJf+MYiP/jGEi/4tfIf+KXiH/i18j/41hJ/+OYyv/j2Uu/49lMf+MYzD/h14u/4FZKf96UiT/dE0g/3FKHf8AgQB+/wBxa0//cWtO/3FqTP9xaEn/cGZE/29iPv9tXjf/bFow/2xXKf9uVST/cVYi/3ZYIP99WyH/g14i/4hhI/+LYiP/jWIi/4xgIP+LXh3/ilwc/4lcHP+KXB7/i14i/41gJv+OYSn/jWEr/4pfKv+EWif/fVMi/3VMHP9vRhf/bEMU/wCBAH7/AGxlSf9sZUj/bGRG/21jQ/9sYT//bF45/2tbM/9rVy3/a1Un/25UI/9xVSD/dlcf/3xaH/+CXSD/h18g/4lgIP+KXx7/iV0b/4haGf+GWBf/hVcX/4ZYGf+HWR3/iVwh/4ldJP+IXCX/hFkk/35UIP92TBv/bkUU/2c+D/9jOwz/AIEAfv8AZV9D/2VfQ/9mXkH/Z10//2dcO/9nWjb/Z1cw/2dUK/9pUyb/a1Ii/29TH/90VR7/eVge/35aHv+CXB7/hFsc/4RaGv+CVxb/gFQT/35SEv9+URL/flEU/4BTGP+BVhz/glcf/4BWIP98Uh//dUwa/2xEFP9kPA3/XDUH/1gxA/8AgQB+/wBcWD//XVg+/15YPf9fWDv/YFc4/2FVNP9iUy//YlEq/2RQJf9nUCL/a1Ef/29SHv90VB3/eFYd/3tXG/98VRn/e1MV/3lPEf92TA7/dEoM/3RJDP90Sg//dkwT/3hPF/95URv/eFAc/3NMGv9rRRX/Yj0O/1k0B/9RLQD/TSgA/wCBAH7/AFNRPP9UUjv/VVI7/1dSOf9ZUjf/WlEz/1tQL/9dTyv/X04m/2JOI/9lTiD/aVAf/21RHf9xUhv/clEZ/3JPFf9wTBH/bUgN/2tECf9pQgj/aUIJ/2pEDP9tRxH/cEoW/3FMGv9vSxv/a0cZ/2NAFP9ZNwz/Ty4E/0cmAP9DIgD/AIEAfv8ASkw6/0tMOv9NTTr/T045/1FPN/9UTzX/Vk4x/1hNLf9aTSn/XU0m/2BNI/9kTiH/Z04f/2lOHP9pTBj/aEkU/2ZGD/9jQQv/YD4H/188Bv9fPQj/Yj8M/2VDEv9pSBj/a0oc/2pKHv9lRx3/XkAX/1Q3EP9JLQf/QSUA/zwgAP8AgQB+/wBCSDv/Q0k7/0VKO/9ITDv/S006/05OOP9RTjb/VE4y/1ZNL/9ZTSv/XE0o/19OJf9hTSL/Y0wf/2JKGv9gRhX/XUIQ/1o9C/9YOgj/VzkI/1k7Cv9cPxD/YUQX/2ZKHv9pTST/aU4m/2VLJf9dRCD/UzsY/0gxEP9AKQn/OyQE/wCBAH7/ADxHPv8+SD//QEk//0RLP/9ITT//S08+/05QPP9RUDn/VFA2/1dQMv9aUC//XE8r/15OKP9eTCT/XUkf/1tFGf9YQRP/VTwP/1M6DP9TOg3/VjwR/1tCF/9hSSD/Z1Ap/2tVMP9sVjP/aFQz/2FNLv9XRCb/TToe/0QyFv8/LRL/AIEAfv8AOEdD/zpIQ/89SkT/QU1F/0ZPRf9KUUX/TlND/1FUQf9UVD7/V1Q6/1pTN/9cUzP/XVEv/11PKv9bSyX/WEcf/1VCGf9SPhX/UTwT/1I9FP9WQRn/XEgi/2RQLP9sWTb/cV8+/3NhQ/9wYEP/aVo//19RN/9VRy//TD8n/0g6I/8AgQB+/wA3SEj/OEpI/zxMSv9AT0v/RVJM/0pVTP9OV0v/UlhI/1VYRv9YWEL/Wlg//1xXO/9dVTb/XFIx/1tOK/9YSiX/VEUg/1JBHP9RQBr/U0Id/1hHI/9gTyz/aVk4/3JiQ/94ak3/e21S/3lsU/9yZ0//aV5I/19VQP9WTDj/UUg0/wCBAH7/ADZKTP84S03/PE5O/0BSUP9FVVH/S1hR/09aUP9TW0//V1xM/1pcSf9cXEX/XVpB/15YPP9dVTf/W1Ex/1hNK/9VSCX/U0Ui/1NEIf9VRyT/W00r/2RWNf9uYEL/eGtO/39zWP+Cd1//gXdg/3tyXf9yaVb/aGBO/19YRv9aU0L/AYEAfv8ANktO/zhNT/88T1H/QFNT/0ZXVP9LWlT/UFxU/1ReUv9YXlD/W15M/11eSf9eXUT/X1o//15XOv9cUzT/WU4u/1ZKKP9URyX/VEYl/1dJKP9dUDD/Zlk7/3FlR/97cFT/g3hf/4d9Zv+FfWf/gHhk/3dwXf9tZlX/ZF5O/19aSv8gHKk1r6IVGAAAAABJRU5ErkJggg==");
}

.fake-shader-bg::after {
  z-index: 2;
  mix-blend-mode: lighten;
  animation: fs-spin calc(1.7s * var(--fs-speed)) linear infinite reverse;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAXCAYAAABqBU3hAAAMEElEQVR4AQCBAH7/ANX////X////2v///97////h////4v///+L////h////3/7//934+f/c9PH/3PHr/97w6P/i8OX/5fHk/+ny5P/r8uP/7fLj/+7y4v/v8eP/8PLl//L06P/19uz/9/nx//r89f/6/fn/+fz6//b6+f/y9vf/7fHz/+nu8P/m6+7/AIEAfv8Azv3//9D+///T////1v///9n////b////2v7//9n5///X9Pb/1O7t/9Pq5v/U5+D/1ubc/9nm2v/d59n/4OjY/+Po1//k6Nf/5efX/+bn1//n6Nn/6enc/+zs4P/v7+X/8fHp//Hz7P/w8u7/7e/t/+nr6v/k5+f/4OPk/93h4v8AgQB+/wDC7f7/xO7//8bw///J8f//zPH9/83w+f/M7PL/yufq/8fh4f/F3Nj/xNfQ/8XUyv/H08b/ytPE/87Uw//R1cP/1NbC/9XVwf/W1cH/19TB/9jVw//Z1sX/3NnK/9/czv/h3tP/4d/W/+Df1//d3Nf/2djU/9TU0f/Q0M7/zc7M/wCBAH7/ALPZ5v+02ub/ttvm/7nc5f+62+L/u9nd/7nV1v+3z83/tMnE/7LEu/+xv7P/sbyu/7S7qv+3vKj/u72n/76+pv/Bvqb/wr6l/8O9pP/DvKX/xL2m/8a+qf/IwK3/y8Ox/83Gtv/Nx7n/zMa6/8nEuv/FwLf/wLu0/7u4sf+5ta//AIEAfv8AosPK/6PDyv+lxMn/p8TH/6jDxP+nwL7/pbu3/6O1rv+gr6T/namb/5yllP+do47/oKKL/6Ojif+npIj/q6WI/62lh/+upYb/r6SG/6+jhv+wo4f/saSJ/7Onjf+2qZL/uKyW/7mtmv+4rJv/tKqa/7CmmP+roZT/p52R/6Sbj/8AgQB+/wCTra7/lK2t/5WtrP+Wrar/lqum/5WnoP+Topj/kJyO/42Whf+KkHz/iox1/4uKcP+Oim3/kotr/5aNa/+ajmv/nI5q/52Naf+ejGj/noxo/56Maf+gjWv/oo9v/6SSdP+mlHj/p5V7/6aVff+iknz/no55/5mJdv+UhXP/koNx/wCBAH7/AIealP+HmpT/iJmS/4iYj/+Ilor/hpKE/4SMe/+AhnL/foBo/3x7YP98d1n/fnZV/4F2U/+GeFL/inpS/457Uv+QfFH/kXtQ/5F6T/+ReU//knlQ/5N6Uv+VfFb/l39a/5mBX/+agmL/mIFj/5V/Yv+Qel//i3Zc/4dyWf+Eb1f/AIEAfv8Afop//36Kfv9/inz/f4h5/36Fc/98gWz/eXtk/3Z1Wv9zb1H/cmpJ/3NoRP91Z0D/emg+/39qPv+DbT7/h24//4pvPv+Lbj3/i208/4tsPP+LbDz/jG0//45vQ/+QcUf/knRL/5J1Tv+RdE//jXFO/4hsS/+DZ0f/fmNE/3thQv8AgQB+/wB5f23/eX9t/3l+av95fGf/eHlh/3Z0Wv9zb1L/cGlJ/25kQP9tYDn/b140/3JeMf93YDD/fWMx/4JlMf+GZzL/iGgy/4lnMP+JZi//iWUv/4lkL/+KZTH/i2c1/45qOv+PbD7/j21A/45rQf+KaED/hGM8/35eOP96WTX/d1cy/wCBAH7/AHZ3Yf92dmD/dnVd/3VzWv90cFT/cmxN/3BnRf9uYT3/bF01/2xaLv9uWSr/c1oo/3hcKP9+Xyn/g2Iq/4hkKv+KZSr/i2Qo/4piJ/+JYSb/iWAn/4phKf+MYyz/jmYx/49nNf+PaDf/jWY4/4hjNv+CXTL/fFgt/3dTKf90UCf/AIEAfv8Ac3FX/3RwVv90b1T/c21Q/3JqS/9xZkT/b2I9/21dNf9sWS7/bVco/3BXJP91WCP/e1sj/4FeJP+GYSX/imMm/4xjJf+MYiP/jGEi/4tfIf+KXiH/i18j/41hJ/+OYyv/j2Uu/49lMf+MYzD/h14u/4FZKf96UiT/dE0g/3FKHf8AgQB+/wBxa0//cWtO/3FqTP9xaEn/cGZE/29iPv9tXjf/bFow/2xXKf9uVST/cVYi/3ZYIP99WyH/g14i/4hhI/+LYiP/jWIi/4xgIP+LXh3/ilwc/4lcHP+KXB7/i14i/41gJv+OYSn/jWEr/4pfKv+EWif/fVMi/3VMHP9vRhf/bEMU/wCBAH7/AGxlSf9sZUj/bGRG/21jQ/9sYT//bF45/2tbM/9rVy3/a1Un/25UI/9xVSD/dlcf/3xaH/+CXSD/h18g/4lgIP+KXx7/iV0b/4haGf+GWBf/hVcX/4ZYGf+HWR3/iVwh/4ldJP+IXCX/hFkk/35UIP92TBv/bkUU/2c+D/9jOwz/AIEAfv8AZV9D/2VfQ/9mXkH/Z10//2dcO/9nWjb/Z1cw/2dUK/9pUyb/a1Ii/29TH/90VR7/eVge/35aHv+CXB7/hFsc/4RaGv+CVxb/gFQT/35SEv9+URL/flEU/4BTGP+BVhz/glcf/4BWIP98Uh//dUwa/2xEFP9kPA3/XDUH/1gxA/8AgQB+/wBcWD//XVg+/15YPf9fWDv/YFc4/2FVNP9iUy//YlEq/2RQJf9nUCL/a1Ef/29SHv90VB3/eFYd/3tXG/98VRn/e1MV/3lPEf92TA7/dEoM/3RJDP90Sg//dkwT/3hPF/95URv/eFAc/3NMGv9rRRX/Yj0O/1k0B/9RLQD/TSgA/wCBAH7/AFNRPP9UUjv/VVI7/1dSOf9ZUjf/WlEz/1tQL/9dTyv/X04m/2JOI/9lTiD/aVAf/21RHf9xUhv/clEZ/3JPFf9wTBH/bUgN/2tECf9pQgj/aUIJ/2pEDP9tRxH/cEoW/3FMGv9vSxv/a0cZ/2NAFP9ZNwz/Ty4E/0cmAP9DIgD/AIEAfv8ASkw6/0tMOv9NTTr/T045/1FPN/9UTzX/Vk4x/1hNLf9aTSn/XU0m/2BNI/9kTiH/Z04f/2lOHP9pTBj/aEkU/2ZGD/9jQQv/YD4H/188Bv9fPQj/Yj8M/2VDEv9pSBj/a0oc/2pKHv9lRx3/XkAX/1Q3EP9JLQf/QSUA/zwgAP8AgQB+/wBCSDv/Q0k7/0VKO/9ITDv/S006/05OOP9RTjb/VE4y/1ZNL/9ZTSv/XE0o/19OJf9hTSL/Y0wf/2JKGv9gRhX/XUIQ/1o9C/9YOgj/VzkI/1k7Cv9cPxD/YUQX/2ZKHv9pTST/aU4m/2VLJf9dRCD/UzsY/0gxEP9AKQn/OyQE/wCBAH7/ADxHPv8+SD//QEk//0RLP/9ITT//S08+/05QPP9RUDn/VFA2/1dQMv9aUC//XE8r/15OKP9eTCT/XUkf/1tFGf9YQRP/VTwP/1M6DP9TOg3/VjwR/1tCF/9hSSD/Z1Ap/2tVMP9sVjP/aFQz/2FNLv9XRCb/TToe/0QyFv8/LRL/AIEAfv8AOEdD/zpIQ/89SkT/QU1F/0ZPRf9KUUX/TlND/1FUQf9UVD7/V1Q6/1pTN/9cUzP/XVEv/11PKv9bSyX/WEcf/1VCGf9SPhX/UTwT/1I9FP9WQRn/XEgi/2RQLP9sWTb/cV8+/3NhQ/9wYEP/aVo//19RN/9VRy//TD8n/0g6I/8AgQB+/wA3SEj/OEpI/zxMSv9AT0v/RVJM/0pVTP9OV0v/UlhI/1VYRv9YWEL/Wlg//1xXO/9dVTb/XFIx/1tOK/9YSiX/VEUg/1JBHP9RQBr/U0Id/1hHI/9gTyz/aVk4/3JiQ/94ak3/e21S/3lsU/9yZ0//aV5I/19VQP9WTDj/UUg0/wCBAH7/ADZKTP84S03/PE5O/0BSUP9FVVH/S1hR/09aUP9TW0//V1xM/1pcSf9cXEX/XVpB/15YPP9dVTf/W1Ex/1hNK/9VSCX/U0Ui/1NEIf9VRyT/W00r/2RWNf9uYEL/eGtO/39zWP+Cd1//gXdg/3tyXf9yaVb/aGBO/19YRv9aU0L/AYEAfv8ANktO/zhNT/88T1H/QFNT/0ZXVP9LWlT/UFxU/1ReUv9YXlD/W15M/11eSf9eXUT/X1o//15XOv9cUzT/WU4u/1ZKKP9URyX/VEYl/1dJKP9dUDD/Zlk7/3FlR/97cFT/g3hf/4d9Zv+FfWf/gHhk/3dwXf9tZlX/ZF5O/19aSv8gHKk1r6IVGAAAAABJRU5ErkJggg==");
}

@keyframes fs-hue {
  from { filter: saturate(5) sepia(1) hue-rotate(0deg); }
  to   { filter: saturate(5) sepia(1) hue-rotate(360deg); }
}

@keyframes fs-spin {
  0%   { transform: translate(-50%, -50%) rotate(0deg)   scale(1)   skewX(0deg)  skewY(0deg); }
  20%  { transform: translate(-50%, -50%) rotate(72deg)  scale(1.3) skewX(4deg)  skewY(-2deg); }
  40%  { transform: translate(-50%, -50%) rotate(144deg) scale(0.95) skewX(-3deg) skewY(3deg); }
  60%  { transform: translate(-50%, -50%) rotate(216deg) scale(1.3) skewX(3deg)  skewY(-3deg); }
  80%  { transform: translate(-50%, -50%) rotate(288deg) scale(0.95) skewX(-4deg) skewY(2deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1)   skewX(0deg)  skewY(0deg); }
}

@keyframes fs-spin-mobile {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fs-hue-mobile {
  from { filter: saturate(1.5) sepia(0.7) hue-rotate(0deg); }
  to   { filter: saturate(1.5) sepia(0.7) hue-rotate(360deg); }
}

@media (max-width: 768px) {
  .fake-shader-bg {
    animation-name: fs-hue-mobile;
    animation-duration: 60s;
    opacity: 0.75;
  }
  .fake-shader-bg::before {
    animation-name: fs-spin-mobile;
    animation-duration: 80s;
    opacity: 0.35;
    mix-blend-mode: soft-light;
  }
  .fake-shader-bg::after {
    animation-name: fs-spin-mobile;
    animation-duration: 120s;
    opacity: 0.35;
    mix-blend-mode: soft-light;
  }
  .fake-shader-wrapper .section.profile {
    background: rgba(55, 20, 90, 0.45);
  }
  .fake-shader-wrapper .section.price {
    background: rgba(75, 50, 10, 0.45);
  }
  .contact-section {
    background: rgba(55, 20, 90, 0.45);
  }
  .access-section {
    background: rgba(55, 20, 90, 0.45);
  }
  .photography-pin {
    background: rgba(55, 20, 90, 0.45) !important;
  }
  #shader-skip-btn {
    font-size: 10px;
    padding: 8px 16px;
    bottom: 24px;
    right: 20px;
  }
}

/* Sections inside wrapper: transparent bg so shader shows through */
.fake-shader-wrapper .section {
  background: transparent;
  animation: none;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.fake-shader-wrapper .section.profile {
  border-top: none;
}

.fake-shader-wrapper .profile {
  background-color: transparent;
}

/* Per-section color tint */
.fake-shader-wrapper .section.profile {
  background: rgba(55, 20, 90, 0.18);
}

.fake-shader-wrapper .section.about {
  background: rgba(10, 55, 55, 0.18);
}

.fake-shader-wrapper .section.price {
  background: rgba(75, 50, 10, 0.18);
}
/* ===== Fake-Shader: Photography (self-contained, survives GSAP pin) ===== */
.photography-pin {
  background: rgba(55, 20, 90, 0.18) !important;
  animation: none !important;
}

.photography-pin > .fake-shader-bg--photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.photography-pin > .container,
.photography-pin > .photography-pin-wrap {
  position: relative;
  z-index: 1;
}

.photography-pin .project-date,
.photography-pin .project-title {
  color: #262B29;
  font-weight: 600;
}

/* ===== End Fake-Shader ===== */

/* ===== Fake-Shader section text color (ref: #262B29) ===== */
.fake-shader-wrapper .section p,
.fake-shader-wrapper .section li,
.fake-shader-wrapper .section dt,
.fake-shader-wrapper .section dd,
.fake-shader-wrapper .section a:not(#js-text a),
.fake-shader-wrapper .section .price__lead,
.fake-shader-wrapper .section .project-date,
.fake-shader-wrapper .section .project-title {
  color: #262B29;
}

.fake-shader-wrapper .section .about-contact a {
  color: #c6c9cc !important;
}
/* ===== End text color ===== */

/* ===== Fake-Shader: font-weight for readability in shader sections ===== */
.fake-shader-wrapper .section p,
.fake-shader-wrapper .section li,
.fake-shader-wrapper .section dt,
.fake-shader-wrapper .section dd,
.fake-shader-wrapper .section .price__lead,
.fake-shader-wrapper .section .project-date,
.fake-shader-wrapper .section .project-title {
  font-weight: 600;
}
/* ===== End dampen ===== */

/* ===== Fake-Shader: h3 color ===== */
.fake-shader-wrapper .section h3 {
  color: #262B29;
}

/* ===== Fake-Shader: Price cards → frosted glass ===== */
.fake-shader-wrapper .price__section {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fake-shader-wrapper .price__section dl > div {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* ===== Fake-Shader: h2 gradient text adjustment ===== */
.fake-shader-wrapper .about h2,
.fake-shader-wrapper .profile-text h2,
.fake-shader-wrapper .price h2 {
  background: linear-gradient(135deg, #2a1a4e 0%, #1a3a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Access Section ===== */
.access-section {
  position: relative;
  padding: 120px 0;
  background: rgba(55, 20, 90, 0.18);
  animation: none;
  overflow: hidden;
}

.access-section > .fake-shader-bg--access {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.access-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.access-title {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #2a1a4e 0%, #1a3a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: stretch;
}

/* Info panel */
.access-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.access-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(38, 43, 41, 0.15);
}

.access-item:first-child {
  padding-top: 0;
}

.access-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.access-item dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a8a87;
}

.access-item dt .material-symbols-outlined {
  font-size: 1.1rem;
  color: #3a8a87;
}

.access-item dd {
  margin: 0;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 2;
  color: #262B29;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Map panel */
.access-map {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(156, 230, 227, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.access-map::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(156, 230, 227, 0.12);
  z-index: 1;
  pointer-events: none;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.9);
}

@media (max-width: 768px) {
  .access-section {
    padding: 80px 0;
  }

  .access-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .access-map {
    height: 280px;
  }

  .access-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 140px 0;
  background: rgba(55, 20, 90, 0.18);
  animation: none;
}

.contact-section > .fake-shader-bg--contact {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-section .container {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.contact-header {
  margin-bottom: 8rem;
  text-align: center;
}

.contact-title {
  font-family: "CS Boopie", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  background: linear-gradient(135deg, #2a1a4e 0%, #1a3a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-desc {
  font-size: 0.95rem;
  color: #262B29;
  font-weight: 600;
  line-height: 2;
  margin: 0;
}

.contact-form {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #262B29;
  font-weight: 600;
}

.contact-form__req {
  color: #9ec6c5;
  margin-left: 0.2em;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(38, 43, 41, 0.25);
  border-radius: 4px;
  color: #262B29;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: rgba(156, 230, 227, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap::after {
  content: "›";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #262B29;
  pointer-events: none;
  font-size: 1.2rem;
}

.contact-form__select {
  appearance: none;
  cursor: pointer;
}

.contact-form__select option {
  background: #1a1a1a;
  color: var(--text-light);
}

.contact-form__group--privacy {
  margin-top: 0.5rem;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: #262B29;
  font-weight: 600;
  line-height: 1.6;
}

.contact-form__checkbox-label input[type="checkbox"] {
  margin-top: 0.15em;
  accent-color: #9ce6e3;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.contact-form__submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.contact-form__submit {
  background: rgba(5, 20, 20, 0.88);
  color: #9ce6e3;
  border: 0.15rem solid #9ce6e3;
  border-radius: 50px;
  padding: 0.85rem 3.5rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s linear, border-width 0.3s linear, box-shadow 0.3s linear, color 0.3s linear;
  box-shadow:
    -0.0625rem -0.0625rem 0.125rem rgba(255, 255, 255, 0.15),
    -0.25rem -0.25rem 0.25rem 0rem rgba(156, 230, 227, 0.15),
    0.25rem 0.25rem 0.2rem rgba(0, 30, 30, 0.8),
    0.25rem 0.25rem 0.3rem 0rem rgba(40, 130, 130, 0.18);
}

/* shimmer sweep — inspired by arcade button content-placeholder-animation */
.contact-form__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(156, 230, 227, 0.22) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  pointer-events: none;
}

/* CRT dot overlay — inspired by arcade button ::after */
.contact-form__submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(transparent 40%, rgba(5, 20, 20, 0.25)) repeat;
  background-size: 0.25rem 0.25rem;
  pointer-events: none;
  z-index: 0;
}


.contact-form__submit:hover {
  border-color: #f0c56e;
  border-width: 0.15rem;
  color: #f0c56e;
  box-shadow:
    -0.0625rem -0.0625rem 0.125rem rgba(255, 255, 255, 0.15),
    -0.25rem -0.25rem 0.25rem 0rem rgba(240, 197, 110, 0.45),
    0.25rem 0.25rem 0.2rem rgba(30, 20, 0, 0.8),
    0.25rem 0.25rem 0.3rem 0rem rgba(150, 100, 20, 0.4);
}

.contact-form__submit:hover::before {
  animation: submit-shimmer 0.65s ease forwards;
}

.contact-form__submit:active {
  border-color: rgba(156, 230, 227, 0.35);
  border-width: 0.35rem;
}

@keyframes submit-shimmer {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}


@media (max-width: 768px) {
  .contact-section {
    padding: 90px 0;
  }
}
/* ===== End Contact Section ===== */

.contact-success {
  text-align: center;
}

.contact-success:not([hidden]) {
  padding: 6rem 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
}

.contact-success__icon svg {
  width: 100%;
  height: 100%;
}

.contact-success__title {
  font-family: "CS Boopie", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #262B29;
  margin: 0 0 1.2rem;
  letter-spacing: 0.06em;
}

.contact-success__body {
  font-size: 0.92rem;
  color: #262B29;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin: 0;
}

.contact-error {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1rem;
  color: #f87171;
  font-size: 0.9rem;
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 6px;
  letter-spacing: 0.04em;
}
