/* ============================================
   LA DOCE — Ultra Luxury Corporate Design
   Obsidian × Gold × Champagne
   ============================================ */

@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=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@200;300;400&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Core Palette – Obsidian & Gold */
  --obsidian:       #08080a;
  --obsidian-2:     #0d0d10;
  --obsidian-3:     #121216;
  --obsidian-4:     #18181e;
  --obsidian-5:     #202028;
  --obsidian-card:  #111116;
  --obsidian-border:#1e1e26;

  /* Gold spectrum */
  --gold:           #c8a84b;
  --gold-bright:    #e2c47a;
  --gold-pale:      #f4e4b0;
  --gold-dark:      #8e6e24;
  --gold-subtle:    rgba(200,168,75,0.10);
  --gold-faint:     rgba(200,168,75,0.05);
  --gold-glow:      rgba(200,168,75,0.25);

  /* Text */
  --ivory:          #f0e8d8;
  --ivory-80:       rgba(240,232,216,0.80);
  --ivory-55:       rgba(240,232,216,0.55);
  --ivory-30:       rgba(240,232,216,0.30);
  --ivory-12:       rgba(240,232,216,0.12);
  --ivory-06:       rgba(240,232,216,0.06);

  /* Shadows */
  --shadow-gold:    0 8px 40px rgba(200,168,75,0.22);
  --shadow-deep:    0 20px 60px rgba(0,0,0,0.7);
  --shadow-card:    0 4px 30px rgba(0,0,0,0.5);
  --shadow-glow:    0 0 60px rgba(200,168,75,0.08);

  /* Shape */
  --radius-xs:      2px;
  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      14px;

  /* Typography */
  --font-display:   'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --font-heading:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:      'Noto Sans JP', 'Helvetica Neue', sans-serif;
  --font-label:     'Montserrat', 'Noto Sans JP', sans-serif;

  /* Transition */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:         0.25s;
  --t:              0.4s;
  --t-slow:         0.7s;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--obsidian);
}

body {
  font-family: var(--font-body);
  color: var(--ivory);
  background: var(--obsidian);
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Selection */
::selection {
  background: rgba(200,168,75,0.25);
  color: var(--ivory);
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px)  { .container { padding: 0 24px; } }

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 34px 0;
  transition: padding var(--t) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8,8,10,0.96);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 18px 0;
  border-bottom-color: var(--obsidian-border);
  box-shadow: 0 1px 0 rgba(200,168,75,0.06), 0 8px 40px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.logo-text {
  font-family: var(--font-label);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ivory);
  transition: color var(--t) var(--ease);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
  font-weight: 300;
}
.nav-logo:hover .logo-text { color: var(--gold); }

/* ── ロゴ画像 ── */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  /* 黒ロゴ→白に反転してダークナビに対応 */
  filter: invert(1) brightness(1);
  transition: filter var(--t) var(--ease), opacity var(--t) var(--ease);
  opacity: 0.92;
}
.nav-logo:hover .nav-logo-img {
  /* ホバーでゴールドに近い色味 */
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.1);
  opacity: 1;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-55);
  padding: 10px 20px;
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--t) var(--ease-out), right var(--t) var(--ease-out);
}
.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after { left: 20px; right: 20px; }

.nav-cta {
  margin-left: 12px;
  color: var(--gold) !important;
  border: 1px solid rgba(200,168,75,0.5) !important;
  padding: 9px 24px !important;
  letter-spacing: 0.2em;
  transition: all var(--t) var(--ease) !important;
  background: transparent !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border-color: var(--gold) !important;
}

/* Instagram nav icon */
.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  font-size: 1.15rem;
  color: var(--ivory-55);
  border: 1px solid var(--obsidian-border);
  border-radius: 50%;
  transition: all var(--t) var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-instagram:hover {
  color: #fff;
  border-color: transparent;
  background: radial-gradient(ellipse at 30% 110%, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
  box-shadow: 0 0 14px rgba(238,42,123,0.45);
  transform: scale(1.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ivory-80);
  transition: all var(--t) var(--ease);
}
.nav-toggle span:nth-child(2) { width: 16px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 44px;
  font-family: var(--font-label);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

/* Shimmer effect on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s var(--ease);
}
.btn:hover::before { left: 150%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-bright) 65%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--obsidian);
  font-weight: 700;
  letter-spacing: 0.24em;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(200,168,75,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ivory-80);
  border: 1px solid var(--ivory-30);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--ivory);
  color: var(--obsidian);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold-subtle);
  transform: translateY(-2px);
}

.btn-sm  { padding: 12px 28px; font-size: 0.68rem; }
.btn-full { width: 100%; }

/* ============================================
   Hero Section — Cinematic Luxury
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 130px;
}

/* Layered background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,168,75,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(200,168,75,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(200,168,75,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Noise texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

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

/* ── Video Hero ── */
.hero.hero-video::before,
.hero.hero-video::after {
  z-index: 2;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,10,0.45) 0%,
    rgba(8,8,10,0.35) 40%,
    rgba(8,8,10,0.55) 100%
  );
}
.hero.hero-video .hero-line-top,
.hero.hero-video .hero-line-bottom,
.hero.hero-video .hero-accent-v,
.hero.hero-video .hero-content,
.hero.hero-video .hero-scroll {
  z-index: 3;
  position: relative;
}

/* Animated gold orbs */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-shape-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 65%);
  top: -300px; right: -200px;
  animation: heroOrb1 16s ease-in-out infinite;
}
.hero-shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,168,75,0.07) 0%, transparent 65%);
  bottom: -200px; left: -100px;
  animation: heroOrb2 20s ease-in-out infinite;
}
.hero-shape-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 65%);
  top: 45%; left: 38%;
  animation: heroOrb3 12s ease-in-out infinite 4s;
}
@keyframes heroOrb1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -50px) scale(0.96); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.08); }
}
@keyframes heroOrb3 {
  0%, 100% { transform: translate(0,0); opacity: 0.8; }
  50% { transform: translate(-20px, 20px); opacity: 1; }
}

/* Decorative thin lines */
.hero-line-top,
.hero-line-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 8%,
    rgba(200,168,75,0.35) 35%,
    rgba(200,168,75,0.5) 50%,
    rgba(200,168,75,0.35) 65%,
    transparent 92%,
    transparent 100%);
  opacity: 0.09;
}
.hero-line-top    { top: 110px; }
.hero-line-bottom { bottom: 100px; }

