/* ===== AppareShisha FC Theme - main.css ===== */

:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --gold: #c8922a;
  --gold2: #e0a83a;
  --text: #f0ede8;
  --text2: #888077;
  --border: rgba(200,146,42,0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', 'HG明朝E', serif;
  line-height: 2;
  letter-spacing: 0.09em;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo { font-size: 16px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-decoration: none; }
.logo span { color: var(--text); }
.header-cta {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: background 0.3s, color 0.3s;
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', serif;
}
.header-cta:hover { background: var(--gold); color: #0d0d0d; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.1);
}
.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  margin-bottom: 48px;
  max-width: 500px;
}
.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.hero-tag {
  font-size: 12px;
  padding: 6px 14px;
  background: rgba(240,165,0,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--gold2);
}
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  padding: 18px 56px;
  border-radius: 0;
  border: 1px solid var(--gold);
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: background 0.3s, color 0.3s;
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', serif;
}
.btn-primary:hover { background: var(--gold); color: #0d0d0d; }

/* ── SECTIONS ── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Taviraj', 'Hiragino Mincho ProN', serif;
  font-weight: 200;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.section-title span { color: var(--gold); }
.section-desc {
  color: var(--text2);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 60px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 40px;
}

/* ── MARKET ── */
#market { background: var(--bg2); }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card-label { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.card-text { color: var(--text2); font-size: 14px; line-height: 1.8; }

/* ── FEATURES ── */
#features { background: var(--bg); }
.feature-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(240,165,0,0.15);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Arial Black', sans-serif;
}

/* ── TARGET ── */
#target { background: var(--bg2); }
.target-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
}
.target-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  background: rgba(240,165,0,0.15);
  color: var(--gold);
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* ── STYLE ── */
#style { background: var(--bg); }
.style-photo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.style-photo-content {
  padding: 56px 48px;
  background: var(--bg3);
  position: relative;
}
.style-photo-content::after {
  content: 'MAIN';
  position: absolute;
  top: 24px; right: 24px;
  font-size: 11px; letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
}
.style-photo-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.main-style-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.main-style-body { color: var(--text2); font-size: 15px; line-height: 1.9; max-width: 680px; }
.sub-styles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sub-style-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sub-style-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.sub-style-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.sub-style-desc { font-size: 13px; color: var(--text2); }

/* ── SUPPORT ── */
#support { background: var(--bg2); }

/* ── FLOW ── */
#flow { background: var(--bg); }
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  width: 64px; height: 64px;
  background: rgba(240,165,0,0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.flow-content-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.flow-content-desc { color: var(--text2); font-size: 14px; }
.flow-badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  background: rgba(240,165,0,0.15);
  color: var(--gold);
  border-radius: 3px;
  margin-left: 12px;
  letter-spacing: 1px;
}

/* ── FAQ ── */
#faq { background: var(--bg2); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}
.faq-q::before {
  content: 'Q';
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
}
.faq-a {
  color: var(--text2);
  font-size: 14px;
  padding-left: 24px;
  line-height: 1.8;
}

/* ── CTA ── */
#cta {
  background: radial-gradient(ellipse at 50% 0%, #1c1408 0%, #0d0d0d 70%);
  text-align: center;
  padding: 120px 24px;
}
.cta-box { max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-title span { color: var(--gold); }
.cta-desc { color: var(--text2); font-size: 16px; margin-bottom: 48px; line-height: 1.9; }

/* ── FORM ── */
.contact-form {
  text-align: left;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 40px;
  margin: 0 auto 32px;
  max-width: 640px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-label .req {
  font-size: 10px;
  color: #c05050;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select option { background: var(--bg2); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  border-radius: 4px;
  font-family: '游明朝', YuMincho, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold2); }
.form-note {
  font-size: 11px;
  color: var(--text2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.8;
}

/* ── COST ── */
#cost { background: var(--bg2); }
.cost-block { margin-bottom: 72px; }
.cost-block:last-child { margin-bottom: 0; }
.cost-type-label {
  font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  border-left: 3px solid var(--gold);
  padding-left: 12px; margin-bottom: 16px;
}
.cost-intro {
  color: var(--text2); font-size: 15px;
  line-height: 1.9; margin-bottom: 32px; max-width: 720px;
}
.cost-success {
  background: var(--bg3);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 32px 36px; margin-bottom: 28px;
}
.cost-success-label {
  font-size: 11px; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── VOICE ── */
#voice { background: var(--bg); }
.voice-card {
  background: var(--bg3);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 48px;
}
.voice-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.voice-avatar {
  width: 64px; height: 64px;
  background: rgba(240,165,0,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.voice-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.voice-store { font-size: 13px; color: var(--gold); margin-bottom: 4px; }
.voice-bg { font-size: 13px; color: var(--text2); }
.voice-quote {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 40px;
  font-style: normal;
}
.voice-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.voice-stat { text-align: center; }
.voice-stat-value {
  font-size: 40px; font-weight: 900;
  color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.voice-stat-value span { font-size: 18px; }
.voice-stat-label { font-size: 12px; color: var(--text2); letter-spacing: 1px; }

/* ── COMPANY ── */
#company { background: var(--bg2); }
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.history-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}
.history-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(240,165,0,0.1);
  padding: 6px 12px;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 56px;
  text-align: center;
}
.history-text { font-size: 14px; color: var(--text2); }
.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.store-area { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.store-list li {
  list-style: none;
  font-size: 13px;
  color: var(--text2);
  padding: 4px 0;
  padding-left: 12px;
  position: relative;
}
.store-list li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── PHOTO DIVIDER ── */
.photo-divider {
  height: 360px;
  display: flex;
  align-items: center;
  padding: 0 min(80px, 8vw);
}
.photo-divider-inner { max-width: 600px; }
.photo-divider-label {
  font-size: 11px; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase;
  font-family: 'Taviraj', serif; font-weight: 200;
  margin-bottom: 16px;
}
.photo-divider-text {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600; letter-spacing: 0.1em;
  line-height: 1.6; color: var(--text);
}
.photo-divider-text span { color: var(--gold); }

/* ── COMPANY PHOTOS ── */
.company-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 48px;
  border-radius: 8px;
  overflow: hidden;
}
.company-photo {
  aspect-ratio: 3/4;
  background: center/cover no-repeat;
  transition: transform 0.4s ease;
}
.company-photo:hover { transform: scale(1.03); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cards-3 { grid-template-columns: 1fr; }
  .sub-styles { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .style-photo-layout { grid-template-columns: 1fr; }
  .style-photo-img { min-height: 240px; }
  .style-photo-content { padding: 36px 24px; }
  .company-photos { grid-template-columns: repeat(2, 1fr); }
  .photo-divider { height: 260px; }
  .flow-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .voice-card { padding: 28px 20px; }
  .voice-stats { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .site-header { padding: 12px 16px; }
  .header-cta { font-size: 11px; padding: 6px 14px; }
  /* front-page responsive */
  .about-grid, .shop-grid { grid-template-columns: 1fr !important; }
  .stores-3col { grid-template-columns: 1fr !important; }
  .stores-2col { grid-template-columns: 1fr !important; }
}
