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

:root {
  --black:      #0a0a0a;
  --black-soft: #111110;
  --white:      #faf9f6;
  --gold:       #b89a5a;
  --gold-light: #d4b87a;
  --gold-dim:   rgba(184,154,90,0.12);
  --gray-mid:   #6b6560;
  --gray-light: #e8e4de;
  --gray-pale:  #f4f1ec;
  --serif-en: 'Cormorant Garamond', serif;
  --sans:     'Zen Kaku Gothic New', sans-serif;
  --serif-jp: 'Noto Serif JP', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.5s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.5px solid rgba(184,154,90,0.15);
}

.nav-logo {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--serif-en);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.6);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-contact {
  font-family: var(--serif-en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 0.5px solid rgba(184,154,90,0.5);
  padding: 0.5rem 1.2rem;
  transition: background 0.3s, border-color 0.3s !important;
}
.nav-contact:hover {
  background: var(--gold-dim);
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}
.nav-contact::after { display: none !important; }

/* ハンバーガー（モバイル） */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: rgba(250,249,246,0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,154,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,154,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(184,154,90,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(7rem, 14vw, 11rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}
.hero-emblem {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin-bottom: 3rem;
  opacity: 0; animation: fadeSlideDown 1s ease 0.2s forwards;
}
.hero-sub-top {
  font-family: var(--serif-en);
  font-weight: 300; font-style: italic;
  font-size: clamp(0.65rem, 1.1vw, 0.82rem);
  letter-spacing: 0.22em; color: var(--gold);
  margin-bottom: 2.2rem;
  opacity: 0; animation: fadeIn 1s ease 0.5s forwards;
}
.hero-main {
  font-family: var(--serif-jp);
  font-weight: 200;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.15; letter-spacing: 0.12em;
  margin-bottom: 2.8rem;
  opacity: 0; animation: fadeSlideUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}
.hero-main .char-accent { color: var(--gold-light); }
.hero-divider {
  width: 40px; height: 1px;
  background: var(--gold); margin: 0 auto 2.8rem;
  opacity: 0; animation: fadeIn 0.8s ease 1.4s forwards;
}
.hero-body {
  font-family: var(--serif-jp); font-weight: 300;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  line-height: 2.2; letter-spacing: 0.08em;
  color: rgba(250,249,246,0.62);
  max-width: 480px; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.6s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--serif-en); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(184,154,90,0.3);
  padding-bottom: 0.4rem;
  transition: all 0.4s ease;
  opacity: 0; animation: fadeIn 0.8s ease 2s forwards;
}
.hero-cta::after {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--gold); transition: width 0.4s ease;
}
.hero-cta:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.hero-cta:hover::after { width: 36px; }
.hero-scroll {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; padding-bottom: 2.5rem;
  opacity: 0; animation: fadeIn 1s ease 2.4s forwards;
}
.hero-scroll span {
  font-family: var(--serif-en); font-size: 0.6rem;
  letter-spacing: 0.3em; color: var(--gray-mid); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
  animation: scrollPulse 2s ease-in-out 3s infinite;
}

/* ══════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--serif-en); font-size: 0.68rem;
  letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold);
}
.section-title-lg {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.06em; line-height: 1.4;
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   NUMBERS
══════════════════════════════════════ */

.numbers {
  background: var(--white);
  color: var(--black);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: 'LUCA in Numbers';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--serif-en);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(10, 10, 10, 0.1);
  text-transform: uppercase;
  white-space: nowrap;
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.numbers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  gap: 2rem;
  flex-wrap: wrap;
}

.numbers-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 2;
  color: var(--gray-mid);
  max-width: 260px;
  text-align: right;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
}

.num-card {
  background: var(--white);
  min-height: 300px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}

.num-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.num-card:hover {
  background: #fdfcf8;
}

.num-card:hover::after {
  width: 100%;
}

.num-card.featured {
  grid-column: span 1;
  background: var(--black);
  display: block;
}

.num-card.featured::after {
  background: var(--gold-light);
}

