/* Dua Hati Co — landing layout (Sep 2026 redesign).
   Loaded AFTER style.css, which owns the brand tokens, the [lang] i18n show/hide
   rules, focus rings and the floating WhatsApp button. Everything here is namespaced
   `dh-` so none of it collides with the older .section / .hero / .btn styles that
   privacy.html and how-it-works.html still depend on. */

:root {
  --dh-cream: #FBF7F2;
  --dh-pink: #F7E9E5;
  --dh-pink-deep: #F1DBD6;
  --dh-line: #E7D9D2;
  --dh-muted: #7A6963;
  --dh-radius: 10px;
  --dh-maxw: 1180px;
}

body { background: #fff; }

.dh-wrap { max-width: var(--dh-maxw); margin: 0 auto; padding: 0 1.5rem; }

.dh-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dusty-rose);
  margin: 0 0 0.6rem;
}
.dh-h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  color: var(--color-maroon);
  margin: 0 0 0.6rem;
}
.dh-sub {
  color: var(--dh-muted);
  max-width: 46rem;
  margin: 0 auto;
  font-size: 0.95rem;
}
.dh-center { text-align: center; }
.dh-script {
  font-family: var(--font-flourish);
  color: var(--color-maroon);
  line-height: 1.35;
}

/* ============ BUTTONS ============ */
.dh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.dh-btn--solid { background: var(--color-maroon); color: #fff; }
.dh-btn--solid:hover { background: #55202C; }
.dh-btn--ghost { background: transparent; color: var(--color-maroon); border-color: var(--color-maroon); }
.dh-btn--ghost:hover { background: var(--color-maroon); color: #fff; }
.dh-btn--small { padding: 0.6rem 1.1rem; font-size: 0.66rem; }
.dh-btn__arrow { font-size: 0.9rem; line-height: 1; }

/* ============ HEADER ============ */
.dh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--dh-line);
}
.dh-header__inner {
  max-width: var(--dh-maxw);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dh-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.dh-brand__logo { width: 38px; height: auto; }
.dh-brand__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--color-maroon);
  line-height: 1.1;
  display: block;
}
.dh-brand__tag {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dh-muted);
  display: block;
}
.dh-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.dh-nav a {
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--color-ink);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.dh-nav a:hover, .dh-nav a[aria-current="page"] {
  color: var(--color-maroon);
  border-bottom-color: var(--color-maroon);
}
.dh-header__actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.dh-nav + .dh-header__actions { margin-left: 1.5rem; }
.dh-signin {
  font-size: 0.75rem;
  color: var(--dh-muted);
  text-decoration: none;
}
.dh-signin:hover { color: var(--color-maroon); }
.dh-langtoggle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--color-maroon);
  background: #fff;
  color: var(--color-maroon);
  cursor: pointer;
}
.dh-langtoggle:hover { background: var(--color-maroon); color: #fff; }

/* ============ PLACEHOLDER IMAGE BLOCKS ============
   Stand-ins until real photography exists. Deliberately styled (blush wash, ring
   motif, script caption) so an empty portfolio reads as art direction rather than
   a broken <img>. Swap a .dh-ph for an <img> and the layout does not move. */
.dh-ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, #FBEFEB 0%, rgba(251,239,235,0) 60%),
    linear-gradient(155deg, var(--dh-pink) 0%, var(--dh-pink-deep) 55%, #E4CFC8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dh-ph::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(107, 39, 55, 0.16);
  border-radius: 50%;
  transform: translate(-14%, -6%);
}
.dh-ph::after {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 50%;
  transform: translate(14%, 6%);
}
.dh-ph__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-flourish);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: rgba(107, 39, 55, 0.75);
  text-align: center;
  padding: 0 1rem;
}

/* ============ HERO ============ */
.dh-hero { background: var(--dh-cream); }
/* Full-bleed on purpose: the visual runs to the right edge of the viewport while the
   text column stays optically aligned with .dh-wrap's gutter on every other section. */