/* Vertical gold accent left */
.hero-accent-v {
  position: absolute;
  left: 48px; top: 30%; bottom: 30%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Logo ── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0s forwards;
}
.hero-logo-img {
  /* 白背景ロゴを反転して暗背景に対応 */
  filter: invert(1) brightness(1.05);
  width: clamp(100px, 18vw, 160px);
  height: auto;
  display: block;
  /* ロゴの赤ラインは invert で水色になるため色補正 */
  /* hue-rotate で赤に近づける */
  filter: invert(1) hue-rotate(180deg) saturate(3) brightness(1.1);
  /* 上記だと崩れるので、mix-blend-mode + drop-shadow で立体感を追加 */
  filter:
    drop-shadow(0 0 20px rgba(200,168,75,0.30))
    drop-shadow(0 0 60px rgba(200,168,75,0.12))
    invert(1)
    brightness(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.hero-logo-wrap:hover .hero-logo-img {
  filter:
    drop-shadow(0 0 28px rgba(200,168,75,0.55))
    drop-shadow(0 0 80px rgba(200,168,75,0.25))
    invert(1)
    brightness(1.15);
  transform: scale(1.04);
}

/* Eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.2s forwards;
  position: relative;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.55;
  flex-shrink: 0;
}
.hero-badge::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 200;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 36px;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.4s forwards;
}
.hero-title-line2 {
  display: block;
  font-style: italic;
  font-weight: 200;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 40%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero-desc {
  font-size: 1rem;
  color: var(--ivory-55);
  margin-bottom: 60px;
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.65s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ivory-30);
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
  animation: scrollLine 2.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 0.5; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* Entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   Stats Bar
   ============================================ */
.stats {
  background: var(--obsidian-3);
  border-top: 1px solid var(--obsidian-border);
  border-bottom: 1px solid var(--obsidian-border);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.15;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--obsidian-border), transparent);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-30);
  font-weight: 500;
}

/* ============================================
   Section Shared
   ============================================ */
.section {
  padding: 128px 48px;
  position: relative;
}

.bg-light {
  background: var(--obsidian-3);
  border-top: 1px solid var(--obsidian-border);
  border-bottom: 1px solid var(--obsidian-border);
}

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

/* Eyebrow */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-badge::before,
.section-badge::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.5;
}
.section-badge::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}

/* Section title */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.section-gold-line {
  width: 72px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-bright) 50%, var(--gold) 60%, transparent 100%);
  margin: 0 auto 28px;
  opacity: 0.9;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory-55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.section-cta {
  text-align: center;
  margin-top: 64px;
}

/* ============================================
   Services Grid — Luxury Cards
   ============================================ */
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
}

.service-card {
  background: var(--obsidian-card);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease);
}

/* Gold top edge on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }

/* Gold corner radiance */
.service-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.service-card:hover { background: var(--obsidian-4); }
.service-card:hover::after { opacity: 1; }

.service-card-eyebrow { margin-bottom: 24px; }

/* Badges */
.badge-bih {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.35);
  padding: 5px 14px;
  background: rgba(200,168,75,0.07);
}
.badge-fabrica {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(226,196,122,0.35);
  padding: 5px 14px;
  background: rgba(226,196,122,0.06);
}

.service-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 1.4rem;
  border: 1px solid var(--obsidian-border);
  position: relative;
}
.service-icon-barca  { color: var(--gold); }
.service-icon-talent { color: var(--gold-bright); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.service-card h3 small {
  display: block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-style: normal;
}

.service-card p {
  color: var(--ivory-55);
  font-size: 0.92rem;
  line-height: 2;
  margin-bottom: 32px;
  font-weight: 300;
}

.service-link {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--t) var(--ease);
  position: relative;
}
.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  transition: opacity var(--t) var(--ease);
}
.service-link:hover { color: var(--gold-bright); gap: 16px; }
.service-link:hover::after { opacity: 0.8; }

/* ============================================
   Why Us Section
   ============================================ */
.why-us { background: var(--obsidian); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 108px;
  align-items: center;
}

.why-content .section-badge { display: inline-flex; margin-bottom: 20px; }
.why-content .section-title { text-align: left; margin-bottom: 8px; }
.why-gold-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 32px;
}
.why-content .section-desc {
  text-align: left;
  margin: 0 0 44px;
  max-width: none;
}

.why-features { display: flex; flex-direction: column; gap: 36px; margin-bottom: 52px; }
.why-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 2px;
  min-height: 70px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,75,0.1));
  margin-top: 5px;
}
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.why-feature p {
  font-size: 0.87rem;
  color: var(--ivory-55);
  line-height: 1.95;
  font-weight: 300;
}

/* Visual grid */
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
  aspect-ratio: 1;
}
.why-card {
  background: var(--obsidian-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  transition: background var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.why-card:hover { background: var(--obsidian-4); }
.why-card:hover::before { opacity: 1; }
.why-card i {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.65;
  transition: opacity var(--t);
}
.why-card:hover i { opacity: 1; }
.why-card span {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-30);
  font-weight: 500;
  transition: color var(--t);
}
.why-card:hover span { color: var(--ivory-55); }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--obsidian-3);
  border-top: 1px solid var(--obsidian-border);
  padding: 128px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.cta-content p {
  color: var(--ivory-55);
  font-size: 0.97rem;
  margin-bottom: 48px;
  line-height: 2.1;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Page Hero (Inner pages)
   ============================================ */
.page-hero {
  padding: 200px 48px 128px;
  background: var(--obsidian);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(200,168,75,0.10) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .section-badge { margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 200;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.page-hero p {
  color: var(--ivory-55);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ============================================
   About: Mission / Vision / Value
   ============================================ */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
}
.mv-card {
  background: var(--obsidian-card);
  padding: 52px 44px;
  text-align: left;
  transition: background var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.mv-card:hover { background: var(--obsidian-4); }
.mv-card:hover::after { transform: scaleX(1); }

.mv-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,168,75,0.3);
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: var(--gold);
  background: rgba(200,168,75,0.07);
}
.mv-card h3 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.mv-card p {
  color: var(--ivory-55);
  font-size: 0.92rem;
  line-height: 2.1;
  font-weight: 300;
}

/* ============================================
   Company Table
   ============================================ */
.company-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--obsidian-border);
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--obsidian-card);
}
.company-table tr {
  border-bottom: 1px solid var(--obsidian-border);
  transition: background var(--t) var(--ease);
}
.company-table tr:last-child { border-bottom: none; }
.company-table tr:hover { background: var(--obsidian-4); }
.company-table th {
  width: 200px;
  padding: 26px 36px;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  vertical-align: top;
  border-right: 1px solid var(--obsidian-border);
}
.company-table td {
  padding: 26px 36px;
  color: var(--ivory-55);
  font-size: 0.93rem;
  line-height: 1.9;
  font-weight: 300;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 76px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,75,0.1), transparent);
  opacity: 0.4;
}
.timeline-item {
  display: flex;
  gap: 48px;
  padding-bottom: 60px;
  position: relative;
  align-items: flex-start;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 73px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(200,168,75,0.5);
}
.timeline-year {
  flex-shrink: 0;
  width: 56px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--gold);
  text-align: right;
  padding-top: 5px;
  letter-spacing: 0.05em;
}
.timeline-content {
  flex: 1;
  padding-left: 48px;
}
.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.timeline-content p {
  color: var(--ivory-55);
  font-size: 0.88rem;
  line-height: 2;
  font-weight: 300;
}

