/* ==========================================================================
   gift-cards.css  —  Burke Williams Gift Cards page
   Figma node: 1965:105491  |  [1920×3827]
   Tokens: --font-display:'Teodor TRIAL'  --font-script:'La Belle Aurore'
           --font-body:'Barlow'
   Colors: #335d88=blue  #fffdf8=cream  #1a1712=dark  #676767=grey
           #d75f3d=orange  #ece8dd=sand  #b3b3b3=mid-grey  #fffcf6=light-cream
   ========================================================================== */

/* ── Reset / base ─────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --blue:         #335d88;
  --cream:        #fffdf8;
  --light-cream:  #fffcf6;
  --dark:         #1a1712;
  --grey:         #676767;
  --mid-grey:     #b3b3b3;
  --orange:       #d75f3d;
  --sand:         #ece8dd;

  --font-display: 'Teodor TRIAL', Georgia, serif;
  --font-script:  'La Belle Aurore', cursive;
  --font-body:    'Barlow', sans-serif;
}

/* ── Shared button styles ─────────────────────────────────────────── */
.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}

.gc-btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.gc-btn--outline-blue:hover { background: var(--blue); color: #fff; }

.gc-btn--solid-blue {
  background: var(--blue);
  color: #fff;
  border: none;
}
.gc-btn--solid-blue:hover { opacity: 0.85; }

/* ══════════════════════════════════════════════════════════════════════
   SECTION 1 — HERO  [1920 × 530+]  fill:#335d88
   Navigation rendered by bw-header (global fixed header, 80px tall)
   ══════════════════════════════════════════════════════════════════════ */
.gc-hero {
  position: relative;
  background: var(--blue);
  padding-top: 80px; /* offset for fixed bw-header */
  padding-bottom: 60px;
  overflow: hidden;
}

/* Hero content */
.gc-hero__content {
  display: flex;
  justify-content: flex-start;
  padding: 60px 120px 0;
}

.gc-hero__text-block {
  max-width: 570px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gc-hero__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gc-hero__heading-display {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 350;
  line-height: 72px;
  color: var(--cream);
  display: block;
}

.gc-hero__heading-script {
  font-family: var(--font-script);
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  color: var(--cream);
  display: block;
}

/* Category pills */
.gc-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gc-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 110px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  white-space: nowrap;
}

.gc-hero__subheading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 350;
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
}

.gc-hero__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255,252,246,0.8);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION 2 — DIGITAL SHOWCASE  [1920 × 680]  fill:#fffdf8
   ══════════════════════════════════════════════════════════════════════ */
.gc-digital {
  background: var(--cream);
  padding: 80px 120px;
  width: 100%;
}

.gc-digital__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.gc-digital__card {
  flex: 0 0 402px;
  max-width: 402px;
  background: #f6f3ec;
  border: 1px solid #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gc-digital__image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #e5e5e5;
}

.gc-digital__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gc-digital__info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.gc-digital__amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
  color: var(--blue);
  display: block;
}

.gc-digital__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--grey);
  display: block;
  margin-bottom: 16px;
}

.gc-digital__info .gc-btn {
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION 3 — WELLNESS PACKAGES  [1920 × 1084]  fill:#fffdf8
   ══════════════════════════════════════════════════════════════════════ */
.gc-packages {
  background: var(--cream);
  padding: 100px 120px;
  width: 100%;
}

.gc-packages__inner {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.gc-packages__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Toggle */
.gc-packages__toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gc-packages__toggle-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.16px;
  color: var(--dark);
  margin: 0;
}

.gc-packages__toggle {
  display: inline-flex;
  align-items: center;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 100px;
  padding: 4px;
  gap: 0;
}

.gc-packages__toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 100px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  line-height: 1;
  min-width: 160px;
}

.gc-packages__toggle-btn--active {
  background: var(--orange);
  color: #fff;
}
.gc-packages__toggle-btn--active:hover { opacity: 0.9; }
.gc-packages__toggle-btn:not(.gc-packages__toggle-btn--active):hover {
  background: rgba(0,0,0,0.06);
}

/* Section heading */
.gc-packages__heading {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 350;
  line-height: 72px;
  color: var(--blue);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

/* 4-card grid */
.gc-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gc-packages__grid--hidden {
  display: none;
}

/* Package card */
.gc-pkg-card {
  background: #fff;
  border: 1px solid var(--mid-grey);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.gc-pkg-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.gc-pkg-card__image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  background: #e5e5e5;
  overflow: hidden;
}

.gc-pkg-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gc-pkg-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--cream);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--dark);
  text-transform: uppercase;
}

.gc-pkg-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  flex: 1;
  justify-content: space-between;
}

