/* =========================================================
   Goldmorr KYOTO - Takumi Service LP
   根こそぎカビ除去システム / Sophisticated Gold × Deep Green
   ========================================================= */

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

:root {
  /* Brand tokens: Gold × Deep Green */
  --c-primary: #c8a25a;          /* Goldmorr gold */
  --c-primary-dark: #8a6f3a;
  --c-primary-light: #f0e4c5;
  --c-primary-glow: #f5d68a;     /* Bright gold for accents on dark */
  --c-accent: #1f5944;           /* Deep forest green */
  --c-accent-dark: #0e3525;
  --c-accent-light: #4a8a72;
  --c-corp: #2a1f12;             /* Deep brown corporate */
  --c-corp-dark: #1a130a;
  --c-warn: #b85844;             /* Warning red for mold problem mark */

  --c-bg: #faf7ef;               /* Warm off-white */
  --c-bg-alt: #f1ead8;
  --c-bg-soft: #f5efe0;
  --c-bg-dark: #0a1410;          /* Near-black green */
  --c-bg-darker: #060d0a;
  --c-text: #1a1f1c;
  --c-text-soft: #4a5751;
  --c-text-muted: #8b9590;
  --c-border: #e8e0c8;
  --c-white: #ffffff;

  --grad-primary: linear-gradient(135deg, #d9b977 0%, #c8a25a 50%, #8a6f3a 100%);
  --grad-primary-bright: linear-gradient(135deg, #f5d68a 0%, #d9b977 50%, #c8a25a 100%);
  --grad-accent: linear-gradient(135deg, #2d7359 0%, #1f5944 50%, #0e3525 100%);
  --grad-mix: linear-gradient(135deg, #c8a25a 0%, #8aa48a 45%, #1f5944 100%);
  --grad-corp: linear-gradient(135deg, #1f5944 0%, #0e3525 50%, #2a1f12 100%);
  --grad-gold-text: linear-gradient(135deg, #f5d68a 0%, #d9b977 40%, #c8a25a 100%);

  --shadow-sm: 0 2px 8px rgba(20, 30, 24, 0.08);
  --shadow-md: 0 12px 32px rgba(20, 30, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 30, 24, 0.16);
  --shadow-gold: 0 14px 30px rgba(200, 162, 90, 0.32);

  --ff-en: "Outfit", system-ui, -apple-system, sans-serif;
  --ff-display: "Cormorant Garamond", "Noto Serif JP", serif;
  --ff-jp: "Noto Sans JP", system-ui, -apple-system, sans-serif;

  --container-max: 1200px;
  --header-h: 78px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 400;
  font-feature-settings: "palt" 1;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* -------- Visually hidden (screen reader / SEO H1 support) -------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------- Skip link -------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--c-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 1000;
  font-size: 0.85rem;
}
.skip-link:focus {
  top: 8px;
}

.container {
  width: min(100% - 32px, var(--container-max));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease,
    background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e2c47e 0%, #b8924a 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(200, 162, 90, 0.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(245, 214, 138, 0.55);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(245, 214, 138, 0.16);
  border-color: var(--c-primary-glow);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--c-accent-dark);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-light:hover svg { transform: translateX(4px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--c-accent-dark);
}
.btn-lg { padding: 20px 40px; font-size: 1.05rem; }

/* -------- Header -------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(10, 20, 16, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(245, 214, 138, 0.08);
}
.site-header.scrolled {
  background: rgba(255, 252, 245, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.site-header.scrolled .logo { color: var(--c-corp); }
.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}
.logo-jp {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.site-nav ul {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}
.site-nav a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-primary-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-header.scrolled .site-nav a { color: var(--c-text); }
.site-header.scrolled .site-nav a:hover { color: var(--c-primary-dark); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header-tel svg { width: 16px; height: 16px; }
.tel-text { display: flex; flex-direction: column; line-height: 1.1; }
.tel-number {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.site-header.scrolled .header-tel { color: var(--c-corp); }
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease-out-expo);
}
.header-contact-btn svg { width: 12px; height: 12px; }
.header-contact-btn:hover { transform: translateY(-2px); }
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
}
.site-header.scrolled .hamburger span { background: var(--c-text); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
  .header-inner { padding: 0 16px; }
  .site-nav ul { gap: 14px; }
  .site-nav a { font-size: 0.78rem; }
}
@media (max-width: 1080px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.open ul { flex-direction: column; gap: 0; }
  .site-nav.open a {
    color: var(--c-text) !important;
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.95rem;
  }
  .hamburger { display: flex; }
}
@media (max-width: 720px) {
  .header-tel .tel-text { display: none; }
  .header-contact-btn span { display: none; }
  .header-contact-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
  }
  .header-contact-btn svg { width: 14px; height: 14px; }
  .logo-jp { font-size: 0.92rem; }
}
@media (max-width: 380px) {
  .logo-mark { width: 32px; height: 32px; }
  .logo-jp { font-size: 0.82rem; }
}

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: clamp(720px, 100vh, 1100px);
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-bg-dark);
}
/* Base SVG underlay - always visible as fallback */
.hero-bg-image-base {
  filter: brightness(0.55) saturate(1.05);
  animation: heroBgPulse 32s var(--ease-in-out) infinite alternate;
  z-index: 0;
}
/* Photo layer - real mold-removal footage, faintly visible */
.hero-bg-image-photo {
  filter: brightness(0.28) saturate(0.78) contrast(1.08);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: heroBgPulse 38s var(--ease-in-out) infinite alternate;
}
.hero-bg-image-alt {
  z-index: 2;
  opacity: 0;
  animation: heroBgPulse 42s var(--ease-in-out) infinite alternate-reverse, heroPhotoCrossfade 24s ease-in-out infinite;
}
@keyframes heroBgPulse {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}
@keyframes heroPhotoCrossfade {
  0%, 45%, 100% { opacity: 0; }
  55%, 90% { opacity: 0.72; }
}
.hero-bg-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 22%, rgba(200, 162, 90, 0.32), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(31, 89, 68, 0.42), transparent 55%),
    linear-gradient(135deg, rgba(8, 18, 14, 0.78) 0%, rgba(14, 53, 37, 0.55) 50%, rgba(20, 30, 16, 0.78) 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.05) 0%, rgba(8, 18, 14, 0.55) 100%),
    repeating-linear-gradient(120deg, rgba(245, 214, 138, 0.018) 0 1px, transparent 1px 8px);
}
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--container-max));
  margin: 0 auto;
  padding: 32px 0 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-en);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: rgba(240, 228, 197, 0.8);
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-primary-glow), transparent);
}
.hero-title { margin: 0 0 32px; font-weight: 900; position: relative; }
/* Eyebrow English subtitle entrance */
.hero-title-en {
  opacity: 0;
  transform: translateY(8px);
  animation: heroEyebrowIn 1.0s var(--ease-out-expo) 0.2s forwards;
}
@keyframes heroEyebrowIn {
  to { opacity: 0.9; transform: translateY(0); }
}
.hero-title-en {
  display: block;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  letter-spacing: 0.06em;
  color: var(--c-primary-light);
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-title-en sup { font-size: 0.6em; margin-left: 2px; }
.hero-title-main {
  display: block;
  font-size: clamp(1.85rem, 6.4vw, 5.2rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  position: relative;
}
.hero-title-main .line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  animation: heroLineIn 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  will-change: transform, opacity, filter;
}
.hero-title-main .line-1 { animation-delay: 0.45s; }
.hero-title-main .line-2 { animation-delay: 0.75s; }
@keyframes heroLineIn {
  0%   { opacity: 0; transform: translateY(28px); filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Light sweep across the entire catchphrase */
.hero-title-sweep {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -20%;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(245, 214, 138, 0.06) 30%,
    rgba(245, 214, 138, 0.22) 50%,
    rgba(245, 214, 138, 0.06) 70%,
    transparent 100%);
  filter: blur(8px);
  transform: skewX(-18deg);
  animation: heroSweep 6.5s ease-in-out 2.2s infinite;
  opacity: 0;
}
@keyframes heroSweep {
  0%   { left: -25%; opacity: 0; }
  10%  { opacity: 1; }
  60%  { opacity: 1; }
  75%  { opacity: 0; }
  100% { left: 115%; opacity: 0; }
}
.hero-title-main .accent {
  background: linear-gradient(110deg,
    #8a6f3a 0%,
    #c8a25a 18%,
    #d9b977 32%,
    #f5d68a 44%,
    #ffffff 50%,
    #f5d68a 56%,
    #d9b977 68%,
    #c8a25a 82%,
    #8a6f3a 100%);
  background-size: 220% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: shimmerSweep 5.2s ease-in-out 1.4s infinite;
  text-shadow: 0 0 24px rgba(245, 214, 138, 0.18);
}
@keyframes shimmerSweep {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: -100% 50%; }
}
.hero-title-main .accent::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5d68a, transparent);
  border-radius: 2px;
  transform-origin: left center;
  animation: accentUnderline 1.0s cubic-bezier(0.19, 1, 0.22, 1) 0.95s both;
}
@keyframes accentUnderline {
  0%   { transform: scaleX(0); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.85; }
}
.hero-title-main .accent2 {
  background: linear-gradient(135deg, #ffffff 0%, #f0e4c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: accent2Pulse 4.2s ease-in-out 2.2s infinite;
  text-shadow: 0 0 30px rgba(255, 252, 240, 0.0);
}
@keyframes accent2Pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 252, 240, 0); }
  50%      { text-shadow: 0 0 28px rgba(255, 252, 240, 0.35), 0 0 60px rgba(245, 214, 138, 0.22); }
}
.hero-lead {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.95;
  color: rgba(255, 252, 240, 0.9);
  margin: 0 0 40px;
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero-lead strong { color: #fff; font-weight: 700; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 0 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 214, 138, 0.22);
  border-bottom: 1px solid rgba(245, 214, 138, 0.22);
  max-width: 720px;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.18), rgba(8, 18, 14, 0.04));
  backdrop-filter: blur(2px);
}
.stat-num {
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  line-height: 1;
  background: linear-gradient(135deg, #f5d68a 0%, #fff 60%, #d9b977 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num small { font-size: 0.5em; margin-left: 4px; opacity: 0.85; }
.stat-label {
  font-size: 0.72rem;
  color: rgba(245, 214, 138, 0.85);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-note {
  font-size: 0.7rem;
  color: rgba(245, 214, 138, 0.6);
  letter-spacing: 0.06em;
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-en);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: rgba(245, 214, 138, 0.7);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(245, 214, 138, 0.7), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, #f5d68a, transparent);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -30%; }
  100% { top: 100%; }
}
@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 60px;
  }
  .hero-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    gap: 12px;
  }
  .eyebrow-line { width: 36px; }
  .hero-title-en { font-size: 0.86rem; }
  .hero-lead { font-size: 0.92rem; line-height: 1.85; margin-bottom: 28px; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 0;
    margin-bottom: 32px;
  }
  .hero-stats .stat-num { font-size: 1.5rem; }
  .hero-stats .stat-num small { font-size: 0.55em; margin-left: 2px; }
  .hero-stats .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    line-height: 1.45;
    margin-top: 6px;
  }
  .hero-cta { width: 100%; gap: 12px; }
  .hero-cta .btn {
    flex: 1 1 auto;
    padding: 14px 16px;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
  }
  .hero-cta .btn svg { width: 16px; height: 16px; }
  .hero-note { font-size: 0.64rem; line-height: 1.65; }
  .hero-scroll { display: none; }
}
@media (max-width: 380px) {
  .hero-stats { gap: 8px; padding: 14px 0; }
  .hero-stats .stat-num { font-size: 1.3rem; }
  .hero-stats .stat-label { font-size: 0.56rem; }
  .hero-cta .btn { padding: 13px 12px; font-size: 0.78rem; }
}