/* ============================================
   Service Block (Services page)
   ============================================ */
.service-block { display: flex; flex-direction: column; gap: 60px; }

.service-block-label {
  display: flex;
  align-items: center;
  gap: 24px;
}
.service-number-lg {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--obsidian-border);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}
.badge-bih-lg {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.35);
  padding: 7px 18px;
  background: rgba(200,168,75,0.07);
}
.badge-fabrica-lg {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(226,196,122,0.35);
  padding: 7px 18px;
  background: rgba(226,196,122,0.06);
}

.service-block-header {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--obsidian-border);
}
.service-block-icon {
  flex-shrink: 0;
  width: 76px; height: 76px;
  border: 1px solid var(--obsidian-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.service-block-icon-barca   { color: var(--gold); background: rgba(200,168,75,0.07); border-color: rgba(200,168,75,0.25); }
.service-block-icon-fabrica { color: var(--gold-bright); background: rgba(226,196,122,0.06); border-color: rgba(226,196,122,0.25); }

.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-block-sub {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-30);
}

.service-block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
.service-block-desc p {
  color: var(--ivory-55);
  font-size: 0.95rem;
  line-height: 2.1;
  margin-bottom: 22px;
  font-weight: 300;
}

.service-block-features h4 {
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--ivory-55);
  font-weight: 300;
  line-height: 1.8;
}
.service-detail-list li i {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.8;
}

.section-divider {
  height: 1px;
  background: var(--obsidian-border);
  max-width: 1180px;
  margin: 0 auto;
}

/* ============================================
   LA FABRICA Flagship Highlight
   ============================================ */
.fabrica-highlight {
  background: var(--obsidian-card);
  border: 1px solid rgba(200,168,75,0.22);
  border-left: 3px solid var(--gold);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.fabrica-highlight::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 260px; height: 200px;
  background: radial-gradient(circle at top right, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fabrica-highlight-inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.fabrica-star {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.fabrica-highlight-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}
.fabrica-highlight-inner p {
  font-size: 0.9rem;
  color: var(--ivory-55);
  line-height: 2;
  margin: 0;
  font-weight: 300;
}

/* ============================================
   Coaches
   ============================================ */
.coaches-section {
  border-top: 1px solid var(--obsidian-border);
  padding-top: 52px;
}
.coaches-title, .selection-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
}
.coach-card {
  background: var(--obsidian-card);
  padding: 44px 40px;
  transition: background var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.coach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.coach-card:hover { background: var(--obsidian-4); }
.coach-card:hover::before { transform: scaleX(1); }

.coach-avatar {
  width: 52px; height: 52px;
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 22px;
  background: rgba(200,168,75,0.07);
}
.coach-card h5 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.coach-pos {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}
.coach-bio {
  font-size: 0.87rem;
  color: var(--ivory-55);
  line-height: 2;
  font-weight: 300;
}

/* ============================================
   Selection Process
   ============================================ */
.selection-section {
  border-top: 1px solid var(--obsidian-border);
  padding-top: 52px;
}
.selection-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.selection-path {
  background: var(--obsidian-card);
  border: 1px solid var(--obsidian-border);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--t) var(--ease);
  position: relative;
}
.selection-path:hover {
  border-color: rgba(200,168,75,0.3);
  background: var(--obsidian-4);
}
.selection-path-final {
  border-color: rgba(200,168,75,0.22);
}
.selection-path-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-30);
  border: 1px solid var(--obsidian-border);
  padding: 3px 10px;
  margin-bottom: 14px;
}
.selection-path-badge-final {
  color: var(--gold);
  border-color: rgba(200,168,75,0.4);
  background: rgba(200,168,75,0.07);
}
.selection-path h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}
.selection-path p {
  font-size: 0.82rem;
  color: var(--ivory-55);
  line-height: 1.9;
  font-weight: 300;
}
.selection-divider-v {
  color: var(--obsidian-border);
  font-size: 1rem;
  text-align: center;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 88px;
  align-items: flex-start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.contact-info > p {
  color: var(--ivory-55);
  font-size: 0.9rem;
  line-height: 2.1;
  margin-bottom: 44px;
  font-weight: 300;
}
.contact-items { display: flex; flex-direction: column; gap: 36px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  background: rgba(200,168,75,0.07);
}
.contact-item h4 {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.contact-item p {
  color: var(--ivory-55);
  font-size: 0.88rem;
  line-height: 1.85;
  font-weight: 300;
}
.contact-item small { color: var(--ivory-30); font-size: 0.8rem; }

/* Form */
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 9px; }
.form-group label {
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-30);
}
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 18px;
  border: 1px solid var(--obsidian-border);
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--ivory);
  background: var(--obsidian-card);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  outline: none;
  appearance: none;
  font-weight: 300;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ivory-30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.07);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c8a84b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group select option { background: var(--obsidian-4); color: var(--ivory); }
.form-privacy { display: flex; align-items: center; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--ivory-55);
  font-weight: 300;
}
.checkbox-label a { color: var(--gold); }
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-success {
  text-align: center;
  padding: 64px 36px;
  border: 1px solid rgba(200,168,75,0.22);
  background: var(--obsidian-card);
}
.form-success i {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 12px;
}
.form-success p { color: var(--ivory-55); font-size: 0.9rem; font-weight: 300; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--obsidian-2);
  border-top: 1px solid var(--obsidian-border);
  padding: 88px 48px 44px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.18;
}
.footer-container { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 88px;
  margin-bottom: 72px;
}
.footer-logo {
  font-family: var(--font-label);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  /* フッターも暗背景なので白に反転 */
  filter: invert(1) brightness(1);
  opacity: 0.9;
}
.footer-logo-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ivory-55);
  font-size: 0.92rem;
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--obsidian-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-30);
  font-size: 0.78rem;
  transition: all var(--t) var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,75,0.07);
}
.footer-social a[aria-label="Instagram"]:hover {
  border-color: transparent;
  color: #fff;
  background: radial-gradient(ellipse at 30% 110%, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
  box-shadow: 0 0 12px rgba(238,42,123,0.4);
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: var(--ivory-55);
  font-size: 0.87rem;
  font-weight: 300;
  transition: color var(--t) var(--ease);
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: var(--ivory); }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  color: var(--ivory-55);
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 300;
  line-height: 1.8;
}
.footer-contact li i {
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.7;
}
.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--obsidian-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: var(--ivory-30);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ============================================
   5 Services Color System
   ============================================ */