.num-label {
  font-family: var(--serif-en);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.num-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.num-value {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 1;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.num-card.featured .num-value {
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
}

.num-unit {
  font-family: var(--serif-jp);
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  font-weight: 300;
}

.num-card.featured .num-unit {
  color: rgba(250, 249, 246, 0.45);
}

.featured-desc,
.num-desc {
  margin-top: 1.6rem;
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
  max-width: none;
  padding-bottom: 0;
}

.num-card.featured .featured-desc,
.num-card.featured .num-desc {
  color: rgba(250, 249, 246, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .num-card {
    min-height: 280px;
  }
}

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

  .numbers-desc {
    text-align: left;
  }

  .numbers::before {
    display: none;
  }

  .num-card {
    min-height: auto;
  }
}

/* ══════════════════════════════════════
   MISSION
══════════════════════════════════════ */
.mission {
  background: var(--black-soft);
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(184,154,90,0.03), transparent);
  pointer-events: none;
}
.mission-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem); align-items: center;
}
.mission-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.mission-circle {
  width: clamp(240px, 35vw, 380px);
  height: clamp(240px, 35vw, 380px);
  border: 0.5px solid rgba(184,154,90,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mission-circle::before {
  content: '';
  position: absolute; inset: 16px;
  border: 0.5px solid rgba(184,154,90,0.12);
  border-radius: 50%;
}
.mission-circle-text {
  font-family: var(--serif-en); font-size: 0.6rem;
  letter-spacing: 0.35em; color: var(--gold);
  text-transform: uppercase; text-align: center;
  line-height: 2.2;
}
.mission-orbit {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  top: -4px; left: 50%;
  transform-origin: 0 calc(clamp(120px, 17.5vw, 190px) + 4px);
  animation: orbit 8s linear infinite;
}
.mission-content { }
.mission-quote {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.8; letter-spacing: 0.05em;
  color: var(--white); margin: 1.8rem 0 2.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(184,154,90,0.4);
}
.mission-body {
  font-family: var(--serif-jp); font-weight: 300;
  font-size: 0.85rem; line-height: 2.4;
  color: rgba(250,249,246,0.55);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   SERVICE
══════════════════════════════════════ */
.service {
  background: var(--gray-pale); color: var(--black);
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 6vw, 5rem);
}
.service-inner { max-width: 1100px; margin: 0 auto; }
.service-header { margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.service-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.service-card {
  background: var(--white);
  border: 0.5px solid var(--gray-light);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: var(--serif-en); font-weight: 300;
  font-size: 3.5rem; line-height: 1;
  color: rgba(10,10,10,0.06);
  position: absolute; top: 1.5rem; right: 2rem;
  letter-spacing: -0.05em;
}
.service-tag {
  font-family: var(--serif-en); font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.service-tag::before {
  content: ''; display: block; width: 12px; height: 1px; background: var(--gold);
}
.service-name {
  font-family: var(--serif-jp); font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.05em; color: var(--black);
  margin-bottom: 1.5rem; line-height: 1.4;
}
.service-desc {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.82rem; line-height: 2.1;
  color: var(--gray-mid); margin-bottom: 2.5rem;
}
.service-points {
  list-style: none; display: flex;
  flex-direction: column; gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.service-points li {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.78rem; color: #444;
  display: flex; align-items: flex-start; gap: 0.8rem;
  letter-spacing: 0.02em; line-height: 1.7;
}
.service-points li::before {
  content: ''; display: block;
  width: 14px; height: 1px; background: var(--gold);
  margin-top: 0.6em; flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--serif-en); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid rgba(10,10,10,0.2);
  padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
}
.service-link::after {
  content: ''; display: block; width: 16px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.service-link:hover { color: var(--gold); border-color: var(--gold); }
.service-link:hover::after { width: 28px; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center; position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(184,154,90,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.contact-headline {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: 0.06em; line-height: 1.5;
  margin: 1.5rem 0 2rem;
}
.contact-sub {
  font-family: var(--serif-jp); font-weight: 300;
  font-size: 0.85rem; line-height: 2.3;
  color: rgba(250,249,246,0.5); margin-bottom: 3.5rem;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 1.2rem;
  font-family: var(--serif-en); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  background: var(--gold); padding: 1.1rem 3rem;
  transition: background 0.3s, letter-spacing 0.3s;
}
.contact-btn::after {
  content: ''; display: block; width: 16px; height: 1px;
  background: var(--black); transition: width 0.3s;
}
.contact-btn:hover { background: var(--gold-light); letter-spacing: 0.35em; }
.contact-btn:hover::after { width: 26px; }
.contact-info {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
}
.contact-item {
  display: flex; flex-direction: column; gap: 0.4rem;
  align-items: center;
}
.contact-item-label {
  font-family: var(--serif-en);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 154, 90, 0.9);
  margin-bottom: 1rem;
}

.contact-item-val {
  font-family: var(--serif-jp);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: rgba(250, 249, 246, 0.78);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #050504;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 0.5px solid rgba(184,154,90,0.15);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--serif-en); font-weight: 300;
  font-size: 1.3rem; letter-spacing: 0.25em; color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-family: var(--serif-en); font-size: 0.6rem;
  letter-spacing: 0.2em; color: rgba(250,249,246,0.3);
}
.footer-nav {
  display: flex; gap: 2rem; list-style: none;
}
.footer-nav a {
  font-family: var(--serif-en); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,249,246,0.35); text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-logo a {
  color: inherit;
  text-decoration: none;
}

.footer-logo a span {
  color: var(--gold);
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeIn       { from{opacity:0}       to{opacity:1} }
@keyframes fadeSlideUp  { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes fadeSlideDown{ from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes scrollPulse  { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.3)} }
@keyframes orbit        { from{transform:rotate(0deg) translateY(calc(-1 * (clamp(120px, 17.5vw, 190px) + 4px)))} to{transform:rotate(360deg) translateY(calc(-1 * (clamp(120px, 17.5vw, 190px) + 4px)))} }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .num-card.featured { grid-column: span 2; }
  .mission-inner { grid-template-columns: 1fr; }
  .mission-visual { display: none; }
  .service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num-card.featured { grid-column: span 1; }
  .numbers-desc { text-align: left; }
  .numbers::before { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.luca-contact-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding-top: 120px;
}

.luca-contact-hero {
  padding: 40px 24px 20px;
}

.luca-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.luca-contact-title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
}

.luca-contact-lead {
  font-family: var(--serif-jp);
  font-size: 1rem;
  line-height: 1.9;
  color: #fff;
  margin: 0;
}

.luca-contact-form-section {
  padding: 24px 24px 100px;
}

.luca-contact-form-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: #111;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  box-sizing: border-box;
}

.luca-contact-form-wrap .wpcf7 {
  width: 100%;
}

.luca-contact-form-wrap .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.luca-contact-form-wrap .wpcf7 p {
  margin: 0;
}

.luca-contact-form-wrap .wpcf7 label {
  display: block;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
}

.luca-contact-form-wrap .wpcf7 .item {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.luca-contact-form-wrap .wpcf7 .required {
  display: inline-block;
  background: #b89a5a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  padding: 6px 10px;
  vertical-align: middle;
}

.luca-contact-form-wrap .wpcf7 input[type="text"],
.luca-contact-form-wrap .wpcf7 input[type="email"],
.luca-contact-form-wrap .wpcf7 input[type="tel"],
.luca-contact-form-wrap .wpcf7 textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
}

.luca-contact-form-wrap .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.luca-contact-form-wrap .wpcf7 input:focus,
.luca-contact-form-wrap .wpcf7 textarea:focus {
  outline: none;
  border-color: #b89a5a;
  box-shadow: 0 0 0 2px rgba(184,154,90,0.15);
}

.luca-contact-form-wrap .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 54px;
  margin-top: 8px;
  border: 1px solid #b89a5a;
  background: #b89a5a;
  color: #fff;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.luca-contact-form-wrap .wpcf7 input[type="submit"]:hover {
  background: transparent;
  color: #b89a5a;
}

.luca-contact-form-wrap .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ff8f8f;
  font-size: 12px;
}

.luca-contact-form-wrap .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 14px 16px !important;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2) !important;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .luca-contact-page {
    padding-top: 100px;
  }

  .luca-contact-hero {
    padding: 24px 16px 12px;
  }

  .luca-contact-form-section {
    padding: 16px 16px 64px;
  }

  .luca-contact-form-wrap {
    padding: 24px 16px;
  }

  .luca-contact-form-wrap .wpcf7 input[type="submit"] {
    width: 100%;
  }
}
.luca-contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 154, 90, 0.22);
}

