/* ===========================================================
   Concierge #how-it-works section v1
   Scope: only `#how-it-works`. All classes use `.hw-` prefix.
   =========================================================== */

#how-it-works {
  padding: 96px 24px;
  background: #FFFFFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hw-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.hw-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.hw-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: #FF6A1F;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hw-h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0A0A14;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.hw-sub {
  font-size: 14px;
  line-height: 1.6;
  color: #5A5A6A;
  margin: 0;
}

.hw-frame {
  max-width: 940px;
  margin: 0 auto;
}

/* 12-second hero label */
.hw-time-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hw-time-line {
  flex: 1;
  height: 0.5px;
  background: rgba(0, 0, 0, 0.1);
}
.hw-time-center {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hw-time-num {
  font-size: 32px;
  font-weight: 700;
  color: #0A0A14;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hw-time-unit {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #8A8A95;
}

/* Column headers */
.hw-col-headers {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.hw-col-spacer { /* empty */ }
.hw-col-h {
  font-size: 11px;
  font-weight: 600;
  color: #0A0A14;
  padding-left: 14px;
}

/* Container */
.hw-container {
  background: #F5F5F7;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 6px;
}

.hw-rows {
  background: #FFFFFF;
  border-radius: 12px 12px 0 0;
  padding: 16px 14px;
}

/* Row */
.hw-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 10px;
}
.hw-row:last-child { margin-bottom: 0; }

.hw-time {
  font-size: 10px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  color: #8A8A95;
  padding-top: 12px;
}

/* Cell base */
.hw-cell {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
}
.hw-cell-empty {
  background: transparent;
  padding: 0;
}

/* Member message cell */
.hw-cell-member {
  background: #F0F0F2;
  color: #0A0A14;
}

/* Yeyak message cell (pastel orange) */
.hw-cell-yeyak-msg {
  background: #FBEBDF;
  color: #0A0A14;
}

/* Yeyak step cell (black) */
.hw-cell-yeyak {
  background: #0A0A14;
}
.hw-cell-yeyak-edge {
  border: 0.5px solid #FF6A1F;
}
.hw-cell-yeyak .hw-cell-text,
.hw-cell-yeyak-edge .hw-cell-text {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.4;
}

/* Tags */
.hw-cell-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.hw-tag-member { color: #8A8A95; }
.hw-tag-yeyak-msg { color: #FF6A1F; }
.hw-tag-yeyak { color: #8A8A95; }
.hw-tag-edge {
  color: #FF6A1F;
  font-weight: 600;
}

.hw-cell-tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.hw-cell-tag-row .hw-cell-tag { margin-bottom: 0; }
.hw-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF6A1F;
  flex-shrink: 0;
}

/* Booked strip */
.hw-booked {
  background: #EAF6F0;
  border-radius: 0 0 12px 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
}
.hw-time-booked {
  color: #0F6E56;
  font-weight: 700;
  font-size: 11px;
  padding-top: 0;
}
.hw-booked-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hw-booked-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A14;
}
.hw-booked-sub {
  font-size: 11px;
  color: #5A5A6A;
  margin-top: 2px;
}
.hw-booked-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0F6E56;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  #how-it-works { padding: 64px 24px; }
  .hw-h2 { font-size: 30px; }
  .hw-time-num { font-size: 26px; }

  .hw-col-headers,
  .hw-row,
  .hw-booked {
    grid-template-columns: 48px 1fr 1fr;
    gap: 8px;
  }
  .hw-time, .hw-time-booked {
    font-size: 9px;
  }
  .hw-cell {
    font-size: 11px;
    padding: 8px 10px;
  }
  .hw-cell-tag { font-size: 8px; }
}

@media (max-width: 640px) {
  .hw-col-headers { display: none; }
  .hw-row, .hw-booked {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
  }
  .hw-time {
    padding-top: 0;
    font-size: 10px;
    color: #FF6A1F;
    font-weight: 600;
  }
  .hw-cell-empty { display: none; }
}