:root {
  /* 01 LA FABRICA — Warm Gold / Amber */
  --fabrica:        #c8a84b;
  --fabrica-dark:   #7a6220;
  --fabrica-subtle: rgba(200,168,75,0.10);

  /* 02 BARÇA INNOVATION HUB — Cobalt Blue */
  --bih:            #3b7dd8;
  --bih-dark:       #1e4e96;
  --bih-subtle:     rgba(59,125,216,0.10);

  /* 03 THE TALENT — Emerald Green */
  --talent:         #2ecc8a;
  --talent-dark:    #1a7a52;
  --talent-subtle:  rgba(46,204,138,0.10);

  /* 04 MUNDO12 — Crimson Red (South America passion) */
  --mundo:          #e05050;
  --mundo-dark:     #8c2020;
  --mundo-subtle:   rgba(224,80,80,0.10);

  /* 05 THE TOP — Imperial Gold / Champagne */
  --top:            #e8d48a;
  --top-dark:       #9a8040;
  --top-subtle:     rgba(232,212,138,0.10);
}

/* ============================================
   Mission Strip
   ============================================ */
.mission-strip {
  background: var(--obsidian-3);
  border-top: 1px solid var(--obsidian-border);
  border-bottom: 1px solid var(--obsidian-border);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.mission-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.12), transparent);
}
.mission-inner {
  max-width: 860px;
  margin: 0 auto;
}
.mission-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-style: italic;
  margin-bottom: 28px;
}
.mission-sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--ivory-55);
  line-height: 2.1;
  letter-spacing: 0.04em;
  font-style: normal;
  position: relative;
  padding-top: 28px;
}
.mission-sub::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ============================================
   Services Pentagon (Home)
   ============================================ */
.services-pentagon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
/* Ambient glow behind the grid */
.services-pentagon::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,168,75,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Row 2 items (4th and 5th) centered */
.services-pentagon .svc-card:nth-child(4),
.services-pentagon .svc-card:nth-child(5) {
  grid-column: span 1;
}
.services-pentagon .svc-card:nth-child(4) {
  grid-column: 1 / 2;
}
.services-pentagon .svc-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* Override: 5-item grid → 3+2 layout trick */
.services-pentagon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}
.svc-card:nth-child(4) { grid-column: 1; }
.svc-card:nth-child(5) { grid-column: 2; }

.svc-card {
  background: var(--obsidian-card);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background var(--t) var(--ease), transform 0.3s var(--ease);
}
.svc-card:hover {
  background: var(--obsidian-4);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.svc-card:hover { background: var(--obsidian-4); }
.svc-card:hover::before { transform: scaleX(1); }

/* Per-service top border colors */
.svc-fabrica::before { background: linear-gradient(90deg, var(--fabrica), transparent); }
.svc-bih::before     { background: linear-gradient(90deg, var(--bih), transparent); }
.svc-talent::before  { background: linear-gradient(90deg, var(--talent), transparent); }
.svc-mundo::before   { background: linear-gradient(90deg, var(--mundo), transparent); }
.svc-top::before     { background: linear-gradient(90deg, var(--top), transparent); }

.svc-num {
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  user-select: none;
  transition: color var(--t) var(--ease);
}
.svc-card:hover .svc-num {
  color: rgba(255,255,255,0.08);
}

.svc-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--obsidian-border);
  margin-bottom: 22px;
  transition: border-color var(--t);
}
.svc-fabrica .svc-icon { color: var(--fabrica); }
.svc-bih     .svc-icon { color: var(--bih); }
.svc-talent  .svc-icon { color: var(--talent); }
.svc-mundo   .svc-icon { color: var(--mundo); }
.svc-top     .svc-icon { color: var(--top); }
.svc-card:hover .svc-icon { border-color: rgba(200,168,75,0.3); }

.svc-body { flex: 1; }
.svc-tag {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-30);
  margin-bottom: 10px;
}
.svc-fabrica .svc-tag { color: var(--fabrica); opacity: 0.85; }
.svc-bih     .svc-tag { color: var(--bih); opacity: 0.85; }
.svc-talent  .svc-tag { color: var(--talent); opacity: 0.85; }
.svc-mundo   .svc-tag { color: var(--mundo); opacity: 0.85; }
.svc-top     .svc-tag { color: var(--top); opacity: 0.85; }

.svc-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.svc-title-sub {
  font-size: 0.7em;
  font-style: italic;
  font-weight: 400;
  color: var(--ivory-55);
}
.svc-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ivory-55);
  line-height: 2.0;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.svc-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
  margin-top: auto;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(6px); }

/* ============================================
   Services List (Services Page)
   ============================================ */
.services-list { display: flex; flex-direction: column; }

.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 56px;
  align-items: flex-start;
  padding: 72px 0;
}
.svc-row-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 200;
  color: var(--obsidian-border);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  padding-top: 8px;
}
.svc-row-content { flex: 1; }
.svc-row-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 14px;
  border: 1px solid;
  margin-bottom: 14px;
}
.svc-tag-fabrica { color: var(--fabrica); border-color: rgba(200,168,75,0.35); background: var(--fabrica-subtle); }
.svc-tag-bih     { color: var(--bih);     border-color: rgba(59,125,216,0.35);  background: var(--bih-subtle); }
.svc-tag-talent  { color: var(--talent);  border-color: rgba(46,204,138,0.35);  background: var(--talent-subtle); }
.svc-tag-mundo   { color: var(--mundo);   border-color: rgba(224,80,80,0.35);   background: var(--mundo-subtle); }
.svc-tag-top     { color: var(--top);     border-color: rgba(232,212,138,0.35); background: var(--top-subtle); }

.svc-row-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.svc-row-desc {
  font-size: 0.95rem;
  color: var(--ivory-55);
  line-height: 2.1;
  font-weight: 300;
  max-width: 660px;
  margin-bottom: 28px;
}
.svc-row-divider {
  height: 1px;
  background: var(--obsidian-border);
}

/* ============================================
   Service Detail Page Layout
   ============================================ */
.svc-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: flex-start;
}

.svc-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.svc-num-lg {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 200;
  color: var(--obsidian-border);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}
