/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink-3); color: var(--paper); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink-3); color: var(--paper); border-color: var(--ink-3); }
.btn-clay { background: var(--clay); color: var(--paper); }
.btn-clay:hover { background: #a06f50; }
.btn .arrow { display: inline-block; transform: translateY(-1px); }

/* ───────────── Service card ───────────── */
.card {
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 28px;
  min-height: 220px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: 12px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -22px rgba(48,50,30,.35); }
.card .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.card .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.card .icon img.icon-transport {
  width: 36px;
  height: 36px;
}
.card h3 { font-size: 18px; font-weight: 600; color: var(--clay); align-self: end; }
.card p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.55; }

/* ───────────── Testimonial card ───────────── */
.testi-card {
  background: rgba(254,250,241,0.04);
  border: 1px solid rgba(254,250,241,0.08);
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-card .q {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 90px;
  line-height: 0.75;
  color: var(--clay);
  display: block;
  margin-bottom: -12px;
  letter-spacing: -8px;
}
.testi-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(254,250,241,0.86);
  margin: 0 0 28px;
}
.testi-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(254,250,241,0.1);
}
.testi-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--peach));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--paper); font-weight: 500;
}
.testi-card .name { font-size: 13.5px; font-weight: 500; }
.testi-card .role { font-size: 11.5px; color: rgba(254,250,241,0.55); }

/* ───────────── Talk card (CTA) ───────────── */
.talk-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 44px 42px;
  position: relative;
  overflow: hidden;
}
.talk-card::after {
  display: none;
}
.talk-card .eyebrow::before { background: var(--clay); }
.talk-card h3 {
  font-size: 30px;
  line-height: 1.12;
  margin: 18px 0 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 360px;
}
.talk-card > p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 380px;
}
.talk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.talk-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
}
.talk-list .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 8px;
}
.talk-list strong { font-weight: 500; font-size: 14.5px; }
.talk-list small { color: var(--muted); font-size: 13px; line-height: 1.5; }
.talk-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
  border-radius: 14px;
}
.talk-alt {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.talk-alt:hover { color: var(--clay); }

/* ───────────── Form ───────────── */
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 38px 36px;
}
.form-card h3 { font-size: 22px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  cursor: pointer;
  background: transparent;
  transition: all .2s;
  font-family: var(--f-sans);
}
.pill.active, .pill:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.form-submit {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 0.01em;
  transition: background .2s;
}
.form-submit:hover { background: var(--ink-2); }
