/* ============================================
   AURUM beauty - Premium Dark Luxury
   Black + Gold | No Photos
   ============================================ */

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

:root {
  --primary: #0A0A0A;
  --accent: #B8860B;
  --accent-light: #D4AF37;
  --accent-pale: rgba(212, 175, 55, .08);
  --bg: #0A0A0A;
  --bg-elevated: #111111;
  --text: #E8E0D0;
  --text-muted: #8A7E6E;
  --font-en: 'Playfair Display', serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

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

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

.pc-only { display: inline; }

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

/* ── Sample Banner ── */
#design-sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(184, 134, 11, .9);
  color: #0A0A0A;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  z-index: 100000;
  letter-spacing: 1px;
}

/* ── Curtain Reveal ── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 1.2s cubic-bezier(.77, 0, .175, 1);
}

.curtain.is-open {
  transform: translateY(-100%);
}

.curtain-logo {
  text-align: center;
  opacity: 0;
  animation: curtainFadeIn .8s ease .3s forwards;
}

.curtain-logo-text {
  display: block;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 12px;
}

.curtain-logo-sub {
  display: block;
  font-family: var(--font-en);
  font-size: .9rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 6px;
  margin-top: 4px;
}

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

/* ── Particles Canvas ── */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 16px 0;
  transition: all .5s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  top: 28px;
}

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

.logo {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1.2;
  letter-spacing: 4px;
}

.logo-text small {
  display: block;
  font-size: .6rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 3px;
}

.logo-text--footer {
  color: var(--accent-light);
}

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

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

.nav-link {
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  padding: 8px 16px;
  transition: color .4s ease;
  text-decoration: none;
}

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

.nav-cta {
  font-size: .78rem;
  font-weight: 500;
  color: var(--bg) !important;
  background: var(--accent);
  padding: 10px 24px;
  letter-spacing: 2px;
  transition: all .4s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 0 24px rgba(212, 175, 55, .3);
}

/* 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: 1px;
  background: var(--accent-light);
  transition: .4s;
  display: block;
}

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

@media (max-width: 840px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease;
    z-index: 9999;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: center; gap: 0; }
  .nav-link { font-size: 1rem; padding: 16px; }
  .nav-cta { margin-top: 24px; }
  .header-inner { padding: 0 24px; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
  text-align: center;
  z-index: 2;
}

/* Hero Gold Frame */
.hero-frame {
  position: absolute;
  inset: 60px;
  z-index: 1;
  pointer-events: none;
}

.hero-frame-top,
.hero-frame-bottom,
.hero-frame-left,
.hero-frame-right {
  position: absolute;
  background: var(--accent);
  opacity: 0;
}

.hero-frame-top, .hero-frame-bottom {
  height: 1px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.hero-frame-left, .hero-frame-right {
  width: 1px;
  top: 0;
  bottom: 0;
  transform: scaleY(0);
}

.hero-frame-top { top: 0; transform-origin: left; }
.hero-frame-bottom { bottom: 0; transform-origin: right; }
.hero-frame-left { left: 0; transform-origin: top; }
.hero-frame-right { right: 0; transform-origin: bottom; }

.hero-frame.animated .hero-frame-top,
.hero-frame.animated .hero-frame-bottom,
.hero-frame.animated .hero-frame-left,
.hero-frame.animated .hero-frame-right {
  opacity: .4;
  transform: scaleX(1);
  transition: transform 1.5s cubic-bezier(.25, .46, .45, .94), opacity .5s ease;
}

.hero-frame.animated .hero-frame-left,
.hero-frame.animated .hero-frame-right {
  transform: scaleY(1);
}

/* Hero Corners */
.hero-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  opacity: 0;
}

.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: var(--accent-light);
}

.hero-corner::before {
  width: 20px;
  height: 1px;
}

.hero-corner::after {
  width: 1px;
  height: 20px;
}

.hero-corner--tl { top: 0; left: 0; }
.hero-corner--tl::before { top: 0; left: 0; }
.hero-corner--tl::after { top: 0; left: 0; }

.hero-corner--tr { top: 0; right: 0; }
.hero-corner--tr::before { top: 0; right: 0; }
.hero-corner--tr::after { top: 0; right: 0; }