.luca-contact-form-wrap .wpcf7 input[type="text"],
.luca-contact-form-wrap .wpcf7 input[type="email"],
.luca-contact-form-wrap .wpcf7 input[type="tel"],
.luca-contact-form-wrap .wpcf7 textarea {
  background: #f1eee8;
  color: #111111;
  border: 1px solid rgba(184, 154, 90, 0.35);
}

.luca-contact-form-wrap .wpcf7 input[type="text"]::placeholder,
.luca-contact-form-wrap .wpcf7 input[type="email"]::placeholder,
.luca-contact-form-wrap .wpcf7 input[type="tel"]::placeholder,
.luca-contact-form-wrap .wpcf7 textarea::placeholder {
  color: rgba(17, 17, 17, 0.35);
}

.luca-contact-form-wrap .wpcf7 input[type="text"]:focus,
.luca-contact-form-wrap .wpcf7 input[type="email"]:focus,
.luca-contact-form-wrap .wpcf7 input[type="tel"]:focus,
.luca-contact-form-wrap .wpcf7 textarea:focus {
  background: #faf9f6;
  color: #111111;
  border-color: #b89a5a;
  box-shadow: 0 0 0 2px rgba(184, 154, 90, 0.18);
}
/* ══════════════════════════════════════
   OFFICIAL STORES
══════════════════════════════════════ */

