/* GooCyoku LP — DaisyUI Theme + Custom Styles */

[data-theme="light"] {
  --p: 48.23% 0.19 25.55;
  --pf: 39.78% 0.156 24.87;
  --pc: 100% 0 0;
  --rounded-btn: 9999px;
  --rounded-badge: 9999px;
  --btn-focus-scale: 0.97;
  --animation-btn: 0.2s;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Inter', system-ui, sans-serif;
  background-color: #F8F7F4;
}

/* Logo — match TOP page */
.logo-top {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: none;
}

.logo-top-accent {
  color: #c8102e;
}

/* Navbar */
.navbar-glass {
  background-color: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar-glass.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Hero bg */
.hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0, 0, 0, 0.015) 0%, transparent 70%),
    #F8F7F4;
}

/* Section bg */
.section-cream { background-color: #F8F7F4; }
.section-white { background-color: #ffffff; }
.section-tint  { background-color: #F3F3F1; }

/* Quote block */
.quote-block {
  padding-left: 1.5rem;
  border-left: 3px solid #c8102e;
}

/* CTA gradient */
.cta-gradient {
  background: linear-gradient(135deg, #F3F3F1 0%, #F8F7F4 50%, #EFEFED 100%);
}

/* Process timeline (custom) */
.process-timeline {
  position: relative;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step:not(:last-child) .process-step-marker::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  bottom: 0;
  background-color: #c8102e;
}

.process-step-marker {
  position: relative;
  flex-shrink: 0;
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #c8102e;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.process-step-content {
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
}

/* Service type cards */
.service-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1.5rem 1rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-type-card:hover {
  border-color: #c8102e;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.08);
}

.service-type-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1F2937;
}

.service-type-card-accent {
  background-color: #c8102e;
  border-color: #c8102e;
}

.service-type-card-accent:hover {
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
}

.service-type-card-accent .service-type-label {
  color: #fff;
}

/* Recommend cards */
.recommend-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background-color: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  min-height: 4rem;
}

/* Border left */
.border-l-3 { border-left-width: 3px; }

/* Image styling */
.img-polish {
  border-radius: 1rem;
  object-fit: cover;
}

/* Accent colors */
.text-goocyoku { color: #c8102e; }
.bg-goocyoku { background-color: #c8102e; }

/* Selection */
::selection {
  background-color: rgba(200, 16, 46, 0.12);
  color: #1F2937;
}

/* Form focus (non-contact inputs) */
.navbar input:focus, .drawer input:focus {
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
