/* ======================
   Variables
   ====================== */
:root {
  --bg: #080808;
  --bg2: #0D0D0D;
  --bg3: #111111;
  --cream: #F5EFE0;
  --gold: #C4922A;
  --gold-l: #E8B85A;
  --gold-dim: rgba(196, 146, 42, 0.12);
  --text: #E0D8C8;
  --text-dim: rgba(224, 216, 200, 0.48);
  --border: rgba(196, 146, 42, 0.18);
  --serif: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --sans: 'Inter', 'Hiragino Kaku Gothic ProN', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ======================
   Reset
   ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ======================
   Custom Cursor
   ====================== */
@media (pointer: fine) {
  body, a, button { cursor: none; }
}
.cursor {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  will-change: left, top;
}
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor.active {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
}

/* ======================
   Opening Animation
   ====================== */
.opening {
  position: fixed;
  inset: 0;
  background: #040404;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.op-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a1200 0%, #040404 70%);
}
.op-h-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: translate(-50%, -50%);
  animation: hLine 1s 0.2s var(--ease-out) forwards;
}
@keyframes hLine { to { width: 80%; } }
.op-buildings {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.op-building {
  opacity: 0;
  background: linear-gradient(to top, var(--gold) 0%, rgba(196,146,42,0.15) 100%);
  animation: bRise 0.7s var(--ease-out) forwards;
}
.b1 { width: 36px; --h: 100px; animation-delay: 0.4s; }
.b2 { width: 48px; --h: 160px; animation-delay: 0.55s; }
.b3 { width: 62px; --h: 230px; animation-delay: 0.7s; }
.b4 { width: 48px; --h: 150px; animation-delay: 0.85s; }
.b5 { width: 36px; --h: 90px; animation-delay: 1s; }
@keyframes bRise { to { height: var(--h); opacity: 0.55; } }
.op-brand {
  position: relative;
  z-index: 2;
  text-align: center;
}
.op-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--gold);
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s 1.1s var(--ease-out) forwards;
}
.op-en {
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  letter-spacing: 0.35em;
  color: var(--text-dim);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s 1.4s var(--ease-out) forwards;
}
.op-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s 1.7s var(--ease-out) forwards;
}
.op-skip {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  padding: 8px 18px;
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.5s 1.4s forwards;
  transition: color 0.3s, border-color 0.3s;
}
.op-skip:hover { color: var(--gold); border-color: var(--gold); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
.opening.exit {
  animation: opOut 0.9s var(--ease) forwards;
}
@keyframes opOut { to { opacity: 0; transform: translateY(-24px); pointer-events: none; } }

/* ======================
   Navigation
   ====================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.6s, padding 0.4s, background 0.4s, border-color 0.4s;
}
.nav.visible { opacity: 1; }
.nav.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 52px;
  border-color: var(--border);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  padding: 10px 26px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ======================
   Hero
   ====================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  gap: 60px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-eyebrow.revealed { opacity: 1; transform: translateY(0); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
}
.h1-line {
  display: block;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.h1-line.revealed { opacity: 1; transform: translateY(0); }
.hero-name {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  font-weight: 400;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.hero-name.revealed { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.hero-actions.revealed { opacity: 1; transform: translateY(0); }
.btn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid var(--text-dim);
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-2px); }
.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-skyline {
  width: 100%;
  max-width: 420px;
  animation: skyFloat 7s ease-in-out infinite;
  will-change: transform;
}
.skyline-svg { width: 100%; height: auto; }
@keyframes skyFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ======================
   Marquee
   ====================== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: marqueeRun 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--text-dim);
}
.marquee-track .mdot { color: var(--gold); }
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======================
   Zigzag Sections
   ====================== */
.zz-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
  overflow: hidden;
}
.zz-left  .zz-visual  { order: 1; }
.zz-left  .zz-content { order: 2; }
.zz-right .zz-visual  { order: 2; }
.zz-right .zz-content { order: 1; }
.zz-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}
.zz-visual-about    { background: var(--bg2); }
.zz-visual-services { background: var(--bg3); }
.zz-visual-philosophy { background: var(--bg2); }
.zz-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.zz-left  .zz-content { transform: translateX(-64px); }
.zz-right .zz-content { transform: translateX(64px); }
.zz-content.revealed  { opacity: 1; transform: translateX(0) !important; }
.section-num {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.zz-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.zz-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 28px;
}
.zz-body p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.zz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.zz-tags span {
  padding: 6px 16px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  transition: border-color 0.3s, color 0.3s;
}
.zz-tags span:hover { border-color: var(--gold); color: var(--gold); }
.zz-quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  line-height: 1.9;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0;
}
.zz-body-text {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* About visual */
.about-frame {
  position: relative;
  width: 260px;
  height: 320px;
}
.about-avatar {
  width: 100%;
  height: 100%;
  background: #181818;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 0;
}
.about-frame-deco {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: -1;
}
.about-frame-deco2 {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
}

/* Services visual */
.geo-wrap {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo {
  position: absolute;
  border: 1px solid var(--gold);
}
.g1 { width: 220px; height: 220px; opacity: 0.28; animation: spinSlow 14s linear infinite; }
.g2 { width: 148px; height: 148px; opacity: 0.22; animation: spinSlow 9s linear infinite reverse; }
.g3 { width: 80px; height: 80px; opacity: 0.4; background: var(--gold-dim); animation: pulseSlow 3.5s ease-in-out infinite; }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseSlow { 0%,100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.12); } }
.geo-dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 84px;
  height: 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.geo-dots div {
  background: var(--gold);
  opacity: 0.15;
  animation: dotPulse 2.2s ease-in-out infinite;
}
.geo-dots div:nth-child(2) { animation-delay: 0.2s; }
.geo-dots div:nth-child(3) { animation-delay: 0.4s; }
.geo-dots div:nth-child(4) { animation-delay: 0.15s; }
.geo-dots div:nth-child(5) { animation-delay: 0.3s; opacity: 0.45; }
.geo-dots div:nth-child(6) { animation-delay: 0.5s; }
.geo-dots div:nth-child(7) { animation-delay: 0.25s; }
.geo-dots div:nth-child(8) { animation-delay: 0.45s; }
.geo-dots div:nth-child(9) { animation-delay: 0.65s; }
@keyframes dotPulse { 0%,100% { opacity: 0.1; } 50% { opacity: 0.5; } }

