/* ================================
   Variables & Reset
   ================================ */
:root {
  --black: #0d0d0d;
  --black-light: #1a1a1a;
  --black-lighter: #252525;
  --gold: #b8956e;
  --gold-light: #d4b896;
  --gold-dark: #8c6d4f;
  --gold-glow: rgba(184, 149, 110, 0.25);
  --white: #ffffff;
  --white-off: #f5f5f5;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --font-mincho: "Shippori Mincho", serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-en: "Cormorant Garamond", serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dark-gray: #333333; /* Added from works page logic if needed */
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-gothic);
  background: var(--black);
  color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ================================
   Header
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.95) 0%,
    transparent 100%
  );
}

.logo {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0; /* Animated in JS usually, but set to 0 here matching index.html */
  transform: translateY(-20px);
}
/* Works page didn't have opacity:0 initially, but JS likely handles it. 
   If Works page doesn't have the GSAP animation, this might hide the logo! 
   I should check if Works page has the GSAP script. 
   Works page DOES NOT have GSAP scripts in the head in the snippet I saw!
   Wait, index.html has GSAP. Works page head (lines 1-16) does NOT show GSAP.
   I must be careful. If I set opacity: 0 and there is no JS to fade it in, it will be invisible.
   I will override this for pages that might not have the animation or ensure JS is added.
   For now, I will use a specific class or assume I'll add JS.
   Actually, the safe bet is to NOT hide it by default in CSS, but let JS hide it.
   However, index.html CSS has it. 
   I'll treat .logo opacity as 1 by default and let index.html's specific critical CSS or JS handle it? 
   No, I requested to move CSS.
   I will set it to 1 and let JS set to 0? No, that causes FOUC.
   I will keep it 0 but I MUST add the GSAP script to works page OR add a class .js-loading to body.
   For now: I will remove opacity: 0 from here and put it in a separate 'animation-ready' block or leave it and fix Works page JS.
   Let's check works page again. It definitely doesn't have GSAP in the snippet.
   So I should probably NOT hide it globally.
   I'll change .logo opacity to 1. Index.html JS sets .from(... {opacity: 0, y: -20}) so it should override.
*/
.logo {
  opacity: 1;
  transform: none;
}
/* Index html specific override for animation start state if needed, can be done via JS setting initial state */

.logo a {
  display: block;
}

.logo-accent {
  color: var(--gold);
}

.header-cta {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  /* opacity: 0; Removed for safety on non-animated pages */
  /* transform: translateY(-20px); */
}

.header-cta:hover {
  background: var(--gold-light);
  color: var(--black);
  opacity: 1;
}

/* Nav Styles (Desktop) */
.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 40px;
  }
  .header-nav a {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    position: relative;
    text-decoration: none;
  }
  .header-nav a:hover {
    color: var(--white);
    opacity: 1;
  }
  .header-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .header-nav a:hover::after {
    width: 100%;
  }
}

/* Mobile Menu Trigger */
.menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 2000;
  background: none;
  border: none;
  padding: 0;
}
.menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}
.menu-trigger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1500;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-mincho);
  font-size: 24px;
  margin: 20px 0;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-cta {
    display: none;
  } /* Hidden on mobile header, shown in menu */
  .menu-trigger {
    display: flex;
  }

  .header {
    padding: 15px 20px;
  }
  .logo {
    font-size: 18px;
  }
}

/* ================================
   Hero Section (Home)
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  transform: scale(1.1);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* Hero Marquee */
.hero-marquee-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) rotate(-5deg) scale(1.1);
  z-index: 2;
  overflow: hidden;
  pointer-events: auto;
  mix-blend-mode: lighten;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.hero:hover .hero-marquee-container {
  opacity: 0.9;
}

.hero-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.hero-marquee-item {
  width: 300px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease-expo);
  filter: grayscale(100%) brightness(50%);
  border: 1px solid rgba(184, 149, 110, 0.2);
}

