/* ============================================================
   株式会社ベラトリクス — style.css
   Quiet Luxury / 2026 Design Trend
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600&family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg:         #F5F2ED;
  --bg-alt:     #EDE8DF;
  --charcoal:   #1C1C1C;
  --charcoal-2: #252220;
  --gold:       #C9A96E;
  --gold-light: rgba(201,169,110,0.15);
  --gold-mid:   rgba(201,169,110,0.35);
  --gold-line:  rgba(201,169,110,0.5);
  --text:       #1C1C1C;
  --text-sub:   #52504C;
  --text-light: #9B9490;
  --white:      #ffffff;

  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-sans:  'Montserrat', sans-serif;
  --font-jp:    'Noto Serif JP', serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- Container ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Divider ---------- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--gold-line);
  overflow: hidden;
  position: relative;
}
.divider-inner {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 1.2s var(--ease-out);
}
.divider.animate .divider-inner { width: 100%; }

/* ---------- Section Label ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---------- Headings ---------- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2;
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--charcoal); }
.btn span { position: relative; z-index: 1; }
.btn-arrow {
  position: relative; z-index: 1;
  width: 18px; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .btn-arrow { width: 28px; }

.btn-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-light::before { background: var(--white); }
.btn-light:hover { color: var(--charcoal); }

.btn.btn-filled {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.btn.btn-filled::before { background: rgba(255,255,255,0.25); }
.btn.btn-filled:hover { color: var(--charcoal); }

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
}
.btn-ghost-link::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  transition: width 0.4s ease, background 0.4s ease;
}
.btn-ghost-link:hover { color: var(--gold); }
.btn-ghost-link:hover::after { width: 72px; background: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, transform 0.4s ease;
}
#header.scrolled {
  background: rgba(28, 28, 28, 0.97);
  padding: 1rem 0;
  backdrop-filter: blur(8px);
}
#header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}
.logo-en {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--white);
}
.logo-en span { color: var(--gold); }
.logo-jp {
  font-family: var(--font-jp);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-phone {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Header Tel */
.header-tel {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0.6rem 0;
}
/* .header-tel:hover {
  background: var(--gold);
  color: var(--charcoal);
} */

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link {
  font-size: 1rem;
  letter-spacing: 0.3em;
}
.mobile-menu .nav-phone {
  margin-top: 1rem;
  font-size: 1rem;
}
.mobile-tel {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  transition: background 0.3s ease, color 0.3s ease;
}
.mobile-tel:hover, .mobile-tel:active {
  background: var(--gold);
  color: var(--charcoal);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.65) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* CSS-only decorative geometry */
.hero-geo { position: absolute; inset: 0; pointer-events: none; }

.hero-arc-1 {
  position: absolute;
  width: 70vw; height: 70vw;
  max-width: 800px; max-height: 800px;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 50%;
  top: -30%; right: -15%;
}
.hero-arc-2 {
  position: absolute;
  width: 55vw; height: 55vw;
  max-width: 620px; max-height: 620px;
  border: 1px solid rgba(201,169,110,0.07);
  border-radius: 50%;
  top: -20%; right: -5%;
}
.hero-arc-3 {
  position: absolute;
  width: 30vw; height: 30vw;
  max-width: 340px; max-height: 340px;
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 50%;
  top: -5%; right: 10%;
}
.hero-arc-4 {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 50%;
  bottom: 10%; left: -60px;
}
.hero-line-1 {
  position: absolute;
  width: 35vw; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.2), transparent);
  top: 38%; right: 0;
}
.hero-line-2 {
  position: absolute;
  width: 20vw; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.12));
  bottom: 30%; left: 5%;
}
.hero-watermark {
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.6em;
  color: rgba(201,169,110,0.18);
  white-space: nowrap;
  text-transform: uppercase;
}
.hero-dots {
  position: absolute;
  top: 20%; right: 8%;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  grid-template-rows: repeat(5, 6px);
  gap: 10px;
}
.hero-dots span {
  width: 2px; height: 2px;
  background: rgba(201,169,110,0.28);
  border-radius: 50%;
  display: block;
}
.hero-corner {
  position: absolute;
  bottom: 8%; left: 6%;
  width: 60px; height: 60px;
  border-left: 1px solid rgba(201,169,110,0.35);
  border-bottom: 1px solid rgba(201,169,110,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) 0.3s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-family: var(--font-jp);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  line-height: 2.2;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.2s forwards;
}
.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* ============================================================
   STATS
   ============================================================ */
#stats {
  background: #0F0F0F;
  padding: 80px 0;
  position: relative;
}
#stats::before, #stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(201,169,110,0.2);
}
#stats::before { top: 0; }
#stats::after  { bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(201,169,110,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-number .suffix {
  font-size: 0.4em;
  font-family: var(--font-sans);
}
.stat-label-en {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.4rem;
}
.stat-label-jp {
  font-family: var(--font-jp);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 140px 0;
  background: var(--bg);
}
.section-header {
  margin-bottom: 80px;
}
.section-header-divider {
  margin-top: 2rem;
  width: 80px;
  height: 1px;
  background: var(--gold-line);
  overflow: hidden;
}
.section-header-divider-inner {
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 1s var(--ease-out);
}
.section-header-divider.animate .section-header-divider-inner { width: 100%; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg-alt);
  padding: 3rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
  border: 1px solid transparent;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--white); border-color: rgba(201,169,110,0.2); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  margin-bottom: 2rem;
  position: relative;
}