.gc-pkg-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-pkg-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin: 0;
}

.gc-pkg-card__desc {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}

.gc-pkg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gc-pkg-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 350;
  line-height: 1.4;
  color: var(--dark);
}

/* Dots */
.gc-packages__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gc-packages__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.2;
}

.gc-packages__dot--active {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════════════
   SECTION 4 — FAQ  [1920 × 845]  fill:#fffdf8
   ══════════════════════════════════════════════════════════════════════ */
.gc-faq {
  background: var(--cream);
  padding: 100px 120px;
  width: 100%;
}

.gc-faq__inner {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 180px;
}

.gc-faq__header {
  flex-shrink: 0;
}

.gc-faq__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 350;
  line-height: 48px;
  color: var(--blue);
  margin: 0;
  position: sticky;
  top: 80px;
}

.gc-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

/* Single FAQ item */
.gc-faq__item {
  border: 1px solid var(--mid-grey);
  border-radius: 4px;
  overflow: hidden;
}

.gc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 16px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue);
  transition: background-color 0.15s;
}
.gc-faq__question:hover { background: rgba(51,93,136,0.04); }

.gc-faq__icon {
  flex-shrink: 0;
  color: var(--blue);
  width: 24px;
  height: 24px;
  position: relative;
}

.gc-faq__icon-minus,
.gc-faq__icon-plus {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.2s;
}

/* Show minus when open */
.gc-faq__item--open .gc-faq__icon-minus { opacity: 1; }
.gc-faq__item--open .gc-faq__icon-plus  { opacity: 0; }

/* Show plus when closed */
.gc-faq__item:not(.gc-faq__item--open) .gc-faq__icon-minus { opacity: 0; }
.gc-faq__item:not(.gc-faq__item--open) .gc-faq__icon-plus  { opacity: 1; }

/* Answer */
.gc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gc-faq__item--open .gc-faq__answer {
  max-height: 300px;
}

.gc-faq__answer p {
  padding: 0 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.16px;
  color: #6b6b6e;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 1200px
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .gc-hero__content { padding: 60px 60px 0; }
  .gc-hero__heading-display,
  .gc-hero__heading-script { font-size: 48px; line-height: 58px; }

  .gc-digital { padding: 60px; }
  .gc-digital__card { flex: 0 0 320px; max-width: 320px; }

  .gc-packages { padding: 80px 60px; }
  .gc-packages__heading { font-size: 48px; line-height: 60px; }
  .gc-packages__grid { grid-template-columns: repeat(2, 1fr); }

  .gc-faq { padding: 80px 60px; }
  .gc-faq__inner { gap: 80px; }
  .gc-faq__title { font-size: 32px; line-height: 40px; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gc-hero__content { padding: 40px 40px 0; }
  .gc-hero__heading-display,
  .gc-hero__heading-script { font-size: 40px; line-height: 50px; }
  .gc-hero__body { font-size: 17px; }

  .gc-digital { padding: 60px 40px; }
  .gc-digital__inner { flex-wrap: wrap; justify-content: center; }
  .gc-digital__card { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }

  .gc-packages { padding: 60px 40px; }
  .gc-packages__heading { font-size: 36px; line-height: 46px; }
  .gc-packages__grid { grid-template-columns: repeat(2, 1fr); }

  .gc-faq { padding: 60px 40px; }
  .gc-faq__inner { flex-direction: column; gap: 40px; }
  .gc-faq__title { position: static; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .gc-hero { padding-bottom: 40px; }
  .gc-hero__content { padding: 32px 24px 0; }
  .gc-hero__heading-display,
  .gc-hero__heading-script { font-size: 36px; line-height: 44px; }
  .gc-hero__pills { flex-wrap: wrap; }
  .gc-hero__pill { font-size: 12px; padding: 8px 14px; }
  .gc-hero__subheading { font-size: 22px; }
  .gc-hero__body { font-size: 16px; }

  /* Digital */
  .gc-digital { padding: 48px 24px; }
  .gc-digital__inner { flex-direction: column; align-items: stretch; }
  .gc-digital__card { flex: none; max-width: 100%; }

  /* Packages */
  .gc-packages { padding: 48px 24px; }
  .gc-packages__heading { font-size: 28px; line-height: 36px; }
  .gc-packages__toggle-btn { min-width: 120px; font-size: 13px; padding: 8px 14px; }
  .gc-packages__grid { grid-template-columns: 1fr; }
  .gc-pkg-card__price { font-size: 22px; }

  /* FAQ */
  .gc-faq { padding: 48px 24px; }
  .gc-faq__title { font-size: 28px; line-height: 36px; }
  .gc-faq__question { font-size: 17px; }
}
