/* ==========================================
   BRAND VARIABLES
   ========================================== */

:root {
  --koi-red: #A32D2D;
  --pine-green: #2D6A4F;
  --temple-terracotta: #C1622F;
  --inkstone: #1A1A1A;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --mid-gray: #888888;
  --text-dark: #1A1A1A;
  --border-light: #E8E8E8;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  --spacing-4xl: 128px;
}

/* ==========================================
   RESET & BASE
   ========================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable;
}

/* ==========================================
   UTILITIES
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
  margin-bottom: var(--spacing-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.faq .section-header h2 {
  font-size: 36px;
  font-weight: 600;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--inkstone);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  overflow: hidden;
  transition: border 600ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.btn-primary .btn-text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 800ms ease-out;
  color: var(--white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.btn-primary:hover {
  border-color: transparent;
}

.btn-primary:hover .btn-text {
  transform: translateX(12px);
  color: var(--inkstone);
}

.btn-primary:hover::before {
  width: 500px;
  height: 500px;
  opacity: 1;
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-chat {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--inkstone);
  color: var(--white);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  overflow: hidden;
  transition: border 600ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.btn-chat .btn-text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 800ms ease-out;
  color: var(--white);
}

.btn-chat::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.btn-chat:hover {
  border-color: transparent;
}

.btn-chat:hover .btn-text {
  transform: translateX(12px);
  color: var(--inkstone);
}

.btn-chat:hover::before {
  width: 500px;
  height: 500px;
  opacity: 1;
}

.btn-chat:active {
  transform: scale(0.95);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: fit-content;
}

.logo-img {
  height: 28px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  object-fit: contain !important;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--spacing-xl);
  list-style: none;
}

.navbar .nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  opacity: 0.8;
  border-bottom-color: var(--text-dark);
}

.navbar .btn-chat {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}


/* ==========================================
   HAMBURGER BUTTON — hidden on desktop
   ========================================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 102;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   MOBILE CLOSE BUTTON
   ========================================== */
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 103;
}

.mobile-close span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s ease;
}

.mobile-close span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-close span:nth-child(2) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ==========================================
   MOBILE MENU OVERLAY
   ========================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: center;
}

.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  opacity: 0.6;
}

.mobile-menu .mobile-cta {
  margin-top: var(--spacing-lg);
  color: var(--white);
  background: var(--inkstone);
  border: 1px solid var(--inkstone);
}

/* ==========================================
   MOBILE BREAKPOINT — nav behavior
   ========================================== */
body.menu-open {
  overflow: hidden;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  margin: 24px;
  margin-top: 100px;
  border-radius: 32px;
  border: 12px solid var(--white);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--inkstone) 0%, #2D1A1A 100%);
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-radius: 32px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: var(--white);
  max-width: 90%;
  padding: var(--spacing-4xl) var(--spacing-lg) var(--spacing-3xl);
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: var(--spacing-2xl);
  letter-spacing: -2px;
  animation: heroFadeInBlur 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  filter: blur(12px);
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-headline {
    font-size: clamp(56px, 6.5vw, 90px);
  }
}

.hero-subtext {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0;
  max-width: 550px;
  animation: heroFadeInBlur 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.4s;
  filter: blur(12px);
}

.hero-content .btn {
  animation: heroFadeInBlur 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.6s;
  opacity: 0;
  filter: blur(12px);
}

@keyframes heroFadeInBlur {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */

.philosophy {
  background: var(--white);
  padding: 140px 40px 140px 40px;
  position: relative;
  overflow: visible;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(163, 45, 45, 0.3));
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.philosophy-left {
  position: sticky;
  top: 120px;
}

.philosophy-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.philosophy-label-line {
  width: 32px;
  height: 1px;
  background: var(--pine-green);
}

.philosophy-label span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine-green);
}

.philosophy-pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--inkstone);
  letter-spacing: -0.01em;
}

.philosophy-pull em {
  font-style: normal;
  color: var(--pine-green);
}

.philosophy-right {
  padding-top: 8px;
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.philosophy-body p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: #3a3a3a;
}

.philosophy-body p:first-child {
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 400;
  color: var(--inkstone);
  line-height: 1.65;
}