.dh-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}
.dh-hero__text {
  padding: 4rem 3rem 3rem max(1.5rem, calc((100vw - var(--dh-maxw)) / 2 + 1.5rem));
  align-self: center;
}
.dh-hero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  color: var(--color-maroon);
  margin: 0 0 1.1rem;
}
.dh-hero__pitch { color: var(--dh-muted); max-width: 27rem; margin: 0 0 1.8rem; font-size: 0.95rem; }
.dh-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.dh-hero__form { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 0.5rem; }
.dh-hero__form input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--dh-line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: #fff;
}
.dh-hero__hint { font-size: 0.72rem; color: var(--dh-muted); margin: 0 0 2rem; }
.dh-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem; list-style: none; margin: 0; padding: 0; }
.dh-trust__item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; color: var(--dh-muted); }
.dh-trust__item svg { width: 15px; height: 15px; color: var(--color-maroon); flex: none; }
.dh-hero__visual { position: relative; min-height: 460px; }
.dh-hero__visual .dh-ph { position: absolute; inset: 0; }
.dh-hero__overlay {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  text-align: center;
}
.dh-hero__overlay hr {
  border: 0;
  border-top: 1px solid rgba(107, 39, 55, 0.4);
  width: 46px;
  margin: 0.5rem auto 0.35rem;
}
.dh-hero__overlay span { font-size: 1.1rem; }

/* ============ SECTION SHELL ============ */
.dh-section { padding: 4.5rem 0; }
.dh-section--tint { background: var(--dh-cream); }
.dh-section__head { text-align: center; margin-bottom: 2.8rem; }

/* ============ SERVICE CARDS ============ */
.dh-services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dh-service {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: var(--dh-radius);
  overflow: hidden;
}
.dh-service__body { padding: 1.8rem 1.5rem; display: flex; flex-direction: column; }
.dh-service__num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--color-blush);
  line-height: 1;
  margin: 0 0 0.7rem;
}
.dh-service__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--color-maroon);
  margin: 0 0 0.7rem;
}
.dh-service__lede { font-size: 0.82rem; font-weight: 600; color: var(--color-ink); margin: 0 0 0.4rem; }
.dh-service__desc { font-size: 0.82rem; color: var(--dh-muted); margin: 0 0 1.1rem; }
.dh-checks { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 0.55rem; }
.dh-checks li { display: grid; grid-template-columns: 18px 1fr; gap: 0.55rem; font-size: 0.8rem; align-items: start; }
.dh-checks svg { width: 15px; height: 15px; color: var(--color-maroon); margin-top: 2px; }
.dh-service__body .dh-btn { align-self: flex-start; margin-top: auto; }
.dh-service__visual { position: relative; min-height: 320px; }
.dh-service__visual .dh-ph { position: absolute; inset: 0; }
.dh-service__overlay {
  position: absolute;
  right: 0.9rem;
  bottom: 1.2rem;
  z-index: 2;
  font-size: 1.15rem;
  text-align: right;
  line-height: 1.3;
}

/* ============ HOW IT WORKS ============ */
.dh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dh-step { text-align: center; padding: 0 0.5rem; position: relative; }
.dh-step + .dh-step::before {
  content: "→";
  position: absolute;
  left: -0.6rem;
  top: 0.6rem;
  color: var(--color-dusty-rose);
  font-size: 0.95rem;
}
.dh-step__icon { color: var(--color-maroon); display: block; margin: 0 auto 0.9rem; width: 26px; height: 26px; }
.dh-step__title { font-family: var(--font-heading); font-size: 1rem; color: var(--color-maroon); margin: 0 0 0.35rem; }
.dh-step__desc { font-size: 0.78rem; color: var(--dh-muted); margin: 0; }

/* ============ ABOUT BAND ============ */
.dh-about { display: grid; grid-template-columns: 1fr 1fr; }
.dh-about__gallery { display: grid; grid-template-columns: repeat(3, 1fr); }
.dh-about__gallery .dh-ph { min-height: 320px; }
.dh-about__gallery .dh-ph__label { font-size: 1.05rem; }
.dh-about__text {
  background: var(--dh-pink);
  padding: 3.2rem 3rem;
  position: relative;
  overflow: hidden;
  align-content: center;
  display: grid;
}
.dh-about__sprig {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 120px;
  color: rgba(107, 39, 55, 0.18);
}
.dh-about__text p { font-size: 0.88rem; color: #6E534E; max-width: 30rem; }
.dh-about__text .dh-btn { justify-self: start; margin-top: 0.6rem; }

/* ============ PORTFOLIO STRIP ============ */
.dh-portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 1.6rem; }
.dh-portfolio .dh-ph { aspect-ratio: 4 / 5; border-radius: var(--dh-radius); }
.dh-portfolio__note { text-align: center; font-size: 0.82rem; color: var(--dh-muted); }

