/* ==========================================================================
   David's Harp — site-wide skin (whole WordPress site, not just Woo pages)
   ========================================================================== */

/* Self-hosted serif for headings (bundled — no CDN dependency).
   Playfair Display is a variable font: one file covers weights 400–900. */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/playfair-display-var.woff2") format("woff2");
}

:root {
  --dh-bg: #10100F; --dh-bg-2: #181816; --dh-surface: #20201D; --dh-surface-2: #2A2924;
  --dh-text: #F8F4EA; --dh-muted: #A9A193; --dh-accent: #F5B31A; --dh-accent-2: #FF6A2A;
  --dh-green: #4CD36F; --dh-line: #35332D; --dh-danger: #F04438;
  --dh-font: "Inter", system-ui, sans-serif;
  --dh-font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --dh-font-mono: "JetBrains Mono", monospace;
  --dh-nav-h: 74px;
}
@media (max-width: 700px) { :root { --dh-nav-h: 60px; } }

html { background: var(--dh-bg); }
body.dh-site {
  background: var(--dh-bg);
  color: var(--dh-text);
  font-family: var(--dh-font);
  /* Apple-style base: 17px body, comfortable leading, subtle negative tracking */
  font-size: 17px; font-weight: 400; line-height: 1.47059;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
}
/* Apple-style headline rhythm: tight tracking, snug leading, balanced wrapping */
body.dh-site h1, body.dh-site h2, body.dh-site h3, body.dh-site h4 {
  font-family: var(--dh-font-head); color: var(--dh-text);
  letter-spacing: -0.022em; line-height: 1.07; font-weight: 600;
  text-wrap: balance;
}
body.dh-site h3, body.dh-site h4 { line-height: 1.14; letter-spacing: -0.014em; }
body.dh-site a { color: var(--dh-accent); }
body.dh-site p, body.dh-site li { color: var(--dh-muted); }
body.dh-site img { max-width: 100%; height: auto; }

/* ---------- Header ---------- */
/* ---------- Header (exact David's Harp pill nav) ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
}
/* WordPress admin bar (logged-in only): sit the fixed nav below it so it isn't
   hidden behind the 32/46px toolbar. Visitors never see this. */
body.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .header { top: 46px; } }

/* fixed header floats over the homepage hero; inner pages get offset */
body.dh-site:not(.home) { padding-top: var(--dh-nav-h); }
/* HOMEPAGE IS EDGE-TO-EDGE: the global `.dh-woo` body padding (top/bottom + 64px
   left/right) must NOT apply on the homepage — it was constraining the full-bleed
   hero. Sections below the hero keep their own side padding via `.dh-wrap`. */