/* Service list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.sv-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.sv-item:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateX(6px);
}
.sv-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--gold); }
.sv-text strong { display: block; font-size: 0.95rem; color: var(--cream); margin-bottom: 3px; }
.sv-text p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* Philosophy visual */
.ph-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.ph-quote-mark {
  position: absolute;
  font-family: var(--serif);
  font-size: 22rem;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  user-select: none;
}
.ph-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
}
.ph-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: lineGlow 3.5s ease-in-out infinite;
}
.ph-line:nth-child(2) { animation-delay: 1.2s; }
.ph-line:nth-child(3) { animation-delay: 2.4s; }
@keyframes lineGlow { 0%,100% { opacity: 0.25; } 50% { opacity: 0.75; } }

/* ======================
   Stats
   ====================== */
.stats-section {
  background: var(--bg2);
  padding: 80px 52px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.stat-item.revealed { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-unit { font-size: clamp(1rem, 2vw, 1.6rem); margin-left: 2px; }
.stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

/* ======================
   Horizontal Scroll
   ====================== */
.h-scroll-wrap {
  height: 400vh;
  position: relative;
  background: #060606;
}
.h-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding: 60px 0 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h-scroll-header {
  margin-bottom: 44px;
}
.h-scroll-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin: 8px 0 6px;
}
.h-scroll-hint {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--text-dim);
}
.h-scroll-cards {
  display: flex;
  gap: 28px;
  will-change: transform;
  width: max-content;
  padding-right: 60px;
}
.h-card {
  width: 360px;
  flex-shrink: 0;
  padding: 48px 44px;
  border: 1px solid var(--border);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.h-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.h-card:hover::before { transform: scaleX(1); }
.h-card:hover { border-color: var(--gold); transform: translateY(-8px); }
.h-card-num {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: 22px;
}
.h-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.h-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.h-card-tag {
  margin-top: 36px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ======================
   Contact
   ====================== */
.contact-section {
  position: relative;
  padding: 120px 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-bg-deco {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.contact-bg-deco svg { height: 100%; width: auto; }
.contact-inner {
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 22px;
  margin-top: 14px;
}
.contact-sub {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 44px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: #00B900;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: opacity 0.3s, transform 0.3s;
}
.cta-line:hover { opacity: 0.85; transform: translateY(-3px); }
.cta-email {
  display: inline-flex;
  align-items: center;
  padding: 16px 34px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.cta-email:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-3px); }

/* ======================
   Footer
   ====================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 0 52px;
  background: var(--bg2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 0;
  gap: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
}
.footer-info p, .footer-info a {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 2;
  display: block;
}
.footer-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ======================
   Floating LINE
   ====================== */
.float-line {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: #00B900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 300;
  box-shadow: 0 4px 24px rgba(0, 185, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.3s;
  pointer-events: none;
}
.float-line.visible { opacity: 1; transform: scale(1); pointer-events: all; }
.float-line:hover { box-shadow: 0 8px 32px rgba(0, 185, 0, 0.45); transform: scale(1.1); }

/* ======================
   Responsive
   ====================== */
@media (max-width: 960px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-content { grid-template-columns: 1fr; padding: 0 24px; text-align: center; }
  .hero-right { display: none; }
  .hero-actions { justify-content: center; }

  .zz-section { grid-template-columns: 1fr; min-height: auto; }
  .zz-left  .zz-visual,
  .zz-right .zz-visual { order: 1; min-height: 260px; }
  .zz-left  .zz-content,
  .zz-right .zz-content { order: 2; padding: 48px 28px; transform: translateY(40px) !important; }
  .zz-content.revealed { transform: translateY(0) !important; }

  .stats-section { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .h-scroll-wrap { height: auto; }
  .h-scroll-sticky { position: relative; height: auto; overflow-x: auto; padding: 60px 24px; }
  .h-scroll-cards { width: 100%; overflow-x: auto; padding-right: 24px; }
  .h-card { width: 280px; padding: 36px 28px; }

  .contact-section { padding: 80px 24px; }
  .contact-bg-deco { display: none; }

  .footer { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}