.philosophy-highlight {
  border-left: 2px solid var(--pine-green);
  padding-left: 24px;
  margin: 8px 0;
}

.philosophy-highlight p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.6vw, 19px) !important;
  font-weight: 400 !important;
  color: var(--inkstone) !important;
  font-style: italic;
  line-height: 1.65 !important;
}

.philosophy-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.philosophy-cta .btn-primary {
  padding: 14px 32px;
}

.philosophy-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--inkstone);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.philosophy-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--inkstone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.philosophy-link:hover {
  opacity: 1;
}

.philosophy-link:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 1;
  transform: translateY(0) !important;
  transition: none !important;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
  transition: none !important;
}


@media (max-width: 900px) {
  .philosophy {
    padding: 100px 24px;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .philosophy-left {
    position: static;
  }
}

/* ==========================================
   INTRO SECTION
   ========================================== */

.intro {
  padding: 0;
  background: var(--white);
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  background: transparent;
}

.intro-left {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 32px 0 0 32px;
}

.intro-left.scroll-animate {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.intro-left-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--white);
}

.intro-left-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 450px;
}

.intro-left-content .btn {
  display: inline-flex;
}

.intro-right {
  background: var(--light-gray);
  padding: 32px;
  border-radius: 0 32px 32px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-right.scroll-animate {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.intro-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.benefit-content h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.benefit-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--mid-gray);
  margin: 0;
}

@media (max-width: 1024px) {
  .intro-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .intro-left {
    padding: 60px 40px;
    min-height: 400px;
    border-radius: 24px 24px 0 0;
  }

  .intro-left-content h2 {
    font-size: 40px;
  }

  .intro-left-content p {
    font-size: 15px;
  }

  .intro-right {
    padding: 40px;
    margin: 0;
    border-radius: 0 0 24px 24px;
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

/* ==========================================
   ADVANTAGES SECTION
   ========================================== */

.advantages {
  padding: 120px 0;
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.advantage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 32px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.advantage-card.scroll-animate {
  animation: slideInFromBottom 0.6s ease-out forwards;
  animation-delay: var(--stagger-delay, 0s);
}

.advantage-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Badge styling */
.advantage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 8px 16px;
  width: fit-content;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.badge-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}

/* Gradient variant 1: Red-based (Koi red) */
.advantage-gradient-red {
  background: linear-gradient(135deg, rgba(163, 45, 45, 0.15) 0%, rgba(163, 45, 45, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%),
              linear-gradient(to bottom, var(--white) 0%, #F5F5F5 100%);
}

.advantage-gradient-red .advantage-badge {
  color: var(--text-dark);
}

.advantage-gradient-red .badge-dot {
  background-color: var(--pine-green);
  border-color: var(--pine-green);
}

.advantage-gradient-red h3 {
  color: var(--text-dark);
}

.advantage-gradient-red p {
  color: var(--mid-gray);
}

.advantage-gradient-red .advantage-cta {
  color: var(--pine-green);
}

/* Gradient variant 2: Light (Minimal, elegant) */
.advantage-gradient-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 245, 245, 0.6) 100%);
  border: 1px solid rgba(232, 232, 232, 0.6);
}

.advantage-gradient-light .advantage-badge {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-dark);
}

.advantage-gradient-light .badge-dot {
  background-color: var(--pine-green);
  border-color: var(--pine-green);
  box-shadow: 0 2px 4px rgba(163, 45, 45, 0.3);
}

.advantage-gradient-light h3 {
  color: var(--text-dark);
}

.advantage-gradient-light p {
  color: var(--mid-gray);
}

.advantage-gradient-light .advantage-cta {
  color: var(--text-dark);
}

/* Gradient variant 3: Dark (Inkstone) */
.advantage-gradient-dark {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.advantage-gradient-dark .advantage-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.advantage-gradient-dark .badge-dot {
  background-color: var(--white);
  border-color: var(--white);
}

.advantage-gradient-dark h3 {
  color: var(--white);
}

.advantage-gradient-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.advantage-gradient-dark .advantage-cta {
  color: var(--white);
}

/* Content structure */
.advantage-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantage-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.advantage-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* CTA Link styling */
.advantage-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  position: relative;
  z-index: 2;
  width: fit-content;
  transition: gap 0.3s ease;
}