body.home.dh-site { padding: 0; }
body.home .dh-home { margin: 0; padding: 0; width: 100%; }
body.home .dh-home > .dh-cine:first-child { margin-top: 0; }
/* the hero + its background video are always full-viewport-width, never wrapped */
.dh-cine { width: 100%; max-width: none; margin: 0; padding: 0; }
.dh-cine__stage, .dh-cine__vid { max-width: none; }
.header__logo {
  font-family: var(--dh-font-head); font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.03em; color: var(--dh-text) !important; text-decoration: none;
}
.header__pill {
  display: flex; align-items: center; gap: 0.25rem; padding: 0.35rem;
  background: rgba(30, 30, 28, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}
.header__link {
  padding: 0.5rem 1.05rem; border-radius: 999px; font-size: 0.88rem;
  color: var(--dh-muted) !important; text-decoration: none; white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.header__link:hover { color: var(--dh-text) !important; }
.header__link.is-active { background: var(--dh-accent); color: #161006 !important; font-weight: 600; }
.header__link--mobile { display: none; }
.header__actions { display: flex; gap: 0.5rem; align-items: center; }
.header__icon {
  position: relative; display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(30, 30, 28, 0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  color: var(--dh-text) !important; cursor: pointer; text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.header__icon:hover { background: rgba(48, 48, 44, 0.5); border-color: rgba(255,255,255,0.2); }
.header__icon svg { width: 18px; height: 18px; }
.header__search { font: inherit; }
.header__badge {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 999px; background: var(--dh-accent); color: #161006;
  font-family: var(--dh-font-mono); font-size: 0.62rem; font-weight: 600;
  display: none; place-items: center;
}
.header__badge.is-visible { display: inline-flex; align-items: center; justify-content: center; }
.header__burger { display: none; }

/* Hamburger only for portrait phones/tablets (and any very narrow screen).
   In landscape, the full desktop nav bar is used instead. */
@media (max-width: 860px) and (orientation: portrait), (max-width: 600px) {
  /* Icons (search, cart, account) stay in the top bar; the hamburger holds
     only the menu links — an Apple-style full-screen overlay. */
  .header { padding: 0.8rem clamp(0.9rem, 4vw, 2rem); }
  .header__logo { font-size: 1.15rem; }
  .header__actions { gap: 0.35rem; }
  .header__icon { width: 40px; height: 40px; }
  .header__icon svg { width: 17px; height: 17px; }

  .header__pill {
    box-sizing: border-box;
    position: fixed; inset: 0; width: 100%; height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 0; padding: 5.5rem 1.7rem 3rem; border: 0; border-radius: 0;
    background: #0e0e0d; box-shadow: none;
    opacity: 0; visibility: hidden; transform: translateY(-14px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
    z-index: 45;
  }
  .header__pill.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .header__link {
    padding: 1.15rem 0.3rem; font-size: 1.7rem; font-family: var(--dh-font-head);
    color: var(--dh-text) !important; border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .header__pill.is-open .header__link { opacity: 1; transform: translateY(0); }
  .header__pill.is-open .header__link:nth-child(1) { transition-delay: 0.08s; }
  .header__pill.is-open .header__link:nth-child(2) { transition-delay: 0.14s; }
  .header__pill.is-open .header__link:nth-child(3) { transition-delay: 0.20s; }
  .header__pill.is-open .header__link:nth-child(4) { transition-delay: 0.26s; }
  .header__pill.is-open .header__link:nth-child(5) { transition-delay: 0.32s; }

  /* 3-bar hamburger that morphs into an X */
  .header__burger {
    display: inline-grid; gap: 5px; place-content: center; position: relative; z-index: 60;
    width: 40px; height: 40px; padding: 0; cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50%;
    background: rgba(30, 30, 28, 0.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }
  .header__burger span {
    display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--dh-text);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  }
  .header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  body.dh-drawer-open { overflow: hidden; }
}
body.dh-drawer-open { overflow: hidden; }

/* Search dialog */
.dh-search-dialog { border: 0; background: transparent; padding: 0; max-width: 640px; width: 90vw; margin-top: 12vh; }
.dh-search-dialog::backdrop { background: rgba(16,16,15,0.82); backdrop-filter: blur(8px); }
.dh-search-form {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--dh-surface); border: 1px solid rgba(245,179,26,0.3);
  border-radius: 16px; padding: 0.5rem 1rem; box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.dh-search-form svg { width: 20px; height: 20px; color: var(--dh-accent); flex: none; }
.dh-search-form input[type="search"] { flex: 1; background: transparent; border: 0; outline: none; color: var(--dh-text); font-family: var(--dh-font); font-size: 1.05rem; padding: 0.7rem 0; }
.dh-search-form button { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--dh-line); background: transparent; color: var(--dh-muted); cursor: pointer; }

/* ---------- Content shells ---------- */
.dh-woo__container, .site-main .doc { max-width: 1200px; margin: 0 auto; }
.site-main { padding: clamp(2rem, 6vh, 4rem) clamp(1rem, 5vw, 3rem); }
/* Shop / product archives sit right under the fixed nav — trim the top gap. */
body.woocommerce-shop .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main { padding-top: clamp(1rem, 2.5vh, 1.6rem); }
.doc { max-width: 68ch; }

/* Cinematic pages (About, Contact, FAQs, Policies) + Shop: a fixed background
   image stays visible the whole scroll, content in a bordered "ring" frame.
   The image is a REAL fixed <div> (.dh-bg-layer) — Safari renders this reliably,
   unlike a fixed ::before or background-attachment:fixed (both go black in Safari).
   The body is made transparent so nothing paints over the fixed layer. */
.dh-bg-layer { display: none; }
body.dh-doc-page { --dh-page-bg: url('img/collection.jpg'); }
body.dh-site.dh-doc-page,
body.dh-site.woocommerce-shop,
body.dh-site.post-type-archive-product,
body.dh-site.tax-product_cat { background: transparent; }

body.dh-doc-page .dh-bg-layer {
  display: block; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,14,13,0.28), rgba(14,14,13,0.4) 55%, rgba(14,14,13,0.5)),
    var(--dh-page-bg) center center / cover no-repeat;
}
/* Shop / product archives — darker overlay so product cards pop */
body.woocommerce-shop .dh-bg-layer,
body.post-type-archive-product .dh-bg-layer,
body.tax-product_cat .dh-bg-layer {
  display: block; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,14,13,0.72), rgba(14,14,13,0.85) 60%, rgba(14,14,13,0.93)),
    url('img/collection.jpg') center center / cover no-repeat;
}
/* Contact page: no .doc panel, so darken the ambient boutique for readability */
body.dh-page-contact-us .dh-bg-layer {
  background:
    linear-gradient(180deg, rgba(10,10,9,0.82), rgba(10,10,9,0.9) 55%, rgba(10,10,9,0.96)),
    url('img/collection.jpg') center center / cover no-repeat;
}
/* page content sits above the fixed image layer (header is already fixed/z-50) */
body.dh-doc-page .site-main, body.dh-doc-page .footer,
body.woocommerce-shop .site-main, body.woocommerce-shop .footer,
body.post-type-archive-product .site-main, body.post-type-archive-product .footer,
body.tax-product_cat .site-main, body.tax-product_cat .footer { position: relative; z-index: 1; }

/* Content sits in a TRANSLUCENT panel — the boutique image shows through it via
   plain alpha (NOT backdrop-filter, which renders dark here because .site-main is
   a separate stacking layer the blur can't sample). Reliable in every browser. */
body.dh-doc-page .doc {
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(16,16,15,0.4), rgba(14,14,13,0.5));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.14);
  padding: clamp(1.8rem, 5vw, 3.4rem);
}
body.dh-doc-page .doc .entry p,
body.dh-doc-page .doc .entry li { text-shadow: 0 1px 8px rgba(0,0,0,0.85); }
body.dh-doc-page .doc h1,
body.dh-doc-page .doc h2,
body.dh-doc-page .doc h3 { text-shadow: 0 2px 14px rgba(0,0,0,0.9); }