.hero-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-marquee-item:hover {
  filter: grayscale(0%) brightness(110%);
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 0 20px rgba(184, 149, 110, 0.4);
  border-color: var(--gold);
}
.hero-marquee-item:hover img {
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

/* 3D Perspective Stream */
.hero-visual-3d {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  pointer-events: none;
}

.stream-track {
  width: 100%;
  max-width: 320px;
  transform-style: preserve-3d;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotateY(-20deg) rotateZ(5deg) scale(1.1);
}

.stream-slider {
  width: 100%;
  animation: streamScroll 30s linear infinite;
  will-change: transform;
}

.stream-item {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(184, 149, 110, 0.3);
}

.stream-item img {
  width: 100%;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 60px;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  /* opacity/transform handled by GSAP usually, removed defaults to be safe */
}

.hero-title {
  font-family: var(--font-mincho);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line span {
  display: inline-block;
  /* transform: translateY(120%); */ /* Removed default hide */
}

.hero-title-gold {
  color: var(--gold);
}

.hero-text {
  font-size: 15px;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 2;
  /* opacity: 0; transform: translateY(30px); */
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  /* opacity: 0; transform: translateY(30px); */
}

.hero-price-item {
  text-align: center;
}
.hero-price-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}
.hero-price-value {
  font-family: var(--font-mincho);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
}
.hero-price-value span {
  font-size: 18px;
}
.hero-price-divider {
  width: 1px;
  height: 60px;
  background: var(--gold);
  opacity: 0.3;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  /* opacity: 0; transform: translateY(30px); */
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-primary svg {
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: translateX(5px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  /* opacity: 0; */
}
.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 12px;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 768px) {
  .hero-visual-3d {
    width: 100%;
    right: -20%;
    opacity: 0.25;
    transform: scale(1.1);
  }
  .stream-track {
    transform: rotateY(-10deg) rotateZ(5deg);
  }
  .hero-content {
    padding: 85px 20px 60px;
  }
  .hero-bg-overlay {
    background: rgba(13, 13, 13, 0.88);
  }
  .hero-text {
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  .hero-marquee-container {
    transform: translateY(-50%) rotate(-3deg) scale(1.2);
    opacity: 0.4;
  }
  .hero-marquee-item {
    width: 200px;
    height: 120px;
  }
  .hero-price {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
  }
  .hero-price-divider {
    display: none;
  }
  .hero-price-value {
    font-size: 32px;
  }
  .hero-price-label {
    font-size: 10px;
  }
}

/* ================================
   Section Common
   ================================ */
.section {
  padding: 120px 40px;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  /* opacity: 0; transform: translateY(20px); */
}
.section-title {
  font-family: var(--font-mincho);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  overflow: hidden;
}
.section-title span {
  display: inline-block;
  /* transform: translateY(100%); */
}
.section-text {
  font-size: 14px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
  /* opacity: 0; transform: translateY(20px); */
}

/* Featured Works (Home) */
.featured-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.featured-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.featured-image {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-expo);
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-card:hover .featured-image {
  transform: scale(1.05);
}
.featured-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 2;
}
.featured-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.featured-title {
  font-family: var(--font-mincho);
  font-size: 20px;
  color: var(--white);
  margin: 0;
}

@media (max-width: 768px) {
  .featured-works {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Works Section (Home Grid) */
.works {
  background: var(--black);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.works-item {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--black-light);
  cursor: pointer;
  /* opacity: 0; transform: translateY(40px); */
}
.works-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.works-item:hover .works-item-image {
  transform: scale(1.05);
}
.works-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 15px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.works-item:hover .works-item-overlay {
  opacity: 1;
}
.works-item-name {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.works-item-type {
  font-size: 11px;
  color: var(--gold);
}

/* Features Section */
.features {
  background: var(--black-light);
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    var(--gold-glow) 0%,
    transparent 50%
  );
  opacity: 0.4;
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  padding: 50px 35px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid transparent;
  text-align: center;
  transition: all 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
  /* opacity: 0; transform: translateY(40px); */
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-number {
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 15px;
  transition: opacity 0.4s;
}
.feature-card:hover .feature-number {
  opacity: 0.4;
}
.feature-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.feature-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
  position: relative;
}

/* Functions */
.functions {
  background: var(--black);
}
.functions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}
.function-item {
  padding: 30px 15px;
  background: var(--black-light);
  border: 1px solid var(--black-lighter);
  text-align: center;
  transition: all 0.3s;
  /* opacity: 0; transform: translateY(30px); */
}
.function-item:hover {
  border-color: var(--gold);
  background: rgba(184, 149, 110, 0.05);
}
.function-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 110, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}
.function-item:hover .function-icon {
  background: rgba(184, 149, 110, 0.2);
  transform: scale(1.1);
}
.function-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.function-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
.function-note {
  font-size: 10px;
  color: var(--gray);
  margin-top: 5px;
}

/* Price Section */
.price {
  background: var(--black-light);
  position: relative;
}
.price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.price-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--gold);
  padding: 70px 50px;
  position: relative;
  /* opacity: 0; transform: translateY(40px); */
}
.price-card::before,
.price-card::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid var(--gold);
}
.price-card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.price-card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}
.price-main {
  text-align: center;
  margin-bottom: 50px;
}
.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}
.price-item {
  text-align: center;
}
.price-label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.price-value {
  font-family: var(--font-mincho);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-value .yen {
  font-size: 28px;
  margin-right: 3px;
}
.price-value-sub {
  font-size: 22px;
}
.price-note {
  font-size: 12px;
  color: var(--gray);
}
.price-includes-title {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 149, 110, 0.2);
}
.price-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.price-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: var(--black-lighter);
  /* opacity: 0; transform: translateX(-20px); */
}
.price-include-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.price-include-text {
  font-size: 13px;
  font-weight: 500;
}

