/* ── GIFT CARDS PAGE ──────────────────────────────────────────── */
/* Owns: /gift-cards and /gift-cards/thanks layout, hero, tiers,  */
/*       use cases, form.                                          */
/* Does NOT own: global nav drawer (.nav-drawer), theme vars.      */

.gc-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV ── */
.gc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(44,24,16,0.06);
  backdrop-filter: blur(8px);
}

.gc-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.gc-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-nav-links a {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.gc-nav-links a:hover,
.gc-nav-links a.active {
  color: var(--mahogany);
  border-bottom-color: var(--brass);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
}

/* ── NOTICE BAR ── */
.gc-notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(196, 149, 106, 0.1);
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
}

/* ── HERO ── */
.gc-hero {
  padding: 80px 40px 72px;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.gc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196,149,106,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(44,24,16,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.gc-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

/* Card mockup */
.gc-card-mockup {
  display: inline-block;
  margin-bottom: 40px;
}

.gc-card-face {
  width: 280px;
  height: 170px;
  background: linear-gradient(135deg, #2C1810 0%, #3d2218 60%, #2C1810 100%);
  border-radius: 12px;
  border: 1px solid rgba(196,149,106,0.3);
  box-shadow:
    0 20px 60px rgba(44,24,16,0.25),
    0 4px 12px rgba(44,24,16,0.15),
    inset 0 1px 0 rgba(196,149,106,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.gc-card-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(196,149,106,0.06) 100%);
}

.gc-card-emblem {
  position: relative;
  z-index: 1;
}

.gc-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #C4956A;
  letter-spacing: 0.04em;
  margin: 0;
  position: relative;
  z-index: 1;
}

.gc-card-tagline {
  font-size: 10px;
  color: rgba(196,149,106,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 1;
}

.gc-card-todo-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 9px;
  padding: 2px 6px;
  background: rgba(196,149,106,0.15);
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 3px;
  color: rgba(196,149,106,0.7);
  letter-spacing: 0.02em;
}

.gc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

.gc-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--mahogany);
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.gc-hero-rule {
  width: 48px;
  height: 2px;
  background: var(--brass);
  margin: 0 auto 24px;
  opacity: 0.6;
}

.gc-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.gc-hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--mahogany);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.gc-hero-cta:hover {
  background: #1a0e08;
  transform: translateY(-1px);
}

/* ── SECTIONS ── */
.gc-section {
  padding: 80px 40px;
}

.gc-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.gc-section-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
  font-weight: 500;
}

.gc-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--mahogany);
  margin: 0 0 40px;
  line-height: 1.2;
}

/* ── TODO BADGE ── */
.gc-todo-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(196,149,106,0.12);
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 3px;
  color: var(--brass);
  letter-spacing: 0.03em;
  vertical-align: middle;
  font-style: normal;
}

/* ── TIERS ── */
.gc-tiers-section {
  background: var(--cream-deep);
  border-top: 1px solid rgba(44,24,16,0.06);
  border-bottom: 1px solid rgba(44,24,16,0.06);
}

.gc-tiers-intro {
  font-size: 15px;
  color: var(--ink-muted);
  margin: -28px 0 40px;
  line-height: 1.6;
}

.gc-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gc-tier-card {
  background: var(--cream);
  border: 1px solid rgba(44,24,16,0.08);
  border-radius: 4px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gc-tier-card:hover {
  box-shadow: 0 8px 32px rgba(44,24,16,0.1);
  transform: translateY(-2px);
}

.gc-tier-card--featured {
  border-color: var(--brass);
  box-shadow: 0 4px 20px rgba(196,149,106,0.15);
}

.gc-tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
}

.gc-tier-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--mahogany);
  line-height: 1;
}

.gc-tier-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
}

.gc-tier-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 4px 0 12px;
  flex: 1;
}

.gc-tier-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(44,24,16,0.2);
  color: var(--mahogany);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.15s, border-color 0.15s;
  margin-top: auto;
}

.gc-tier-btn:hover {
  background: rgba(44,24,16,0.04);
  border-color: rgba(44,24,16,0.35);
}

.gc-tier-btn--featured {
  background: var(--mahogany);
  border-color: var(--mahogany);
  color: var(--cream);
}

.gc-tier-btn--featured:hover {
  background: #1a0e08;
  border-color: #1a0e08;
}

/* ── USE CASES ── */
.gc-uses-section {
  background: var(--cream);
}

.gc-uses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}

.gc-use-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-use-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196,149,106,0.08);
  border: 1px solid rgba(196,149,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-use-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--mahogany);
  margin: 0;
}

.gc-use-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

.gc-inline-link {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,149,106,0.4);
  transition: border-color 0.15s;
}

.gc-inline-link:hover {
  border-bottom-color: var(--brass);
}

