/* =============================================================
   Diamond Standard — Marketing site component CSS
   ============================================================= */

* { box-sizing: border-box; }
body { margin: 0; }

/* ---------- Common ---------- */

.ds-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 0 22px;
  height: 48px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background-color 200ms var(--ease-std),
              color 200ms var(--ease-std),
              box-shadow 200ms var(--ease-std);
}
.ds-btn:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 2px; }

/* Primary — midnight fill, gold lower edge as the diamond cue */
.ds-btn--primary {
  background: var(--midnight-700);
  color: var(--bone-100);
  box-shadow: inset 0 -2px 0 var(--gold-500);
}
.ds-btn--primary:hover {
  background: var(--midnight-600);
  box-shadow: inset 0 -2px 0 var(--gold-400);
}
.ds-btn--primary:active {
  background: var(--midnight-800);
  box-shadow: inset 0 -2px 0 var(--gold-600);
}

/* Secondary — outline midnight on bone */
.ds-btn--secondary {
  background: var(--bone-50);
  color: var(--midnight-700);
  box-shadow: inset 0 0 0 1.5px var(--midnight-700);
}
.ds-btn--secondary:hover { background: var(--midnight-700); color: var(--bone-100); }

/* Ghost — text + gold underline accent on hover */
.ds-btn--ghost {
  background: transparent; color: var(--midnight-700);
  padding: 0 8px; height: 40px; border-radius: 8px;
}
.ds-btn--ghost:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold-500);
  text-decoration-thickness: 2px;
}

/* Accent — reserved gold CTA. Used only on hero / premium / commercial CTA */
.ds-btn--gold { background: var(--gold-400); color: var(--midnight-700); }
.ds-btn--gold:hover { background: var(--gold-300); box-shadow: var(--shadow-gold); }

.ds-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.4;
}
.ds-badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.ds-badge--success { background: var(--success-100); color: #1A5C39; }
.ds-badge--success .dot { background: var(--success-500); }

/* ---------- Nav ---------- */

.ds-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(246, 243, 234, 0.78);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--ink-200);
}
.ds-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ds-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.ds-lockup img { width: 40px; height: 40px; object-fit: contain; display: block; flex-shrink: 0; }
.ds-lockup span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--midnight-700);
  white-space: nowrap;
}
.ds-lockup--lg img { width: 56px; height: 56px; }
.ds-lockup--lg span { font-size: 24px; letter-spacing: -0.012em; }
.ds-nav__links { display: flex; gap: 26px; }
.ds-nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-700); text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.ds-nav__links a:hover { color: var(--midnight-700); }
.ds-nav__links a.on { color: var(--midnight-700); font-weight: 600; }
.ds-nav__actions { display: flex; align-items: center; gap: 10px; }

/* ---------- About page ---------- */

.ds-about-hero {
  background: var(--bone-100);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--ink-200);
  position: relative;
}
.ds-about-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.ds-about-hero__copy { max-width: 600px; }
.ds-about-hero__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--midnight-700);
  margin: 18px 0 22px;
  text-wrap: balance;
}
.ds-about-hero__head em { font-style: italic; color: var(--gold-500); font-weight: 500; }
.ds-about-hero__sub {
  font-size: 19px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 540px;
}
.ds-about-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-200);
}
.ds-about-hero__meta-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 6px;
}
.ds-about-hero__meta-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--midnight-700);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.ds-about-hero__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.ds-about-hero__portrait {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bone-200);
}
.ds-about-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ds-about-hero__visual image-slot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ds-about-hero__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.ds-about-hero__badge svg {
  width: 28px; height: 28px;
  color: var(--gold-500);
  stroke-width: 1.75;
}
.ds-about-hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--midnight-700);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.ds-about-hero__badge em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* Section shell */
.ds-about-section {
  padding: 88px 0;
  background: var(--bone-100);
}
.ds-about-section--alt {
  background: var(--bone-50);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.ds-about-section--dark {
  background: var(--midnight-700);
  color: var(--bone-100);
}
.ds-about-section--cta {
  background: var(--midnight-700);
  color: var(--bone-100);
  padding: 96px 0;
  position: relative;
}
.ds-about-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.ds-about-section__head { margin-bottom: 40px; max-width: 720px; }
.ds-about-section__head--center { margin: 0 auto 48px; text-align: center; }
.ds-about-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 12px 0 0;
  text-wrap: balance;
}
.ds-about-section__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 14px 0 0;
  max-width: 580px;
}
.ds-about-section__head--center .ds-about-section__lede { margin-left: auto; margin-right: auto; }

/* The standard — 4 pillars */
.ds-about-standard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ds-about-pillar {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 28px 24px 24px;
  position: relative;
  transition: border-color 200ms var(--ease-std), transform 200ms var(--ease-std);
}
.ds-about-pillar:hover {
  border-color: var(--midnight-600);
  transform: translateY(-2px);
}
.ds-about-pillar__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--gold-500);
  letter-spacing: 0.02em;
}
.ds-about-pillar__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--midnight-700);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ds-about-pillar__icon svg { width: 22px; height: 22px; }
.ds-about-pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--midnight-700);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ds-about-pillar p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