.hero-corner--bl { bottom: 0; left: 0; }
.hero-corner--bl::before { bottom: 0; left: 0; }
.hero-corner--bl::after { bottom: 0; left: 0; }

.hero-corner--br { bottom: 0; right: 0; }
.hero-corner--br::before { bottom: 0; right: 0; }
.hero-corner--br::after { bottom: 0; right: 0; }

.hero-frame.animated .hero-corner {
  opacity: .6;
  transition: opacity .8s ease 1.2s;
}

@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-frame { inset: 24px; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 4px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

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

/* Gold Shimmer Text */
.shimmer-text {
  font-family: var(--font-jp);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 4px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 25%,
    #F5E6B8 50%,
    var(--accent-light) 75%,
    var(--accent) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.hero-ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-ornament-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent-light);
  transform: rotate(45deg);
}

.hero-desc {
  font-size: .88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 2.2;
  margin-bottom: 40px;
  letter-spacing: .5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  padding: 15px 36px;
  letter-spacing: 2px;
  transition: all .4s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

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

.btn--primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 32px rgba(212, 175, 55, .3);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(184, 134, 11, .4);
  color: var(--accent-light);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent-light);
  background: rgba(212, 175, 55, .06);
  box-shadow: 0 0 24px rgba(212, 175, 55, .15);
}

/* 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: 3;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

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

/* ── Trust Bar ── */
.trust-bar {
  padding: 56px 0;
  border-top: 1px solid rgba(184, 134, 11, .12);
  border-bottom: 1px solid rgba(184, 134, 11, .12);
  position: relative;
  z-index: 2;
}

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

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

.trust-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
}

.trust-unit {
  font-size: .85rem;
  color: var(--accent);
  margin-left: 2px;
}

.trust-label {
  display: block;
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 2px;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(184, 134, 11, .2);
}

@media (max-width: 600px) {
  .trust-items { gap: 24px; }
  .trust-divider { display: none; }
  .trust-num { font-size: 1.8rem; }
}

/* ── Sections ── */
.section {
  padding: 160px 0;
  position: relative;
  z-index: 2;
}

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

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

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

.section-header-center .section-title {
  margin-bottom: 0;
}

.section-sub {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: .5px;
}

/* ── Gold Lines ── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
}

.draw-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
}

.draw-line.is-visible {
  transform: scaleX(1);
}

.draw-frame {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.draw-frame.is-visible {
  opacity: 1;
}

/* ── Gold Divider ── */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.gold-divider-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.gold-divider-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Concept ── */
.concept-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 2.2;
  margin-bottom: 20px;
}

.concept-frame-inner {
  position: relative;
  padding: 48px;
}

.concept-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 134, 11, .3);
}

.concept-frame-border::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 134, 11, .15);
}

.concept-frame-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.concept-frame-label {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.concept-frame-text {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 2.4;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.concept-frame-sign {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: 3px;
}

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

/* ── Menu ── */
.menu-list {
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  padding: 0;
}

.menu-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
}

.menu-item-left { flex: 1; }

.menu-label {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.menu-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.menu-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 2;
}

.menu-item-right {
  text-align: right;
  flex-shrink: 0;
  padding-top: 28px;
}

.menu-price {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.menu-tax {
  font-size: .7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.menu-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .2), transparent);
}

.menu-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 48px;
  letter-spacing: .5px;
}

@media (max-width: 600px) {
  .menu-item-inner {
    flex-direction: column;
    gap: 16px;
  }
  .menu-item-right {
    text-align: left;
    padding-top: 0;
  }
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 32px 16px;
}

.feature-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .25;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 20px;
}

.feature-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.feature-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.9;
}

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

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

/* ── Owner ── */
.owner-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.owner-frame {
  position: relative;
  aspect-ratio: 3/4;
}

.owner-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 134, 11, .3);
}

.owner-frame-border::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 134, 11, .15);
}