/* -------- TICKER -------- */
.ticker-section {
  background: var(--c-bg-dark);
  padding: 28px 0 32px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(245, 214, 138, 0.06);
  border-bottom: 1px solid rgba(245, 214, 138, 0.06);
}
.ticker-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 162, 90, 0.10), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(31, 89, 68, 0.18), transparent 50%);
  pointer-events: none;
}
.ticker {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--c-bg-dark), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--c-bg-dark), transparent); }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: tickerScroll 44s linear infinite;
  padding: 0 36px;
  min-width: 200%;
}
.ticker-track:hover { animation-play-state: paused; }
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: rgba(245, 214, 138, 0.04);
  border: 1px solid rgba(245, 214, 138, 0.10);
  border-radius: 999px;
  color: var(--c-primary-light);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease-out-expo);
}
.t-item:hover {
  background: rgba(200, 162, 90, 0.15);
  transform: translateY(-2px);
}
.t-icon {
  width: 26px;
  height: 26px;
  color: var(--c-primary-glow);
  flex-shrink: 0;
}
.t-item span:not(.t-en):not(.t-icon) {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.t-en {
  font-family: var(--ff-en);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  color: rgba(240, 228, 197, 0.7);
  font-weight: 600;
  padding-left: 10px;
  border-left: 1px solid rgba(245, 214, 138, 0.18);
}
.t-dot {
  font-size: 0.7rem;
  color: var(--c-primary);
  opacity: 0.7;
  flex-shrink: 0;
}
.ticker-caption {
  text-align: center;
  margin: 18px 0 0;
  font-family: var(--ff-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(245, 214, 138, 0.55);
  position: relative;
  z-index: 1;
}
.ticker-caption::before,
.ticker-caption::after {
  content: "—";
  margin: 0 8px;
  color: rgba(245, 214, 138, 0.3);
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .ticker-track { gap: 20px; padding: 0 20px; animation-duration: 32s; }
  .t-item { padding: 8px 16px; gap: 8px; }
  .t-icon { width: 22px; height: 22px; }
  .t-item span:not(.t-en):not(.t-icon) { font-size: 0.82rem; }
  .t-en { display: none; }
}

/* -------- Section heads -------- */
.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  color: var(--c-primary-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--c-primary);
}
.section-head.center .section-eyebrow { padding-left: 0; }
.section-head.center .section-eyebrow::before { display: none; }
.section-title {
  font-size: clamp(1.55rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--c-text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.section-title .mark {
  background: linear-gradient(180deg, transparent 62%, rgba(184, 88, 68, 0.32) 62%);
  padding: 0 4px;
}
.section-title .gradient-text {
  background: var(--grad-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title .gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 2;
  color: var(--c-text-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .section-head { margin-bottom: 40px; }
  .section-eyebrow { font-size: 0.7rem; letter-spacing: 0.24em; }
  .section-title { line-height: 1.45; }
  .section-lead { line-height: 1.85; }
}
@media (max-width: 380px) {
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: 1.42rem; line-height: 1.5; }
  .section-lead { font-size: 0.86rem; }
}

/* -------- PROBLEM -------- */
.problem {
  background:
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg) 70%, var(--c-bg-soft) 100%);
  position: relative;
}
/* Microscope-style sweep decoration at top */
.problem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184, 88, 68, 0.4) 30%,
    rgba(200, 162, 90, 0.55) 50%,
    rgba(31, 89, 68, 0.5) 70%,
    transparent 100%);
}
.problem::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(184, 88, 68, 0.06), transparent 70%);
  pointer-events: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--c-border);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b85844, var(--c-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-num {
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--c-warn);
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
.problem-card p {
  margin: 0;
  color: var(--c-text-soft);
  font-size: 0.9rem;
  line-height: 1.85;
}

/* -------- ABOUT (SOLUTION) -------- */
.about {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.14), transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}
.about::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 89, 68, 0.10), transparent 70%);
  bottom: -150px;
  right: -150px;
  pointer-events: none;
}
.about-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
}
.about-brand-mark {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.about-brand-mark::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--c-primary);
  opacity: 0.4;
  animation: spin 24s linear infinite;
}
.about-brand-mark svg { width: 44px; height: 44px; color: #fff; }
.about-brand-name {
  font-family: var(--ff-display), serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--c-corp);
}
.about-brand-name span {
  color: var(--c-primary-dark);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.about-feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.about-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feat-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 162, 90, 0.16), rgba(200, 162, 90, 0.04));
  color: var(--c-primary-dark);
  position: relative;
  transition: transform 0.4s var(--ease-out-expo);
}
.feat-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--c-primary);
  opacity: 0.30;
  animation: spin 16s linear infinite;
}
.about-feature:hover .feat-icon { transform: scale(1.06) rotate(-4deg); }
.feat-icon svg { width: 42px; height: 42px; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-feature h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.about-feature p {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.85;
  margin: 0;
}

/* -------- PRODUCTS (GM6000 / GM2000) -------- */
.products {
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
  position: relative;
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(200, 162, 90, 0.10), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(31, 89, 68, 0.08), transparent 55%);
  pointer-events: none;
}
.product-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.product-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}
.product-row.reverse .product-visual {
  order: 2;
}
.product-row.reverse .product-text {
  order: 1;
}
@media (max-width: 920px) {
  .product-row, .product-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .product-row.reverse .product-visual { order: 1; }
  .product-row.reverse .product-text { order: 2; }
}
.product-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grad-corp);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 214, 138, 0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(31, 89, 68, 0.4), transparent 50%);
  pointer-events: none;
}
.product-bottle {
  position: relative;
  width: 60%;
  max-width: 200px;
  z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}
