/* ============================================
   ANCHOR beauty works - Industrial Chic
   Concrete gray + Copper + Grid-based design
   ============================================ */

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

:root {
  --primary: #3D3D3D;
  --accent: #B87333;
  --bg: #F0EDED;
  --bg-dark: #2A2A2A;
  --bg-alt: #E5E2E0;
  --text: #333;
  --text-light: #999;
  --text-on-dark: #D9D5D2;
  --font-en: 'Barlow Condensed', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.pc-only { display: inline; }
.sp-only { display: none; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ============================================
   GRID OVERLAY (decorative background)
   ============================================ */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: gridFadeIn 2s ease 0.5s forwards;
}

@keyframes gridFadeIn {
  to { opacity: 1; }
}

.grid-line {
  stroke: var(--accent);
  stroke-width: 0.5;
  opacity: 0.06;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: gridDraw 3s var(--ease) forwards;
}

.grid-line--v:nth-child(1) { animation-delay: 0.2s; }
.grid-line--v:nth-child(2) { animation-delay: 0.5s; }
.grid-line--v:nth-child(3) { animation-delay: 0.8s; }
.grid-line--h:nth-child(4) { animation-delay: 1.0s; }
.grid-line--h:nth-child(5) { animation-delay: 1.3s; }

@keyframes gridDraw {
  to { stroke-dashoffset: 0; }
}

/* ============================================
   SAMPLE BANNER
   ============================================ */
#sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 7px 16px;
  z-index: 99999;
  letter-spacing: 1px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 12px 0;
  transition: all 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(240, 237, 237, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 8px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 2px;
}

.logo-text small {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: color 0.3s;
}

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

.nav-cta {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius);
  margin-left: 12px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10000;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: 0.3s var(--ease);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 840px) {
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s var(--ease);
    z-index: 9999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .nav-link {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    padding: 14px 40px;
    font-size: 0.9rem;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* CSS-only copper grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 115, 51, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 115, 51, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: heroGridSlide 20s linear infinite;
}

@keyframes heroGridSlide {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.97) 0%,
    rgba(61, 61, 61, 0.92) 40%,
    rgba(42, 42, 42, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 60px;
}

.hero-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-jp);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-text {
  font-family: var(--font-en);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

/* Side text */
.hero-side-text {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--font-en);
  font-size: 0.6rem;
  color: rgba(184, 115, 51, 0.25);
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 20px 100px;
  }
  .hero-content {
    margin-left: 0;
  }
  .hero-side-text {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: #a0632c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.3);
}

.btn--outline {
  border: 1.5px solid rgba(184, 115, 51, 0.4);
  color: var(--accent);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  background: rgba(184, 115, 51, 0.08);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--dark {
  background: var(--primary);
  color: #fff;
}

.btn--dark:hover {
  background: #555;
  transform: translateY(-2px);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.stats-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stats-item {
  text-align: center;
}

.stats-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stats-num .counter-digit {
  display: inline;
}

.stats-suffix {
  font-size: 0.9rem;
  margin-left: 2px;
}

.stats-num--static {
  color: var(--accent);
}

.stats-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 1px;
}

.stats-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 600px) {
  .stats-items {
    gap: 24px;
  }
  .stats-divider {
    display: none;
  }
  .stats-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section--dark {
  background: var(--bg-dark);
}

.section--alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 5px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
}

.section-title--light {
  color: #fff;
}

.section-underline {
  width: 0;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
  transition: width 1s var(--ease);
}

.section-underline.visible {
  width: 60px;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.9;
}

.section--dark .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONCEPT
   ============================================ */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.concept-text p {
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--text);
}

