/* Group planner mockup v01 */

/* Hero */
.gp-hero {
  position: relative;
  height: clamp(220px, 30vw, 380px);
  overflow: hidden;
  background: #1e1e1b;
}

.gp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.gp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(30, 30, 27, 0.88) 0%,
    rgba(30, 30, 27, 0.52) 55%,
    transparent 100%
  );
}

.gp-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
  left: 0;
  right: 0;
}

@media (min-width: 640px) {
  .gp-hero-inner { padding: 2rem 1.5rem; }
}

@media (min-width: 900px) {
  .gp-hero-inner { padding: 2rem 2.5rem; }
}

.gp-hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 300;
  color: white;
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

.gp-hero-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  max-width: 44rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.15s, border-color 0.15s;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.75rem 1rem 3.5rem;
}

@media (min-width: 640px) {
  .page { padding: 2.5rem 1.5rem 4rem; }
}

/* Floating progress */
.progress-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  background: white;
  border: 1px solid var(--hh-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  padding: 0.75rem 1rem;
  min-width: 9rem;
}

.progress-float-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hh-muted);
  margin-bottom: 0.5rem;
}

.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--hh-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.progress-step:hover { color: var(--hh-charcoal); }

.progress-step-num {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid var(--hh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.progress-step.is-active { color: var(--hh-charcoal); font-weight: 600; }
.progress-step.is-active .progress-step-num,
.progress-step.is-done .progress-step-num {
  background: var(--hh-green);
  border-color: var(--hh-green);
  color: white;
}

.progress-step.is-done { color: var(--hh-charcoal); }

@media (max-width: 640px) {
  .progress-float {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    min-width: 0;
  }
  .progress-steps {
    flex-direction: row;
    justify-content: space-between;
  }
  .progress-step span:last-child { display: none; }
}

/* Sections */
.gp-section {
  scroll-margin-top: 5rem;
  margin-bottom: 3rem;
}

.gp-section-head {
  margin-bottom: 1.35rem;
  padding-left: 0;
}

/* Step label with numbered badge */
.section-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hh-muted);
  margin-bottom: 0.65rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--hh-green);
  color: white;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}

.gp-section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gp-section-head p {
  font-size: 14px;
  color: var(--hh-muted);
  line-height: 1.6;
  max-width: 40rem;
}

.gp-section-card {
  background: white;
  border: 1px solid var(--hh-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.5rem 1.5rem;
}

/* Theme cards */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .theme-grid { grid-template-columns: 1fr; }
}

.theme-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 2px solid var(--hh-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}

.theme-card:hover {
  border-color: var(--hh-green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.theme-card.is-selected {
  border-color: var(--hh-green);
  box-shadow: 0 4px 20px rgba(226, 7, 17, 0.12);
}

.theme-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.theme-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.theme-card:hover .theme-card-img img { transform: scale(1.03); }

.theme-card-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.theme-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.theme-card-body p {
  font-size: 13px;
  color: var(--hh-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  flex: 1;
}

.theme-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.theme-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11px;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--hh-stone);
  border: 1px solid var(--hh-border);
  color: var(--hh-charcoal);
}

.theme-icon-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
}

.theme-card-cta {
  margin-top: 0.85rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--hh-green);
}

.theme-card.is-selected .theme-card-cta::before {
  content: "✓ ";
}

/* Accordion subsections */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion-item {
  border: 1px solid var(--hh-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
}

.accordion-item.is-open {
  box-shadow: var(--shadow-sm);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--hh-stone);
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
}

.accordion-trigger:hover {
  background: var(--hh-sandstone);
}

.accordion-item.is-open .accordion-trigger {
  background: var(--hh-stone);
}

.accordion-trigger h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.accordion-trigger p {
  font-size: 12px;
  color: var(--hh-muted);
  margin-top: 0.15rem;
}

.accordion-chevron {
  font-size: 1.1rem;
  color: var(--hh-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-chevron { transform: rotate(180deg); }

.accordion-panel {
  display: none;
  padding: 1.25rem 1.25rem 1.35rem;
  border-top: 1px solid var(--hh-border);
}

.accordion-item.is-open .accordion-panel { display: block; }

.accordion-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fde8e9;
  color: var(--hh-green);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

/* Filter pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.filter-pill {
  border: 1px solid var(--hh-border);
  background: white;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  color: var(--hh-muted);
  transition: all 0.12s;
}

.filter-pill:hover { border-color: var(--hh-green); color: var(--hh-charcoal); }
.filter-pill.active {
  border-color: var(--hh-green);
  background: #fde8e9;
  color: var(--hh-charcoal);
  font-weight: 500;
}

/* Experience-style cards (accommodation, activities, MICE) */
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pick-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 960px) {
  .pick-grid,
  .pick-grid.cols-2 { grid-template-columns: 1fr; }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .pick-grid { grid-template-columns: repeat(2, 1fr); }
}

.pick-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--hh-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.12s, box-shadow 0.12s;
}