.product-floating-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 214, 138, 0.20);
  pointer-events: none;
}
.product-floating-circle.c1 {
  width: 70%; height: 70%;
  top: 15%; left: 15%;
  animation: spin 40s linear infinite;
}
.product-floating-circle.c2 {
  width: 110%; height: 110%;
  top: -5%; left: -5%;
  border-color: rgba(245, 214, 138, 0.10);
  animation: spin 60s linear infinite reverse;
}
.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--ff-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  padding: 6px 14px;
  background: rgba(245, 214, 138, 0.92);
  color: var(--c-accent-dark);
  border-radius: 999px;
  font-weight: 700;
  z-index: 2;
}
.product-text-eyebrow {
  font-family: var(--ff-en);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--c-primary-dark);
  font-weight: 700;
  margin: 0 0 8px;
}
.product-name {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-tagline {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.product-desc {
  color: var(--c-text-soft);
  font-size: 0.94rem;
  line-height: 1.95;
  margin: 0 0 24px;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-spec {
  padding: 12px 16px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-primary);
  font-size: 0.84rem;
  color: var(--c-text);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.product-spec span {
  display: block;
  font-family: var(--ff-en);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--c-primary-dark);
  font-weight: 700;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  .product-specs { grid-template-columns: 1fr; }
}

/* -------- VIDEO SECTION (Goldmorr official footage) -------- */
.video-section {
  background: linear-gradient(180deg, var(--c-bg-darker) 0%, var(--c-bg-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.video-section .section-title { color: #fff; }
.video-section .section-eyebrow { color: var(--c-primary-glow); }
.video-section .section-eyebrow::before { background: var(--c-primary-glow); }
.video-section .section-lead { color: rgba(245, 214, 138, 0.75); }
.video-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.video-bg-orb-1 {
  width: 480px; height: 480px;
  top: -120px; left: -160px;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.16), transparent 70%);
}
.video-bg-orb-2 {
  width: 560px; height: 560px;
  bottom: -180px; right: -200px;
  background: radial-gradient(circle, rgba(31, 89, 68, 0.42), transparent 70%);
}
.video-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.video-card-feature {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
@media (max-width: 920px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .video-card-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(245, 214, 138, 0.04);
  border: 1px solid rgba(245, 214, 138, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: 0 24px 60px rgba(200, 162, 90, 0.18);
}

/* Lite YouTube facade */
.lite-yt {
  position: relative;
  aspect-ratio: 16 / 9;
}
.video-card-feature.lite-yt {
  aspect-ratio: auto;
}
.video-card-feature .lite-yt-thumb {
  aspect-ratio: 16 / 9;
}
.video-card:not(.video-card-feature) .lite-yt-thumb {
  position: absolute;
  inset: 0;
}
.lite-yt-thumb {
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-dark);
  filter: saturate(0.95) brightness(0.78);
  transition: filter 0.4s ease, transform 0.6s var(--ease-out-expo);
}
.video-card:hover .lite-yt-thumb {
  filter: saturate(1.1) brightness(0.95);
  transform: scale(1.04);
}
.lite-yt-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.10) 0%, rgba(8, 18, 14, 0) 50%, rgba(8, 18, 14, 0.55) 100%),
    radial-gradient(ellipse at top right, rgba(245, 214, 138, 0.15), transparent 60%);
}
.lite-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  border-radius: 50%;
  background: rgba(10, 20, 16, 0.55);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(245, 214, 138, 0.55);
  color: var(--c-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
.lite-yt-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 214, 138, 0.35);
  animation: spin 18s linear infinite;
}
.lite-yt-play svg { width: 38px; height: 38px; transition: transform 0.3s var(--ease-out-expo); }
.video-card:hover .lite-yt-play {
  background: rgba(10, 20, 16, 0.7);
  border-color: var(--c-primary-glow);
  box-shadow: 0 12px 36px rgba(245, 214, 138, 0.25);
  transform: scale(1.07);
}
.video-card:hover .lite-yt-play svg { transform: scale(1.08); }
@media (max-width: 600px) {
  .lite-yt-play { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
  .lite-yt-play svg { width: 30px; height: 30px; }
}

.lite-yt.is-active .lite-yt-thumb,
.lite-yt.is-active .lite-yt-frame,
.lite-yt.is-active .lite-yt-play,
.lite-yt.is-active .lite-yt-meta {
  display: none;
}
.lite-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

.lite-yt-meta {
  position: relative;
  padding: 20px 22px 24px;
  z-index: 1;
}
.video-card:not(.video-card-feature) .lite-yt-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 18, 14, 0.92) 100%);
}
.video-card-feature .lite-yt-meta {
  background: linear-gradient(180deg, rgba(245, 214, 138, 0.02) 0%, rgba(245, 214, 138, 0.05) 100%);
  border-top: 1px solid rgba(245, 214, 138, 0.10);
}
.video-tag {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--c-primary-glow);
  background: rgba(200, 162, 90, 0.12);
  border: 1px solid rgba(245, 214, 138, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.video-tag-jp {
  background: rgba(31, 89, 68, 0.5);
  border-color: var(--c-accent-light);
  color: #fff;
}
.lite-yt-meta h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.video-card-feature .lite-yt-meta h3 {
  font-size: 1.25rem;
}
.lite-yt-meta p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(245, 214, 138, 0.7);
  margin: 0;
}
.video-card:not(.video-card-feature) .lite-yt-meta p {
  display: none;
}
.video-card:not(.video-card-feature) .lite-yt-meta h3 {
  font-size: 0.94rem;
}
@media (max-width: 600px) {
  .video-card:not(.video-card-feature) .lite-yt-meta {
    padding: 14px 16px 16px;
  }
  .video-card:not(.video-card-feature) .lite-yt-meta h3 {
    font-size: 0.92rem;
  }
}

