/* discovery-call.css — Luxury form page for /discovery-call booking */

/* ─── Page shell ──────────────────────────────────────────────────────────── */

.dc-page {
  background: #faf9f7;
  min-height: 100vh;
}

/* ─── Nav (reuse theme nav) ───────────────────────────────────────────────── */

/* ─── Hero band ───────────────────────────────────────────────────────────── */

.dc-hero {
  background: #1a1410;
  color: #f5f0e8;
  padding: 60px 24px 56px;
  position: relative;
  overflow: hidden;
}

.dc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 80%, rgba(201,169,110,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.dc-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
}

.dc-hero-photo-col {
  flex: 0 0 260px;
}

.dc-hero-photo {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  border: 2px solid rgba(201,169,110,0.3);
  filter: grayscale(15%);
}

.dc-hero-text-col {
  flex: 1;
}

.dc-hero-faith {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin: 0 0 20px;
}

.dc-hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: #f5f0e8;
  margin: 0 0 24px;
}

.dc-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #c4b49a;
  margin: 0 0 16px;
}

.dc-hero-trust {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #8a7a5e;
  margin: 8px 0 0;
}

@media (max-width: 680px) {
  .dc-hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .dc-hero-photo-col {
    flex: 0 0 auto;
  }
  .dc-hero-photo {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* ─── Content layout ──────────────────────────────────────────────────────── */

.dc-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}

/* ─── Success state ───────────────────────────────────────────────────────── */

.dc-success {
  text-align: center;
  padding: 64px 24px;
}

.dc-success-check {
  width: 56px;
  height: 56px;
  border: 2px solid #c9a96e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: #c9a96e;
}

.dc-success-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: #2a2218;
  margin: 0 0 16px;
}

.dc-success-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #5a4a30;
  max-width: 480px;
  margin: 0 auto 40px;
}

.dc-success-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid #d4c4a8;
}

.dc-success-link-item {
  border-bottom: 1px solid #d4c4a8;
  padding: 18px 24px;
  text-align: left;
}

.dc-success-link-item:last-child {
  border-bottom: none;
}

.dc-success-link-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7a5e;
  margin: 0 0 6px;
}

.dc-success-link-item a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  color: #c9a96e;
  text-decoration: none;
  transition: color 0.2s;
}

.dc-success-link-item a:hover {
  color: #a8803e;
}

/* ─── Form ────────────────────────────────────────────────────────────────── */

.dc-form-intro {
  margin-bottom: 48px;
  border-bottom: 1px solid #e8e0d0;
  padding-bottom: 40px;
}

.dc-form-intro-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: #2a2218;
  margin: 0 0 12px;
}

.dc-form-intro-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #5a4a30;
  margin: 0;
}

.dc-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dc-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 580px) {
  .dc-field-group {
    grid-template-columns: 1fr;
  }
}

.dc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-field--full {
  grid-column: 1 / -1;
}

.dc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a4a30;
  font-weight: 500;
}

.dc-label .dc-required {
  color: #c9a96e;
  margin-left: 2px;
}

.dc-input,
.dc-select,
.dc-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #2a2218;
  background: #fff;
  border: 1px solid #d4c4a8;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.dc-input::placeholder,
.dc-textarea::placeholder {
  color: #b0a090;
}

.dc-input:focus,
.dc-select:focus,
.dc-textarea:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.dc-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'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7a5e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.dc-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.dc-char-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8a7a5e;
  text-align: right;
  margin-top: 2px;
}

/* ─── Submit area ─────────────────────────────────────────────────────────── */

.dc-submit-area {
  border-top: 1px solid #e8e0d0;
  padding-top: 32px;
}

.dc-submit-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a7a5e;
  line-height: 1.6;
  margin: 0 0 20px;
}

.dc-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c9a96e;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.dc-btn-submit:hover {
  background: #a8803e;
}

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

.dc-btn-submit svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.dc-btn-submit:not(:disabled):hover svg {
  transform: translateX(3px);
}

.dc-error-msg {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #b44;
  background: #fff5f5;
  border: 1px solid #f0c0c0;
  padding: 12px 16px;
  margin-top: 16px;
  display: none;
}

.dc-error-msg.visible {
  display: block;
}

/* ─── 3-column field group ────────────────────────────────────────────────── */

.dc-field-group--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 680px) {
  .dc-field-group--3 {
    grid-template-columns: 1fr;
  }
}

/* ─── Radio pill group ────────────────────────────────────────────────────── */

.dc-radio-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex-direction: row;
  align-items: flex-start;
}

