/* ==============================================
   WORKSHOP VOUCHER PAGE — editorial style 2026
   ============================================== */

/* BREADCRUMB */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 3rem;
  font-family: var(--sans, sans-serif);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #1a1a1a; }
.breadcrumb span { margin: 0 0.4rem; }

@media (max-width: 768px) {
  .breadcrumb { padding: 0.75rem 1.5rem; }
}

/* PAGE HEADER */
.page-header {
  background: #f7f5f2;
  text-align: center;
  padding: 6rem 2rem 5rem;
  border-bottom: 1px solid #eee;
}

.page-tag {
  font-family: var(--sans, sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #000;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.page-header h1 em {
  font-style: italic;
  color: #888;
}

.page-header p {
  font-family: var(--sans, sans-serif);
  font-size: 0.95rem;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* VOUCHER CARDS GRID */
.wv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 5rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.wv-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding: 0 2.5rem 0;
}

.wv-card:first-child { padding-left: 0; }
.wv-card:last-child { border-right: none; padding-right: 0; }

/* Card image */
.wv-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: #f7f5f2;
}

.wv-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(10%);
}

.wv-card:hover .wv-card-image img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* Card body */
.wv-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wv-card-num {
  font-family: var(--serif, Georgia, serif);
  font-size: 0.82rem;
  color: #ccc;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.wv-card-body h2 {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.wv-card-body p {
  font-family: var(--sans, sans-serif);
  font-size: 0.85rem;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

/* Details list */
.wv-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wv-details li {
  font-family: var(--sans, sans-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  padding-left: 0.75rem;
  position: relative;
}

.wv-details li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c8b8a2;
}

/* Card footer */
.wv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.wv-price {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
}

.wv-select-btn {
  font-family: var(--sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.wv-select-btn:hover { opacity: 0.4; }

/* FLEXIBLE CREDIT NOTE */
.wv-credit-note {
  text-align: center;
  padding: 0 2rem 4rem;
  max-width: 620px;
  margin: 0 auto;
}

.wv-credit-note p {
  font-family: var(--sans, sans-serif);
  font-size: 0.85rem;
  color: #999;
  line-height: 1.7;
}

.wv-credit-note strong {
  color: #666;
  font-weight: 500;
}

/* ORDER SECTION */
.wv-order {
  background: #f7f5f2;
  border-top: 1px solid #eee;
  padding: 6rem 4rem;
}

.wv-order-inner {
  max-width: 900px;
  margin: 0 auto;
}

.wv-order-inner > .page-tag {
  text-align: left;
}

.wv-order-inner h2 {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #000;
  margin: 0.5rem 0 1rem;
}

.wv-order-inner > p {
  font-family: var(--sans, sans-serif);
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 3rem;
}

.wv-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.wv-step {
  background: #fff;
  border: 1px solid #e8e4df;
  padding: 2rem 2.25rem;
}

.wv-step h3 {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.wv-step p {
  font-family: var(--sans, sans-serif);
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.payment-info {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f7f5f2;
  border-left: 2px solid #c8b8a2;
}

.payment-info p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  color: #444;
}

.wv-email-list {
  padding-left: 1.1rem;
  margin: 0.5rem 0 1.25rem;
}

.wv-email-list li {
  font-family: var(--sans, sans-serif);
  font-size: 0.85rem;
  color: #555;
  margin: 0.3rem 0;
}

.highlight {
  font-weight: 600;
  color: #1a1a1a;
}

.wv-email-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-family: var(--sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #1a1a1a;
  transition: background 0.2s ease;
}

.wv-email-btn:hover {
  background: #333;
  border-color: #333;
}

.wv-thanks {
  font-size: 0.82rem !important;
  color: #999 !important;
  margin-top: 1rem !important;
}

/* FAQ STRIP */
.faq {
  background: #f7f5f2;
  text-align: center;
  padding: 5rem 2rem;
}

.faq h3 {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.faq p {
  font-family: var(--sans, sans-serif);
  font-size: 0.9rem;
  color: #444;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.faq-button {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  border: 1px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--sans, sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-button:hover {
  background: #1a1a1a;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .wv-grid {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .wv-card {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 0 0 3rem !important;
  }

  .wv-card:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }

  .wv-order {
    padding: 4rem 2rem;
  }

  .wv-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-header {
    padding: 4rem 1.5rem 3rem;
  }

  .wv-grid {
    padding: 2.5rem 1.5rem;
  }

  .wv-order {
    padding: 3rem 1.5rem;
  }
}