/* ============ CONTACT ============ */
.dh-contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: start; }
.dh-contact__hint { font-size: 0.78rem; color: var(--dh-muted); margin-top: 0.8rem; }
.dh-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-whatsapp);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
}
.dh-wa:hover { background: var(--color-whatsapp-dark); }
.dh-wa svg { width: 20px; height: 20px; }
.dh-form { display: grid; gap: 0.9rem; background: #fff; border: 1px solid var(--dh-line); border-radius: var(--dh-radius); padding: 1.6rem; }
.dh-form label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dh-muted); display: block; margin-bottom: 0.3rem; }
.dh-form input, .dh-form select, .dh-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--dh-line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--dh-cream);
  color: var(--color-ink);
}
.dh-form textarea { resize: vertical; }
.dh-form .dh-btn { justify-self: start; }
.dh-form__status { font-size: 0.82rem; color: var(--color-maroon); margin: 0; }
.dh-honeypot { position: absolute; left: -9999px; }

/* ============ CTA BAND ============ */
.dh-cta {
  position: relative;
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(60% 120% at 20% 20%, #FBEFEB 0%, rgba(251,239,235,0) 70%),
    radial-gradient(60% 120% at 80% 80%, #F3DDD8 0%, rgba(243,221,216,0) 70%),
    linear-gradient(120deg, var(--dh-pink) 0%, var(--dh-pink-deep) 100%);
}
.dh-cta__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--color-maroon);
  margin: 0 0 0.5rem;
}
.dh-cta p { color: #6E534E; font-size: 0.9rem; margin: 0 0 1.6rem; }

/* ============ FOOTER ============ */
.dh-footer { background: #fff; border-top: 1px solid var(--dh-line); padding: 2.2rem 0; }
.dh-footer__inner {
  max-width: var(--dh-maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.dh-footer__nav { display: flex; gap: 1.4rem; margin: 0 auto; flex-wrap: wrap; }
.dh-footer__nav a { font-size: 0.8rem; text-decoration: none; color: var(--color-ink); }
.dh-footer__nav a:hover { color: var(--color-maroon); }
.dh-footer__right { text-align: right; }
.dh-social { display: flex; gap: 0.9rem; justify-content: flex-end; margin-bottom: 0.4rem; }
.dh-social a { color: var(--color-maroon); }
.dh-social svg { width: 18px; height: 18px; }
.dh-footer__tagline { font-size: 0.7rem; color: var(--dh-muted); margin: 0; }
.dh-footer__legal { text-align: center; font-size: 0.7rem; color: var(--dh-muted); margin: 1.5rem 0 0; }
.dh-footer__legal a { color: var(--dh-muted); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .dh-nav { display: none; }
  .dh-hero__inner { grid-template-columns: 1fr; }
  .dh-hero__text { padding: 3rem 1.5rem 2.5rem; }
  .dh-hero__visual { min-height: 340px; }
  .dh-services { grid-template-columns: 1fr; }
  .dh-steps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .dh-step:nth-child(3)::before { content: none; }
  .dh-about { grid-template-columns: 1fr; }
  .dh-about__text { padding: 2.5rem 1.5rem; }
  .dh-contact { grid-template-columns: 1fr; }
  .dh-footer__inner { justify-content: center; text-align: center; }
  .dh-footer__nav { margin: 0; justify-content: center; }
  .dh-footer__right { text-align: center; width: 100%; }
  .dh-social { justify-content: center; }
}
@media (max-width: 620px) {
  .dh-service { grid-template-columns: 1fr; }
  .dh-service__visual { min-height: 220px; }
  .dh-steps { grid-template-columns: 1fr; }
  .dh-step + .dh-step::before { content: none; }
  .dh-portfolio { grid-template-columns: 1fr; }
  .dh-about__gallery { grid-template-columns: 1fr; }
  .dh-about__gallery .dh-ph { min-height: 200px; }
  /* Header has to survive 360px: drop the tagline and the Sign In text link so the
     brand name and Book Now each stay on one line instead of wrapping to three. */
  .dh-header__inner { gap: 0.6rem; padding: 0.7rem 1rem; }
  .dh-brand__logo { width: 30px; }
  .dh-brand__name { font-size: 0.92rem; white-space: nowrap; }
  .dh-brand__tag { display: none; }
  .dh-signin { display: none; }
  .dh-btn--small { padding: 0.55rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.1em; white-space: nowrap; }
  .dh-langtoggle { width: 34px; height: 28px; }
  .dh-hero__overlay { right: 1rem; font-size: 1.05rem; }
}

/* ============================================================
   MULTI-PAGE PATTERNS (Sep 2026)
   Shared by about.html / services.html / portfolio.html / contact.html.
   ============================================================ */

/* Page hero: same split as the home hero but shorter, with a vertical
   letterspaced caption at the right edge instead of the quick-quote form. */
.dh-pagehero { background: var(--dh-cream); }
.dh-pagehero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
.dh-pagehero__text {
  padding: 3.5rem 3rem 3.5rem max(1.5rem, calc((100vw - var(--dh-maxw)) / 2 + 1.5rem));
  align-self: center;
}
.dh-pagehero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.14;
  color: var(--color-maroon);
  margin: 0 0 1rem;
}
.dh-pagehero__text p { color: var(--dh-muted); max-width: 28rem; font-size: 0.92rem; margin: 0 0 1.6rem; }
.dh-pagehero__visual { position: relative; min-height: 330px; }
.dh-pagehero__visual .dh-ph { position: absolute; inset: 0; }
.dh-pagehero__script {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.5;
}
.dh-pagehero__caption {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-maroon);
  line-height: 2;
  margin: 0;
}
.dh-pagehero__caption::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(107, 39, 55, 0.4);
  margin: 0.8rem 0 0 auto;
}

/* Image | prose split, used for About's story and founder note. */
.dh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.dh-split--flush { gap: 0; }
.dh-split__visual { position: relative; min-height: 330px; }
.dh-split__visual .dh-ph { position: absolute; inset: 0; }
.dh-split__script { position: absolute; left: 1.4rem; top: 12%; z-index: 2; font-size: 1.2rem; line-height: 1.5; }
.dh-split__body { padding: 2.5rem 0; }
.dh-split__body p { color: var(--dh-muted); font-size: 0.9rem; max-width: 34rem; }
.dh-split--flush .dh-split__body { padding: 3rem; }
.dh-signature { font-family: var(--font-flourish); font-size: 2rem; color: var(--color-maroon); margin: 1.4rem 0 0.2rem; }
.dh-signature__role { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dh-muted); margin: 0; }