.advantage-cta:hover {
  gap: 12px;
}

.advantage-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.advantage-cta:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: var(--white);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 140px);
  max-width: 1100px;
  height: 1px;
  background: var(--border-light);
}

.faq .section-header {
  margin-bottom: var(--spacing-3xl);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: var(--spacing-lg) 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--text-dark);
  transition: all 0.3s ease;
  gap: var(--spacing-lg);
  letter-spacing: -0.5px;
}

.faq-question:hover {
  color: var(--text-dark);
}

.faq-icon {
  width: 8px;
  height: 8px;
  background: var(--text-dark);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.faq-item:hover .faq-icon {
  background: var(--text-dark);
}

.faq-item.active .faq-icon {
  background: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  margin-top: var(--spacing-lg);
}

.faq-answer p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--mid-gray);
}

/* Mobile FAQ bucket accordions — hidden by default, shown only on mobile */
.faq-mobile {
  display: none;
}

.faq-bucket {
  border-bottom: 1px solid var(--border-light);
}

.faq-bucket:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-bucket-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 18px 0;
  min-height: 56px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: var(--text-dark);
  gap: var(--spacing-lg);
}

.faq-bucket-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-right: 4px;
}

.faq-bucket.active .faq-bucket-icon {
  transform: rotate(225deg);
}

.faq-bucket-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-bucket.active .faq-bucket-body {
  max-height: 1200px;
}

/* FAQ → Footer CTA section */
.faq-cta {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: var(--light-gray);
  text-align: center;
}

.faq-cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pine-green);
  margin-bottom: var(--spacing-sm);
}

.faq-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.faq-cta-subtext {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--mid-gray);
  margin-bottom: var(--spacing-xl);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--inkstone);
  color: var(--white);
  padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: var(--spacing-4xl);
  align-items: flex-start;
  margin-bottom: var(--spacing-4xl);
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
  width: 80px;
  height: auto;
  margin-bottom: var(--spacing-lg);
  display: block;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4xl);
  flex: 1;
}

.footer-column {
  min-width: 120px;
}

.footer-column h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-column a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 0.5;
}

.footer-brand-text {
  font-family: var(--font-sans);
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 40px -var(--spacing-lg) -var(--spacing-2xl);
  padding: 0 var(--spacing-lg);
  padding-bottom: 24px;
  border-bottom: 16px solid var(--white);
  white-space: nowrap;
  user-select: none;
  overflow: hidden;
  max-height: 0.55em;
  transform: translateY(0);
}

@keyframes auroraFlow {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
}