/* Benefits */
.benefits {
  background: var(--black);
  position: relative;
}
.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(184, 149, 110, 0.08),
    transparent 40%
  );
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit-card {
  background: linear-gradient(145deg, #151515, #0a0a0a);
  padding: 40px 30px;
  border: 1px solid #222;
  text-align: center;
  transition: transform 0.3s;
}
.benefit-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-5px);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--gold);
  background: rgba(184, 149, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 30px;
  height: 30px;
}
.benefit-title {
  font-family: var(--font-mincho);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 15px;
}
.benefit-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* Maintenance */
.maintenance-section {
  max-width: 900px;
  margin: 0 auto 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(184, 149, 110, 0.2);
}
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.maintenance-item {
  background: rgba(26, 26, 26, 0.5);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-left: 3px solid var(--gold);
}
.maintenance-check {
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}
.maintenance-content h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
  font-family: var(--font-mincho);
}
.maintenance-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Compare Table */
.compare {
  background: var(--black);
}
.compare-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 18px 25px;
  text-align: left;
  border-bottom: 1px solid var(--black-lighter);
  font-size: 14px;
  /* opacity: 0; transform: translateX(-20px); */
}
.compare-table th {
  font-weight: 500;
  color: var(--gray);
  background: var(--black-light);
}
.compare-table th:last-child {
  color: var(--gold);
  font-weight: 700;
}
.compare-table td:first-child {
  font-weight: 500;
}
.compare-table td:last-child {
  font-weight: 600;
}
.compare-good {
  color: var(--gold) !important;
}

/* Flow */
.flow {
  background: var(--black-light);
}
.flow-list {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.flow-item {
  flex: 1;
  max-width: 260px;
  text-align: center;
  position: relative;
  padding: 0 25px;
  /* opacity: 0; transform: translateY(30px); */
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -15px;
  width: 30px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.flow-number {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid var(--gold);
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.3s;
}
.flow-item:hover .flow-number {
  background: var(--gold);
  color: var(--black);
}
.flow-title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.flow-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
}

/* FAQ */
.faq {
  background: var(--black);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--black-lighter);
  /* opacity: 0; transform: translateY(20px); */
}
.faq-question {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s var(--ease-expo);
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 2;
  padding-bottom: 25px;
}