/* Values strip: four vertically divided columns on a blush band. */
.dh-values { background: var(--dh-pink); padding: 2.8rem 0; }
.dh-values__inner {
  max-width: var(--dh-maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 0.6fr repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.dh-values__label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dusty-rose);
  line-height: 1.5;
  margin: 0;
}
.dh-values__label::after { content: ""; display: block; width: 34px; height: 1px; background: var(--color-dusty-rose); margin-top: 0.6rem; }
.dh-value { text-align: center; padding: 0 0.8rem; border-left: 1px solid rgba(107, 39, 55, 0.16); }
.dh-value svg { width: 24px; height: 24px; color: var(--color-maroon); margin-bottom: 0.7rem; }
.dh-value h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--color-maroon); margin: 0 0 0.3rem; }
.dh-value p { font-size: 0.75rem; color: var(--dh-muted); margin: 0; }

/* Full-bleed row of four images. */
.dh-striprow { display: grid; grid-template-columns: repeat(4, 1fr); }
.dh-striprow .dh-ph { min-height: 190px; }
.dh-striprow .dh-ph__label { font-size: 1rem; }

/* Service detail row: full-bleed visual, body, and a "perfect for you if" rail. */
.dh-servicerow { display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr; align-items: stretch; }
.dh-servicerow + .dh-servicerow { border-top: 1px solid var(--dh-line); }
.dh-servicerow--tint { background: var(--dh-pink); }
.dh-servicerow__visual { position: relative; min-height: 340px; }
.dh-servicerow__visual .dh-ph { position: absolute; inset: 0; }
.dh-servicerow__script { position: absolute; left: 1.2rem; top: 14%; z-index: 2; font-size: 1.2rem; line-height: 1.55; }
.dh-servicerow__body { padding: 2.8rem 2.5rem; align-self: center; }
.dh-servicerow__rail { padding: 2.8rem 2.5rem 2.8rem 2rem; border-left: 1px solid rgba(107, 39, 55, 0.16); align-self: center; }
.dh-servicerow__rail h4 { font-size: 0.78rem; color: var(--color-maroon); margin: 0 0 0.9rem; font-family: var(--font-body); font-weight: 600; }
.dh-servicerow__quote { font-family: var(--font-flourish); font-size: 1.35rem; color: var(--color-maroon); margin: 1.6rem 0 0; line-height: 1.4; }