/* Story */
.ds-about-story {
  display: block;
  max-width: 760px;
}
.ds-about-story__copy { max-width: 720px; }
.ds-about-story__lede {
  font-size: 18px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 16px 0 18px;
}
.ds-about-story__lede em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 500;
}
.ds-about-story__copy p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.ds-about-story__pull {
  margin: 24px 0;
  padding: 22px 26px;
  background: var(--bone-50);
  border-left: 3px solid var(--gold-400);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--midnight-700);
  letter-spacing: -0.01em;
}
.ds-about-story__sign {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-200);
}
.ds-about-story__sign-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--midnight-700);
  letter-spacing: -0.01em;
}
.ds-about-story__sign-role {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 3px;
}
.ds-about-story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.ds-about-story__visual image-slot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ds-about-story__caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(19, 29, 54, 0.85);
  backdrop-filter: blur(6px);
  color: var(--bone-100);
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.35;
}
.ds-about-story__caption svg { width: 16px; height: 16px; color: var(--gold-300); flex-shrink: 0; }

/* Numbers (dark) */
.ds-about-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ds-about-numbers--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin: 0 auto;
}
.ds-about-numbers, .ds-about-numbers--three {
  gap: 24px 36px;
}
.ds-about-numbers > div {
  text-align: center;
  padding: 0 8px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.ds-about-numbers > div:first-child { border-left: none; }
.ds-about-numbers__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-300);
}
.ds-about-numbers__lbl {
  font-size: 13px;
  color: var(--ink-200);
  margin-top: 12px;
  line-height: 1.4;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* Who we serve */
.ds-about-serve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ds-about-serve__card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms var(--ease-std), transform 200ms var(--ease-std);
}
.ds-about-serve__card:hover {
  border-color: var(--midnight-600);
  transform: translateY(-2px);
}
.ds-about-serve__eye {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.ds-about-serve__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--midnight-700);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  margin: 4px 0 4px;
}
.ds-about-serve__icon svg { width: 24px; height: 24px; }
.ds-about-serve__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--midnight-700);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.ds-about-serve__card p {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.ds-about-serve__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-600);
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}

/* FAQ */
.ds-faq {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink-200);
}
.ds-faq__item { border-bottom: 1px solid var(--ink-200); }
.ds-faq__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--midnight-700);
  letter-spacing: -0.005em;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 150ms var(--ease-std);
}
.ds-faq__q:hover { color: var(--gold-600); }
.ds-faq__q svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; transition: transform 200ms var(--ease-std); }
.ds-faq__item.on .ds-faq__q { color: var(--midnight-700); }
.ds-faq__a {
  padding: 0 4px 22px;
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
  max-width: 760px;
}

/* CTA */
.ds-about-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ds-about-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--bone-100);
  margin: 12px 0 16px;
  text-wrap: balance;
}
.ds-about-cta__sub {
  font-size: 17px;
  color: var(--ink-200);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 540px;
}
.ds-about-cta__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-about-cta__sub-link {
  margin-top: 14px;
  text-align: center;
}
.ds-btn--ghost-inverse {
  color: var(--gold-300);
}
.ds-btn--ghost-inverse:hover {
  text-decoration-color: var(--gold-300);
  color: var(--bone-100);
}

/* ---------- Commercial: audience grid + difference list ---------- */
.ds-audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ds-audience {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  transition: border-color 200ms var(--ease-std), transform 200ms var(--ease-std);
}
.ds-audience:hover {
  border-color: var(--midnight-600);
  transform: translateY(-2px);
}
.ds-audience__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bone-200);
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-audience__icon svg { width: 18px; height: 18px; }
.ds-audience__lbl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--midnight-700);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ds-audience-foot {
  margin: 28px 0 0;
  font-size: 15px;
  color: var(--ink-600);
  text-align: center;
}
.ds-audience-foot a {
  color: var(--midnight-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}

.ds-cdiff {
  max-width: 920px;
  margin: 0 auto;
}
.ds-cdiff__head { margin-bottom: 36px; }
.ds-cdiff__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ds-cdiff__list > li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--ink-200);
}
.ds-cdiff__list > li:first-child {
  border-top: none;
  padding-top: 0;
}
.ds-cdiff__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-500);
}
.ds-cdiff__list h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--midnight-700);
  margin: 4px 0 8px;
  line-height: 1.2;
}
.ds-cdiff__list p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