/* Icon SVGs inline-style */
.service-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.service-num {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.service-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  margin-bottom: 1.2rem;
}
.service-title-jp {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.service-title-en {
  font-family: var(--font-jp);
  font-size: 1.10rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.service-desc {
  font-size: 1rem;
  font-family: var(--font-jp);
  color: var(--text-sub);
  line-height: 2;
}

/* ============================================================
   MANAGEMENT DETAIL
   ============================================================ */
#management {
  padding: 140px 0;
  background: var(--bg-alt);
}
#management .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
#management .section-header-divider {
  margin: 2rem auto 0;
}
.mgmt-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.management-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.management-card {
  background: var(--bg);
  border: 1px solid rgba(201,169,110,0.15);
  border-bottom: 2px solid var(--gold);
  padding: 2rem 1.75rem 2rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.management-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
  border-color: var(--gold);
  background: var(--white);
}
.mgmt-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.mgmt-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.mgmt-card-icon svg {
  width: 100%;
  height: 100%;
}
.mgmt-card-num {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(201,169,110,0.5);
  line-height: 1;
  padding-top: 4px;
}
.mgmt-card-title {
  display: block;
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.mgmt-card-desc {
  font-size: 1rem;
  font-family: var(--font-jp);
  color: var(--text-sub);
  line-height: 1.9;
  margin-top: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 140px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.about-deco-wm {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 200;
  letter-spacing: 0.5em;
  color: rgba(201,169,110,0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-header-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.about-body {
  max-width: 780px;
  margin: 0 auto;
}

/* Table */
.about-table {
  width: 100%;
  border-collapse: collapse;
}
.about-table tr {
  border-bottom: 1px solid rgba(201,169,110,0.18);
  transition: background 0.25s ease;
}
.about-table tr:first-child { border-top: 1px solid rgba(201,169,110,0.18); }
.about-table tr:hover { background: rgba(201,169,110,0.04); }
.about-table th {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-align: left;
  padding: 1.1rem 1.5rem 1.1rem 0;
  width: 30%;
  font-weight: 400;
  vertical-align: top;
  white-space: nowrap;
}
.about-table td {
  font-size: 0.94rem;
  color: var(--text);
  padding: 1.1rem 0;
  line-height: 1.9;
}

/* Hours box */
.about-hours {
  margin-top: 2.5rem;
  padding: 1.6rem 2rem;
  border: 1px solid rgba(201,169,110,0.35);
  background: var(--bg);
  display: flex;
  gap: 2rem;
  align-items: baseline;
}
.about-hours-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.about-hours p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.95;
}

/* ============================================================
   PHILOSOPHY STRIP
   ============================================================ */
#philosophy {
  padding: 100px 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#philosophy::before {
  content: 'PREMIUM';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 200;
  letter-spacing: 0em;
  /* text-indent: 0.3em; */
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
  max-width: 100vw;
  overflow: hidden;
}
.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  max-width: 740px;
  margin: 0 auto 1.5rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.philosophy-quote em { font-style: italic; color: var(--gold); }
.philosophy-sub {
  font-family: var(--font-jp);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 2.1;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: linear-gradient(135deg, #0A0A0A 0%, #131210 50%, #0D0C0A 100%);
  padding: 0 0 44px;
  position: relative;
  overflow: hidden;
}
/* Faint watermark */
#footer::after {
  content: 'VELATRIX';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: clamp(5rem, 14vw, 6rem);
  font-weight: 200;
  letter-spacing: 0.5em;
  color: rgba(201,169,110,0.15);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

/* Gold top accent line */
.footer-top-accent {
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  margin-bottom: 56px;
}

/* Brand header */
.footer-brand-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-logo-en {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 200;
  letter-spacing: 0.4em;
  color: var(--white);
  line-height: 1;
}
.footer-logo-en span { color: var(--gold); }
.footer-logo-jp-text {
  font-family: var(--font-jp);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.70);
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  padding-bottom: 0.3rem;
}

/* Gold divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,0.4), rgba(201,169,110,0.06) 65%, transparent);
  margin-bottom: 3.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.80);
  line-height: 2.1;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-sans)!important;
  font-size: 0.70rem!important;
  letter-spacing: 0.3em!important;
  text-transform: uppercase!important;
  color: var(--gold)!important;
  margin-bottom: 1.5rem!important;
  opacity: 0.8!important;
}
.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  position: relative;
}
.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  line-height: 2;
  letter-spacing: 0.2rem;
}
.footer-contact .phone {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0.6rem 0;
}
.footer-contact .phone:hover {
  background: var(--gold);
  color: var(--charcoal);
}


/* Bottom bar */
.footer-bottom {
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.footer-copy, .footer-license {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
}
.footer-privacy-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.footer-privacy-link:hover {
  color: var(--gold);
}

/* ============================================================
   SCROLL ANIMATIONS — Initial states
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.slide-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.65s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .management-list { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(201,169,110,0.12);
    border-top: 1px solid rgba(201,169,110,0.12);
  }
  .stat-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(201,169,110,0.12);
  }
}

@media (max-width: 768px) {
  #services, #management, #about { padding: 100px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    padding: 2.5rem 1.5rem;
  }
  .stat-item:last-child { border-bottom: none; }
  .management-list { grid-template-columns: 1fr; gap: 1rem; }
  .mgmt-card-icon { width: 38px; height: 38px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-content { padding-left: 5%; padding-right: 5%; }
  .hero-dots { display: none; }
  .nav-links, .nav-phone { display: none; }
  .header-tel { display: none; }
  .hamburger { display: flex; }
  .section-header { margin-bottom: 50px; }
}

@media (max-width: 480px) {
  .hero-arc-1, .hero-arc-2, .hero-arc-3 { opacity: 0.5; }
  .hero-watermark, .hero-corner { display: none; }
  .about-hours { flex-direction: column; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Utility
   ============================================================ */
.sp-br { display: none; }
@media (max-width: 768px) {
  .sp-br { display: inline; }
  #footer::after {
      letter-spacing: 0;
  }
}