.owner-frame-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.owner-frame-label {
  font-family: var(--font-en);
  font-size: .6rem;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.owner-monogram {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 4px;
  opacity: .6;
}

.owner-frame-since {
  font-family: var(--font-en);
  font-size: .6rem;
  color: var(--text-muted);
  letter-spacing: 3px;
}

.owner-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.owner-name small {
  display: block;
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.owner-credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.owner-credential {
  font-size: .7rem;
  color: var(--accent);
  padding: 5px 14px;
  border: 1px solid rgba(184, 134, 11, .25);
  letter-spacing: 1px;
}

.owner-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 2.2;
  margin-bottom: 16px;
}

@media (max-width: 840px) {
  .owner-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .owner-frame {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ── Flow ── */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  padding: 24px 16px;
}

.flow-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .3;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.flow-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 16px;
}

.flow-step h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.flow-step p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .flow-step {
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid rgba(184, 134, 11, .1);
  }
  .flow-line { margin: 0 0 16px; }
}

/* ── Voice ── */
.voice-list {
  max-width: 800px;
  margin: 0 auto;
}

.voice-item {
  position: relative;
  padding: 40px 0;
}

.voice-quote {
  font-family: var(--font-en);
  font-size: 4rem;
  color: var(--accent);
  opacity: .2;
  line-height: 1;
  margin-bottom: -8px;
}

.voice-text {
  font-size: .88rem;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 20px;
  font-weight: 300;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.voice-initial {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 134, 11, .3);
  font-family: var(--font-en);
  font-size: .85rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

.voice-name {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1px;
}

.voice-detail {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .5px;
}

.voice-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .15), transparent);
  margin-top: 40px;
}

/* ── Info ── */
.info-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 56px;
}

.info-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 134, 11, .2);
}

.info-card-border::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 134, 11, .1);
}

.info-table {
  position: relative;
  z-index: 2;
}

.info-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid rgba(184, 134, 11, .08);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  min-width: 120px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
}

.info-row dd {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .5px;
}

.info-link {
  color: var(--accent-light) !important;
  transition: opacity .3s;
}

.info-link:hover {
  opacity: .7;
}

@media (max-width: 600px) {
  .info-card { padding: 32px 24px; }
  .info-row {
    flex-direction: column;
    gap: 4px;
  }
  .info-row dt { min-width: auto; }
}

/* ── Contact ── */
.section--contact {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(184, 134, 11, .12);
  border-bottom: 1px solid rgba(184, 134, 11, .12);
}

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

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 40px;
  line-height: 2;
}

.contact-tel-box {
  margin-bottom: 40px;
}

.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 20px 48px;
  border: 1px solid rgba(184, 134, 11, .3);
  transition: all .4s ease;
}

.contact-tel:hover {
  background: rgba(184, 134, 11, .06);
  box-shadow: 0 0 32px rgba(212, 175, 55, .15);
  border-color: var(--accent-light);
}

.contact-tel-label {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--accent);
  letter-spacing: 3px;
}

.contact-tel-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 2px;
}

.contact-tel-hours {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 1px;
}

.contact-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-ornament-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-ornament-diamond {
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

/* ── Footer ── */
.footer {
  background: #050505;
  padding: 72px 0 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(184, 134, 11, .08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-address {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
}

.footer-tel {
  font-family: var(--font-en);
  font-size: .85rem;
  color: var(--accent);
  margin-top: 8px;
  letter-spacing: 1px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

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

.footer-nav-grid a {
  font-size: .78rem;
  color: var(--text-muted);
  transition: color .3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(184, 134, 11, .08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  opacity: .6;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Fade In Animation ── */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease, transform 2s ease;
}

[data-anim="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Glow */
.btn:hover,
.nav-cta:hover,
.contact-tel:hover,
.owner-credential:hover {
  box-shadow: 0 0 24px rgba(212, 175, 55, .2);
}

.menu-item:hover .menu-title {
  color: var(--accent-light);
  transition: color .4s ease;
}

.feature-item:hover .feature-num {
  opacity: .5;
  transition: opacity .4s ease;
}

.feature-item:hover .feature-title {
  color: var(--accent-light);
  transition: color .4s ease;
}

.voice-item:hover .voice-initial {
  background: rgba(184, 134, 11, .08);
  transition: background .4s ease;
}