/* Responsive */
@media (max-width: 960px) {
  .ds-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-cdiff__list > li { grid-template-columns: 56px 1fr; gap: 16px; }
  .ds-cdiff__num { font-size: 32px; }
  .ds-about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ds-about-hero__meta { grid-template-columns: repeat(2, 1fr); }
  .ds-about-standard { grid-template-columns: repeat(2, 1fr); }
  .ds-about-story { grid-template-columns: 1fr; gap: 40px; }
  .ds-about-numbers { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .ds-about-numbers > div { border-left: none; }
  .ds-about-numbers > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
  .ds-about-numbers > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
  .ds-about-serve { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .ds-about-standard { grid-template-columns: 1fr; }
}

/* ---------- Join our team ---------- */

.ds-jt-hero {
  background: var(--bone-100);
  padding: 88px 0 56px;
  border-bottom: 1px solid var(--ink-200);
  position: relative;
  overflow: hidden;
}
.ds-jt-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(207, 169, 72, 0.10), transparent 60%);
  pointer-events: none;
}
.ds-jt-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  position: relative;
}
.ds-jt-hero .ds-eyebrow {
  justify-content: center;
}
.ds-jt-hero__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--midnight-700);
  margin: 18px auto 18px;
  text-wrap: balance;
  max-width: 720px;
}
.ds-jt-hero__head em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}
.ds-jt-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 600px;
  margin: 0 auto 30px;
}
.ds-jt-hero__chips {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ds-jt-hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight-700);
}
.ds-jt-hero__chips svg {
  width: 14px; height: 14px;
  color: var(--gold-500);
  stroke-width: 2;
}

.ds-jt-section {
  background: var(--bone-50);
  padding: 80px 0;
  border-bottom: 1px solid var(--ink-200);
}
.ds-jt-section__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.ds-jt-form {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 36px 40px 32px;
  box-shadow: var(--shadow-sm);
}
.ds-jt-form__head {
  margin-bottom: 24px;
  text-align: center;
}
.ds-jt-form__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 0 0 8px;
}
.ds-jt-form__head p {
  font-size: 15px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.55;
}

.ds-jt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 8px;
}
.ds-jt-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ds-jt-field--full {
  grid-column: 1 / -1;
}
.ds-jt-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--midnight-700);
}
.ds-jt-hint {
  color: var(--ink-500);
  font-weight: 500;
}
.ds-jt-field input,
.ds-jt-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  background: var(--white);
  color: var(--midnight-700);
  outline: none;
  height: 44px;
  transition: border-color 150ms var(--ease-std), box-shadow 150ms var(--ease-std);
}
.ds-jt-field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.55;
}
.ds-jt-field input::placeholder,
.ds-jt-field textarea::placeholder {
  color: var(--ink-400);
}
.ds-jt-field input:focus,
.ds-jt-field textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(207,169,72,0.25);
}
.ds-jt-consent {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.5;
  cursor: pointer;
}
.ds-jt-consent input {
  margin-top: 3px;
  accent-color: var(--midnight-700);
}
.ds-jt-submit {
  height: 56px;
  font-size: 16px;
  width: 100%;
  margin-top: 12px;
}
.ds-jt-submit[disabled] {
  background: var(--ink-400);
  cursor: not-allowed;
  box-shadow: inset 0 -2px 0 var(--ink-500);
}
.ds-jt-fine {
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
  margin: 12px 0 0;
  line-height: 1.5;
}

.ds-jt-error {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--danger-100);
  border: 1px solid #E8B5B5;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #6B1F1F;
  line-height: 1.5;
}
.ds-jt-error svg {
  width: 18px; height: 18px;
  color: var(--danger-500);
  margin-top: 2px;
  flex-shrink: 0;
}
.ds-jt-error strong { color: #6B1F1F; }

.ds-jt-sent {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 56px 40px 44px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.ds-jt-sent__mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--midnight-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}
.ds-jt-sent__mark svg { width: 36px; height: 36px; }
.ds-jt-sent h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 0 0 12px;
}
.ds-jt-sent p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0 auto 20px;
  max-width: 460px;
}
.ds-jt-sent strong { color: var(--midnight-700); }

@media (max-width: 600px) {
  .ds-jt-grid { grid-template-columns: 1fr; }
  .ds-jt-form { padding: 28px 24px 24px; }
}

/* ---------- Process page ---------- */
.ds-process {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 8px;
}
.ds-process li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--ink-200);
}
.ds-process li:last-child { border-bottom: 1px solid var(--ink-200); }
.ds-process__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--gold-500);
  line-height: 1;
}
.ds-process h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--midnight-700);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ds-process p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}

/* ---------- Nav dropdown ---------- */

.ds-nav__menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.ds-nav__trigger {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 150ms var(--ease-std);
}
.ds-nav__trigger:hover { color: var(--midnight-700); }
.ds-nav__trigger.on { color: var(--midnight-700); font-weight: 600; }
.ds-nav__trigger:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 4px; border-radius: 2px; }
.ds-nav__chev {
  width: 14px; height: 14px;
  transition: transform 180ms var(--ease-std);
  margin-top: 1px;
}
.ds-nav__chev.on { transform: rotate(180deg); }