.dc-radio-group--wrap {
  flex-wrap: wrap;
}

.dc-radio-label {
  position: relative;
  cursor: pointer;
  display: inline-flex;
}

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

.dc-radio-pill {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5a4a30;
  background: #fff;
  border: 1px solid #d4c4a8;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.dc-radio-label input[type="radio"]:checked + .dc-radio-pill {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #fff;
}

.dc-radio-label:hover .dc-radio-pill {
  border-color: #c9a96e;
  color: #2a2218;
}

.dc-radio-label input[type="radio"]:focus-visible + .dc-radio-pill {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* ─── "Other" textarea expansion ─────────────────────────────────────────── */

.dc-other-wrap {
  margin-top: 16px;
}

.dc-textarea--other {
  width: 100%;
  box-sizing: border-box;
}

/* ─── Time slot grid ──────────────────────────────────────────────────────── */

.dc-timeslot-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a7a5e;
  line-height: 1.5;
  margin: 4px 0 16px;
}

.dc-timeslot-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.dc-slot-col {
  flex: 0 0 auto;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* Override any parent grid-template-columns that would split slot columns */
  grid-column: unset !important;
  grid-template-columns: unset !important;
}

.dc-slot-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a7a5e;
  margin: 0 0 4px;
  white-space: nowrap;
}

.dc-slot-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5a4a30;
  background: #fff;
  border: 1px solid #d4c4a8;
  padding: 7px 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.dc-slot-btn:hover {
  border-color: #c9a96e;
  color: #2a2218;
}

.dc-slot-btn.selected {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #fff;
}

.dc-slot-btn.booked {
  background: #f0ece4;
  border-color: #e0d8c8;
  color: #b0a090;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.6;
}

.dc-timeslot-loading {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8a7a5e;
  padding: 12px 0;
}

/* ─── Optional label ──────────────────────────────────────────────────────── */

.dc-optional {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #8a7a5e;
}

/* ─── Not ready soft offload ─────────────────────────────────────────────── */

.dc-not-ready {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid #e8e0d0;
  text-align: center;
}

.dc-not-ready-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7a5e;
  margin: 0 0 8px;
}

.dc-not-ready-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a4a30;
  line-height: 1.6;
  margin: 0 0 32px;
}

.dc-not-ready-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.dc-not-ready-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f5f0e8;
  border: 1px solid #d4c4a8;
  padding: 24px 28px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  max-width: 280px;
  text-align: left;
}

.dc-not-ready-link:hover {
  border-color: #c9a96e;
  background: #faf7f0;
}

.dc-not-ready-link-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  color: #c9a96e;
  line-height: 1.4;
}

.dc-not-ready-link-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5a4a30;
  line-height: 1.5;
}

/* ─── Confirmed page ──────────────────────────────────────────────────────── */

.dc-confirmed-hero {
  background: #1a1410;
  color: #f5f0e8;
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
}

.dc-confirmed-check {
  width: 64px;
  height: 64px;
  border: 1.5px solid #c9a96e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.dc-confirmed-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: #f5f0e8;
  margin: 0 0 20px;
}

.dc-confirmed-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #c4b49a;
  max-width: 560px;
  margin: 0 auto 24px;
}

.dc-confirmed-faith {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #6a5a3a;
  margin: 0;
}

.dc-confirmed-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}

/* ─── Prep list ───────────────────────────────────────────────────────────── */

.dc-prep {
  margin-bottom: 72px;
}

.dc-prep-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: #2a2218;
  margin: 0 0 12px;
}

.dc-prep-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a4a30;
  line-height: 1.7;
  margin: 0 0 40px;
}

.dc-prep-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #d4c4a8;
}

.dc-prep-item {
  display: flex;
  gap: 28px;
  padding: 28px 32px;
  border-bottom: 1px solid #d4c4a8;
  align-items: flex-start;
}

.dc-prep-item:last-child {
  border-bottom: none;
}

.dc-prep-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  color: #c9a96e;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.dc-prep-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #2a2218;
  line-height: 1.35;
  margin: 0 0 8px;
}

.dc-prep-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5a4a30;
  line-height: 1.7;
  margin: 0;
}

/* ─── While you wait links ────────────────────────────────────────────────── */

.dc-wait-links {
  border-top: 1px solid #e8e0d0;
  padding-top: 48px;
}

.dc-wait-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7a5e;
  margin: 0 0 24px;
}

.dc-wait-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #d4c4a8;
}

.dc-wait-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid #d4c4a8;
  text-decoration: none;
  transition: background 0.15s;
}

.dc-wait-link:last-child {
  border-bottom: none;
}