.video-disclaimer {
  text-align: center;
  margin: 32px auto 0;
  font-size: 0.74rem;
  line-height: 1.85;
  color: rgba(245, 214, 138, 0.5);
  max-width: 720px;
  position: relative;
  z-index: 1;
}

/* -------- PROCESS -------- */
.process { background: var(--c-bg); position: relative; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}
.step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
.step-circle {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(200, 162, 90, 0.32);
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease-out-expo);
}
.step-circle::before,
.step-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  opacity: 0.22;
}
.step-circle::before {
  inset: -14px;
  animation: pulseRing 3s ease-out infinite;
}
.step-circle::after {
  inset: -28px;
  border-width: 1px;
  animation: pulseRing 3s ease-out infinite 1.5s;
}
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0; }
}
.process-step:hover .step-circle { transform: scale(1.05); }
.step-num {
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: 2.3rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.step-line {
  position: absolute;
  top: 50%;
  left: calc(50% + 70px);
  right: calc(-50% + 70px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary) 50%, transparent 50%, transparent 100%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  animation: dashFlow 12s linear infinite;
}
@keyframes dashFlow { to { background-position: 200px 0; } }
.step-body { text-align: center; padding: 0 8px; }
.step-body h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-jp { color: var(--c-text); }
.step-en {
  font-family: var(--ff-en);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  color: var(--c-primary-dark);
  font-weight: 700;
}
.step-body p {
  color: var(--c-text-soft);
  line-height: 1.85;
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 980px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 12px; }
  .process-step:nth-child(2) .step-line { display: none; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .step-line { display: none; }
}

/* -------- REASONS -------- */
.reasons {
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg-alt) 100%);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.reason-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.20), transparent 70%);
  transition: transform 0.5s var(--ease-out-expo);
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.reason-card:hover::after { transform: scale(1.5); }
.reason-num {
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-primary);
  margin-bottom: 16px;
}
.reason-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.reason-card p {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  line-height: 1.9;
  margin: 0;
  position: relative;
  z-index: 1;
}
.reason-cta {
  background: var(--grad-accent);
  color: #fff;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reason-cta::after {
  background: radial-gradient(circle, rgba(245, 214, 138, 0.25), transparent 70%);
}
.reason-cta h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}
.reason-cta p {
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 24px;
}
.reason-cta .btn { align-self: flex-start; }