/* ---------- About Us — editorial flourishes ---------- */
body.dh-page-davids-harp-story .doc h1::before {
  content: "David\2019s Harp\00a0\00b7\00a0Our Story";
  display: block; margin-bottom: 0.7rem;
  font-family: var(--dh-font-mono); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dh-accent);
}
body.dh-page-davids-harp-story .doc h1 {
  padding-bottom: 1.3rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--dh-line);
}
/* lead heading + drop-cap opening paragraph */
body.dh-page-davids-harp-story .entry > h2:first-of-type {
  font-family: var(--dh-font-head); font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--dh-accent); margin: 0 0 1rem;
}
body.dh-page-davids-harp-story .entry > h2:first-of-type + p::first-letter {
  float: left; font-family: var(--dh-font-head); font-size: 3.4rem; line-height: 0.8;
  padding: 0.3rem 0.7rem 0 0; color: var(--dh-accent);
}
/* story sub-sections with a gold rule above each */
body.dh-page-davids-harp-story .entry h3 {
  font-family: var(--dh-font-head); font-size: 1.3rem; margin: 2.4rem 0 0.6rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(245,179,26,0.18);
  color: var(--dh-text);
}
body.dh-page-davids-harp-story .entry h3::before {
  content: ""; display: block; width: 34px; height: 2px; margin-bottom: 0.8rem;
  background: linear-gradient(90deg, var(--dh-accent), var(--dh-accent-2));
}
.doc--wide { max-width: 1100px; }
.doc h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 1.4rem; }
.doc .entry { font-size: 1.06rem; }
.doc .entry p, .doc .entry li { line-height: 1.7; color: var(--dh-text); opacity: 0.92; }
.doc .entry a { color: var(--dh-accent); }
.entry :where(h2) { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 2.4rem 0 0.7rem; }
.entry :where(h3) { font-size: 1.2rem; margin: 1.8rem 0 0.5rem; }
.entry :where(ul, ol) { padding-left: 1.2rem; }
.entry :where(li) { margin: 0.35rem 0; }