@keyframes auroraFlowReverse {
  0%, 100% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animation initial states */
.intro-left-content.scroll-animate {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.intro-benefits.scroll-animate {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.benefit-item.scroll-animate {
  animation: slideInFromBottom 0.6s ease-out forwards;
  animation-delay: var(--stagger-delay, 0s);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

.how-it-works {
  padding: var(--spacing-3xl) 0;
  background: var(--light-gray);
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.how-it-works-header h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.how-it-works-header p {
  font-size: 18px;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Step Indicators */
.step-indicators {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
  padding: 0 var(--spacing-lg);
}

.indicators-line {
  position: absolute;
  top: 16px;
  left: calc(16.67% + var(--spacing-lg));
  right: calc(16.67% + var(--spacing-lg));
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-dark);
}

.indicator svg {
  width: 20px;
  height: 20px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.step-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease-out;
}

.step-card.scroll-animate {
  animation: slideInFromBottom 0.6s ease-out forwards;
  animation-delay: var(--stagger-delay, 0s);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--inkstone);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-lg);
  background: var(--light-gray);
  border-radius: 8px;
  color: var(--inkstone);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.step-card > p {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.benefits-list li {
  font-size: 14px;
  color: var(--mid-gray);
  padding-left: 24px;
  position: relative;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--inkstone);
  border-radius: 50%;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
  :root {
    --spacing-3xl: 80px;
    --spacing-4xl: 100px;
  }

  .section-header h2 {
    font-size: clamp(40px, 6vw, 60px);
  }

  .hero-headline {
    font-size: clamp(56px, 10vw, 100px);
  }
}

.adv-table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E4E4E4;
  margin-top: 48px;
}

.adv-hrow,
.adv-row {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1fr 1fr 1fr;
}

.adv-hrow {
  background: #1A1A1A;
}

.adv-row {
  border-top: 1px solid #EFEFEF;
  transition: background 0.15s ease;
}

.adv-row:hover {
  background: #F9F9F9;
}

.adv-row:nth-child(even) {
  background: #FAFAFA;
}

.adv-row:nth-child(even):hover {
  background: #F4F4F4;
}

.adv-col {
  padding: 16px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-col-lbl {
  justify-content: flex-start;
  font-size: 13px;
  color: #1A1A1A;
  padding-left: 24px;
}

.adv-hrow .adv-col {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-hrow .adv-col-lbl {
  padding-left: 24px;
  color: rgba(255,255,255,0.3);
}

.adv-hrow .adv-col-us {
  color: #ffffff;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  background: rgba(45,106,79,0.35);
  border-left: 2px solid #2D6A4F;
  border-right: 2px solid #2D6A4F;
}

.adv-col-us {
  background: rgba(45,106,79,0.06);
  border-left: 2px solid #2D6A4F;
  border-right: 2px solid #2D6A4F;
}

.adv-last .adv-col-us {
  border-bottom: 2px solid #2D6A4F;
}

.adv-ck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-ck svg {
  width: 11px;
  height: 11px;
}

.adv-cx {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-cx svg {
  width: 10px;
  height: 10px;
}

.adv-wn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FDF0E8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-wn svg {
  width: 11px;
  height: 11px;
}

.adv-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-left: 2px;
}

.adv-legend-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FDF0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-legend-icon svg {
  width: 9px;
  height: 9px;
}

.adv-legend span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #999;
}

.adv-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .intro {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .services {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .faq {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .faq-list {
    display: none;
  }

  .faq-mobile {
    display: block;
  }

  .faq-cta {
    display: none;
  }

  .philosophy {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Properties We Love section — horizontal flow on mobile */
  .showcase-heading {
    font-size: 42px;
    line-height: 1.05;
  }

  .showcase-header {
    padding: 0 20px 48px;
  }

  .footer {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }

  .footer-logo-img {
    width: 60px;
    margin-bottom: var(--spacing-md);
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-md);
    width: 100%;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-column h3 {
    font-size: 11px;
    margin-bottom: var(--spacing-sm);
  }

  .footer-column a {
    font-size: 12px;
  }

  .footer-column ul {
    gap: 10px;
  }

  .footer-brand-text {
    font-size: clamp(32px, 12vw, 56px);
    margin: 24px -var(--spacing-lg) -var(--spacing-xl);
    padding-bottom: 12px;
    border-bottom: 6px solid var(--white);
    max-height: 0.6em;
    letter-spacing: -0.03em;
  }

  .hero {
    height: 70vh;
    margin: 16px;
    margin-top: 80px;
    border-radius: 24px;
  }

  .hero-background {
    border-radius: 24px;
  }

  .hero-headline {
    font-size: clamp(48px, 8vw, 80px);
  }

  .hero-subtext {
    font-size: 18px;
  }

  .hero-content {
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
  }

  .hero-content .btn {
    padding: 10px 28px;
    font-size: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .intro-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 0;
  }

  .intro-left-content h2 {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
  }

  .intro-left-content p {
    text-align: center;
    max-width: 100%;
  }

  .intro-left-content {
    text-align: center;
  }

  .intro-left-content .btn {
    margin: 0 auto;
  }

  .section-header h2 {
    font-size: clamp(36px, 5vw, 52px);
  }

  /* Navigation (from Block 1, line 459) */
  .nav-links {
    display: none;
  }
  .navbar .btn-chat {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }

  /* Intro section rules (from Block 2, lines 891-923) */
  .intro-left {
    padding: 50px 30px;
    min-height: auto;
    border-radius: 20px 20px 0 0;
    align-items: center;
  }

  .intro-right {
    padding: 30px;
    margin: 0;
    border-radius: 0 0 20px 20px;
  }

  .benefit-item {
    gap: 16px;
  }

  .benefit-content h3 {
    font-size: 16px;
  }

  .benefit-content p {
    font-size: 13px;
  }

  /* Advantages section rules (from Block 3, lines 1096-1121) */
  .advantages {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .advantage-card {
    padding: 32px;
    min-height: auto;
  }

  .advantage-card h3 {
    font-size: 20px;
  }

  .advantage-card p {
    font-size: 13px;
  }

  .advantage-badge {
    margin-bottom: 16px;
  }

  /* Services section rules (from Block 5, lines 2086-2112) */
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-hero-content h1 {
    font-size: 36px;
  }

  .service-section h2,
  .service-pricing h2,
  .service-cta h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .service-section,
  .service-pricing,
  .service-cta {
    padding: 60px var(--spacing-lg);
  }

  /* Services blog section rules (from Block 6, lines 2315-2347) */
  .services-blog {
    padding: 80px 0;
  }

  .services-blog-header {
    margin-bottom: 60px;
  }

  .services-heading {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .services-description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .services-grid-blog {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card-header-blog,
  .service-card-content-blog,
  .service-card-footer-blog {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-card-title-blog {
    font-size: 16px;
  }

  /* Detail panel section rules (from Block 7, lines 2689-2701) */
  #cj-detail-panel.is-visible {
    max-height: 600px;
  }

  .cj-detail-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cj-detail-title {
    font-size: 20px;
  }

  /* Advantages table section rules (from Block 8, lines 2886-2893) */
  .adv-hrow,
  .adv-row {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr 1.1fr;
    grid-template-areas: "lbl us agent";
  }

  .adv-hrow .adv-col {
    padding: 14px 6px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
    line-height: 1.2;
    justify-content: center !important;
  }

  .adv-hrow .adv-col-lbl {
    padding-left: 16px !important;
  }

  .adv-row .adv-col {
    padding: 14px 6px !important;
  }

  .adv-row .adv-col-lbl {
    padding-left: 16px !important;
  }

  .adv-hrow .adv-col:nth-child(1),
  .adv-row .adv-col:nth-child(1) {
    grid-area: lbl;
  }

  .adv-hrow .adv-col:nth-child(2),
  .adv-row .adv-col:nth-child(2) {
    grid-area: us;
  }

  .adv-hrow .adv-col:nth-child(3),
  .adv-row .adv-col:nth-child(3) {
    grid-area: agent;
  }

  /* Hide columns 4 and 5 on mobile */
  .adv-hrow .adv-col:nth-child(4),
  .adv-hrow .adv-col:nth-child(5),
  .adv-row .adv-col:nth-child(4),
  .adv-row .adv-col:nth-child(5) {
    display: none;
  }

  /* Fix Chat Japan column alignment — replace border with inset shadow */
  .adv-col-us,
  .adv-hrow .adv-col-us {
    border-left: none !important;
    border-right: none !important;
    box-shadow: inset 2px 0 0 #2D6A4F, inset -2px 0 0 #2D6A4F;
  }

  .adv-last .adv-col-us {
    border-bottom: none !important;
    box-shadow: inset 2px 0 0 #2D6A4F, inset -2px 0 0 #2D6A4F, inset 0 -2px 0 #2D6A4F;
  }

  /* Section header + legend + footer keep proper padding */
  .section-header {
    padding: 0 16px;
  }

  .adv-legend,
  .adv-footer {
    padding: 0 16px;
  }

  /* Philosophy CTA section — stack on mobile */
  .philosophy-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .philosophy-cta .btn-primary {
    width: auto;
  }

  .philosophy-link {
    white-space: nowrap;
  }

  .adv-hrow .adv-col,
  .adv-hrow .adv-col-us,
  .adv-hrow .adv-col-lbl {
    justify-content: center !important;
    text-align: center !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;
  }

  .hero {
    height: 65vh;
    margin: 12px;
    margin-top: 160px;
    border-radius: 20px;
  }

  .hero-background {
    border-radius: 20px;
  }

  .hero-content .btn {
    padding: 10px 28px;
    font-size: 12px;
  }

  .intro {
    padding: 0;
  }

  .intro-wrapper {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .intro-left {
    padding: 40px 24px;
    border-radius: 16px 16px 0 0;
    align-items: center;
  }

  .intro-left-content h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
  }

  .intro-left-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    max-width: 100%;
  }

  .intro-left-content {
    text-align: center;
  }

  .intro-left-content .btn {
    margin: 0 auto;
    padding: 12px 28px;
    font-size: 13px;
  }

  .intro-right {
    padding: 20px;
    margin: 0;
    border-radius: 0 0 16px 16px;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-icon svg {
    width: 20px;
    height: 20px;
  }

  .benefit-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .benefit-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .intro-benefits {
    gap: 12px;
  }

  .services,
  .faq {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .section-header h2 {
    font-size: 28px;
  }

  .intro-card h3,
  .service-card h3 {
    font-size: 20px;
  }

  .service-number {
    font-size: 36px;
    margin-bottom: var(--spacing-lg);
  }
}

/* ==========================================
   SERVICE HUB & DETAIL PAGES
   ========================================== */

.service-hub-hero {
  padding: 120px var(--spacing-lg);
  background: var(--white);
  text-align: center;
}

.service-hub-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-hub-hero-content p {
  font-size: 18px;
  color: var(--mid-gray);
  font-weight: 300;
}

.service-hero {
  height: auto;
  padding: 120px 20px 60px 20px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-dark);
  width: 100%;
}

.service-hero.services-blog .service-hero-content {
  z-index: 3;
}

.service-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
  color: var(--text-dark);
}


.service-section {
  padding: 80px var(--spacing-lg);
  background: var(--light-gray);
}

.service-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  text-align: center;
}

.service-section p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-section-light {
  background: var(--light-gray);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--inkstone);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.6;
}

.service-pricing {
  padding: 80px var(--spacing-lg);
  background: var(--white);
}

.service-pricing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
  text-align: center;
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--border-light);
  background: var(--white);
  text-align: center;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card p {
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 32px;
  font-weight: 300;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card li {
  font-size: 14px;
  color: var(--mid-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.service-cta {
  padding: 80px var(--spacing-lg);
  background: var(--light-gray);
  text-align: center;
}

.service-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.btn-cta {
  display: inline-block;
  position: relative;
  background: var(--pine-green);
  color: var(--white);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid rgba(163, 45, 45, 0.4);
  border-radius: 100px;
  overflow: hidden;
  transition: border 600ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.btn-cta .btn-text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 800ms ease-out;
  color: var(--white);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.btn-cta:hover {
  border-color: transparent;
}

.btn-cta:hover .btn-text {
  transform: translateX(12px);
  color: var(--pine-green);
}

.btn-cta:hover::before {
  width: 500px;
  height: 500px;
  opacity: 1;
}

/* ==========================================
   SERVICES BLOG STYLE
   ========================================== */

.services-blog {
  padding: 120px 0;
  background: white;
  position: relative;
  overflow: visible;
}

.services-blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  z-index: 0;
  pointer-events: none;
}

.flickering-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.services-blog-container {
  padding: 0 var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-blog-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 16px;
}

.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-description {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 32px;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.services-cta-btn:hover {
  color: var(--pine-green);
}

.services-grid-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-blog {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
}

.service-card-blog:hover {
  border-color: #D0D0D0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--light-gray);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.service-card-blog:hover .service-card-image img {
  opacity: 0.85;
}

.service-card-header-blog {
  padding: 24px;
  padding-bottom: 0;
}

.service-card-title-blog {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
  transition: text-decoration 0.3s ease;
}

.service-card-blog:hover .service-card-title-blog {
  text-decoration: underline;
}

.service-card-content-blog {
  padding: 12px 24px;
}

.service-card-content-blog p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

.service-card-footer-blog {
  padding: 24px;
  padding-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-card-blog:hover .service-card-footer-blog {
  color: var(--pine-green);
}

.service-card-footer-blog svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card-blog:hover .service-card-footer-blog svg {
  transform: translateX(4px);
}

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

/* ==========================================
   RENOVATION GRID
   ========================================== */

.renovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .renovation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .renovation-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.renovation-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.renovation-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.renovation-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

.renovation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.renovation-card:hover .renovation-card-image img {
  transform: scale(1.05);
}

.renovation-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.renovation-card-icon {
  width: 40px;
  height: 40px;
  background: var(--pine-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.renovation-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.renovation-card p {
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.renovation-card .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.renovation-card .benefits-list li {
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.renovation-card .benefits-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pine-green);
  font-weight: bold;
}

.renovation-card .benefits-list li:last-child {
  margin-bottom: 0;
}


.renovation-card-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   CHAT JAPAN — SERVICE PATH HOVER/CLICK HIGHLIGHTING
   Add to the bottom of css/style.css
   ============================================================ */

/* --- Node state transitions --- */
[data-service] {
  transition: opacity 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}

/* Hovered / clicked node — fully alive */
[data-service].path-active .node-rule,
[data-service].path-active .node-rule {
  background: #2D6A4F !important;
  height: 2px !important;
}

[data-service].path-active .node-tag {
  color: #2D6A4F !important;
}

[data-service].path-active .node-title {
  color: #1A1A1A;
}

[data-service].path-active {
  transform: translateY(-2px);
}

/* Downstream / destination nodes — highlighted in black */
[data-service].path-destination .node-rule {
  background: #1A1A1A !important;
  height: 2px !important;
}

[data-service].path-destination .node-tag {
  color: #1A1A1A !important;
}

[data-service].path-destination .node-title {
  color: #1A1A1A !important;
}

[data-service].path-destination .node-desc {
  color: #1A1A1A !important;
}

[data-service].path-destination .node-num {
  color: #1A1A1A !important;
}

/* Unrelated nodes — fade out */
[data-service].path-dimmed {
  opacity: 0.18;
}

/* Base hover (no active state) */
[data-service]:hover:not(.path-dimmed) .node-rule {
  background: rgba(45, 106, 79, 0.45) !important;
}

[data-service]:hover:not(.path-dimmed) .node-tag {
  color: #2D6A4F !important;
}

[data-service]:hover:not(.path-dimmed) .node-title {
  color: #2D6A4F !important;
}

[data-service]:hover:not(.path-dimmed) .node-desc {
  color: #2D6A4F !important;
}

[data-service]:hover:not(.path-dimmed) .node-num {
  color: #2D6A4F !important;
}

/* --- Detail panel --- */
#cj-detail-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

#cj-detail-panel.is-visible {
  max-height: 400px;
  opacity: 1;
  margin-top: 32px;
  margin-bottom: 16px;
}

.cj-detail-inner {
  border-top: 0.5px solid rgba(26,26,26,0.12);
  padding-top: 28px;
}

.cj-detail-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A32D2D;
  margin-bottom: 8px;
}

.cj-detail-rule {
  width: 32px;
  height: 1px;
  background: #A32D2D;
  margin-bottom: 14px;
}

.cj-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cj-detail-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 600px;
}

.cj-detail-next-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.cj-detail-next-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cj-detail-next-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 0.5px solid #2D6A4F;
  color: #2D6A4F;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
}

.cj-detail-next-btn:hover {
  background: rgba(45, 106, 79, 0.08);
}

.cj-detail-ongoing {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cj-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid rgba(26,26,26,0.1);
}

.cj-detail-cta span {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: #888;
}

.cj-detail-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 20px;
  background: #A32D2D;
  color: white;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.cj-detail-btn:hover {
  background: #8a2424;
}

/* --- Mobile --- */
.bg-illustration-left {
  position: absolute;
  bottom: 0;
  left: -450px;
  width: 1100px;
  height: auto;
  max-height: 800px;
  display: block;
  pointer-events: none;
  opacity: 0.65;
  transform: scaleX(-1);
  -webkit-mask-image: radial-gradient(ellipse 110% 120% at 5% 95%, black 95%, transparent 100%);
  mask-image: radial-gradient(ellipse 110% 120% at 5% 95%, black 95%, transparent 100%);
}