/* -------- IAQ MEASUREMENT (差別化セクション) -------- */
.iaq {
  background: var(--c-bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.iaq::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.18), transparent 70%);
  pointer-events: none;
}
.iaq::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 89, 68, 0.35), transparent 70%);
  pointer-events: none;
}
.iaq .section-title { color: #fff; }
.iaq .section-eyebrow { color: var(--c-primary-glow); }
.iaq .section-eyebrow::before { background: var(--c-primary-glow); }
.iaq .section-lead { color: rgba(245, 214, 138, 0.78); }
.iaq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) {
  .iaq-grid { grid-template-columns: 1fr; gap: 40px; }
}
.iaq-chart {
  background: rgba(245, 214, 138, 0.04);
  border: 1px solid rgba(245, 214, 138, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  backdrop-filter: blur(8px);
}
.iaq-chart-label {
  font-family: var(--ff-en);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--c-primary-glow);
  margin: 0 0 8px;
  font-weight: 700;
}
.iaq-chart-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px;
}
.iaq-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.iaq-bar {
  display: grid;
  grid-template-columns: 88px 1fr 70px;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
}
.iaq-bar-label {
  color: rgba(245, 214, 138, 0.88);
  font-weight: 700;
}
.iaq-bar-track {
  position: relative;
  height: 10px;
  background: rgba(255, 252, 245, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.iaq-bar-fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: 999px;
  transition: width 1.6s var(--ease-out-expo);
}
.iaq-bar-fill.before { background: linear-gradient(90deg, #b85844, #d77352); }
.iaq-bar-fill.after { background: var(--grad-primary); }
.iaq-bar-value {
  font-family: var(--ff-en);
  font-weight: 800;
  text-align: right;
  font-size: 0.92rem;
  color: var(--c-primary-glow);
}
.iaq-bar.before-row .iaq-bar-value { color: rgba(184, 88, 68, 0.95); }
.iaq-chart-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 214, 138, 0.12);
  font-size: 0.74rem;
  color: rgba(245, 214, 138, 0.55);
  line-height: 1.7;
}
.iaq-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.iaq-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 214, 138, 0.10);
}
.iaq-point:last-child { border-bottom: 0; }
.iaq-point-num {
  font-family: var(--ff-en);
  font-size: 1.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-primary-glow);
  line-height: 1;
}
.iaq-point h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.iaq-point p {
  font-size: 0.88rem;
  color: rgba(245, 214, 138, 0.75);
  line-height: 1.9;
  margin: 0;
}