/* ---------- Premium legal / policy / FAQ pages (frame comes from .dh-doc-page) ---------- */
body.dh-page-privacy-policy .doc,
body.dh-page-shipping-and-delivery-policy .doc,
body.dh-page-cancellation-refund-policy .doc,
body.dh-page-terms-and-conditions .doc,
body.dh-page-faqs .doc { counter-reset: dh-sec; }
/* eyebrow + accent under the title */
body.dh-page-privacy-policy .doc h1::before,
body.dh-page-shipping-and-delivery-policy .doc h1::before,
body.dh-page-cancellation-refund-policy .doc h1::before,
body.dh-page-terms-and-conditions .doc h1::before,
body.dh-page-faqs .doc h1::before {
  content: "David\2019s Harp\00a0\00b7\00a0Policy";
  display: block; margin-bottom: 0.7rem;
  font-family: var(--dh-font-mono); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dh-accent);
}
body.dh-page-faqs .doc h1::before { content: "David\2019s Harp\00a0\00b7\00a0Help Centre"; }
body.dh-page-privacy-policy .doc h1,
body.dh-page-shipping-and-delivery-policy .doc h1,
body.dh-page-cancellation-refund-policy .doc h1,
body.dh-page-terms-and-conditions .doc h1,
body.dh-page-faqs .doc h1 {
  padding-bottom: 1.3rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--dh-line);
}
/* numbered gold section badges */
body.dh-page-privacy-policy .entry h3,
body.dh-page-shipping-and-delivery-policy .entry h3,
body.dh-page-cancellation-refund-policy .entry h3,
body.dh-page-terms-and-conditions .entry h3,
body.dh-page-faqs .entry h3 {
  position: relative; padding-left: 2.8rem; margin: 2.4rem 0 0.6rem;
  font-family: var(--dh-font-head); font-size: 1.22rem; min-height: 1.9rem; display: flex; align-items: center;
}
body.dh-page-privacy-policy .entry h3::before,
body.dh-page-shipping-and-delivery-policy .entry h3::before,
body.dh-page-cancellation-refund-policy .entry h3::before,
body.dh-page-terms-and-conditions .entry h3::before,
body.dh-page-faqs .entry h3::before {
  counter-increment: dh-sec; content: counter(dh-sec);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1.9rem; height: 1.9rem; border-radius: 50%; display: grid; place-items: center;
  background: rgba(245,179,26,0.12); border: 1px solid rgba(245,179,26,0.35);
  color: var(--dh-accent); font-family: var(--dh-font-mono); font-size: 0.78rem; font-weight: 600;
}
/* FAQ answers indent to line up under the question text */
body.dh-page-faqs .entry h3 + p { padding-left: 2.8rem; }
/* airier reading + subtle separators between sections */
body.dh-page-privacy-policy .entry p,
body.dh-page-shipping-and-delivery-policy .entry p,
body.dh-page-cancellation-refund-policy .entry p,
body.dh-page-terms-and-conditions .entry p,
body.dh-page-faqs .entry p { margin: 0.7rem 0; }

/* shared helpers (also defined richer in home.css for the front page) */
.dh-eyebrow { font-family: var(--dh-font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dh-accent); margin: 0 0 0.6rem; }
.dh-lead { color: var(--dh-muted); font-size: 1.08rem; line-height: 1.7; }