/* ── FORM ── */
.gc-form-section {
  background: var(--cream-deep);
  border-top: 1px solid rgba(44,24,16,0.06);
}

.gc-form-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: -28px 0 36px;
  max-width: 560px;
}

.gc-form-error {
  background: rgba(180, 50, 30, 0.07);
  border: 1px solid rgba(180, 50, 30, 0.2);
  border-radius: 3px;
  color: #8a2a1a;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 24px;
}

.gc-form {
  max-width: 640px;
}

.gc-form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.gc-form-row--half {
  flex-direction: row;
  gap: 20px;
}

.gc-form-row--half .gc-form-group {
  flex: 1;
  min-width: 0;
}

.gc-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.gc-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.gc-label-opt {
  font-weight: 400;
  color: var(--ink-muted);
}

.gc-required {
  color: var(--brass);
}

.gc-label-hint {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0 0 4px;
}

.gc-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid rgba(44,24,16,0.15);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.gc-input:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.12);
}

.gc-input::placeholder {
  color: rgba(44,24,16,0.3);
}

.gc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C1810' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.gc-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.gc-submit {
  display: inline-block;
  padding: 15px 44px;
  background: var(--mahogany);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}

.gc-submit:hover {
  background: #1a0e08;
  transform: translateY(-1px);
}

.gc-submit-note {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── THANKS PAGE ── */
.gc-thanks-section {
  min-height: calc(100vh - 64px - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
}

.gc-thanks-inner {
  max-width: 520px;
}

.gc-thanks-icon {
  margin: 0 auto 28px;
  width: 56px;
  height: 56px;
}

.gc-thanks-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}

.gc-thanks-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--mahogany);
  margin: 0 0 20px;
  line-height: 1.1;
}

.gc-thanks-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 36px;
}

.gc-thanks-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gc-thanks-cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--mahogany);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.gc-thanks-cta:hover {
  background: #1a0e08;
}

.gc-thanks-secondary {
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(44,24,16,0.2);
}

.gc-thanks-secondary:hover {
  color: var(--mahogany);
  border-bottom-color: var(--mahogany);
}

/* ── FOOTER ── */
.gc-footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(44,24,16,0.07);
  background: var(--cream-deep);
}

.gc-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gc-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.gc-footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--mahogany);
}

.gc-footer-sep { color: var(--brass); opacity: 0.5; }

.gc-footer-address {
  color: var(--ink-muted);
}

.gc-footer-meta {
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gc-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gc-nav {
    padding: 0 20px;
  }

  .gc-nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .gc-hero {
    padding: 60px 24px 56px;
  }

  .gc-card-face {
    width: 240px;
    height: 148px;
  }

  .gc-section {
    padding: 56px 24px;
  }

  .gc-form-row--half {
    flex-direction: column;
    gap: 0;
  }

  .gc-uses-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gc-footer {
    padding: 28px 20px;
  }

  .gc-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gc-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .gc-footer-sep { display: none; }
}

@media (max-width: 480px) {
  .gc-tiers-grid {
    grid-template-columns: 1fr;
  }

  .gc-thanks-section {
    padding: 60px 24px;
  }
}

/* ── UPGRADED FORM ELEMENTS (v2 — radio tiers, notify checkbox) ── */

/* Amount tier radio cards */
.gc-radio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gc-radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px 12px;
  background: var(--cream);
  border: 1.5px solid rgba(44,24,16,0.12);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}

.gc-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gc-radio-card:hover,
.gc-radio-card--selected {
  border-color: var(--brass);
  background: rgba(196,149,106,0.06);
}

.gc-radio-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--mahogany);
  display: block;
  margin-bottom: 4px;
}

.gc-radio-label {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

/* Custom amount input that slides in */
.gc-custom-amount-wrap {
  margin-top: 12px;
}

.gc-input--narrow {
  max-width: 160px;
}

/* Radio list (recipient type, delivery preference) */
.gc-radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-radio-list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.gc-radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

.gc-radio-row input[type="radio"] {
  accent-color: var(--brass);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Notify on launch checkbox */
.gc-notify-row {
  background: rgba(196,149,106,0.07);
  border: 1px solid rgba(196,149,106,0.2);
  border-radius: 4px;
  padding: 14px 16px;
}

.gc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
}

.gc-checkbox-label input[type="checkbox"] {
  accent-color: var(--brass);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* AJAX success state (inline) */
.gc-form-success {
  text-align: center;
  padding: 48px 24px;
}

.gc-success-icon {
  margin-bottom: 20px;
}

.gc-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--mahogany);
  margin-bottom: 10px;
}

.gc-success-body {
  font-size: 16px;
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .gc-radio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gc-radio-list--inline {
    flex-direction: column;
    gap: 10px;
  }
}

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