.dc-wait-link:hover {
  background: #f5f0e8;
}

.dc-wait-link-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a5e;
}

.dc-wait-link-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  color: #c9a96e;
  line-height: 1.4;
}

/* ─── Footer soft CTA ─────────────────────────────────────────────────────── */

.dc-footer-spacer {
  padding: 0 24px 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #8a7a5e;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

/* ─── What to expect strip ────────────────────────────────────────────────── */

.dc-expect-strip {
  background: #f5f0e8;
  border-bottom: 1px solid #d4c4a8;
  padding: 48px 24px;
}

.dc-expect-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.dc-expect-step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}

.dc-expect-divider {
  width: 1px;
  background: #d4c4a8;
  align-self: stretch;
  flex-shrink: 0;
  margin: 8px 0;
}

.dc-expect-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: #c9a96e;
  line-height: 1;
  margin-bottom: 12px;
}

.dc-expect-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #2a2218;
  margin: 0 0 8px;
}

.dc-expect-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5a4a30;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 620px) {
  .dc-expect-inner {
    flex-direction: column;
    gap: 32px;
  }
  .dc-expect-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
    margin: 0;
  }
  .dc-expect-step {
    padding: 0;
  }
}

/* ─── 2-column field group (explicit alias) ──────────────────────────────── */

.dc-field-group--2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 580px) {
  .dc-field-group--2 {
    grid-template-columns: 1fr;
  }
}

/* ─── Field hint (sub-label below the label) ─────────────────────────────── */

/* Timeslot picker field — pass through grid layout from dc-field-group,
   preventing column splitting in the flex slot grid below. */
.dc-field#dc-timeslot-field {
  display: contents;
}

.dc-field-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8a7a5e;
  line-height: 1.5;
  margin: -4px 0 8px;
}

/* ─── 4-step call timeline ────────────────────────────────────────────────── */

.dc-timeline-section {
  background: #1a1410;
  padding: 64px 24px 56px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.dc-timeline-inner {
  max-width: 960px;
  margin: 0 auto;
}

.dc-timeline-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin: 0 0 10px;
}

.dc-timeline-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: #f5f0e8;
  margin: 0 0 40px;
}

.dc-timeline-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.dc-timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.dc-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.dc-timeline-min {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #c9a96e;
  line-height: 1;
}

.dc-timeline-min-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a5e;
  margin-top: 2px;
}

/* Horizontal connector line between steps */
.dc-timeline-connector {
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: rgba(201,169,110,0.25);
  /* spans from center of this step to center of next */
  width: 100%;
  pointer-events: none;
}

.dc-timeline-step--last .dc-timeline-connector {
  display: none;
}

.dc-timeline-body {
  text-align: center;
  padding: 0 16px;
}

.dc-timeline-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #c4b49a;
}

.dc-timeline-step-text em {
  color: #f5f0e8;
  font-style: italic;
}

/* Mobile: collapse to vertical list */
@media (max-width: 640px) {
  .dc-timeline-steps {
    flex-direction: column;
    gap: 0;
  }

  .dc-timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
  }

  .dc-timeline-step--last {
    padding-bottom: 0;
  }

  .dc-timeline-marker {
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 52px;
    margin-bottom: 0;
  }

  /* Vertical connector line */
  .dc-timeline-connector {
    position: absolute;
    top: 42px;
    left: 25px;
    width: 1px;
    height: calc(100% - 40px);
    background: rgba(201,169,110,0.25);
    right: auto;
  }

  .dc-timeline-body {
    text-align: left;
    padding: 0;
    padding-top: 4px;
  }
}

/* ─── Dollar outcome trust blocks ─────────────────────────────────────────── */

.dc-trust-blocks-section {
  background: #f5f0e8;
  border-bottom: 1px solid #d4c4a8;
  padding: 56px 24px;
}

.dc-trust-blocks-inner {
  max-width: 960px;
  margin: 0 auto;
}

.dc-trust-blocks-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a5e;
  margin: 0 0 24px;
}

.dc-trust-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #d4c4a8;
  border: 1px solid #d4c4a8;
}

.dc-trust-block {
  background: #faf7f2;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-trust-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  color: #c9a96e;
  line-height: 1;
}

.dc-trust-context {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a30;
  flex: 1;
}

.dc-trust-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #c9a96e;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.dc-trust-link:hover {
  color: #a8803e;
}

@media (max-width: 640px) {
  .dc-trust-blocks-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── No-pressure clause ──────────────────────────────────────────────────── */

.dc-no-pressure {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #8a7a5e;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.6;
}