.stores {
  background: var(--black);
  color: var(--white);
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.stores::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,154,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,154,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.stores-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.stores-lead {
  margin-top: 1.5rem;
  max-width: 520px;
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: rgba(250,249,246,0.55);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: rgba(184,154,90,0.25);
  border: 1px solid rgba(184,154,90,0.25);
}

.store-card {
  min-height: 240px;
  background: rgba(10,10,10,0.92);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.store-card:hover {
  background: #111;
  transform: translateY(-3px);
}

.store-card:hover::before {
  height: 100%;
}

.store-name {
  font-family: var(--serif-en);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--white);
}

.store-label {
  margin-top: 0.7rem;
  font-family: var(--serif-jp);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(250,249,246,0.5);
}

.store-arrow {
  margin-top: 2.5rem;
  font-family: var(--serif-en);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.store-arrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.store-card:hover .store-arrow::after {
  width: 36px;
}

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

  .store-card {
    min-height: 180px;
  }
}
/* ══════════════════════════════════════
  Language Switch
══════════════════════════════════════ */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--serif-en);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(250,249,246,0.45);
}

.lang-switch a {
  color: rgba(250,249,246,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--gold);
}

.lang-switch span {
  color: rgba(250,249,246,0.25);
}
/* Language switch weight adjust */

.lang-switch,
.lang-switch a,
.lang-switch span {
  font-weight: 600;
}

.lang-switch a {
  opacity: 0.9;
}

.lang-switch a.active {
  font-weight: 700;
}
/* Language switch */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--serif-en);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(250,249,246,0.45);
}

.lang-switch a {
  color: rgba(250,249,246,0.55);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--gold);
  font-weight: 700;
}

.lang-switch span {
  color: rgba(250,249,246,0.25);
  font-weight: 600;
}

.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--serif-en);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.mobile-lang-switch a {
  color: rgba(250,249,246,0.65);
  text-decoration: none;
  font-weight: 600;
}

.mobile-lang-switch a.active {
  color: var(--gold);
  font-weight: 700;
}

.mobile-lang-switch span {
  color: rgba(250,249,246,0.3);
}


/* ══════════════════════════════════════
   COMPANY PROFILE
══════════════════════════════════════ */

.company-profile {
  margin-top: 3.5rem;
  padding-top: 2.6rem;
  border-top: 1px solid rgba(184, 154, 90, 0.22);
}

.company-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.4rem;
  max-width: 1050px;
  margin: 0 auto;
}

.company-profile-item {
  text-align: center;
  padding: 1.1rem 0.8rem;
}

.company-profile-label {
  display: block;
  font-family: var(--serif-en);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: rgba(184, 154, 90, 0.9);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.company-profile-value {
  display: block;
  font-family: var(--serif-jp);
  font-size: 0.82rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(250, 249, 246, 0.78);
}

@media (max-width: 900px) {
  .company-profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1.6rem;
  }
}

@media (max-width: 600px) {
  .company-profile {
    margin-top: 3rem;
    padding-top: 2.2rem;
  }

  .company-profile-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .company-profile-item {
    text-align: center;
    padding: 0.8rem 0;
  }

  .company-profile-value {
    font-size: 0.78rem;
    line-height: 1.9;
  }
}