.svc-badge-pill {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid;
}
.svc-badge-pill.svc-badge-fabrica { color: var(--fabrica); border-color: rgba(200,168,75,0.35); background: var(--fabrica-subtle); }
.svc-badge-pill.svc-badge-bih     { color: var(--bih);     border-color: rgba(59,125,216,0.35);  background: var(--bih-subtle); }
.svc-badge-pill.svc-badge-talent  { color: var(--talent);  border-color: rgba(46,204,138,0.35);  background: var(--talent-subtle); }
.svc-badge-pill.svc-badge-mundo   { color: var(--mundo);   border-color: rgba(224,80,80,0.35);   background: var(--mundo-subtle); }
.svc-badge-pill.svc-badge-top     { color: var(--top);     border-color: rgba(232,212,138,0.35); background: var(--top-subtle); }

.svc-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.svc-detail-title em {
  font-style: italic;
  color: var(--gold);
}

.svc-detail-gold-line {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 36px;
}

.svc-detail-lead {
  font-size: 1.05rem;
  color: var(--ivory-80);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.svc-detail-body {
  font-size: 0.93rem;
  color: var(--ivory-55);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 56px;
}

.svc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
  margin-bottom: 64px;
}
.svc-feature {
  background: var(--obsidian-card);
  padding: 36px 32px;
  transition: background var(--t) var(--ease);
}
.svc-feature:hover { background: var(--obsidian-4); }
.svc-feature i {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 14px;
  display: block;
}
.svc-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}
.svc-feature p {
  font-size: 0.87rem;
  color: var(--ivory-55);
  line-height: 1.9;
  font-weight: 300;
}

/* Aside */
.svc-detail-aside { display: flex; flex-direction: column; gap: 20px; }

.svc-aside-card {
  background: var(--obsidian-card);
  border: 1px solid var(--obsidian-border);
  padding: 36px 32px;
}
.svc-aside-card h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.svc-aside-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--obsidian-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.svc-aside-icon-fabrica { color: var(--fabrica); background: var(--fabrica-subtle); border-color: rgba(200,168,75,0.3); }
.svc-aside-icon-bih     { color: var(--bih);     background: var(--bih-subtle);     border-color: rgba(59,125,216,0.3); }
.svc-aside-icon-talent  { color: var(--talent);  background: var(--talent-subtle);  border-color: rgba(46,204,138,0.3); }
.svc-aside-icon-mundo   { color: var(--mundo);   background: var(--mundo-subtle);   border-color: rgba(224,80,80,0.3); }
.svc-aside-icon-top     { color: var(--top);     background: var(--top-subtle);     border-color: rgba(232,212,138,0.3); }

.svc-aside-list {
  display: flex; flex-direction: column; gap: 10px;
}
.svc-aside-list li {
  font-size: 0.88rem;
  color: var(--ivory-55);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.svc-aside-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.svc-aside-link-card { }
.svc-aside-premium { position: relative; border-color: rgba(200,168,75,0.2); }
.svc-aside-premium-badge {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--top);
  border: 1px solid rgba(232,212,138,0.3);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 20px;
  background: var(--top-subtle);
}

.svc-cta-card {
  background: var(--obsidian-4);
  border: 1px solid rgba(200,168,75,0.15);
  padding: 28px 28px;
}
.svc-cta-card p {
  font-size: 0.85rem;
  color: var(--ivory-55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

/* ============================================
   Page Hero — Per-Service Accent
   ============================================ */
.page-hero-fabrica .page-hero-bg {
  background: radial-gradient(ellipse at 50% -10%, rgba(200,168,75,0.12) 0%, transparent 55%);
}
.page-hero-bih .page-hero-bg {
  background: radial-gradient(ellipse at 50% -10%, rgba(59,125,216,0.12) 0%, transparent 55%);
}
.page-hero-talent .page-hero-bg {
  background: radial-gradient(ellipse at 50% -10%, rgba(46,204,138,0.10) 0%, transparent 55%);
}

/* ── Talent Page: Video Hero ── */
.page-hero-talent-video {
  min-height: 60vh;
}
.page-hero-talent-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-talent-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-talent-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,10,0.55) 0%,
    rgba(8,8,10,0.40) 45%,
    rgba(8,8,10,0.70) 100%
  );
}
.page-hero-talent-video .page-hero-content {
  position: relative;
  z-index: 3;
}
.page-hero-talent-video::after {
  z-index: 2;
}

/* ── Talent Page: Inline Video Block ── */
.talent-video-block {
  position: relative;
  width: 100%;
  margin: 48px 0 56px;
  overflow: hidden;
  border: 1px solid var(--obsidian-border);
}
.talent-video-inline {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.talent-video-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 24px;
  background: linear-gradient(to top, rgba(8,8,10,0.88) 0%, transparent 100%);
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--talent);
  opacity: 0.9;
}
.page-hero-mundo .page-hero-bg {
  background: radial-gradient(ellipse at 50% -10%, rgba(224,80,80,0.10) 0%, transparent 55%);
}
.page-hero-top .page-hero-bg {
  background: radial-gradient(ellipse at 50% -10%, rgba(232,212,138,0.12) 0%, transparent 55%);
}

/* Section Badge — Per-Service Colors */
.svc-badge-fabrica { color: var(--fabrica) !important; }
.svc-badge-bih     { color: var(--bih) !important; }
.svc-badge-talent  { color: var(--talent) !important; }
.svc-badge-mundo   { color: var(--mundo) !important; }
.svc-badge-top     { color: var(--top) !important; }
.svc-badge-fabrica::before, .svc-badge-fabrica::after { background: var(--fabrica) !important; }
.svc-badge-bih::before,     .svc-badge-bih::after     { background: var(--bih) !important; }
.svc-badge-talent::before,  .svc-badge-talent::after  { background: var(--talent) !important; }
.svc-badge-mundo::before,   .svc-badge-mundo::after   { background: var(--mundo) !important; }
.svc-badge-top::before,     .svc-badge-top::after     { background: var(--top) !important; }

/* ============================================
   Service Navigation Strip
   ============================================ */
.svc-nav-strip {
  background: var(--obsidian-3);
  border-top: 1px solid var(--obsidian-border);
  padding: 0 48px;
}
.svc-nav-strip .container {
  display: flex;
  gap: 2px;
  background: var(--obsidian-border);
  border-left: 1px solid var(--obsidian-border);
  border-right: 1px solid var(--obsidian-border);
}
.svc-nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: var(--obsidian-card);
  text-decoration: none;
  transition: background var(--t) var(--ease);
}
.svc-nav-item:hover { background: var(--obsidian-4); }
.svc-nav-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 200;
  color: var(--obsidian-border);
  line-height: 1;
  flex-shrink: 0;
}
.svc-nav-name {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-55);
  flex: 1;
  transition: color var(--t);
}
.svc-nav-item:hover .svc-nav-name { color: var(--ivory); }
.svc-nav-item i {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.svc-nav-item:hover i { opacity: 1; transform: translateX(4px); }

/* ============================================
   Navigation Dropdown
   ============================================ */
.nav-item-dropdown { position: relative; }
.nav-chevron {
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform var(--t) var(--ease);
  vertical-align: middle;
}
.nav-item-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 340px;
  background: rgba(13,13,16,0.97);
  border: 1px solid var(--obsidian-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease);
  transform: translateX(-50%) translateY(-8px);
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--obsidian-border);
  transition: background var(--t-fast) var(--ease);
  text-decoration: none;
}
.nav-dropdown li:last-child .nav-dropdown-item { border-bottom: none; }
.nav-dropdown-item:hover { background: var(--obsidian-4); }