.ds-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -6px);
  width: 340px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-std), transform 200ms var(--ease-out);
  z-index: 40;
}
.ds-nav__dropdown::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0; height: 14px;
}
.ds-nav__dropdown.on {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.ds-nav__dropdown a[role="menuitem"] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--midnight-700);
  cursor: pointer;
  transition: background 150ms var(--ease-std);
}.ds-nav__dropdown a[role="menuitem"]:hover { background: var(--bone-100); }
.ds-nav__dropdown a[role="menuitem"] strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--midnight-700);
  line-height: 1.15;
}
.ds-nav__dropdown a[role="menuitem"] em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 3px;
  line-height: 1.35;
}
.ds-nav__dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gold-400);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ds-nav__dropdown a[role="menuitem"]:hover .ds-nav__dot { background: var(--midnight-700); }
.ds-nav__dropdown-foot {
  padding: 10px 14px 6px;
  margin-top: 4px;
  border-top: 1px solid var(--ink-100);
}
.ds-nav__dropdown-foot a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  text-decoration: none;
  cursor: pointer;
}
.ds-nav__dropdown-foot a:hover { color: var(--midnight-700); }

/* ---------- Hero ---------- */

.ds-hero {
  background: var(--bone-100);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--ink-200);
  position: relative;
  overflow: hidden;
}
.ds-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.ds-hero__copy { max-width: 560px; }
.ds-hero__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 18px 0 28px;
  padding-bottom: 24px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.ds-hero__head em { font-style: italic; color: var(--gold-500); font-weight: 500; }
.ds-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 480px;
  margin: 0 0 28px;
}
.ds-hero__cta { display: flex; gap: 12px; align-items: center; margin-bottom: 36px; }
.ds-hero__tabs {
  display: inline-flex;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.ds-hero__tabs button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink-600);
  cursor: pointer;
  transition: color 150ms var(--ease-std), background 150ms var(--ease-std);
}
.ds-hero__tabs button.on {
  background: var(--midnight-700);
  color: var(--bone-100);
}

.ds-hero__visual { position: relative; }
.ds-hero__visual image-slot.ds-hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  overflow: hidden;
}
.ds-hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.ds-hero__stat-card {
  position: absolute;
  bottom: -32px; left: -32px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 18px 20px;
  width: 260px;
  box-shadow: var(--shadow-lg);
}
.ds-hero__stat-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--midnight-700);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.ds-hero__stat-meta {
  font-size: 13px; color: var(--ink-600); margin: 4px 0 14px;
}
.ds-hero__stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--ink-100);
}
.ds-hero__stat-row strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--midnight-700);
  font-weight: 600;
}

/* ---------- Section ---------- */

.ds-section { padding: 96px 0; background: var(--bone-100); }
.ds-section--narrow { padding: 64px 0; }
.ds-section--compact { padding: 64px 0; }
.ds-section--alt { background: var(--bone-50); border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200); }
.ds-section--primary { padding-top: 96px; padding-bottom: 80px; }
.ds-section--quote { background: var(--bone-50); padding: 80px 0; text-align: center; }
.ds-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.ds-section__head { margin-bottom: 40px; max-width: 720px; }
.ds-section__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--midnight-700);
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 12px 0 0;
}
.ds-section__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 14px 0 0;
  max-width: 580px;
}

/* ---------- Service tiles ---------- */

.ds-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ds-tile-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ds-tile-grid--1 { grid-template-columns: 1fr; max-width: 720px; }
.ds-tile-grid > :nth-child(4) { grid-column: span 1; }
.ds-tile {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  transition: border-color 200ms var(--ease-std), transform 200ms var(--ease-std);
}
.ds-tile:hover { border-color: var(--midnight-600); transform: translateY(-1px); }
.ds-tile--featured { border-color: var(--gold-300); background: linear-gradient(180deg, #FBF6E7 0%, white 60%); }
.ds-tile__tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 8px; border-radius: 4px;
  background: var(--midnight-700); color: var(--bone-100);
  white-space: nowrap;
}
.ds-tile--featured .ds-tile__tag { background: var(--gold-400); color: var(--midnight-700); }
.ds-tile__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--midnight-700);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ds-tile__icon svg { width: 22px; height: 22px; }
.ds-tile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--midnight-700);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ds-tile__copy {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 16px;
  line-height: 1.55;
}
.ds-tile__foot {
  display: flex; align-items: center; justify-content: flex-end;
  font-size: 14px; font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
  color: var(--midnight-700);
}
.ds-tile__arrow { color: var(--gold-600); }

/* ---------- Service sections (full-width, no imagery) ---------- */