/* CTA (Unified) */
.cta {
  position: relative;
  padding: 150px 40px;
  text-align: center;
  overflow: hidden;
  /* background defaults for CSS unification */
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://yoruno.jp/web/wp-content/uploads/sites/3/2025/12/Gemini_Generated_Image_7nygpj7nygpj7nyg.webp");
  background-size: cover;
  background-position: center;
}
.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black-light);
}
.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.92);
}
.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.cta-content {
  position: relative;
  z-index: 3;
}
.cta-title {
  font-family: var(--font-mincho);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  /* opacity: 0; transform: translateY(30px); */
}
.cta-text {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 40px;
  /* opacity: 0; transform: translateY(30px); */
}
/* If using .cta .btn-primary overrides, keep them */

/* Footer */
.footer {
  padding: 50px 40px;
  background: var(--black);
  text-align: center;
  border-top: 1px solid var(--black-lighter);
}
.footer-logo {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-logo:hover {
  color: var(--gold);
}
.footer-text {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 25px;
}
.footer-copyright {
  font-size: 10px;
  color: var(--gray);
  opacity: 0.5;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  z-index: 9999;
}

/* ================================
   Unique Styles for Works Page
   ================================ */

/* Page Hero */
.page-hero {
  padding: 180px 40px 80px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}
.page-title {
  font-family: var(--font-en);
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.page-subtitle {
  font-size: 16px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* Works Archive Grid - Renamed from .works-grid to avoid collision */
.works-section {
  padding: 40px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.work-card {
  display: block;
}
.work-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-color: var(--dark-gray);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.work-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}
.work-card:hover .work-image img {
  transform: scale(1.05);
}
.work-info {
  padding: 0 5px;
}
.work-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white);
}
.work-cat {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pick Up Section (Works Page) */
.pickup-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title-sm {
  font-family: var(--font-en);
  font-size: 32px;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-desc {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 60px;
}
.pickup-card {
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}
.pickup-card.reverse {
  flex-direction: row-reverse;
}
.pickup-image {
  flex: 1;
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid rgba(184, 149, 110, 0.2);
  overflow: hidden;
}
.pickup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}
.pickup-card:hover .pickup-image img {
  transform: scale(1.05);
}
.pickup-content {
  flex: 1;
}
.pickup-label {
  font-family: var(--font-en);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.pickup-title {
  font-size: 28px;
  font-family: var(--font-mincho);
  margin-bottom: 30px;
}
.pickup-stats {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 5px;
}
.stat-value {
  font-size: 32px;
  font-family: var(--font-en);
  color: var(--gold-light);
  line-height: 1;
}
.stat-unit {
  font-size: 14px;
  margin-left: 5px;
}
.detail-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.detail-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Voice Section (Works Page) */
.voice-section {
  padding: 80px 0 120px;
  background: rgba(26, 26, 26, 0.5);
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.voice-card {
  background: var(--black);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.voice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.voice-icon {
  width: 50px;
  height: 50px;
  background: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 20px;
  border: 1px solid rgba(184, 149, 110, 0.3);
}
.voice-name {
  font-size: 16px;
  font-weight: 700;
}
.voice-area {
  font-size: 12px;
  color: var(--gray);
}
.voice-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 2;
  font-family: var(--font-mincho);
}

/* Responsive Overrides for Works Page elements */
@media (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .functions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .price-includes {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-list {
    flex-wrap: wrap;
    gap: 35px;
  }
  .flow-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px;
  }
  /* .hero-content adjusted in top block */

  .page-hero {
    padding: 140px 20px 60px;
  }
  .page-title {
    font-size: 40px;
  }
  .works-section {
    padding: 0 20px 80px;
  }
  .works-archive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pickup-card,
  .pickup-card.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .pickup-title {
    font-size: 24px;
  }
  .pickup-stats {
    gap: 15px;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Blog Section (Home)
   ================================ */
.blog-section {
  background: var(--black-light);
  position: relative;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--black);
  border: 1px solid #222;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.blog-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-content {
  padding: 20px;
}
.blog-date {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
  display: block;
}
.blog-title {
   font-family: var(--font-mincho);
   font-size: 16px;
   font-weight: 600;
   line-height: 1.5;
   margin-bottom: 0;
   color: var(--white);
   transition: color 0.3s;
}
.blog-card:hover .blog-title {
  color: var(--gold);
}

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

/* ================================
   Marunage Section
   ================================ */
.marunage-card {
  padding: 40px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s;
  backdrop-filter: blur(10px);
}
.marunage-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.marunage-icon {
  color: var(--gold);
  margin-bottom: 25px;
  opacity: 0.9;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marunage-title {
  font-family: var(--font-mincho);
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.4;
}
.marunage-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}
.marunage-cta-text {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(20px, 4vw, 28px);
  color: var(--gold);
  margin-top: 40px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(184, 149, 110, 0.3);
}
@media (max-width: 768px) {
  .marunage-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 400px;
  }
}

/* ================================
   Concierge Section
   ================================ */
.concierge-section { position: relative; }
.concierge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 60px auto 0;
}
.concierge-card {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid #222;
    padding: 30px;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}
.concierge-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 149, 110, 0.1);
}
.concierge-num {
    font-family: var(--font-gothic);
    font-size: 10px;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 20px;
}
.concierge-title {
    font-family: var(--font-mincho);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.concierge-text {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.concierge-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(255,255,255,0.03);
    font-family: var(--font-mincho);
    pointer-events: none;
}
.concierge-card:hover .concierge-icon {
    color: rgba(184, 149, 110, 0.1);
    transform: scale(1.1);
    transition: all 0.4s;
}

@media (max-width: 768px) {
    .concierge-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ================================
   Campaign Section
   ================================ */
.campaign-card {
  max-width: 800px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 50%, rgba(184, 149, 110, 0.1), rgba(13, 13, 13, 0.95));
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 30px rgba(184, 149, 110, 0.1);
}
.campaign-card::before {
  content: "SPECIAL OFFER";
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 30px;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.campaign-content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.campaign-logo {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.campaign-logo span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 10px;
  border-radius: 20px;
}

.campaign-title-main {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.4;
}
.campaign-title-main em {
  font-style: normal;
  color: var(--gold);
  font-size: 42px;
}

.campaign-price-box {
  display: inline-block;
  min-width: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 4px;
}
.cp-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 5px;
}
.cp-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  justify-content: center;
}
.cp-old {
  font-size: 18px;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 5px;
}
.cp-new {
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-mincho);
}
.cp-new span {
  font-size: 16px;
  font-weight: 500;
}