.nav-dd-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--obsidian-5);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.nav-dd-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dd-tag {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-30);
  font-weight: 500;
}
.nav-dd-name {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ivory-80);
  transition: color var(--t-fast);
}
.nav-dropdown-item:hover .nav-dd-name { color: var(--gold); }

/* Footer grid 4-col */
.footer-grid {
  grid-template-columns: 1.8fr 1.2fr 0.8fr 1.2fr !important;
  gap: 60px !important;
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s var(--ease), opacity 0.3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cursor.cursor-hover {
  width: 12px; height: 12px;
  background: var(--gold-bright);
}
.cursor-follower.cursor-hover {
  width: 48px; height: 48px;
  border-color: rgba(200,168,75,0.6);
}
.cursor.cursor-click {
  width: 6px; height: 6px;
  background: var(--gold-pale);
}
@media (max-width: 1024px) {
  .cursor, .cursor-follower { display: none; }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.38s; }
.fade-in-delay-4 { transition-delay: 0.52s; }

/* ============================================
   Premium Details — Gold Accent Enhancements
   ============================================ */

/* Hairline top border on svc-row-divider */
.svc-row-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--obsidian-border) 15%, var(--obsidian-border) 85%, transparent 100%);
}

/* Page section elegant separator */
.section-separator {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 80px;
  max-width: 200px;
}
.section-separator::before,
.section-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.3));
}
.section-separator::after {
  background: linear-gradient(90deg, rgba(200,168,75,0.3), transparent);
}
.section-separator-diamond {
  width: 6px; height: 6px;
  border: 1px solid rgba(200,168,75,0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Why-card enhanced hover */
.why-card {
  cursor: default;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.why-card:hover::after { transform: scaleX(1); }

/* Stats number glow */
.stat-number {
  text-shadow: 0 0 40px rgba(200,168,75,0.2);
}

/* CTA section enhanced */
.cta-content h2 {
  background: linear-gradient(135deg, var(--ivory) 30%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Timeline dot pulse */
.timeline-item::after {
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(200,168,75,0.4); }
  50%       { box-shadow: 0 0 22px rgba(200,168,75,0.7), 0 0 40px rgba(200,168,75,0.2); }
}

/* Footer brand gold line */
.footer-logo {
  position: relative;
  display: inline-block;
}

/* Nav active link */
.nav-link.active {
  color: var(--ivory) !important;
}
.nav-link.active::after {
  left: 20px !important;
  right: 20px !important;
}

/* Luxury scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--obsidian-2);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================================
   THE TOP — Camp Records
   ============================================ */
.top-camps-section {
  margin-top: 56px;
}

.top-camp-record {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--obsidian-border);
  position: relative;
  transition: background var(--t) var(--ease);
}
.top-camp-record:last-child {
  border-bottom: 1px solid var(--obsidian-border);
}

.top-camp-record-latest {
  background: rgba(232,212,138,0.03);
}
.top-camp-record-latest::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--top), transparent 60%);
}

.top-camp-year-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 4px;
}
.top-camp-year {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 200;
  color: var(--ivory-30);
  line-height: 1;
  letter-spacing: -0.04em;
}
.top-camp-year-col-latest .top-camp-year {
  color: var(--top);
  opacity: 0.9;
}
.top-camp-year-label {
  font-family: var(--font-label);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--top);
  border: 1px solid rgba(232,212,138,0.35);
  padding: 2px 8px;
  background: rgba(232,212,138,0.07);
}

.top-camp-body { flex: 1; }

.top-camp-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.top-camp-avatar {
  width: 48px; height: 48px;
  border: 1px solid var(--obsidian-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--ivory-30);
  flex-shrink: 0;
  background: var(--obsidian-card);
}
.top-camp-avatar-latest {
  border-color: rgba(232,212,138,0.4);
  color: var(--top);
  background: rgba(232,212,138,0.07);
}

/* Photo avatar for Toni Kroos */
.top-camp-avatar-photo {
  width: 56px; height: 56px;
  overflow: hidden;
  border: 1.5px solid rgba(200,168,75,0.45);
  flex-shrink: 0;
  background: none;
}
.top-camp-avatar-photo .top-camp-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Full-width photo block inside the camp record */
.top-camp-photo-full {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--obsidian-border);
}
.top-camp-photo-full img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.top-camp-photo-full:hover img {
  transform: scale(1.02);
}
.top-camp-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: linear-gradient(to top, rgba(8,8,10,0.85) 0%, transparent 100%);
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* 2025 Marcelo — gold border accent */
.top-camp-photo-full-latest {
  border-color: rgba(232,212,138,0.35);
}
.top-camp-photo-full-latest .top-camp-photo-caption {
  color: var(--top);
}

/* ── Brahim Díaz — Active Star ── */
:root { --brahim: #4fc3f7; }   /* light blue accent */

.top-camp-record-brahim {
  background: rgba(79,195,247,0.03);
}
.top-camp-record-brahim::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brahim), transparent 60%);
}
.top-camp-year-col-brahim {
  gap: 2px;
}
.top-camp-year-sep {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brahim);
  opacity: 0.7;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0;
}
.top-camp-year-col-brahim .top-camp-year {
  color: var(--brahim);
  opacity: 0.9;
  font-size: 2rem;
}
.top-camp-year-label-brahim {
  color: var(--brahim) !important;
  border-color: rgba(79,195,247,0.35) !important;
  background: rgba(79,195,247,0.07) !important;
}
.top-camp-avatar-brahim {
  border-color: rgba(79,195,247,0.5) !important;
  width: 60px !important;
  height: 60px !important;
}
.top-camp-avatar-brahim .top-camp-photo {
  object-position: center 55%;
}
.top-camp-pos-brahim {
  color: var(--brahim) !important;
  opacity: 0.9;
}
.top-camp-active-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--brahim);
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.9;
}
.top-camp-photo-full-brahim {
  border-color: rgba(79,195,247,0.3);
}
/* ブラヒム 2枚ギャラリー */
.top-camp-photo-gallery-brahim {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 28px;
  border: 1px solid rgba(79,195,247,0.3);
}
.top-camp-photo-gallery-brahim .top-camp-photo-full {
  margin-bottom: 0;
  border: none;
}
.top-camp-photo-gallery-brahim .top-camp-photo-full img {
  max-height: 320px;
  min-height: 220px;
}
/* 左：ポートレート — 胸のロゴが見える位置 */
.top-camp-photo-brahim-a img {
  object-position: center 60%;
}
/* 右：トレーニングシーン */
.top-camp-photo-brahim-b img {
  object-position: center 25%;
}
/* キャプションはギャラリー全体の下に絶対配置 */
.top-camp-photo-gallery-brahim .top-camp-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .top-camp-photo-gallery-brahim {
    grid-template-columns: 1fr;
  }
}
.top-camp-photo-caption-brahim {
  color: var(--brahim) !important;
}
.top-tag-brahim {
  color: var(--brahim);
  border-color: rgba(79,195,247,0.3);
  background: rgba(79,195,247,0.05);
}