.ds-svc {
  padding: 64px 0;
  background: var(--bone-100);
}
.ds-svc--primary { padding: 72px 0 64px; }
.ds-svc--tight { padding-top: 24px; }
.ds-svc--alt {
  background: var(--bone-50);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.ds-svc--compact { padding: 56px 0; }
.ds-svc--three .ds-svc__tiles { grid-template-columns: repeat(3, 1fr); }
.ds-svc__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.ds-svc__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: end;
  margin-bottom: 28px;
}
.ds-svc__head .ds-eyebrow { grid-column: 1 / -1; }
.ds-svc__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 8px 0 0;
}
.ds-svc__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
  max-width: 540px;
  justify-self: end;
}
.ds-svc__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ds-svc--compact .ds-svc__tiles { grid-template-columns: 1fr; max-width: 760px; }
.ds-svc--compact.ds-svc--three .ds-svc__tiles { grid-template-columns: repeat(3, 1fr); max-width: none; }

/* ---------- Commercial band ---------- */
.ds-band__copy { max-width: 520px; }

.ds-band {
  background: var(--midnight-700);
  color: var(--bone-100);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ds-band__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.ds-band__copy { max-width: 520px; }
.ds-band__mark {
  position: absolute;
  right: var(--container-pad);
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4));
  display: none;
}
.ds-band__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--bone-100);
  margin: 18px 0 18px;
}
.ds-band__title em { font-style: italic; color: var(--gold-300); font-weight: 500; }
.ds-band__sub {
  font-size: 17px;
  color: var(--ink-200);
  line-height: 1.6;
  margin: 0 0 28px;
}
.ds-band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.ds-stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}
.ds-stat__lbl {
  font-size: 13px;
  color: var(--ink-200);
  margin-top: 6px;
  max-width: 200px;
}

/* ---------- Contractor CTA ---------- */

.ds-contractor {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.ds-contractor__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 12px 0 16px;
  text-wrap: balance;
}
.ds-contractor__sub {
  font-size: 17px; color: var(--ink-700); line-height: 1.6; margin: 0 0 20px;
  max-width: 520px;
}
.ds-contractor__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.ds-contractor__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--midnight-700); font-weight: 500;
}
.ds-contractor__list svg { width: 18px; height: 18px; color: var(--gold-500); stroke-width: 2.2; }

.ds-contractor__card {
  background: var(--midnight-700);
  border-radius: 16px;
  padding: 28px;
  color: var(--bone-100);
  box-shadow: var(--shadow-lg);
}
.ds-contractor__card-head { display: flex; align-items: center; gap: 14px; }
.ds-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--midnight-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
}
.ds-contractor__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--bone-100);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.ds-contractor__name svg { width: 18px; height: 18px; }
.ds-contractor__meta { font-size: 12px; color: var(--ink-300); margin-top: 2px; }
.ds-contractor__earn {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0; margin: 20px 0;
}
.ds-contractor__earn-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-300);
}
.ds-contractor__earn-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600; color: var(--gold-300);
  margin-top: 4px; letter-spacing: -0.015em;
}
.ds-contractor__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--bone-100);
  margin: 0;
}

/* ---------- Testimonial ---------- */

.ds-quote-big {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.22;
  color: var(--midnight-700);
  max-width: 880px;
  margin: 18px auto;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.ds-quote-who {
  font-size: 14px; color: var(--ink-600);
  margin-top: 18px;
}
.ds-quote-who strong { color: var(--midnight-700); font-weight: 600; }

/* ---------- Ratings ---------- */

.ds-ratings {
  background: var(--bone-50);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding: 96px 0;
}
.ds-ratings__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.ds-ratings__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}
.ds-ratings__score {
  background: var(--midnight-700);
  color: var(--bone-100);
  padding: 36px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.ds-ratings__score::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(207, 169, 72, 0.18);
}
.ds-ratings__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--gold-300);
}
.ds-ratings__stars { color: var(--gold-400); margin: 12px 0 10px; }
.ds-ratings__sub {
  font-size: 14px;
  color: var(--ink-200);
  letter-spacing: 0.01em;
}
.ds-ratings__sub strong { color: var(--bone-100); font-weight: 600; }

.ds-ratings__copy { max-width: 540px; }
.ds-ratings__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--midnight-700);
  margin: 12px 0 14px;
}
.ds-ratings__lede {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

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

/* Carousel ---------- */
.ds-carousel {
  position: relative;
  padding: 0 56px;
}
.ds-carousel__viewport {
  overflow: hidden;
  border-radius: 14px;
}
.ds-carousel__track {
  display: flex;
  transition: transform 480ms var(--ease-out);
}
.ds-carousel__slide {
  min-width: 100%;
  padding: 4px;
}
.ds-review-lg {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 280px;
  position: relative;
}
.ds-review-lg__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ds-review-lg__cat {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--midnight-700);
  background: var(--gold-100);
  padding: 5px 10px;
  border-radius: 4px;
}
.ds-review-lg__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.32;
  color: var(--midnight-700);
  margin: 0;
  letter-spacing: -0.012em;
  text-wrap: pretty;
  flex: 1;
}
.ds-review-lg__who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
}
.ds-review-lg__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--midnight-700);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-review-lg__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--midnight-700);
  line-height: 1.2;
}
.ds-review-lg__role {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 2px;
  line-height: 1.3;
}