/* -------- SERVICES -------- */
.services { background: var(--c-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-bg-alt);
}
.service-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
/* SVGバージョン用（写真がないサービス） */
.service-img-svg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grad-mix);
  background: var(--grad-mix);
  opacity: 0.92;
}
.service-img-svg[data-svg="building"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 130'><rect x='42' y='25' width='116' height='90' rx='4' fill='white' opacity='0.92'/><rect x='52' y='35' width='18' height='18' fill='%231f5944' opacity='0.7'/><rect x='78' y='35' width='18' height='18' fill='%231f5944' opacity='0.7'/><rect x='104' y='35' width='18' height='18' fill='%231f5944' opacity='0.7'/><rect x='130' y='35' width='18' height='18' fill='%231f5944' opacity='0.7'/><rect x='52' y='60' width='18' height='18' fill='%231f5944' opacity='0.4'/><rect x='78' y='60' width='18' height='18' fill='%231f5944' opacity='0.4'/><rect x='104' y='60' width='18' height='18' fill='%231f5944' opacity='0.4'/><rect x='130' y='60' width='18' height='18' fill='%231f5944' opacity='0.4'/><rect x='90' y='85' width='20' height='30' fill='%231f5944' opacity='0.7'/></svg>");
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.service-img-svg[data-svg="house"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 130'><path d='M40 105 L40 65 L100 25 L160 65 L160 105 Z' fill='white' opacity='0.92'/><rect x='70' y='80' width='20' height='25' fill='%231f5944' opacity='0.7'/><rect x='110' y='75' width='25' height='18' fill='%231f5944' opacity='0.5'/><path d='M30 70 L100 20 L170 70' stroke='%231f5944' stroke-width='3' fill='none' opacity='0.7'/></svg>");
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.service-img-svg[data-svg="leather"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 130'><rect x='30' y='30' width='140' height='70' rx='8' fill='white' opacity='0.92'/><circle cx='60' cy='55' r='3' fill='%231f5944' opacity='0.5'/><circle cx='90' cy='75' r='3' fill='%231f5944' opacity='0.5'/><circle cx='130' cy='50' r='3' fill='%231f5944' opacity='0.5'/><circle cx='150' cy='80' r='3' fill='%231f5944' opacity='0.5'/><path d='M40 65 Q70 55 100 70 T 160 75' stroke='%231f5944' stroke-width='1.5' fill='none' opacity='0.4'/></svg>");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.service-img-svg[data-svg="virus"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 130'><circle cx='100' cy='65' r='30' fill='white' opacity='0.92'/><line x1='100' y1='35' x2='100' y2='25' stroke='white' stroke-width='3' opacity='0.85'/><line x1='100' y1='95' x2='100' y2='105' stroke='white' stroke-width='3' opacity='0.85'/><line x1='130' y1='65' x2='140' y2='65' stroke='white' stroke-width='3' opacity='0.85'/><line x1='70' y1='65' x2='60' y2='65' stroke='white' stroke-width='3' opacity='0.85'/><line x1='121' y1='44' x2='128' y2='37' stroke='white' stroke-width='3' opacity='0.85'/><line x1='79' y1='86' x2='72' y2='93' stroke='white' stroke-width='3' opacity='0.85'/><line x1='79' y1='44' x2='72' y2='37' stroke='white' stroke-width='3' opacity='0.85'/><line x1='121' y1='86' x2='128' y2='93' stroke='white' stroke-width='3' opacity='0.85'/><circle cx='100' cy='25' r='5' fill='white' opacity='0.85'/><circle cx='100' cy='105' r='5' fill='white' opacity='0.85'/><circle cx='140' cy='65' r='5' fill='white' opacity='0.85'/><circle cx='60' cy='65' r='5' fill='white' opacity='0.85'/></svg>");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.service-card:hover .service-img { transform: none; }
.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.service-body p {
  color: var(--c-text-soft);
  font-size: 0.9rem;
  line-height: 1.85;
  margin: 0 0 16px;
}
.service-body ul {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-body li {
  font-size: 0.84rem;
  color: var(--c-text-soft);
  padding-left: 20px;
  position: relative;
}
.service-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 2px;
  background: var(--c-primary);
}

/* -------- TESTIMONIALS -------- */
.testimonials {
  background: var(--c-bg-darker);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.30), transparent 70%);
  pointer-events: none;
}
.testimonials .section-title { color: #fff; }
.testimonials .section-eyebrow { color: var(--c-primary-glow); }
.testimonials .section-eyebrow::before { background: var(--c-primary-glow); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.testimonial {
  background: rgba(245, 214, 138, 0.05);
  border: 1px solid rgba(245, 214, 138, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s ease;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 20px;
  font-family: var(--ff-display), serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-primary);
  opacity: 0.45;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
}
.testimonial p {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 252, 240, 0.92);
  margin: 16px 0 24px;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-primary-glow);
  border-top: 1px solid rgba(245, 214, 138, 0.18);
  padding-top: 16px;
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  font-size: 0.74rem;
  color: rgba(245, 214, 138, 0.62);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* -------- FLOW -------- */
.flow { background: var(--c-bg); }
.flow-list {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.flow-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary) 60%, transparent 100%);
  background-size: 2px 12px;
  background-repeat: repeat-y;
  opacity: 0.45;
}
.flow-list li {
  position: relative;
  padding: 0 0 36px 32px;
}
.flow-list li:last-child { padding-bottom: 0; }
.flow-num {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(200, 162, 90, 0.4);
}
.flow-list h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.flow-list p {
  color: var(--c-text-soft);
  font-size: 0.92rem;
  line-height: 1.95;
  margin: 0;
}
.flow-list strong {
  color: var(--c-primary-dark);
  font-weight: 700;
}
@media (max-width: 600px) {
  .flow-list { padding-left: 32px; }
  .flow-list::before { left: 15px; }
  .flow-num {
    left: -32px;
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
}

/* -------- SAFETY (生分解性・無刺激性) -------- */
.safety {
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.safety::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(31, 89, 68, 0.09), transparent 60%);
  pointer-events: none;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) {
  .safety-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}
