.jdb-site {
  --navy: #0f2037;
  --navy-2: #122844;
  --navy-3: #1a3658;
  --gold: #c5a46d;
  --gold-dark: #ad8850;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --border: #e5e7eb;
  --shadow: 0 18px 40px rgba(15, 32, 55, 0.12);
  --radius: 20px;
  --container: 1240px;
  --transition: 0.28s ease;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-family: "Inter", sans-serif;
}

.jdb-site,
.jdb-site * {
  box-sizing: border-box;
}

.jdb-site a {
  color: inherit;
  text-decoration: none;
}

.jdb-site img {
  max-width: 100%;
  display: block;
}

.jdb-site ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jdb-site .container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.jdb-site .section {
  padding: 96px 0;
}

.jdb-site .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(197, 164, 109, 0.14);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.jdb-site .section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.jdb-site .section-header h2 {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  color: var(--navy);
}

.jdb-site .section-header p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.jdb-site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.jdb-site .btn-primary {
  background: var(--gold);
  color: var(--white);
}

.jdb-site .btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.jdb-site .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.jdb-site .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.jdb-site .btn-dark {
  background: var(--navy);
  color: var(--white);
}

.jdb-site .btn-dark:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
}

.jdb-site .hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(10, 22, 39, 0.92), rgba(15, 32, 55, 0.78)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80")
    center/cover no-repeat;
}

.jdb-site .hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(197, 164, 109, 0.28), transparent 70%);
  pointer-events: none;
}

.jdb-site .hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  min-height: 86vh;
  padding: 70px 0;
}

.jdb-site .hero-copy h1 {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--white);
}

.jdb-site .hero-copy p.lead {
  margin-top: 1.15rem;
  max-width: 700px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.jdb-site .hero-quote {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(197, 164, 109, 0.7);
  color: rgba(255, 255, 255, 0.95);
}

.jdb-site .hero-quote blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.jdb-site .hero-quote cite {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  color: #f0ddbb;
  font-size: 0.98rem;
}

.jdb-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.jdb-site .hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
  max-width: 760px;
}

.jdb-site .trust-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.jdb-site .trust-card strong {
  display: block;
  color: #f5e6cb;
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}

.jdb-site .trust-card span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
}

.jdb-site .hero-panel {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.jdb-site .hero-panel-top {
  padding: 1.55rem 1.55rem 1.2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
}

.jdb-site .hero-panel-top h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.jdb-site .hero-panel-top p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
}

.jdb-site .hero-panel-body {
  padding: 1.4rem 1.55rem 1.55rem;
}

.jdb-site .panel-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.jdb-site .panel-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.jdb-site .panel-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(197, 164, 109, 0.14);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.jdb-site .panel-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.jdb-site .panel-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.jdb-site .hero-mini-contact {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.jdb-site .hero-mini-contact div {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--text);
  font-weight: 500;
}

.jdb-site .hero-mini-contact i {
  color: var(--gold-dark);
}

.jdb-site .practice-grid,
.jdb-site .why-grid,
.jdb-site .team-grid {
  display: grid;
  gap: 1.4rem;
}

.jdb-site .practice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.jdb-site .practice-card,
.jdb-site .why-card,
.jdb-site .team-card,
.jdb-site .contact-card,
.jdb-site .contact-form-card,
.jdb-site .story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.jdb-site .practice-card {
  padding: 1.7rem;
  transition: var(--transition);
}

.jdb-site .practice-card:hover,
.jdb-site .why-card:hover,
.jdb-site .team-card:hover,
.jdb-site .contact-card:hover {
  transform: translateY(-6px);
}

.jdb-site .practice-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(197, 164, 109, 0.14);
  color: var(--gold-dark);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.jdb-site .practice-card h3 {
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 0.65rem;
}

.jdb-site .practice-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.jdb-site .story {
  background: var(--cream);
}

.jdb-site .story-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1.8rem;
  align-items: stretch;
}

.jdb-site .story-copy h2 {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--navy);
}

.jdb-site .story-copy p {
  margin-top: 1rem;
  color: var(--muted);
}

.jdb-site .story-points {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.jdb-site .story-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text);
}

.jdb-site .story-points i {
  color: var(--gold-dark);
  margin-top: 0.25rem;
}

.jdb-site .story-card {
  padding: 1.7rem;
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  color: var(--white);
  border: none;
}

.jdb-site .story-card h3 {
  margin: 0 0 1rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.jdb-site .story-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.jdb-site .credential-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.jdb-site .credential-stack div {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.jdb-site .credential-stack strong {
  display: block;
  color: #f4dfb7;
  margin-bottom: 0.2rem;
}

.jdb-site .credential-stack span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.jdb-site .why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.jdb-site .why-card {
  padding: 1.6rem;
  text-align: center;
  transition: var(--transition);
}

.jdb-site .why-card .icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: rgba(197, 164, 109, 0.14);
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.jdb-site .why-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.jdb-site .why-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.jdb-site .team {
  background: linear-gradient(180deg, #fbfaf7 0%, #f2ede5 100%);
}

.jdb-site .team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.jdb-site .team-card {
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}

.jdb-site .avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  font-weight: 700;
  font-size: 1.85rem;
  box-shadow: 0 12px 28px rgba(15, 32, 55, 0.18);
}

.jdb-site .team-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.jdb-site .team-role {
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.jdb-site .team-card p:last-child {
  color: var(--muted);
  font-size: 0.96rem;
}

.jdb-site .cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
}

.jdb-site .cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 34px 0;
}

.jdb-site .cta-band h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.jdb-site .cta-band p {
  color: rgba(255, 255, 255, 0.86);
}

.jdb-site .contact {
  background: var(--white);
}

.jdb-site .contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.8rem;
  align-items: start;
}

.jdb-site .contact-stack {
  display: grid;
  gap: 1rem;
}

.jdb-site .contact-card {
  padding: 1.35rem;
  transition: var(--transition);
}

.jdb-site .contact-card-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.jdb-site .contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}

.jdb-site .contact-card h3 {
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.jdb-site .contact-card p,
.jdb-site .contact-card a {
  color: var(--muted);
  font-size: 0.97rem;
}

.jdb-site .contact-form-card {
  overflow: hidden;
}

.jdb-site .contact-form-top {
  padding: 1.4rem 1.55rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
}

.jdb-site .contact-form-top h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.jdb-site .contact-form-top p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.jdb-site .contact-form-body {
  padding: 1.5rem;
}

.jdb-site .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.jdb-site .form-group {
  margin-bottom: 1rem;
}

.jdb-site .form-group.full {
  grid-column: 1 / -1;
}

.jdb-site .form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-weight: 600;
}

.jdb-site .form-control {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  transition: var(--transition);
}

.jdb-site .form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 164, 109, 0.16);
}

.jdb-site textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.jdb-site .form-status {
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 500;
  min-height: 24px;
}

@media (max-width: 1100px) {
  .jdb-site .hero-inner,
  .jdb-site .story-grid,
  .jdb-site .contact-grid {
    grid-template-columns: 1fr;
  }

  .jdb-site .practice-grid,
  .jdb-site .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jdb-site .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .jdb-site .section {
    padding: 74px 0;
  }

  .jdb-site .hero-trust,
  .jdb-site .practice-grid,
  .jdb-site .why-grid,
  .jdb-site .team-grid,
  .jdb-site .form-grid,
  .jdb-site .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .jdb-site .hero-actions {
    flex-direction: column;
  }

  .jdb-site .hero-actions .btn {
    width: 100%;
  }
}