.ds-carousel__arrow {
  position: absolute;
  top: calc(50% - 24px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-200);
  background: var(--white);
  color: var(--midnight-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms var(--ease-std), border-color 180ms var(--ease-std), color 180ms var(--ease-std);
  z-index: 2;
}
.ds-carousel__arrow:hover {
  background: var(--midnight-700);
  color: var(--bone-100);
  border-color: var(--midnight-700);
}
.ds-carousel__arrow:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 2px; }
.ds-carousel__arrow svg { width: 20px; height: 20px; }
.ds-carousel__arrow--prev { left: 0; }
.ds-carousel__arrow--next { right: 0; }

.ds-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.ds-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ink-300);
  padding: 0;
  cursor: pointer;
  transition: background 180ms var(--ease-std), transform 180ms var(--ease-std), width 240ms var(--ease-out);
}
.ds-carousel__dot:hover { background: var(--ink-400); }
.ds-carousel__dot.on {
  background: var(--gold-400);
  width: 22px;
  border-radius: 999px;
}
.ds-carousel__dot:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 2px; }

.ds-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-400);
}
.ds-stars svg {
  width: var(--star-size, 18px);
  height: var(--star-size, 18px);
}

.ds-review {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms var(--ease-std), transform 200ms var(--ease-std);
}
.ds-review:hover { border-color: var(--midnight-600); transform: translateY(-1px); }
.ds-review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--midnight-700);
  margin: 0;
  flex: 1;
  letter-spacing: -0.005em;
}
.ds-review__who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}
.ds-review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--midnight-700);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-review__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--midnight-700);
  line-height: 1.2;
}
.ds-review__role {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .ds-ratings__head { grid-template-columns: 1fr; gap: 32px; }
  .ds-ratings__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ds-ratings__grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.ds-footer {
  background: var(--midnight-700);
  color: var(--ink-200);
  padding: 0 0 24px;
  position: relative;
}
.ds-footer__divider {
  display: flex; justify-content: center;
  padding: 22px 0 28px;
  color: var(--gold-400);
}
.ds-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.ds-footer__brand .ds-lockup span { color: var(--bone-100); }
.ds-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-300);
  margin: 14px 0 14px;
}
.ds-footer__legal { font-size: 12px; color: var(--ink-300); line-height: 1.55; max-width: 320px; }
.ds-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ds-footer__cols h5 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-300);
  margin: 0 0 14px;
}
.ds-footer__cols a {
  display: block;
  font-size: 13px; color: var(--ink-200);
  text-decoration: none; padding: 4px 0;
  cursor: pointer;
}
.ds-footer__cols a:hover { color: var(--gold-300); }
.ds-footer__rule {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 18px var(--container-pad) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink-300);
}

/* ====================================================================
   MOBILE / RESPONSIVE STYLES
   Hamburger nav + everything stacks gracefully under 900px.
   ==================================================================== */

/* ---------- Hamburger (desktop hides it) ---------- */
.ds-nav__hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--midnight-700);
  -webkit-tap-highlight-color: transparent;
}
.ds-nav__hamburger svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

/* Mobile slide-down panel (hidden on desktop) */
.ds-nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--bone-100);
  z-index: 25; /* below sticky nav (which is 30) */
  padding-top: 72px; /* clears the sticky nav */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms var(--ease-std), transform 200ms var(--ease-std);
  overflow-y: auto;
}
.ds-nav__mobile.on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ds-nav__mobile-inner {
  padding: 24px var(--container-pad) 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ds-nav__mobile-link,
.ds-nav__mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--midnight-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-200);
  padding: 18px 4px;
  text-decoration: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.ds-nav__mobile-link.on,
.ds-nav__mobile-trigger.on {
  color: var(--gold-600);
  font-weight: 600;
}
.ds-nav__mobile-trigger .ds-nav__chev {
  width: 18px; height: 18px;
  transition: transform 200ms var(--ease-std);
}
.ds-nav__mobile-trigger .ds-nav__chev.on { transform: rotate(180deg); }
.ds-nav__mobile-sub {
  display: flex;
  flex-direction: column;
  padding: 4px 4px 12px 18px;
  border-bottom: 1px solid var(--ink-200);
  margin-top: -1px;
}
.ds-nav__mobile-sub a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  padding: 12px 0;
}
.ds-nav__mobile-sub a:hover { color: var(--midnight-700); }
.ds-nav__mobile-cta {
  margin-top: 24px;
}
.ds-nav__mobile-cta .ds-btn { width: 100%; justify-content: center; }

/* ---------- 1024px — tighten desktop ---------- */
@media (max-width: 1024px) {
  .ds-nav__links { gap: 18px; }
  .ds-nav__links a, .ds-nav__trigger { font-size: 13px; }
  .ds-lockup--lg img { width: 48px; height: 48px; }
  .ds-lockup--lg span { font-size: 20px; }
}