.pick-card:hover {
  border-color: var(--hh-green);
  box-shadow: var(--shadow-sm);
}

.pick-card.is-selected {
  border-color: var(--hh-green);
  box-shadow: 0 0 0 1px var(--hh-green);
}

.pick-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.pick-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick-card-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--hh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.12s;
}

.pick-card.is-selected .pick-card-check {
  opacity: 1;
  background: var(--hh-green);
  border-color: var(--hh-green);
  color: white;
}

.pick-card.is-selected .pick-card-check::after { content: "✓"; }

.pick-card-body { padding: 0.85rem 1rem 1rem; flex: 1; }

.pick-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pick-card-meta {
  font-size: 11px;
  color: var(--hh-muted);
  margin-bottom: 0.35rem;
}

.pick-card-desc {
  font-size: 13px;
  color: var(--hh-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.pick-card-fact {
  font-size: 11px;
  font-weight: 600;
  color: var(--hh-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Rich cards (dining, events) — HappeningCard style */
.rich-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 1100px) {
  .rich-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .rich-grid { grid-template-columns: 1fr; }
}

.rich-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #111;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: white;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.rich-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.rich-card.is-selected {
  border-color: var(--hh-green);
  box-shadow: 0 0 0 2px var(--hh-green);
}

.rich-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rich-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 100%);
  pointer-events: none;
}

.rich-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  z-index: 1;
}

.rich-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--hh-green);
  color: #fcd5d5;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.rich-card-body { margin-top: auto; }

.rich-card-body h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.rich-card-body p {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

.rich-card-capacity {
  margin-top: 0.35rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fcd5d5;
}

.rich-card-check {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  z-index: 2;
}

.rich-card.is-selected .rich-card-check {
  background: var(--hh-green);
  border-color: var(--hh-green);
  color: white;
}

.rich-card.is-selected .rich-card-check::after { content: "✓"; }

/* MICE feature tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
}

.feature-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: var(--hh-stone);
  color: var(--hh-muted);
}

.mice-skip-note {
  font-size: 12px;
  color: var(--hh-muted);
  font-style: italic;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: var(--hh-stone);
  border-radius: 8px;
}

.mice-hidden { display: none; }

/* Communication preference picker */
.comm-picker {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.comm-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border: 1.5px solid var(--hh-border);
  border-radius: 999px;
  background: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--hh-muted);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.comm-option:hover {
  border-color: var(--hh-green);
  color: var(--hh-charcoal);
}

.comm-option.is-active {
  border-color: var(--hh-green);
  background: #fde8e9;
  color: var(--hh-charcoal);
}

.comm-icon {
  font-size: 14px;
  line-height: 1;
}

/* Section 3 — summary + form */
.request-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 800px) {
  .request-section { grid-template-columns: 1fr; }
}

.summary-box {
  background: var(--hh-stone);
  border: 1px solid var(--hh-border);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.25rem;
  position: sticky;
  top: 5rem;
}

.summary-box h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--hh-border);
}

.summary-empty {
  font-size: 13px;
  color: var(--hh-muted);
  line-height: 1.55;
}

.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.summary-group-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hh-muted);
  margin-bottom: 0.25rem;
}

.summary-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 13px;
}

.summary-item img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.summary-theme {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--hh-border);
  font-size: 13px;
}

.summary-theme strong { font-weight: 600; }

.form-card {
  background: white;
  border: 1px solid var(--hh-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form-hint {
  font-size: 12px;
  color: var(--hh-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 480px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.form-field label span {
  font-weight: 400;
  color: var(--hh-muted);
  font-size: 12px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--hh-border);
  border-radius: 8px;
  background: var(--hh-cream);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(226, 7, 17, 0.25);
  border-color: var(--hh-green);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #c44;
}

.field-error {
  font-size: 11px;
  color: #a33;
  margin-top: 0.25rem;
  display: none;
}

.form-field.has-error .field-error { display: block; }

.form-pricing-note {
  font-size: 12px;
  color: var(--hh-muted);
  margin: 0.75rem 0;
  padding: 0.5rem 0.65rem;
  background: var(--hh-stone);
  border-radius: 6px;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: var(--hh-green);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.12s;
}

.btn-submit:hover { opacity: 0.92; }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.mockup-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 12px;
  color: var(--hh-muted);
  border-top: 1px solid var(--hh-border);
}

.v01-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #302782;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.events-date-note {
  font-size: 12px;
  color: var(--hh-blue);
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.65rem;
  background: #eef4f7;
  border-radius: 6px;
  border-left: 3px solid var(--hh-blue);
}

.events-date-note.hidden { display: none; }

/* Success page */
.success-page {
  max-width: 36rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fde8e9;
  color: var(--hh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.success-page h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.success-page p {
  color: var(--hh-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.success-back {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 1px solid var(--hh-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hh-charcoal);
  text-decoration: none;
  background: white;
}

.success-back:hover { border-color: var(--hh-green); color: var(--hh-green); }