/* ---------- Contact form ([dh_contact_form]) ---------- */
.dh-contact-form { max-width: 620px; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.dh-field { display: grid; gap: 0.4rem; }
.dh-field > span { font-family: var(--dh-font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dh-muted); }
.dh-field input, .dh-field textarea {
  width: 100%; background: var(--dh-surface); border: 1px solid var(--dh-line); border-radius: 12px;
  padding: 0.8rem 1rem; color: var(--dh-text); font-family: var(--dh-font); font-size: 1rem; outline: none;
  transition: border-color 0.15s ease; box-sizing: border-box;
}
.dh-field input:focus, .dh-field textarea:focus { border-color: var(--dh-accent); }
.dh-field textarea { resize: vertical; }
.dh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .dh-field-row { grid-template-columns: 1fr; } }
.dh-contact-form .dh-btn { justify-self: start; border: 0; cursor: pointer; padding: 0.9rem 2.2rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; background: linear-gradient(135deg, var(--dh-accent), var(--dh-accent-2)); color: #161006; }
.dh-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.dh-form-note { border-radius: 12px; padding: 0.9rem 1.2rem; margin-bottom: 1.2rem; font-size: 0.96rem; }
.dh-form-note--ok { background: rgba(76,211,111,0.12); border: 1px solid rgba(76,211,111,0.4); color: var(--dh-green); }
.dh-form-note--ok a, .dh-form-note--err a { color: inherit; }
.dh-form-note--err { background: rgba(240,68,56,0.12); border: 1px solid rgba(240,68,56,0.4); color: var(--dh-danger); }

/* ============================================================
   CONTACT PAGE (page-contact-us.php) — luxury full-screen
   ============================================================ */
.dh-contact {
  position: relative; z-index: 1;              /* sit above the fixed .dh-bg-layer */
  max-width: 1180px; margin: 0 auto;
  padding: clamp(2rem, 7vh, 5.5rem) clamp(1.2rem, 5vw, 3rem) clamp(3rem, 8vh, 6rem);
}
.dh-eyebrow {
  font-family: var(--dh-font-mono); font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--dh-accent); margin: 0 0 0.9rem;
}

/* ---- Hero ---- */
.dh-contact__hero { max-width: 760px; margin-bottom: clamp(2rem, 6vh, 4rem); }
.dh-contact__h1 {
  font-family: var(--dh-font-head); font-weight: 700;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem); line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
}
.dh-contact__lead { color: var(--dh-muted); font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.75; max-width: 54ch; }
.dh-contact__quick { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.9rem; }
.dh-contact__chip {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.25rem;
  border-radius: 999px; border: 1px solid rgba(245,179,26,0.28); background: rgba(255,255,255,0.04);
  color: var(--dh-text) !important; text-decoration: none; font-size: 0.92rem;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.dh-contact__chip svg { width: 18px; height: 18px; color: var(--dh-accent); }
.dh-contact__chip:hover { border-color: var(--dh-accent); background: rgba(245,179,26,0.1); transform: translateY(-2px); }

/* ---- Form + info grid ---- */
.dh-contact__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start; margin-bottom: clamp(3rem, 8vh, 5.5rem);
}
@media (max-width: 880px) { .dh-contact__grid { grid-template-columns: 1fr; } }

.dh-contact__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12); border-radius: 26px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 40px 110px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.dh-contact__cardtitle { font-family: var(--dh-font-head); font-size: clamp(1.4rem, 3vw, 2rem); margin: 0.2rem 0 1.6rem; }

/* Floating-label form */
.dh-fl-form { display: grid; gap: 1.05rem; margin: 0; max-width: none; }
.dh-fl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
@media (max-width: 560px) { .dh-fl-row { grid-template-columns: 1fr; } }
.dh-fl { position: relative; }
.dh-fl input, .dh-fl textarea {
  width: 100%; box-sizing: border-box; background: rgba(12,12,11,0.55);
  border: 1px solid var(--dh-line); border-radius: 14px;
  padding: 1.35rem 1rem 0.55rem; color: var(--dh-text);
  font-family: var(--dh-font); font-size: 1rem; outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.dh-fl textarea { resize: vertical; min-height: 128px; padding-top: 1.5rem; }
.dh-fl input:focus, .dh-fl textarea:focus { border-color: var(--dh-accent); background: rgba(12,12,11,0.72); }
.dh-fl label {
  position: absolute; left: 1rem; top: 0.95rem; color: var(--dh-muted); font-size: 1rem;
  pointer-events: none; transform-origin: left top;
  transition: transform .16s ease, color .16s ease;
}
.dh-fl input:focus + label, .dh-fl input:not(:placeholder-shown) + label,
.dh-fl textarea:focus + label, .dh-fl textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.62rem) scale(0.72); color: var(--dh-accent);
}
.dh-submit {
  display: inline-flex; align-items: center; gap: 0.6rem; justify-self: start;
  border: 0; cursor: pointer; margin-top: 0.3rem;
}
.dh-submit svg { width: 18px; height: 18px; transition: transform .2s ease; }
.dh-submit:hover { transform: translateY(-1px); }
.dh-submit:hover svg { transform: translateX(4px); }