.top-camp-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.1;
}
.top-camp-pos {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--top);
  opacity: 0.8;
}

.top-camp-desc {
  font-size: 0.9rem;
  color: var(--ivory-55);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 20px;
}

.top-camp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.top-tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-30);
  border: 1px solid var(--obsidian-border);
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--obsidian-card);
}
.top-tag i { font-size: 0.65em; }
.top-tag-gold {
  color: var(--top);
  border-color: rgba(232,212,138,0.3);
  background: rgba(232,212,138,0.05);
}

.top-aside-record { position: relative; }

/* ============================================
   THE TALENT — Highlight Block & Clubs
   ============================================ */
.talent-highlight-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  background: var(--obsidian-card);
  border: 1px solid var(--obsidian-border);
  border-left: 3px solid var(--talent);
  padding: 36px 40px;
  margin: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.talent-highlight-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 180px;
  background: radial-gradient(circle at top right, rgba(46,204,138,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.talent-highlight-year {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 200;
  color: var(--talent);
  opacity: 0.7;
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 4px;
}

.talent-highlight-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.talent-clubs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.talent-club-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-80);
  border: 1px solid rgba(46,204,138,0.3);
  padding: 7px 16px;
  background: rgba(46,204,138,0.06);
  position: relative;
}
.talent-club-badge i {
  color: var(--talent);
  font-size: 0.7rem;
}
.talent-club-badge small {
  font-size: 0.58rem;
  color: var(--talent);
  letter-spacing: 0.15em;
  margin-left: 2px;
  opacity: 0.85;
}

.talent-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.talent-highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ivory-55);
  font-weight: 300;
  line-height: 1.6;
}
.talent-highlight-list li i {
  color: var(--talent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Coach featured card */
.coaches-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: none;
  border: none;
}
.coach-card-featured {
  border: 1px solid var(--obsidian-border);
  background: var(--obsidian-card);
}
.coach-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
}
.coach-avatar-lg {
  width: 64px; height: 64px;
  border: 1px solid rgba(46,204,138,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--talent);
  font-size: 1.4rem;
  background: rgba(46,204,138,0.07);
  flex-shrink: 0;
}

/* Coach photo */
.coach-avatar-photo {
  overflow: hidden;
  background: none;
  border-color: rgba(46,204,138,0.45);
  width: 80px; height: 80px;
}
.coach-avatar-photo .coach-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Talent Photo Gallery ── */
.talent-gallery {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid var(--obsidian-border);
}
.talent-gallery-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.talent-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.talent-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--obsidian-card);
}
.talent-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
  min-height: 200px;
}
.talent-gallery-item:hover img {
  transform: scale(1.04);
}
.talent-gallery-main {
  grid-column: 1 / -1;
}
.talent-gallery-main img {
  min-height: 340px;
  object-position: center 30%;
}
.talent-gallery-invitation img {
  object-position: center center;
}
.talent-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(8,8,10,0.85) 0%, transparent 100%);
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--talent);
  opacity: 0.9;
}

@media (max-width: 600px) {
  .talent-gallery-grid {
    grid-template-columns: 1fr;
  }
  .talent-gallery-main {
    grid-column: 1;
  }
}
.coach-info h5 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.coach-info .coach-pos { margin-bottom: 14px; }

/* Talent aside note */
.talent-aside-highlight {
  border-left: 2px solid var(--talent) !important;
  border-color: rgba(46,204,138,0.2) !important;
}
.talent-aside-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(46,204,138,0.06);
  border: 1px solid rgba(46,204,138,0.2);
  font-size: 0.8rem;
  color: var(--talent);
  font-weight: 300;
  line-height: 1.5;
}
.talent-aside-note i { font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }

/* ============================================
   Responsive — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .services-pentagon { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: auto; }
  .svc-detail-layout { grid-template-columns: 1fr; gap: 56px; }
  .svc-detail-aside { grid-row: 1; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-dropdown { min-width: 280px; }
  .why-grid          { grid-template-columns: 1fr; gap: 72px; }
  .why-visual        { aspect-ratio: auto; }
  .service-block-body { grid-template-columns: 1fr; gap: 48px; }
  .coaches-grid      { grid-template-columns: 1fr; background: none; border: none; gap: 16px; }
  .coach-card        { border: 1px solid var(--obsidian-border); }
  .selection-grid    { grid-template-columns: 1fr; gap: 12px; }
  .selection-divider-v { display: none; }
  .contact-grid      { grid-template-columns: 1fr; gap: 64px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 56px; }
  .footer-brand      { grid-column: 1 / -1; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item         { padding: 32px; border-bottom: 1px solid var(--obsidian-border); }
  .nav-container     { padding: 0 32px; }
}

/* ============================================
   Responsive — 768px
   ============================================ */