.campaign-note {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.campaign-note::before {
  content: "NEWS";
  background: var(--gray-light);
  color: var(--black);
  font-size: 9px;
  padding: 2px 6px;
  font-weight: 700;
  border-radius: 2px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: not-allowed;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .campaign { padding: 60px 15px; }
  .campaign-card { width: 100%; }
  .campaign-content { padding: 40px 20px; }
  .campaign-logo { font-size: 20px; gap: 10px; }
  .campaign-title-main { font-size: 24px; }
  .campaign-title-main em { font-size: 32px; }
  .campaign-price-box { min-width: auto; width: 100%; padding: 20px 15px; }
  .cp-new { font-size: 28px; }
  .cp-old { font-size: 16px; }
  .btn-secondary { padding: 15px 20px; font-size: 11px; width: 100%; }
}

/* ================================
   Guarantee Section
   ================================ */
.guarantee-section {
  background: #000;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.guarantee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 30%, rgba(184, 149, 110, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(184, 149, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.guarantee-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.guarantee-label {
  font-family: var(--font-gothic);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 8px 24px;
  background: rgba(184, 149, 110, 0.05);
}

.guarantee-title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--white);
  font-weight: 500;
}

.text-gold-gradient {
  background: linear-gradient(to right, #b8956e 0%, #f0e6d2 50%, #b8956e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.guarantee-desc {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 60px;
  font-weight: 400;
}
.guarantee-desc strong {
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
}

/* Steps Redesign: Sleek & Minimal */
.guarantee-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0; 
  margin-bottom: 40px;
  position: relative;
}