.safety-icon-col {
  display: flex;
  justify-content: center;
  position: relative;
}
.safety-icon-col::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 89, 68, 0.18), transparent 70%);
  z-index: 0;
}
.safety-seal {
  width: min(240px, 60vw);
  height: min(240px, 60vw);
  position: relative;
  z-index: 1;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.safety-text .section-eyebrow { padding-left: 32px; }
@media (max-width: 920px) {
  .safety-text .section-eyebrow { padding-left: 0; display: inline-block; }
  .safety-text .section-eyebrow::before { display: none; }
}
.safety-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 24px;
}
.safety-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}
.safety-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.safety-icon-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-accent);
  color: #fff;
  flex-shrink: 0;
}
.safety-icon-small svg { width: 20px; height: 20px; }
.safety-note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
@media (max-width: 600px) {
  .safety-list { grid-template-columns: 1fr; }
}

/* -------- CTA BANNER -------- */
.cta-banner {
  position: relative;
  padding: clamp(60px, 9vw, 100px) 0;
  background: var(--grad-accent);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 214, 138, 0.20);
  animation: particleFloat 9s ease-in-out infinite;
}
.cta-particles span:nth-child(1) { width: 80px; height: 80px; left: 10%; bottom: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { width: 120px; height: 120px; left: 30%; bottom: 30%; animation-delay: 1s; }
.cta-particles span:nth-child(3) { width: 60px; height: 60px; left: 50%; bottom: 50%; animation-delay: 2s; }
.cta-particles span:nth-child(4) { width: 90px; height: 90px; right: 30%; bottom: 25%; animation-delay: 3s; }
.cta-particles span:nth-child(5) { width: 50px; height: 50px; right: 12%; bottom: 60%; animation-delay: 4s; }
.cta-particles span:nth-child(6) { width: 100px; height: 100px; right: 8%; bottom: 8%; animation-delay: 5s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-40px) scale(1.1); opacity: 0.8; }
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.cta-banner p {
  font-size: 0.95rem;
  margin: 0 0 28px;
  opacity: 0.95;
}
.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* -------- FAQ -------- */
.faq { background: var(--c-bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: 0.9rem;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--ff-en);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--c-primary);
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px 70px;
  color: var(--c-text-soft);
  font-size: 0.92rem;
  line-height: 1.95;
}
.faq-answer p { margin: 0; }
@media (max-width: 600px) {
  .faq-item summary { padding: 16px 18px; font-size: 0.88rem; }
  .faq-answer { padding: 0 18px 18px 56px; font-size: 0.86rem; }
}

/* -------- COMPANY -------- */
.company {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
}
.company-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 920px) {
  .company-grid { grid-template-columns: 1fr; max-width: 720px; }
}
.company-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.company-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.company-tag {
  font-size: 0.84rem;
  color: var(--c-corp);
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.company-table th,
.company-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
  line-height: 1.7;
}
.company-table th {
  width: 130px;
  font-weight: 700;
  color: var(--c-corp);
}
.company-table td { color: var(--c-text-soft); }
.company-table a {
  color: var(--c-primary-dark);
  font-weight: 700;
}
.company-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-corp);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--c-corp);
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.company-link svg { width: 14px; height: 14px; }
.company-link:hover { gap: 12px; }

