/* ===== KAITORI PAGE SPECIFIC ===== */

/* Hero override */
.hero--kaitori { padding-bottom: 0; }
.hero__image--kaitori {
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80');
}
.hero__overlay--kaitori {
  background: linear-gradient(120deg, rgba(4,12,30,0.93) 0%, rgba(6,15,35,0.65) 60%, rgba(8,20,40,0.38) 100%);
}

/* Comparison */
.comparison-section { background: var(--dark2); padding: 100px 0; }
.comparison {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}
.comparison__col { flex: 1; padding: 40px 36px; }
.comparison__col--bad { background: rgba(255,255,255,0.02); }
.comparison__col--good { background: rgba(201,168,76,0.06); border-left: 1px solid rgba(201,168,76,0.18); }
.comparison__head {
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.comparison__col--bad .comparison__head { color: var(--gray); }
.comparison__col--good .comparison__head { color: var(--gold); }
.comparison__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comparison__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
.comparison__col--bad li { color: rgba(255,255,255,0.4); }
.comparison__col--good li { color: rgba(255,255,255,0.8); }
.comparison__col--good li strong { color: var(--gold-light); font-weight: 600; }
.mark { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.mark--bad { color: rgba(255,255,255,0.25); }
.mark--good { color: var(--gold); }
.comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gray);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* Types */
.types-section { background: var(--dark); padding: 100px 0; }
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.type-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.type-card:hover { background: var(--dark3); }
.type-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.type-card:hover::after { width: 100%; }
.type-card__label {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.type-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.type-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

/* Flow */
.flow { background: var(--black); padding: 100px 0; }
.flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
  margin-top: 56px;
}
.flow-step {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 28px;
  height: 100%;
}
.flow-step__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 16px;
}
.flow-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}
.flow-step p strong { color: var(--gold-light); font-weight: 600; }
.flow-step__arrow {
  font-size: 22px;
  color: var(--gold);
  opacity: 0.35;
  padding: 0 14px;
  white-space: nowrap;
}
.flow__cta { text-align: center; }

/* FAQ */
.faq { background: var(--dark2); padding: 100px 0; }
.faq__list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  text-align: left;
  cursor: none;
  transition: background 0.3s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q span:first-child { font-size: 15px; font-weight: 400; color: var(--white); line-height: 1.5; }
.faq-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 32px 28px; font-size: 14px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.6); }
.faq-a strong { color: var(--gold-light); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .flow__steps { grid-template-columns: 1fr; gap: 0; }
  .flow-step__arrow { display: none; }
  .flow-step { border-radius: 0; border-top: none; }
  .flow-step:first-child { border-radius: 4px 4px 0 0; border-top: 1px solid var(--border); }
  .flow-step:last-child { border-radius: 0 0 4px 4px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .comparison { flex-direction: column; }
  .comparison__vs { padding: 14px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .faq-q { padding: 20px; }
  .faq-a p { padding: 0 20px 20px; }
}
@media (max-width: 600px) {
  .types-grid { grid-template-columns: 1fr; }
}

/* ===== AREA PANELS ===== */
.area-scope { padding: 100px 0 0; background: var(--dark); }
.area-scope .section-label { margin-bottom: 12px; }
.area-scope .section-title { margin-bottom: 20px; }
.area-scope .section-sub { margin-bottom: 64px; }

.area-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 560px;
  margin-top: 56px;
}

.area-panel {
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: flex 0.6s cubic-bezier(0.4,0,0.2,1);
}
.area-panels:hover .area-panel { flex: 0.6; }
.area-panels:hover .area-panel:hover { flex: 2.2; }

.area-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.area-panel:hover .area-panel__bg { transform: scale(1.06); }

.area-panel__bg--city {
  background-image: url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=800&q=80');
}
.area-panel__bg--kanto {
  background-image: url('https://images.unsplash.com/photo-1524413840807-0c3cb6fa808d?w=800&q=80');
}
.area-panel__bg--suburb {
  background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=800&q=80');
}
.area-panel__bg--resort {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80');
}

.area-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%);
  transition: background 0.4s ease;
}
.area-panel:hover .area-panel__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.area-panel__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
}

.area-panel__num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.area-panel__title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.area-panel__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  font-weight: 300;
  margin-bottom: 16px;
}

.area-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}
.area-panel:hover .area-panel__tags {
  opacity: 1;
  transform: translateY(0);
}

.area-panel__tag {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .area-panels {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .area-panel { height: 300px; }
  .area-panels:hover .area-panel,
  .area-panels:hover .area-panel:hover { flex: 1; }
  .area-panel__tags { opacity: 1; transform: none; }
}
@media (max-width: 540px) {
  .area-panels { grid-template-columns: 1fr; }
  .area-panel { height: 260px; }
}