/* ---------- 900px — collapse nav to hamburger ---------- */
@media (max-width: 900px) {
  .ds-nav__links,
  .ds-nav__actions { display: none; }
  .ds-nav__hamburger { display: flex; }
  .ds-nav__mobile { display: block; }
  .ds-nav__inner { padding: 12px var(--container-pad); }
  .ds-lockup--lg img { width: 40px; height: 40px; }
  .ds-lockup--lg span { font-size: 17px; }

  /* Hero */
  .ds-hero { padding: 40px 0 32px; }
  .ds-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .ds-hero__copy { max-width: 100%; }
  .ds-hero__head { font-size: clamp(32px, 8vw, 44px); }
  .ds-hero__sub { font-size: 16px; }
  .ds-hero__cta { flex-wrap: wrap; gap: 10px; }
  .ds-hero__cta .ds-btn { flex: 1 1 auto; justify-content: center; }
  /* Smaller, centered hero photo on tablet/mobile so it doesn't dominate */
  .ds-hero__visual {
    max-width: 360px;
    margin: 0 auto;
  }
  .ds-hero__photo,
  .ds-hero__visual image-slot.ds-hero__photo {
    aspect-ratio: 3 / 2;
    border-radius: 14px;
  }

  /* About hero */
  .ds-about-hero { padding: 48px 0 40px; }
  .ds-about-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .ds-about-hero__copy { max-width: 100%; }
  .ds-about-hero__head { font-size: clamp(32px, 8vw, 44px); }
  .ds-about-hero__sub { font-size: 16px; }
  .ds-about-hero__visual { max-width: 320px; margin: 0 auto; }
  .ds-about-hero__meta { grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
  .ds-about-hero__meta-val { font-size: 16px; }

  /* Section shells */
  .ds-about-section { padding: 56px 0; }
  .ds-about-section__title { font-size: clamp(28px, 6.5vw, 38px); }
  .ds-about-section__head { margin-bottom: 28px; }
  .ds-about-section__lede { font-size: 15px; }
  .ds-section { padding: 56px 0; }
  .ds-section__title { font-size: clamp(28px, 6.5vw, 38px); }

  /* Service tiles */
  .ds-svc { padding: 48px 0; }
  .ds-svc--primary { padding: 48px 0; }
  .ds-svc--tight { padding-top: 16px; }
  .ds-svc__head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }
  .ds-svc__lede { justify-self: start; }
  .ds-svc__title { font-size: clamp(26px, 6vw, 34px); }
  .ds-svc__tiles { grid-template-columns: 1fr !important; gap: 12px; }
  .ds-svc--three .ds-svc__tiles { grid-template-columns: 1fr !important; }
  .ds-tile { padding: 22px; }
  .ds-tile__title { font-size: 18px; }
  .ds-tile-grid { grid-template-columns: 1fr; }

  /* Audience grid */
  .ds-audience-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ds-audience { padding: 14px; gap: 10px; }
  .ds-audience__lbl { font-size: 13px; }
  .ds-audience__icon { width: 32px; height: 32px; }
  .ds-audience__icon svg { width: 16px; height: 16px; }

  /* Commercial difference / numbered list */
  .ds-cdiff__list > li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .ds-cdiff__num { font-size: 28px; }
  .ds-cdiff__list h3 { font-size: 19px; }
  .ds-cdiff__list p { font-size: 15px; }

  /* About pillars */
  .ds-about-standard { grid-template-columns: 1fr !important; gap: 12px; }
  .ds-about-pillar { padding: 22px; }

  /* About numbers (dark) */
  .ds-about-numbers,
  .ds-about-numbers--three { grid-template-columns: 1fr !important; gap: 28px; }
  .ds-about-numbers > div {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 8px 0 !important;
  }
  .ds-about-numbers > div:first-child {
    border-top: none;
    padding-top: 0 !important;
  }

  /* About serve grid */
  .ds-about-serve { grid-template-columns: 1fr; }

  /* CTA */
  .ds-about-cta__title { font-size: clamp(26px, 6.2vw, 36px); }
  .ds-about-cta__sub { font-size: 15px; }

  /* Process steps */
  .ds-process li {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .ds-process__num { font-size: 30px; }
  .ds-process h3 { font-size: 19px; }
  .ds-process p { font-size: 15px; }

  /* Commercial band */
  .ds-band { padding: 56px 0; }
  .ds-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .ds-band__copy { max-width: 100%; }
  .ds-band__title { font-size: clamp(28px, 6.5vw, 38px); }
  .ds-band__sub { font-size: 15px; }
  .ds-band__stats { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; }
  .ds-stat__num { font-size: clamp(28px, 6.5vw, 36px); }
  .ds-band__mark { display: none; }

  /* Ratings */
  .ds-ratings__head { grid-template-columns: 1fr; gap: 20px; }
  .ds-ratings__grid { grid-template-columns: 1fr; gap: 12px; }

  /* Footer */
  .ds-footer { padding: 48px 0 24px; }
  .ds-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ds-footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ds-footer__rule {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
    margin-top: 32px;
  }

  /* Booking page */
  .dsb-page { padding: 0 var(--container-pad) 48px !important; gap: 24px; }
  .dsb-form-card { padding: 28px 22px; }
  .dsb-form-card__title { font-size: clamp(26px, 6vw, 32px); }
  .dsb-tabs { grid-template-columns: 1fr; gap: 6px; padding: 6px; }
  .dsb-tabs button { padding: 12px 14px; justify-content: flex-start; }
  .dsb-fieldgrid { grid-template-columns: 1fr; gap: 14px; }
  .dsb-checks--2col { grid-template-columns: 1fr; }

  /* Join the team form */
  .ds-jt-hero { padding: 56px 0 40px; }
  .ds-jt-hero__head { font-size: clamp(28px, 7vw, 40px); }

  /* Disable hover translateY on touch — feels glitchy */
  .ds-about-pillar:hover,
  .ds-audience:hover,
  .ds-tile:hover { transform: none; }
}

/* ---------- 540px — extra tight on small phones ---------- */
@media (max-width: 540px) {
  :root { --container-pad: 16px; }
  .ds-lockup--lg span { font-size: 15px; }
  .ds-hero__head,
  .ds-about-hero__head { font-size: 30px; line-height: 1.08; }
  .ds-about-section__title,
  .ds-section__title,
  .ds-svc__title,
  .ds-band__title { font-size: 26px; }
  .ds-about-hero__meta { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ds-band__stats { grid-template-columns: 1fr; gap: 18px; }
  .ds-audience-grid { grid-template-columns: 1fr; }
  .ds-hero__cta { flex-direction: column; align-items: stretch; }
  .ds-hero__cta .ds-btn { width: 100%; }

  /* Even tighter hero photo on small phones */
  .ds-hero__visual { max-width: 300px; }
}

/* ====================================================================
   POLISH PASS — touch targets, carousel cramping, input zoom-on-focus
   ==================================================================== */

@media (max-width: 900px) {

  /* --- Footer: comfortable thumb-sized tap targets --- */
  .ds-footer__cols a {
    padding: 12px 0;
    font-size: 14px;
  }
  .ds-footer__cols h5 {
    margin-bottom: 6px;
  }
  .ds-footer__cols {
    gap: 20px;
  }

  /* --- Reviews carousel: stop the cramping --- */
  .ds-carousel {
    padding: 0 0 12px;  /* arrows move BELOW the slide */
  }
  .ds-carousel__arrow {
    /* Move arrows under the slide, side by side */
    position: static;
    display: none;  /* hide arrows on mobile — dots + swipe is enough */
  }
  .ds-carousel__dots {
    /* Bigger touch padding around dots */
    gap: 14px;
    padding: 8px 0;
  }
  .ds-carousel__dot {
    /* Pseudo-padding so the touch target is ~36px without changing the dot's appearance */
    position: relative;
  }
  .ds-carousel__dot::before {
    content: "";
    position: absolute;
    inset: -14px;
  }

  /* Slide content — less padding so copy can breathe */
  .ds-review-lg {
    padding: 26px 22px;
    min-height: 0;
    gap: 16px;
  }
  .ds-review-lg__top {
    /* Tag and stars stack so neither overflows */
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .ds-review-lg__quote {
    font-size: clamp(17px, 4.6vw, 22px);
    line-height: 1.35;
  }
  .ds-review-lg__who {
    padding-top: 14px;
  }

  /* --- JoinTeam form: prevent iOS zoom-on-focus (needs ≥16px) --- */
  .ds-jt-field input,
  .ds-jt-field textarea {
    font-size: 16px;
    height: 48px;
  }
  .ds-jt-field textarea {
    height: auto;
    min-height: 110px;
  }

  /* --- About hero: photo + floating badge can collide; rein it in --- */
  .ds-about-hero__visual { max-width: 280px; }
  .ds-about-hero__badge {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
  }
  .ds-about-hero__badge strong { font-size: 14px; }
  .ds-about-hero__badge em { font-size: 11px; }

  /* --- Mobile nav: bigger underlying tap targets --- */
  .ds-nav__mobile-link,
  .ds-nav__mobile-trigger {
    padding: 20px 4px;
    font-size: 19px;
  }
  .ds-nav__mobile-sub a {
    padding: 14px 0;
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  /* Very small phones — keep imagery and reviews tighter still */
  .ds-review-lg { padding: 22px 18px; }
  .ds-about-hero__visual { max-width: 240px; }
  .ds-hero__photo,
  .ds-hero__visual image-slot.ds-hero__photo { border-radius: 12px; }
}