.concept-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.concept-box--1 {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.concept-box--1 svg {
  width: 100%;
  height: auto;
}

.concept-box--2 {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.concept-material {
  text-align: center;
}

.material-swatch {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  margin: 0 auto 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.material-swatch--concrete {
  background: linear-gradient(135deg, #A0A0A0, #C0C0C0);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.05) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(135deg, #A8A8A8, #BCBCBC);
  background-size: 3px 3px, 4px 4px, 100% 100%;
}

.material-swatch--copper {
  background: linear-gradient(135deg, #B87333, #D4956B);
}

.material-swatch--green {
  background: linear-gradient(135deg, #5A7A5A, #7B9E7B);
}

.concept-material span {
  font-family: var(--font-en);
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 2px;
  font-weight: 500;
}

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

/* ============================================
   SERVICES (Left-border accent list)
   ============================================ */
.service-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-item {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.service-accent {
  width: 4px;
  background: var(--accent);
  flex-shrink: 0;
}

.service-body {
  padding: 32px 36px;
  flex: 1;
}

.service-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.service-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 2px;
  font-weight: 700;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.service-price {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: auto;
}

.service-price span {
  font-size: 0.8rem;
  font-weight: 400;
}

.service-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}

.service-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 14px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tags span {
  font-size: 0.68rem;
  color: var(--accent);
  border: 1px solid rgba(184, 115, 51, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.service-note {
  text-align: center;
  margin-top: 32px;
}

.service-note p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .service-body {
    padding: 24px 20px;
  }
  .service-header {
    flex-direction: column;
    gap: 6px;
  }
  .service-price {
    margin-left: 0;
  }
}

/* ============================================
   INDUSTRIAL BREAK (Marquee)
   ============================================ */
.industrial-break {
  background: var(--accent);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.industrial-marquee {
  overflow: hidden;
}

.industrial-marquee-track {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT (4-panel grid)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
  perspective: 800px;
}

.about-panel:hover {
  transform: perspective(800px) rotateY(4deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-panel-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.about-panel-icon svg {
  width: 100%;
  height: 100%;
}

.about-panel h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.about-panel p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 840px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================
   OWNER
   ============================================ */
.owner-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.owner-frame {
  width: 100%;
  max-width: 280px;
}

.owner-frame svg {
  width: 100%;
  height: auto;
}

.owner-name {
  margin-bottom: 24px;
}

.owner-name strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.owner-name span {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.owner-message {
  font-size: 0.88rem;
  line-height: 2.2;
  color: var(--text);
}

@media (max-width: 768px) {
  .owner-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .owner-frame {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ============================================
   VOICE
   ============================================ */
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.voice-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease);
  perspective: 800px;
}

.voice-card:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.voice-rating {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.voice-text {
  font-size: 0.85rem;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--text);
}

.voice-author {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

.voice-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.voice-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

/* ============================================
   FLOW
   ============================================ */
.flow-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
}

.flow-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.flow-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-jp);
  color: var(--text);
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q-marker {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  min-width: 24px;
}

.faq-q h3 {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.faq-arrow svg {
  width: 100%;
  height: 100%;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: flex;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0 0 0 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 24px 0;
}

.faq-a-marker {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  min-width: 24px;
  opacity: 0.4;
}

.faq-a p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ============================================
   INFO TABLE
   ============================================ */
.info-table {
  max-width: 760px;
  margin: 0 auto;
}

.info-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0;
}

.info-label {
  min-width: 140px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.info-value {
  font-size: 0.85rem;
  color: var(--text-light);
}

.info-value a {
  color: var(--accent);
  transition: opacity 0.3s;
}

.info-value a:hover {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .info-row {
    flex-direction: column;
    gap: 4px;
  }
  .info-label {
    min-width: auto;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-box {
  max-width: 700px;
  margin: 0 auto;
}

.contact-tel {
  text-align: center;
  margin-bottom: 48px;
}

.contact-tel-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.contact-tel-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.contact-tel-num:hover {
  color: var(--accent);
}

.contact-tel-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-jp);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form select {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a1a;
  color: #888;
  padding: 60px 0 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.footer-address {
  font-size: 0.78rem;
  line-height: 2;
}

.footer-nav h4 {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  font-size: 0.8rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.7rem;
  font-family: var(--font-en);
  letter-spacing: 1px;
  color: #555;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-bottom {
    padding: 20px 20px 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Slide-in from left */
[data-anim="slide-left"] {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-anim="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}
[data-anim="slide-left"][data-delay="1"] { transition-delay: 0.15s; }
[data-anim="slide-left"][data-delay="2"] { transition-delay: 0.3s; }
[data-anim="slide-left"][data-delay="3"] { transition-delay: 0.45s; }

/* Fade up */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-anim="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim="fade-up"][data-delay="1"] { transition-delay: 0.15s; }
[data-anim="fade-up"][data-delay="2"] { transition-delay: 0.3s; }
[data-anim="fade-up"][data-delay="3"] { transition-delay: 0.45s; }
[data-anim="fade-up"][data-delay="4"] { transition-delay: 0.6s; }

/* Tilt-in (for about panels) */
[data-anim="tilt-in"] {
  opacity: 0;
  transform: perspective(800px) rotateY(-8deg) translateX(-20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-anim="tilt-in"].visible {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateX(0);
}
[data-anim="tilt-in"][data-delay="1"] { transition-delay: 0.1s; }
[data-anim="tilt-in"][data-delay="2"] { transition-delay: 0.2s; }
[data-anim="tilt-in"][data-delay="3"] { transition-delay: 0.3s; }

/* Underline grow */
[data-anim="underline-grow"] {
  width: 0;
  transition: width 1s var(--ease);
}
[data-anim="underline-grow"].visible {
  width: 60px;
}