@media (max-width: 768px) {
  .top-camp-record { grid-template-columns: 1fr; gap: 16px; }
  .top-camp-year { font-size: 2rem; }
  .talent-highlight-block { grid-template-columns: 1fr; gap: 16px; }
  .talent-highlight-year { font-size: 2.4rem; }
  .coach-card-inner { grid-template-columns: 1fr; gap: 20px; }
  .services-pentagon { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 12px; }
  .svc-row-num { font-size: 3rem; }
  .svc-nav-strip .container { flex-direction: column; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    border: none;
    border-top: 1px solid var(--obsidian-border);
    background: transparent;
    backdrop-filter: none;
    display: none;
  }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown-item { padding: 12px 0; border-bottom-color: var(--obsidian-3); }
  .footer-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .section     { padding: 88px 24px; }
  .hero        { padding: 130px 24px 100px; }
  .page-hero   { padding: 150px 24px 88px; }
  .stats       { padding: 0; }
  .cta-section { padding: 88px 24px; }
  .footer      { padding: 72px 24px 44px; }

  /* Mobile nav */
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    background: var(--obsidian-3);
    border-left: 1px solid var(--obsidian-border);
    padding: 110px 44px 44px;
    gap: 4px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    color: var(--ivory-55) !important;
    padding: 13px 0;
    width: 100%;
    font-size: 0.8rem;
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin-top: 18px;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .nav-toggle { display: flex; }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 998;
  }
  .nav-overlay.open { display: block; }
  .nav-container { padding: 0 24px; }

  .services-grid-2 { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; background: none; border: none; gap: 2px; }
  .mv-card { border: 1px solid var(--obsidian-border); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .service-block-header { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* ============================================
   Responsive — 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-title  { font-size: 2.4rem; }
  .stats-grid  { grid-template-columns: 1fr; }
  .company-table th { width: 100px; padding: 18px 16px; font-size: 0.6rem; }
  .company-table td { padding: 18px 16px; font-size: 0.85rem; }
  .btn         { padding: 14px 30px; }
  .fabrica-highlight-inner { flex-direction: column; }
}

/* ============================================
   MUNDO12 — リニューアルスタイル
   ============================================ */

/* コンセプトセクション */
.mundo-concept-section { padding-top: 80px; }
.mundo-concept-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mundo-we-make-goals {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mundo);
  margin-bottom: 20px;
  opacity: 0.9;
}
.mundo-concept-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 8px;
}
.mundo-concept-sub {
  font-size: 0.85rem;
  color: var(--mundo);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.mundo-concept-lead {
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}
.mundo-concept-body {
  font-size: 0.9rem;
  color: var(--ivory-55);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 16px;
}
.mundo-concept-right { position: relative; }
.mundo-training-photo {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--obsidian-border);
}
.mundo-training-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mundo-training-photo:hover img { transform: scale(1.03); }

/* フットサルセクション */
.mundo-futsal-section {
  background: rgba(224,80,80,0.04);
  border-top: 1px solid rgba(224,80,80,0.12);
  border-bottom: 1px solid rgba(224,80,80,0.12);
}
.mundo-futsal-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mundo-futsal-eyebrow { margin-bottom: 24px; }
.mundo-futsal-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 200;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 8px;
}
.mundo-futsal-sub {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--mundo);
  opacity: 0.7;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.mundo-futsal-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.mundo-futsal-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ivory-55);
  font-weight: 400;
}
.mundo-futsal-point i {
  font-size: 1.4rem;
  color: var(--mundo);
  opacity: 0.85;
}
.mundo-futsal-body {
  font-size: 0.92rem;
  color: var(--ivory-55);
  line-height: 2.2;
  font-weight: 300;
}

/* トレーニング特徴 */
.mundo-training-header {
  text-align: center;
  margin-bottom: 48px;
}
.mundo-training-header-sub {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--ivory-55);
  opacity: 0.6;
  margin-top: 8px;
  text-transform: uppercase;
}
.mundo-training-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mundo-training-feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--obsidian-border);
  transition: background var(--t) var(--ease);
}
.mundo-training-feature:last-child { border-bottom: 1px solid var(--obsidian-border); }
.mundo-training-feature:hover { background: rgba(224,80,80,0.02); }
.mundo-feature-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 200;
  color: var(--mundo);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.mundo-feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 4px;
}
.mundo-feature-sub {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--mundo);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mundo-feature-desc {
  font-size: 0.9rem;
  color: var(--ivory-55);
  line-height: 2;
  font-weight: 300;
}

/* コーチグリッド */
.mundo-coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
}
.mundo-coach-card {
  background: var(--obsidian-card);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  overflow: hidden;
}
.mundo-coach-photo-wrap {
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.mundo-coach-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mundo-coach-card:hover .mundo-coach-photo { transform: scale(1.04); }
.mundo-coach-info {
  padding: 40px 36px;
}
.mundo-coach-badge {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mundo);
  opacity: 0.85;
  margin-bottom: 14px;
  line-height: 1.6;
}
.mundo-coach-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 4px;
}
.mundo-coach-name-ja {
  font-size: 0.85rem;
  color: var(--ivory-55);
  margin-bottom: 4px;
  font-weight: 300;
}
.mundo-coach-origin {
  font-size: 0.78rem;
  color: var(--ivory-55);
  opacity: 0.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.mundo-coach-desc {
  font-size: 0.88rem;
  color: var(--ivory-55);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
}
.mundo-coach-titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--obsidian-border);
  padding-top: 20px;
}
.mundo-coach-title-item {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--ivory-55);
  align-items: flex-start;
  line-height: 1.5;
}
.mundo-title-year {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--mundo);
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 1px;
  min-width: 48px;
}

/* スクール情報 */
.mundo-school-section { background: rgba(0,0,0,0.2); }
.mundo-school-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--obsidian-border);
  border: 1px solid var(--obsidian-border);
  margin-bottom: 40px;
}
.mundo-school-card {
  background: var(--obsidian-card);
  padding: 36px 32px;
}
.mundo-school-icon {
  font-size: 1.4rem;
  color: var(--mundo);
  opacity: 0.7;
  margin-bottom: 16px;
}
.mundo-school-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 18px;
}
.mundo-school-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mundo-school-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  color: var(--ivory-55);
}
.mundo-school-list strong {
  color: var(--ivory);
  font-weight: 400;
}
.mundo-school-label {
  font-family: var(--font-label);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mundo);
  opacity: 0.8;
}
.mundo-school-steps {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mundo-school-steps li {
  font-size: 0.82rem;
  color: var(--ivory-55);
  line-height: 1.6;
}
.mundo-school-cta {
  text-align: center;
  padding: 48px 0 8px;
}
.mundo-school-cta p {
  font-size: 0.9rem;
  color: var(--ivory-55);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.mundo-school-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .mundo-concept-wrap { grid-template-columns: 1fr; gap: 40px; }
  .mundo-coaches-grid { grid-template-columns: 1fr; }
  .mundo-school-grid { grid-template-columns: 1fr 1fr; }
  .mundo-coach-card { grid-template-columns: 180px 1fr; }
}
@media (max-width: 768px) {
  .mundo-futsal-points { gap: 24px; }
  .mundo-training-feature { grid-template-columns: 56px 1fr; gap: 24px; }
  .mundo-feature-num { font-size: 2.2rem; }
  .mundo-coach-card { grid-template-columns: 1fr; }
  .mundo-coach-photo-wrap { min-height: 260px; height: 260px; }
  .mundo-school-grid { grid-template-columns: 1fr; }
}