/* Info aside */
.dh-contact__info { display: grid; gap: 1.35rem; align-content: start; }
.dh-info { display: flex; gap: 1rem; align-items: flex-start; }
.dh-info__ico {
  flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(245,179,26,0.1); border: 1px solid rgba(245,179,26,0.24); color: var(--dh-accent);
}
.dh-info__ico svg { width: 22px; height: 22px; }
.dh-info h4 { font-family: var(--dh-font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dh-muted); margin: 0.25rem 0 0.35rem; font-weight: 600; }
.dh-info a { color: var(--dh-text) !important; text-decoration: none; }
.dh-info a:hover { color: var(--dh-accent) !important; }
.dh-info__addr { font-style: normal; color: var(--dh-muted); font-size: 0.92rem; line-height: 1.6; }
.dh-info p { color: var(--dh-muted); font-size: 0.92rem; margin: 0; }
.dh-contact__social { display: flex; gap: 0.6rem; margin-top: 0.3rem; padding-left: calc(46px + 1rem); }
.dh-contact__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--dh-line); color: var(--dh-text) !important; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.dh-contact__social a:hover { color: var(--dh-accent) !important; border-color: var(--dh-accent); transform: translateY(-2px); }

/* FAQ */
.dh-contact__faq { max-width: 820px; margin: 0 auto clamp(3rem, 8vh, 5.5rem); }
.dh-sec-head { margin-bottom: 1.6rem; }
.dh-sec-head h2 { font-family: var(--dh-font-head); font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0; }
.dh-faq { display: grid; gap: 0.7rem; }
.dh-faq__item { border: 1px solid var(--dh-line); border-radius: 16px; background: rgba(255,255,255,0.02); overflow: hidden; transition: border-color .2s ease; }
.dh-faq__item[open] { border-color: rgba(245,179,26,0.3); }
.dh-faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.35rem; font-family: var(--dh-font-head); font-size: 1.05rem; color: var(--dh-text); }
.dh-faq__item summary::-webkit-details-marker { display: none; }
.dh-faq__plus { position: relative; flex: none; width: 16px; height: 16px; }
.dh-faq__plus::before, .dh-faq__plus::after { content: ""; position: absolute; background: var(--dh-accent); transition: transform .2s ease; }
.dh-faq__plus::before { left: 0; top: 7px; width: 16px; height: 2px; }
.dh-faq__plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.dh-faq__item[open] .dh-faq__plus::after { transform: scaleY(0); }
.dh-faq__item p { color: var(--dh-muted); line-height: 1.7; margin: 0; padding: 0 1.35rem 1.2rem; }