/* Company map (本社Googleマップ) */
.company-map {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 920px) {
  .company-map { position: static; }
}
.company-map-head {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--c-border);
}
.company-map-eyebrow {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--c-primary-dark);
  margin-bottom: 6px;
}
.company-map-addr {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.company-map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--c-bg-soft);
}
.company-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.company-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-accent-dark);
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, #fff 100%);
  border-top: 1px solid var(--c-border);
  letter-spacing: 0.02em;
  transition: background 0.3s ease, gap 0.3s ease, color 0.3s ease;
}
.company-map-link svg { width: 14px; height: 14px; }
.company-map-link:hover {
  background: var(--c-primary-light);
  color: var(--c-accent-dark);
  gap: 12px;
}
@media (max-width: 600px) {
  .company-card { padding: 28px 20px; }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    border: 0;
    padding: 6px 0;
  }
  .company-table th {
    color: var(--c-text-muted);
    font-size: 0.74rem;
    padding-top: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .company-table tr {
    border-bottom: 1px solid var(--c-border);
    display: block;
    padding: 4px 0 8px;
  }
}

/* -------- CONTACT -------- */
.contact { background: var(--c-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card-label {
  font-family: var(--ff-en);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: var(--c-primary-dark);
  margin: 0 0 16px;
  font-weight: 700;
}
.contact-form-note {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--c-text-soft);
  background: rgba(200, 162, 90, 0.08);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 0 0 24px;
}
.contact-form-note strong {
  color: var(--c-primary-dark);
  font-weight: 700;
}
.contact-tel-card {
  background: var(--grad-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.contact-tel-card .contact-card-label { color: var(--c-primary-glow); }
.contact-tel {
  display: block;
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #fff;
  letter-spacing: 0.02em;
  margin: 8px 0 12px;
}
.contact-tel-hours {
  font-size: 0.84rem;
  margin: 0 0 24px;
  opacity: 0.92;
  line-height: 1.7;
}
.contact-tel-note {
  font-size: 0.74rem;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 214, 138, 0.25);
  opacity: 0.88;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) {
  .contact-form { padding: 40px 36px; }
}
.form-row { margin-bottom: 18px; }
.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .form-row.two-cols { grid-template-columns: 1fr; }
}
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-text);
}
.required {
  font-size: 0.66rem;
  color: var(--c-warn);
  background: rgba(184, 88, 68, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
  font-weight: 700;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--ff-jp);
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fdfcf6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  color: var(--c-text);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(200, 162, 90, 0.18);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  cursor: pointer;
  font-weight: 500 !important;
}
.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--c-primary);
}
.form-actions {
  margin-top: 28px;
  text-align: center;
}
.form-actions .btn { width: 100%; max-width: 360px; }
.form-note {
  margin: 16px 0 0;
  font-size: 0.74rem;
  color: var(--c-text-muted);
}
.form-success {
  margin-top: 20px;
  padding: 24px;
  background: rgba(200, 162, 90, 0.10);
  border: 1px solid var(--c-primary);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--c-primary-dark);
}
.form-success strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.form-success p {
  margin: 0;
  color: var(--c-text-soft);
  font-size: 0.9rem;
}

/* -------- FOOTER -------- */
.site-footer {
  background: var(--c-bg-darker);
  color: rgba(245, 214, 138, 0.78);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 90, 0.10), transparent 70%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
.footer-logo {
  color: #fff !important;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.86rem;
  line-height: 1.95;
  margin: 0 0 16px;
  color: rgba(245, 214, 138, 0.72);
}
.footer-address {
  font-size: 0.82rem;
  line-height: 1.85;
  margin: 0 0 20px;
  color: rgba(245, 214, 138, 0.62);
}
.footer-address a {
  color: rgba(245, 214, 138, 0.88);
  border-bottom: 1px solid rgba(245, 214, 138, 0.25);
}
.footer-address a:hover { color: var(--c-primary-glow); }
.footer-goldmorr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 214, 138, 0.10);
  border: 1px solid rgba(245, 214, 138, 0.25);
  border-radius: 999px;
  font-family: var(--ff-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-primary-glow);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
.footer-nav h4 {
  font-family: var(--ff-en);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  color: var(--c-primary-glow);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.84rem;
  color: rgba(245, 214, 138, 0.72);
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-links li { margin-bottom: 4px; }
.footer-links a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
  line-height: 1.45;
}
.footer-link-main {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(245, 214, 138, 0.85);
}
.footer-link-sub {
  font-size: 0.72rem;
  color: rgba(245, 214, 138, 0.55);
  letter-spacing: 0.02em;
}
.footer-links a:hover .footer-link-main { color: #fff; }
.footer-links a:hover .footer-link-sub { color: rgba(245, 214, 138, 0.85); }
.footer-bottom {
  border-top: 1px solid rgba(245, 214, 138, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.footer-bottom small {
  font-size: 0.72rem;
  color: rgba(245, 214, 138, 0.55);
  letter-spacing: 0.06em;
}

/* -------- Reveal animation -------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