.step-item {
  position: relative;
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.step-line {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: rgba(184, 149, 110, 0.3);
  z-index: 1;
}
.step-item:last-child .step-line {
  display: none;
}

.step-circle {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: #000;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mincho);
  font-weight: 600;
  color: var(--gold);
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 0 15px rgba(184, 149, 110, 0.1);
}

.step-content h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--font-mincho);
}
.step-content p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.step-item.decision .step-circle {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(184, 149, 110, 0.4);
}
.step-item.decision h4 {
  color: var(--gold);
}

.guarantee-note {
  font-size: 12px;
  color: #666;
  margin-top: 50px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .guarantee-steps {
      flex-direction: column;
      gap: 30px;
      align-items: center;
  }
  .step-item {
      width: 100%;
      max-width: 100%;
      display: flex;
      align-items: center;
      text-align: left;
      padding: 0 20px;
  }
  .step-circle {
      margin: 0 20px 0 0;
      flex-shrink: 0;
  }
  .step-line {
      width: 1px;
      height: 100%;
      top: 50px;
      left: 45px;
      transform: none;
  }
  .step-item:last-child .step-line {
      display: none;
  }
  .guarantee-title {
      text-align: center;
  }
  .guarantee-desc {
      text-align: justify;
  }
}

/* Works Page Styles */
      .header-cta {
        padding: 12px 28px;
        background: var(--gold);
        color: var(--black);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.1em;
        transition: all 0.3s;
        border-radius: 0; /* Reset border radius if it was different */
      }

      .header-cta:hover {
        background: var(--gold-light);
        color: var(--black);
        opacity: 1; /* Override opacity change */
      }

      /* Page Hero */
      .page-hero {
        padding: 180px 40px 80px;
        text-align: center;
        background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
      }
      
      .page-title {
        font-family: var(--font-en);
        font-size: 60px;
        color: var(--gold);
        margin-bottom: 20px;
        letter-spacing: 0.05em;
      }
      
      .page-subtitle {
        font-size: 16px;
        color: var(--gray);
        letter-spacing: 0.1em;
      }

      /* Works Grid */
      .works-section {
        padding: 40px 40px 120px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .works-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
      }

      .work-card {
        display: block;
      }

      .work-image {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9 */
        background-color: var(--dark-gray);
        overflow: hidden;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .work-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--ease-expo);
      }

      .work-card:hover .work-image img {
        transform: scale(1.05);
      }

      .work-info {
        padding: 0 5px;
      }

      .work-title {
        font-family: var(--font-mincho);
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--white);
      }

      .work-cat {
        font-size: 13px;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      /* Footer */
      .footer {
        padding: 80px 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
      }
      .footer-logo {
        font-family: var(--font-mincho);
        font-size: 32px;
        margin-bottom: 20px;
      }
      .footer-copy {
        font-size: 12px;
        color: var(--gray);
      }
      
      /* New Section Styles */
      .section-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      .section-title-sm {
        font-family: var(--font-en);
        font-size: 32px;
        color: var(--gold);
        text-align: center;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
      }
      
      .section-desc {
        text-align: center;
        font-size: 14px;
        color: var(--gray);
        margin-bottom: 60px;
      }

      /* Pick Up Section */
      .pickup-section {
        padding: 80px 0;
        border-top: 1px solid rgba(255,255,255,0.05);
      }

      .pickup-card {
        display: flex;
        gap: 60px;
        margin-bottom: 100px;
        align-items: center;
      }
      
      .pickup-card.reverse {
        flex-direction: row-reverse;
      }

      .pickup-image {
        flex: 1;
        position: relative;
        aspect-ratio: 16/9;
        border: 1px solid rgba(184, 149, 110, 0.2);
        overflow: hidden;
      }
      
      .pickup-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--ease-expo);
      }
      
      .pickup-card:hover .pickup-image img {
        transform: scale(1.05);
      }

      .pickup-content {
        flex: 1;
      }

      .pickup-label {
        font-family: var(--font-en);
        color: var(--gold);
        font-size: 14px;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
      }

      .pickup-title {
        font-size: 28px;
        font-family: var(--font-mincho);
        margin-bottom: 30px;
      }

      .pickup-stats {
        display: flex;
        gap: 30px;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 30px;
      }

      .stat-item {
        display: flex;
        flex-direction: column;
      }

      .stat-label {
        font-size: 12px;
        color: var(--gray);
        margin-bottom: 5px;
      }

      .stat-value {
        font-size: 32px;
        font-family: var(--font-en);
        color: var(--gold-light);
        line-height: 1;
      }

      .stat-unit {
        font-size: 14px;
        margin-left: 5px;
      }

      .detail-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 12px;
        border-left: 3px solid var(--gold);
        padding-left: 12px;
      }

      .detail-text {
        font-size: 14px;
        color: var(--gray-light);
        line-height: 1.8;
        margin-bottom: 30px;
      }

      /* Voice Section */
      .voice-section {
        padding: 80px 0 120px;
        background: rgba(26, 26, 26, 0.5);
      }

      .voice-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .voice-card {
        background: var(--black);
        padding: 40px;
        border: 1px solid rgba(255,255,255,0.05);
        position: relative;
      }
      
      .voice-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
      }
      
      .voice-icon {
        width: 50px;
        height: 50px;
        background: var(--dark-gray);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-family: var(--font-en);
        font-size: 20px;
        border: 1px solid rgba(184, 149, 110, 0.3);
      }

      .voice-name {
        font-size: 16px;
        font-weight: 700;
      }

      .voice-area {
        font-size: 12px;
        color: var(--gray);
      }

      .voice-text {
        font-size: 14px;
        color: var(--gray-light);
        line-height: 2;
        font-family: var(--font-mincho);
      }

      /* CTA Section (Unified) */
      .cta {
        padding: 100px 20px;
        text-align: center;
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://yoruno.jp/web/wp-content/uploads/sites/3/2025/12/Gemini_Generated_Image_7nygpj7nygpj7nyg.webp');
        background-size: cover;
        background-position: center;
        position: relative;
      }

      .cta-title {
        font-size: 32px;
        font-family: var(--font-mincho);
        margin-bottom: 20px;
      }

      .cta-text {
        color: var(--gray-light);
        margin-bottom: 40px;
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--gold);
        color: var(--black);
        padding: 18px 40px;
        font-weight: 700;
        letter-spacing: 0.05em;
        transition: all 0.3s;
        min-width: 240px;
      }

      .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
      }

      @media (max-width: 768px) {
        .header {
           padding: 20px;
        }
        .page-hero {
          padding: 140px 20px 60px;
        }
        .page-title {
          font-size: 40px;
        }
        .works-section {
          padding: 0 20px 80px;
        }
        .works-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        
        .pickup-card, .pickup-card.reverse {
          flex-direction: column;
          gap: 30px;
        }
        
        .pickup-title {
          font-size: 24px;
        }
        
        .pickup-stats {
          gap: 15px;
        }
        
        .voice-grid {
          grid-template-columns: 1fr;
        }
      }

.js-fade-up { opacity: 0; transform: translateY(30px); }

/* Guarantee Section Initial States (For GSAP Animation) */
.guarantee-badge { opacity: 0; transform: scale(0.5); }
.guarantee-title { opacity: 0; transform: translateY(20px); }
.guarantee-lead { opacity: 0; transform: translateY(20px); }
.step-item { opacity: 0; transform: translateX(-30px); }
.guarantee-note { opacity: 0; transform: translateY(20px); }