/* Filter chips. */
.dh-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.2rem; }
.dh-chip {
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--color-maroon);
  background: #fff;
  color: var(--color-maroon);
  cursor: pointer;
}
.dh-chip[aria-pressed="true"] { background: var(--color-maroon); color: #fff; }

/* Four-up card grid (portfolio / deliverables). */
.dh-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem 1.1rem; }
.dh-card .dh-ph { aspect-ratio: 4 / 5; }
.dh-card h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-maroon); margin: 0.8rem 0 0.2rem; }
.dh-card p { font-size: 0.75rem; color: var(--dh-muted); margin: 0 0 0.6rem; }
.dh-card__rule { border: 0; border-top: 1px solid var(--color-dusty-rose); width: 38px; margin: 0; }
.dh-pullquote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-maroon);
  margin: 3rem auto 0;
  max-width: 40rem;
  position: relative;
}

/* FAQ accordion. */
.dh-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.dh-faq__item { border-bottom: 1px solid var(--dh-line); }
.dh-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.8rem 0.95rem 0;
  font-size: 0.85rem;
  position: relative;
}
.dh-faq__item summary::-webkit-details-marker { display: none; }
.dh-faq__item summary::after { content: "+"; position: absolute; right: 0; top: 0.8rem; color: var(--color-maroon); font-size: 1.1rem; }
.dh-faq__item[open] summary::after { content: "\2212"; }
.dh-faq__item p { font-size: 0.82rem; color: var(--dh-muted); margin: 0 0 1rem; padding-right: 1.8rem; }

/* Contact page: form beside the reach-us rail. */
.dh-contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.dh-contactgrid__form { padding: 3rem; background: #fff; }
.dh-contactgrid__side { padding: 3rem; background: var(--dh-cream); }
.dh-formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.dh-formgrid > .dh-span2 { grid-column: 1 / -1; }
.dh-infolist { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.dh-infolist li { display: grid; grid-template-columns: 40px 1fr; gap: 0.9rem; align-items: center; }
.dh-infolist__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dh-pink); color: var(--color-maroon);
  display: flex; align-items: center; justify-content: center;
}
.dh-infolist__icon svg { width: 19px; height: 19px; }
.dh-infolist strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--color-ink); }
.dh-infolist a, .dh-infolist span { font-size: 0.82rem; color: var(--dh-muted); text-decoration: none; }
.dh-infolist a:hover { color: var(--color-maroon); }
.dh-note { font-family: var(--font-flourish); font-size: 1.3rem; color: var(--color-maroon); }

@media (max-width: 960px) {
  .dh-pagehero__inner { grid-template-columns: 1fr; }
  .dh-pagehero__text { padding: 2.8rem 1.5rem; }
  .dh-pagehero__visual { min-height: 260px; }
  .dh-split { grid-template-columns: 1fr; gap: 0; }
  .dh-split--flush .dh-split__body, .dh-split__body { padding: 2.2rem 1.5rem; }
  .dh-values__inner { grid-template-columns: 1fr 1fr; }
  .dh-values__label { grid-column: 1 / -1; text-align: center; }
  .dh-values__label::after { margin-inline: auto; }
  .dh-value:nth-child(even) { border-left: 0; }
  .dh-striprow { grid-template-columns: repeat(2, 1fr); }
  .dh-servicerow { grid-template-columns: 1fr; }
  .dh-servicerow__rail { border-left: 0; border-top: 1px solid rgba(107, 39, 55, 0.16); padding: 2rem 2.5rem; }
  .dh-servicerow__body { padding: 2.2rem 1.5rem; }
  .dh-servicerow__rail { padding: 2rem 1.5rem; }
  .dh-grid4 { grid-template-columns: repeat(2, 1fr); }
  .dh-faq { grid-template-columns: 1fr; }
  .dh-contactgrid { grid-template-columns: 1fr; }
  .dh-contactgrid__form, .dh-contactgrid__side { padding: 2.2rem 1.5rem; }
}
@media (max-width: 620px) {
  .dh-values__inner { grid-template-columns: 1fr; }
  .dh-value { border-left: 0; border-top: 1px solid rgba(107, 39, 55, 0.16); padding-top: 1.2rem; }
  .dh-striprow { grid-template-columns: 1fr; }
  .dh-grid4 { grid-template-columns: 1fr; }
  .dh-formgrid { grid-template-columns: 1fr; }
  .dh-pagehero__script { left: 1rem; font-size: 1.05rem; }
  .dh-pagehero__caption { right: 1rem; }
}

/* Fills its positioned parent — used where a .dh-ph is the background of a block
   that also carries an absolutely positioned script overlay. */
.dh-ph--fill { position: absolute; inset: 0; }