/* Scroll-reveal (theme.js toggles .is-in via IntersectionObserver) */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* ---------- Search results + empty states (branded) ---------- */
.dh-search-results { max-width: 760px; margin: 0 auto; }
.dh-search-results > h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0.3rem 0 1.6rem; }
.dh-search-inline { display: flex; gap: 0.6rem; margin-bottom: 2.4rem; }
.dh-search-inline input[type="search"] { flex: 1; background: var(--dh-surface); border: 1px solid var(--dh-line); border-radius: 999px; padding: 0.85rem 1.3rem; color: var(--dh-text); font-family: var(--dh-font); font-size: 1rem; outline: none; }
.dh-search-inline input[type="search"]:focus { border-color: var(--dh-accent); }
.dh-search-inline button { flex: none; padding: 0 1.5rem; border-radius: 999px; border: 0; background: linear-gradient(135deg, var(--dh-accent), var(--dh-accent-2)); color: #161006; font-weight: 600; cursor: pointer; }
.dh-result-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.dh-result-list li { padding: 1.1rem 0; border-bottom: 1px solid var(--dh-line); }
.dh-result-list a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; text-decoration: none; }
.dh-result-title { font-family: var(--dh-font-head); font-size: 1.25rem; color: var(--dh-text); }
.dh-result-list a:hover .dh-result-title { color: var(--dh-accent); }
.dh-result-type { font-family: var(--dh-font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dh-accent); flex: none; }
.dh-result-excerpt { color: var(--dh-muted); font-size: 0.94rem; margin: 0.4rem 0 0; }
.dh-empty { text-align: center; max-width: 560px; margin: clamp(2rem, 8vh, 5rem) auto; }
.dh-empty h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0.4rem 0 0.8rem; }
.dh-empty p { color: var(--dh-muted); font-size: 1.08rem; margin: 0 0 1.6rem; }
.dh-empty__cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.dh-empty .dh-btn { display: inline-block; padding: 0.9rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.dh-empty .dh-btn--primary { background: linear-gradient(135deg, var(--dh-accent), var(--dh-accent-2)); color: #161006; }
.dh-empty .dh-btn--ghost { color: var(--dh-text); border: 1px solid rgba(248,244,234,0.18); }

/* WordPress core block niceties on dark */
body.dh-site .wp-block-button__link {
  background: linear-gradient(135deg, var(--dh-accent), var(--dh-accent-2));
  color: #161006; border-radius: 999px; font-weight: 600;
}
body.dh-site .wp-element-caption { color: var(--dh-muted); }

/* ---------- Footer (exact David's Harp footer) ---------- */
.footer {
  position: relative; margin-top: 5rem; overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(245,179,26,0.09), transparent 55%),
    linear-gradient(180deg, #131210, var(--dh-bg) 40%);
  border-top: 1px solid rgba(245,179,26,0.14);
  padding: clamp(3rem, 6vh, 5rem) clamp(1.25rem, 5vw, 6rem) 2rem;
}
/* hairline gold gradient across the very top edge */
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,179,26,0.6), transparent);
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); max-width: 1240px; margin: 0 auto; }
.footer__brand-name { font-family: var(--dh-font-head); font-size: 1.7rem; font-weight: 500; letter-spacing: 0.02em; color: var(--dh-text); }
.footer__tag { color: var(--dh-muted); margin-top: 0.5rem; font-size: 0.95rem; font-style: italic; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--dh-line); color: var(--dh-muted); background: rgba(255,255,255,0.02); transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease; }
.footer__social a:hover { color: var(--dh-accent); border-color: var(--dh-accent); background: rgba(245,179,26,0.08); transform: translateY(-3px); }
.footer__col h4 { position: relative; font-family: var(--dh-font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dh-text); margin: 0 0 1.3rem; padding-bottom: 0.7rem; }
.footer__col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--dh-accent), var(--dh-accent-2)); }
.footer__col a { display: block; color: var(--dh-text) !important; opacity: 0.72; text-decoration: none; padding: 0.35rem 0; font-size: 0.92rem; transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.footer__col a:hover { color: var(--dh-accent) !important; opacity: 1; transform: translateX(3px); }
.footer__addr { color: var(--dh-muted); font-size: 0.9rem; line-height: 1.9; font-style: normal; }
.footer__addr a { display: inline !important; padding: 0 !important; color: var(--dh-accent) !important; opacity: 1 !important; transform: none !important; }
.footer__bottom { max-width: 1240px; margin: clamp(2.5rem, 5vh, 3.5rem) auto 0; padding-top: 1.5rem; border-top: 1px solid var(--dh-line); color: var(--dh-muted); font-size: 0.82rem; font-family: var(--dh-font-mono); letter-spacing: 0.04em; text-align: center; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
