@font-face {
  font-family: "Dr Hahnz Aviano";
  src: url("../fonts/aviano-serif-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Dr Hahnz Myriad";
  src: url("../fonts/myriad-pro-bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --dh-charcoal: #1d1e19;
  --dh-charcoal-soft: #1d1e19;
  --dh-ivory: #f4f0e6;
  --dh-ivory-deep: #f4f0e6;
  --dh-gold: #9f7f36;
  --dh-gold-light: #9f7f36;
  --dh-olive: #34452e;
  --dh-olive-deep: #34452e;
  --dh-olive-light: #34452e;
  --dh-border-dark: rgba(244, 240, 230,0.2);
  --dh-border-light: rgba(29, 30, 25,0.16);
  --dh-serif: "Dr Hahnz Aviano", Georgia, "Times New Roman", serif;
  --dh-sans: "Dr Hahnz Myriad", "Myriad Pro", Arial, sans-serif;
  --dh-label: "Dr Hahnz Myriad", "Myriad Pro", Arial, sans-serif;
  --dh-header-height: 84px;
  --dh-subnav-height: 42px;
  --dh-gutter: clamp(20px, 4.2vw, 72px);
  --dh-ease: cubic-bezier(0.2, 0.72, 0.18, 1);
}

html {
  scroll-behavior: smooth;
}

body.dr-hahnz-luxury-canvas {
  margin: 0;
  overflow-x: hidden;
  background: var(--dh-charcoal);
}

.dr-hahnz-luxury-canvas #wpadminbar {
  z-index: 100001;
}

.dh-luxury,
.dh-luxury * {
  box-sizing: border-box;
}

.dh-luxury {
  margin: 0;
  overflow: clip;
  color: var(--dh-charcoal);
  background: var(--dh-ivory);
  font-family: var(--dh-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.dh-luxury button,
.dh-luxury input {
  font: inherit;
}

.dh-luxury button,
.dh-luxury a {
  -webkit-tap-highlight-color: transparent;
}

.dh-luxury a {
  color: inherit;
  text-decoration: none;
}

.dh-luxury img,
.dh-luxury video,
.dh-luxury iframe,
.dh-luxury svg {
  display: block;
  max-width: 100%;
}

.dh-luxury h1,
.dh-luxury h2,
.dh-luxury h3,
.dh-luxury p,
.dh-luxury figure {
  margin: 0;
}

.dh-luxury h1,
.dh-luxury h2,
.dh-luxury h3 {
  font-family: var(--dh-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.dh-luxury svg {
  width: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.dh-skip {
  position: fixed;
  z-index: 100010;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--dh-charcoal);
  background: var(--dh-ivory);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.dh-skip:focus {
  transform: translateY(0);
}

.dh-kicker {
  margin-bottom: 18px !important;
  color: var(--dh-gold);
  font-family: var(--dh-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dh-header {
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--dh-header-height);
  padding: 0 var(--dh-gutter);
  color: var(--dh-ivory);
  border-bottom: 1px solid rgba(244, 240, 230,0.26);
  background: linear-gradient(180deg, rgba(52, 69, 46,0.62), rgba(52, 69, 46,0));
  transition: min-height 500ms var(--dh-ease), background-color 500ms var(--dh-ease), backdrop-filter 500ms var(--dh-ease), transform 500ms var(--dh-ease);
}

.admin-bar .dh-header {
  top: 32px;
}

.dh-header.is-compact {
  min-height: 68px;
  background: linear-gradient(90deg, rgba(52, 69, 46,0.94), rgba(29, 30, 25,0.86));
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  backdrop-filter: blur(20px) saturate(115%);
}

.dh-header.is-hidden {
  transform: translateY(-115%);
}

.dh-wordmark {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 17vw, 242px);
  min-height: 38px;
  isolation: isolate;
}

.dh-wordmark::after {
  position: absolute;
  z-index: -1;
  inset: -16px -28px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 127, 54,0.16), transparent 68%);
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 420ms ease, transform 620ms var(--dh-ease);
}

.dh-wordmark:hover::after,
.dh-wordmark:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.dh-wordmark img {
  width: 100%;
  height: auto;
}

.dh-header__actions {
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 30px);
}

.dh-luxury .dh-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline-offset: 4px;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.dh-luxury .dh-menu-toggle {
  width: auto;
  justify-self: start;
}

.dh-icon-button svg {
  width: 20px;
  transition: color 280ms ease, transform 420ms var(--dh-ease);
}

.dh-icon-button span {
  position: relative;
  font-family: var(--dh-label);
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 280ms ease, transform 420ms var(--dh-ease);
}

.dh-icon-button span::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--dh-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 420ms var(--dh-ease);
}

.dh-luxury .dh-icon-button:hover,
.dh-luxury .dh-icon-button:focus-visible {
  color: var(--dh-gold-light);
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.dh-icon-button:hover svg,
.dh-icon-button:focus-visible svg {
  transform: scale(0.88);
}

.dh-icon-button:hover span,
.dh-icon-button:focus-visible span {
  transform: translateX(3px);
}

.dh-icon-button:hover span::after,
.dh-icon-button:focus-visible span::after {
  transform: scaleX(1);
}

.dh-bag__count {
  position: absolute;
  top: 0;
  left: 13px;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  color: var(--dh-charcoal);
  border-radius: 50%;
  background: var(--dh-gold-light);
  font-size: 10px;
  line-height: 1;
}

.dh-subnav {
  position: fixed;
  z-index: 4990;
  top: var(--dh-header-height);
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4.2vw, 64px);
  height: var(--dh-subnav-height);
  color: rgba(244, 240, 230,0.82);
  border-bottom: 1px solid rgba(244, 240, 230,0.14);
  background: rgba(52, 69, 46,0.54);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  transition: top 500ms var(--dh-ease), opacity 500ms ease;
}

.admin-bar .dh-subnav {
  top: calc(var(--dh-header-height) + 32px);
}

.dh-header.is-compact + .dh-subnav {
  top: 68px;
}

.admin-bar .dh-header.is-compact + .dh-subnav {
  top: 100px;
}

.dh-subnav a {
  position: relative;
  padding: 8px 2px;
  font-family: var(--dh-label);
  font-size: 0.61rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.dh-luxury .dh-subnav a,
.dh-luxury .dh-subnav a:visited {
  color: var(--dh-gold-light) !important;
}

.dh-subnav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--dh-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--dh-ease);
}

.dh-subnav a:hover,
.dh-subnav a:focus-visible {
  color: var(--dh-gold-light);
}

.dh-subnav a:hover::after,
.dh-subnav a:focus-visible::after {
  transform: scaleX(1);
}

.dh-drawer,
.dh-search {
  position: fixed;
  z-index: 10000;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.dh-drawer {
  display: grid;
  grid-template-columns: minmax(430px, 42%) 1fr;
  color: var(--dh-ivory);
  background: rgba(29, 30, 25,0.72);
  transition: visibility 0s linear 820ms, opacity 520ms ease;
}

.dh-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.dh-drawer__nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(82px, 10vh, 132px) clamp(34px, 5vw, 92px) 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(52, 69, 46,0.22), transparent 36%),
    linear-gradient(145deg, rgba(52, 69, 46,0.98), rgba(29, 30, 25,0.98));
  transform: translateX(-100%);
  transition: transform 820ms var(--dh-ease);
}

.dh-drawer.is-open .dh-drawer__nav {
  transform: translateX(0);
}

.dh-drawer__nav::after {
  position: absolute;
  right: -18%;
  bottom: -12%;
  width: 66%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(159, 127, 54,0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(159, 127, 54,0.03), 0 0 0 112px rgba(159, 127, 54,0.02);
  pointer-events: none;
}

.dh-drawer__close,
.dh-search__close {
  position: absolute;
  z-index: 5;
  top: 26px;
  left: 30px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--dh-ivory);
  border: 1px solid rgba(244, 240, 230,0.3);
  border-radius: 50%;
  background: rgba(244, 240, 230,0.04);
  cursor: pointer;
  transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease, transform 500ms var(--dh-ease);
}

.dh-drawer__close:hover,
.dh-drawer__close:focus-visible,
.dh-search__close:hover,
.dh-search__close:focus-visible {
  color: var(--dh-charcoal);
  border-color: var(--dh-gold-light);
  background: var(--dh-gold-light);
  transform: rotate(90deg) scale(0.92);
}

.dh-drawer__links {
  display: grid;
  margin: 18px 0 32px;
}

.dh-drawer__links a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 17px 0;
  color: rgba(244, 240, 230,0.48);
  border-bottom: 1px solid rgba(244, 240, 230,0.09);
  font-family: var(--dh-serif);
  font-size: clamp(1.2rem, 2vw, 1.95rem);
  line-height: 1.2;
  transition: color 360ms ease, padding 520ms var(--dh-ease), border-color 360ms ease;
}

.dh-drawer__links a::before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--dh-gold-light), transparent);
  transform: translateY(-50%);
  transition: width 520ms var(--dh-ease);
}

.dh-drawer__links a > span {
  color: var(--dh-gold);
  font-family: var(--dh-label);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.dh-drawer__links a svg {
  width: 20px;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 320ms ease, transform 520ms var(--dh-ease);
}

.dh-drawer__links a:hover,
.dh-drawer__links a:focus-visible {
  padding-left: 20px;
  color: var(--dh-gold-light);
  border-color: rgba(159, 127, 54,0.36);
}

.dh-drawer__links a:hover::before,
.dh-drawer__links a:focus-visible::before {
  width: 28px;
}

.dh-drawer__links a:hover svg,
.dh-drawer__links a:focus-visible svg {
  opacity: 1;
  transform: translateX(0);
}

.dh-drawer__minor {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.dh-drawer__minor a {
  color: rgba(244, 240, 230,0.56);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.dh-drawer__minor a:hover,
.dh-drawer__minor a:focus-visible {
  color: var(--dh-gold-light);
}

.dh-drawer__media {
  position: relative;
  overflow: hidden;
  background: var(--dh-charcoal);
  transform: translateX(100%);
  transition: transform 880ms 80ms var(--dh-ease);
}

.dh-drawer.is-open .dh-drawer__media {
  transform: translateX(0);
}

.dh-drawer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.92);
  transform: scale(1.06);
  transition: opacity 380ms ease, transform 1400ms var(--dh-ease), filter 600ms ease;
}

.dh-drawer.is-open .dh-drawer__media img {
  transform: scale(1);
}

.dh-drawer__media img.is-changing {
  opacity: 0.14;
  filter: blur(4px) saturate(0.72);
  transform: scale(1.025);
}

.dh-drawer__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(52, 69, 46,0.36), transparent 40%), linear-gradient(0deg, rgba(29, 30, 25,0.72), transparent 48%);
}

.dh-drawer__media p {
  position: absolute;
  z-index: 2;
  bottom: clamp(38px, 6vw, 78px);
  left: clamp(36px, 5vw, 80px);
  color: var(--dh-ivory);
  font-family: var(--dh-serif);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.15;
}

.dh-search {
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--dh-ivory);
  background:
    radial-gradient(circle at 80% 20%, rgba(52, 69, 46,0.32), transparent 34%),
    linear-gradient(135deg, rgba(52, 69, 46,0.98), rgba(29, 30, 25,0.98));
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  transform: translateY(-3%);
  transition: visibility 0s linear 520ms, opacity 480ms ease, transform 620ms var(--dh-ease);
}

.dh-search.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.dh-search form {
  width: min(900px, 88vw);
}

.dh-search label {
  display: block;
  margin-bottom: 24px;
  color: var(--dh-gold-light);
  font-family: var(--dh-serif);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.08;
}

.dh-search__field {
  display: grid;
  grid-template-columns: 1fr 64px;
  border-bottom: 1px solid rgba(244, 240, 230,0.42);
}

.dh-search input {
  min-width: 0;
  padding: 18px 0;
  color: var(--dh-ivory);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
}

.dh-search input::placeholder {
  color: rgba(244, 240, 230,0.38);
}

.dh-search__field button {
  display: grid;
  place-items: center;
  color: var(--dh-olive-deep);
  border: 0;
  border-radius: 50% 50% 50% 16%;
  background: linear-gradient(145deg, var(--dh-gold-light), var(--dh-gold));
  cursor: pointer;
  transition: transform 420ms var(--dh-ease);
}

.dh-search__field button:hover,
.dh-search__field button:focus-visible {
  transform: rotate(-10deg) scale(0.9);
}

.dh-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--dh-ivory);
  background: var(--dh-charcoal);
}

.dh-hero__film,
.dh-hero__gradient {
  position: absolute;
  inset: 0;
}

.dh-hero__film {
  overflow: hidden;
}

.dh-hero__film iframe,
.dh-hero__film video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  max-width: none;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.01);
}

.dh-hero__film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dh-hero__gradient {
  background:
    linear-gradient(90deg, rgba(52, 69, 46,0.76) 0%, rgba(52, 69, 46,0.18) 56%, rgba(52, 69, 46,0.2) 100%),
    linear-gradient(0deg, rgba(29, 30, 25,0.7) 0%, transparent 38%, rgba(29, 30, 25,0.28) 100%);
}

.dh-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 72vw);
  min-height: 100svh;
  padding: calc(var(--dh-header-height) + var(--dh-subnav-height) + 58px) var(--dh-gutter) 100px;
}

.dh-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7.5vw, 7.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

.dh-hero__copy > p:not(.dh-kicker) {
  max-width: 520px;
  color: rgba(244, 240, 230,0.82);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.dh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.dh-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--dh-label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  isolation: isolate;
  transition: color 380ms ease, border-color 380ms ease, transform 520ms var(--dh-ease), box-shadow 520ms ease;
}

.dh-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, var(--dh-olive) 0%, #34452e 50%, var(--dh-gold) 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 620ms var(--dh-ease);
}

.dh-cta svg {
  width: 18px;
  transition: transform 520ms var(--dh-ease);
}

.dh-cta:hover,
.dh-cta:focus-visible {
  color: var(--dh-ivory);
  border-color: rgba(159, 127, 54,0.64);
  box-shadow: 0 16px 44px rgba(52, 69, 46,0.22);
  transform: translateY(-2px);
}

.dh-cta:hover::before,
.dh-cta:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.dh-cta:hover svg,
.dh-cta:focus-visible svg {
  transform: translateX(6px);
}

.dh-cta--ivory {
  color: var(--dh-charcoal);
  background: var(--dh-ivory);
}

.dh-cta--glass {
  color: var(--dh-ivory);
  border-color: rgba(244, 240, 230,0.48);
  background: rgba(244, 240, 230,0.07);
  -webkit-backdrop-filter: blur(12px) saturate(115%);
  backdrop-filter: blur(12px) saturate(115%);
}

.dh-cta--gold {
  color: var(--dh-charcoal);
  background: linear-gradient(100deg, var(--dh-gold-light), var(--dh-gold));
}

.dh-luxury a.dh-cta--ivory,
.dh-luxury a.dh-cta--ivory:visited,
.dh-luxury a.dh-cta--gold,
.dh-luxury a.dh-cta--gold:visited {
  color: var(--dh-charcoal) !important;
}

.dh-luxury a.dh-cta--glass,
.dh-luxury a.dh-cta--glass:visited {
  color: var(--dh-gold-light) !important;
}

.dh-luxury a.dh-cta:hover,
.dh-luxury a.dh-cta:focus-visible {
  color: var(--dh-ivory) !important;
}

.dh-hero__rail {
  position: absolute;
  z-index: 2;
  right: var(--dh-gutter);
  bottom: 65px;
  display: grid;
  grid-template-columns: auto 110px auto;
  align-items: center;
  gap: 12px;
  color: rgba(244, 240, 230,0.76);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.dh-hero__rail b {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(244, 240, 230,0.28);
}

.dh-hero__rail b::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--dh-gold-light);
  animation: dh-hero-progress 8s linear infinite;
  transform-origin: left;
}

@keyframes dh-hero-progress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.dh-scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244, 240, 230,0.58);
  font-family: var(--dh-label);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.dh-scroll-cue span {
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(244, 240, 230,0.26);
}

.dh-scroll-cue span::after {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--dh-gold-light);
  animation: dh-scroll 1.8s var(--dh-ease) infinite;
}

@keyframes dh-scroll {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(250%); }
}

.dh-olive-paper {
  position: relative;
  background:
    radial-gradient(circle at 22% 10%, rgba(159, 127, 54,0.08), transparent 26%),
    repeating-linear-gradient(0deg, rgba(29, 30, 25,0.022) 0, rgba(29, 30, 25,0.022) 1px, transparent 1px, transparent 5px),
    var(--dh-ivory);
}

.dh-origin {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
  min-height: 780px;
  overflow: hidden;
}

.dh-origin__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 110px var(--dh-gutter);
}

.dh-origin__copy h2,
.dh-section-head h2,
.dh-dining__head h2,
.dh-usual__intro h2 {
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  line-height: 1.03;
}

.dh-origin__copy > p:not(.dh-kicker) {
  max-width: 600px;
  margin: 32px 0 28px;
  color: rgba(29, 30, 25,0.72);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.dh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dh-olive-deep);
  font-family: var(--dh-label);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.dh-text-link svg {
  width: 18px;
  transition: transform 500ms var(--dh-ease);
}

.dh-text-link:hover,
.dh-text-link:focus-visible {
  color: var(--dh-gold);
}

.dh-text-link:hover svg,
.dh-text-link:focus-visible svg {
  transform: translateX(7px);
}

.dh-origin__pack {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #1d1e19;
}

.dh-origin__pack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.94);
  transition: transform 1600ms var(--dh-ease), filter 700ms ease;
}

.dh-origin__pack:hover img {
  filter: contrast(1.08) saturate(1.02);
  transform: scale(1.035);
}

.dh-origin__pack figcaption {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: rgba(244, 240, 230,0.62);
  border-top: 1px solid rgba(244, 240, 230,0.28);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dh-olive-sketch {
  position: absolute;
  bottom: -8%;
  left: -6%;
  width: min(55vw, 800px);
  color: rgba(52, 69, 46,0.13);
  pointer-events: none;
}

.dh-macro {
  padding: 130px var(--dh-gutter) 150px;
  background: var(--dh-charcoal);
}

.dh-section-head {
  max-width: 1040px;
  margin-bottom: 70px;
}

.dh-section-head--dark,
.dh-macro .dh-section-head {
  color: var(--dh-ivory);
}

.dh-section-head > p:not(.dh-kicker) {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(244, 240, 230,0.62);
}

.dh-macro__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: minmax(300px, 45vw) minmax(260px, 36vw);
  gap: 18px;
}

.dh-macro__grid figure {
  position: relative;
  overflow: hidden;
  background: #1d1e19;
}

.dh-macro__hero {
  grid-row: 1 / 3;
}

.dh-macro__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--dh-ease), filter 600ms ease;
}

.dh-macro__grid figure:hover img {
  filter: brightness(1.06) contrast(1.04);
  transform: scale(1.028);
}

.dh-macro__grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding-top: 12px;
  color: rgba(244, 240, 230,0.7);
  border-top: 1px solid rgba(244, 240, 230,0.26);
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dh-film-journal {
  padding: 130px 0 110px;
  overflow: hidden;
  color: var(--dh-ivory);
  background:
    radial-gradient(circle at 8% 10%, rgba(52, 69, 46,0.25), transparent 28%),
    var(--dh-olive-deep);
}

.dh-film-journal > .dh-section-head {
  padding: 0 var(--dh-gutter);
}

.dh-film-track {
  display: flex;
  gap: 18px;
  padding: 0 var(--dh-gutter) 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.dh-film-track::-webkit-scrollbar {
  display: none;
}

.dh-film-card {
  position: relative;
  flex: 0 0 min(47vw, 680px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dh-charcoal);
  scroll-snap-align: center;
}

.dh-film-card--wide {
  flex-basis: min(64vw, 920px);
  aspect-ratio: 16 / 9;
}

.dh-film-card--portrait {
  flex-basis: min(34vw, 480px);
  aspect-ratio: 4 / 5;
}

.dh-film-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: filter 600ms ease, transform 1400ms var(--dh-ease);
}

.dh-film-card:hover video,
.dh-film-card:focus-within video {
  filter: contrast(1.08) saturate(1.02);
  transform: scale(1.025);
}

.dh-film-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(52, 69, 46,0.82), transparent 52%);
  pointer-events: none;
}

.dh-film-card__copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.dh-film-card__copy span {
  color: var(--dh-gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dh-film-card__copy h3 {
  margin-top: 8px;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  line-height: 1.15;
}

.dh-film-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  padding: 26px var(--dh-gutter) 0;
}

.dh-film-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--dh-ivory);
  border: 1px solid rgba(244, 240, 230,0.28);
  border-radius: 50%;
  background: rgba(244, 240, 230,0.03);
  cursor: pointer;
  transition: color 300ms ease, background-color 300ms ease, transform 420ms var(--dh-ease);
}

.dh-film-controls button:first-child svg {
  transform: rotate(180deg);
}

.dh-film-controls button:hover,
.dh-film-controls button:focus-visible {
  color: var(--dh-olive-deep);
  background: var(--dh-gold-light);
  transform: scale(0.9);
}

.dh-film-progress {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(244, 240, 230,0.2);
}

.dh-film-progress span {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--dh-gold-light);
  transform-origin: left;
  transition: transform 300ms ease;
}

.dh-dining {
  padding: 100px var(--dh-gutter);
  background: var(--dh-charcoal-soft);
}

.dh-dining__paper {
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 92px);
  border: 1px solid rgba(159, 127, 54,0.36);
  box-shadow: 0 40px 100px rgba(29, 30, 25,0.34);
}

.dh-dining__paper::before,
.dh-dining__paper::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.dh-dining__paper::before {
  inset: 14px;
  border: 1px solid rgba(159, 127, 54,0.22);
}

.dh-dining__paper::after {
  top: 32px;
  right: 32px;
  width: 52px;
  height: 74px;
  border: 1px solid rgba(52, 69, 46,0.22);
  border-radius: 52% 48% 56% 44%;
  background: linear-gradient(145deg, rgba(52, 69, 46,0.1), transparent);
  transform: rotate(-22deg);
}

.dh-dining__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--dh-border-light);
}

.dh-dining__head > p {
  max-width: 430px;
  justify-self: end;
  color: rgba(29, 30, 25,0.66);
}

.dh-dining__tabs {
  position: sticky;
  z-index: 10;
  top: 70px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 34px 0 18px;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(244, 240, 230,0.98) 70%, rgba(244, 240, 230,0));
}

.dh-dining__tabs button,
.dh-dining__tabs a {
  width: fit-content;
  padding: 10px 16px;
  color: var(--dh-olive-deep);
  border: 1px solid rgba(52, 69, 46,0.24);
  border-radius: 999px;
  background: transparent;
  font-family: var(--dh-label);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.dh-dining__tabs button[aria-selected="true"],
.dh-dining__tabs button:hover,
.dh-dining__tabs button:focus-visible {
  color: var(--dh-ivory);
  border-color: var(--dh-olive);
  background: linear-gradient(100deg, var(--dh-olive-deep), var(--dh-olive));
}

.dh-dining__tabs a {
  justify-self: end;
  border-color: transparent;
}

.dh-dining__tabs a:hover,
.dh-dining__tabs a:focus-visible {
  color: var(--dh-gold);
}

.dh-dining__list {
  position: relative;
  z-index: 2;
}

.dh-menu-item {
  display: grid;
  grid-template-columns: clamp(86px, 10vw, 142px) 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  min-height: 176px;
  padding: 24px 12px;
  border-bottom: 1px solid rgba(29, 30, 25,0.16);
  transition: background-color 500ms ease, padding 500ms var(--dh-ease), opacity 380ms ease, transform 500ms var(--dh-ease), max-height 500ms var(--dh-ease);
}

.dh-menu-item[hidden] {
  display: none;
}

.dh-menu-item:hover,
.dh-menu-item:focus-within {
  padding-right: 22px;
  padding-left: 22px;
  background: linear-gradient(90deg, rgba(159, 127, 54,0.08), rgba(52, 69, 46,0.08));
}

.dh-menu-item__image {
  display: grid;
  place-items: center;
  height: 140px;
  overflow: hidden;
  background: rgba(29, 30, 25,0.04);
}

.dh-menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 800ms var(--dh-ease), filter 500ms ease;
}

.dh-menu-item:hover .dh-menu-item__image img,
.dh-menu-item:focus-within .dh-menu-item__image img {
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.07) translateY(-2px);
}

.dh-menu-item__title-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
}

.dh-menu-item h3 {
  font-size: clamp(1.3rem, 2.2vw, 2.15rem);
  line-height: 1.15;
}

.dh-menu-item h3 a {
  transition: color 300ms ease;
}

.dh-menu-item h3 a:hover,
.dh-menu-item h3 a:focus-visible {
  color: var(--dh-olive);
}

.dh-menu-item__leader {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(29, 30, 25,0.38) 0, rgba(29, 30, 25,0.38) 2px, transparent 2px, transparent 7px);
}

.dh-menu-item__price {
  color: var(--dh-olive-deep);
  font-family: var(--dh-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.dh-menu-item__price del {
  margin-right: 7px;
  color: rgba(29, 30, 25,0.42);
  font-size: 0.82em;
}

.dh-menu-item__copy > p {
  max-width: 760px;
  margin: 10px 0 16px;
  color: rgba(29, 30, 25,0.62);
  font-size: 0.92rem;
}

.dh-menu-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dh-quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: var(--dh-ivory) !important;
  border-radius: 999px;
  background: var(--dh-olive-deep) !important;
  font-family: var(--dh-label);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 300ms ease, background-color 300ms ease, transform 400ms var(--dh-ease);
}

.dh-quick-add:hover,
.dh-quick-add:focus-visible {
  color: var(--dh-charcoal) !important;
  background: var(--dh-gold-light) !important;
  transform: translateY(-2px);
}

.dh-usual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 130px);
  padding: 140px var(--dh-gutter);
  overflow: hidden;
  color: var(--dh-ivory);
  background:
    radial-gradient(circle at 85% 18%, rgba(159, 127, 54,0.14), transparent 30%),
    linear-gradient(135deg, #34452e, #34452e 58%, #1d1e19);
}

.dh-usual__texture {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: repeating-linear-gradient(118deg, transparent 0, transparent 22px, rgba(244, 240, 230,0.08) 23px, transparent 24px);
  pointer-events: none;
}

.dh-usual__intro,
.dh-usual__card {
  position: relative;
  z-index: 2;
}

.dh-usual__intro p:not(.dh-kicker) {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(244, 240, 230,0.66);
  font-size: 1.05rem;
}

.dh-usual__card {
  align-self: center;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(159, 127, 54,0.34);
  background: linear-gradient(145deg, rgba(244, 240, 230,0.1), rgba(244, 240, 230,0.035));
  box-shadow: 0 35px 80px rgba(29, 30, 25,0.26);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  backdrop-filter: blur(16px) saturate(110%);
}

.dh-usual__card h3 {
  margin: 12px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.dh-usual__card > p:not(.dh-usual__eyebrow) {
  margin-bottom: 26px;
  color: rgba(244, 240, 230,0.68);
}

.dh-usual__eyebrow {
  color: var(--dh-gold-light);
  font-family: var(--dh-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dh-usual__items {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 240, 230,0.16);
}

.dh-usual__items li,
.dh-usual__total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 240, 230,0.12);
}

.dh-usual__items strong,
.dh-usual__total strong {
  color: var(--dh-gold-light);
  font-weight: 700;
}

.dh-usual__total {
  margin-bottom: 24px;
  border-bottom-color: rgba(159, 127, 54,0.34);
}

.dh-order-again {
  margin-bottom: 18px;
}

.dh-continue {
  padding: 130px var(--dh-gutter) 150px;
  background: var(--dh-ivory);
}

.dh-continue__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dh-continue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
  color: var(--dh-ivory) !important;
  background: var(--dh-charcoal);
  isolation: isolate;
}

.dh-continue-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(29, 30, 25,0.9) 0%, rgba(29, 30, 25,0.05) 68%);
}

.dh-continue-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.04) saturate(0.88);
  transition: transform 1400ms var(--dh-ease), filter 600ms ease;
}

.dh-continue-card > span {
  margin-top: auto;
  color: var(--dh-gold-light);
  font-family: var(--dh-label);
  font-size: 0.61rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dh-continue-card h3 {
  max-width: 340px;
  margin-top: 11px;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 1.12;
}

.dh-continue-card > svg {
  position: absolute;
  right: 28px;
  bottom: 32px;
  width: 22px;
  color: var(--dh-gold-light);
  transition: transform 520ms var(--dh-ease);
}

.dh-continue-card:hover img,
.dh-continue-card:focus-visible img {
  filter: brightness(0.88) contrast(1.08) saturate(1);
  transform: scale(1.045);
}

.dh-continue-card:hover > svg,
.dh-continue-card:focus-visible > svg {
  transform: translateX(8px);
}

.dh-footer {
  padding: 90px var(--dh-gutter) 28px;
  color: var(--dh-ivory);
  background: #1d1e19;
}

.dh-footer__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--dh-border-dark);
}

.dh-footer__brand img {
  width: min(330px, 45vw);
}

.dh-footer__brand p {
  color: var(--dh-gold-light);
  font-family: var(--dh-serif);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}

.dh-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 760px;
  margin: 64px 0 80px auto;
}

.dh-footer__links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dh-footer__links h2 {
  margin: 0 0 10px;
  color: var(--dh-gold-light);
  font-family: var(--dh-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dh-footer__links a {
  width: fit-content;
  color: rgba(244, 240, 230,0.65);
  font-size: 0.88rem;
  transition: color 280ms ease, transform 400ms var(--dh-ease);
}

.dh-footer__links a:hover,
.dh-footer__links a:focus-visible {
  color: var(--dh-gold-light);
  transform: translateX(4px);
}

.dh-footer__legal {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(244, 240, 230,0.4);
  border-top: 1px solid rgba(244, 240, 230,0.1);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dh-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1000ms ease, transform 1200ms var(--dh-ease);
}

.dh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dh-olive-cursor {
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 18px;
  height: 26px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) rotate(-14deg);
  transform-origin: center;
  transition: width 380ms var(--dh-ease), height 380ms var(--dh-ease), opacity 220ms ease, filter 380ms ease;
  will-change: transform, width, height;
}

.dh-olive-cursor.is-visible {
  opacity: 1;
}

.dh-olive-cursor__fruit {
  position: absolute;
  inset: 7px 2px 1px;
  border: 1px solid rgba(159, 127, 54,0.9);
  border-radius: 52% 48% 55% 45% / 58% 53% 47% 42%;
  background: linear-gradient(145deg, rgba(52, 69, 46,0.18), rgba(52, 69, 46,0.5));
  box-shadow: inset 3px 3px 7px rgba(244, 240, 230,0.14), 0 4px 18px rgba(29, 30, 25,0.16);
  -webkit-backdrop-filter: blur(3px) saturate(120%);
  backdrop-filter: blur(3px) saturate(120%);
  transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.dh-olive-cursor__leaf {
  position: absolute;
  top: 1px;
  left: 9px;
  width: 8px;
  height: 10px;
  border: 1px solid rgba(159, 127, 54,0.8);
  border-radius: 90% 12% 90% 12%;
  background: rgba(52, 69, 46,0.72);
  transform: rotate(24deg);
}

.dh-olive-cursor.is-link {
  width: 38px;
  height: 52px;
  filter: drop-shadow(0 10px 20px rgba(52, 69, 46,0.18));
}

.dh-olive-cursor.is-link .dh-olive-cursor__fruit {
  border-color: var(--dh-gold-light);
  background: linear-gradient(145deg, rgba(52, 69, 46,0.28), rgba(52, 69, 46,0.68));
}

.dh-olive-cursor.is-sidebar {
  width: 62px;
  height: 82px;
}

.dh-olive-cursor.is-sidebar .dh-olive-cursor__fruit {
  border-color: rgba(159, 127, 54,0.72);
  background: linear-gradient(145deg, rgba(52, 69, 46,0.36), rgba(52, 69, 46,0.62));
  box-shadow: inset 8px 7px 16px rgba(244, 240, 230,0.1), 0 14px 34px rgba(29, 30, 25,0.22);
}

.dh-luxury.has-custom-cursor,
.dh-luxury.has-custom-cursor a,
.dh-luxury.has-custom-cursor button {
  cursor: none;
}

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

@media (max-width: 1100px) {
  :root {
    --dh-header-height: 74px;
    --dh-subnav-height: 38px;
  }

  .dh-icon-button span {
    display: none;
  }

  .dh-header__actions {
    gap: 14px;
  }

  .dh-drawer {
    grid-template-columns: minmax(380px, 48%) 1fr;
  }

  .dh-origin {
    grid-template-columns: 1fr 1fr;
  }

  .dh-film-card {
    flex-basis: 56vw;
  }

  .dh-film-card--wide {
    flex-basis: 75vw;
  }

  .dh-film-card--portrait {
    flex-basis: 42vw;
  }
}

@media (max-width: 782px) {
  .admin-bar .dh-header {
    top: 46px;
  }

  .admin-bar .dh-subnav {
    top: calc(var(--dh-header-height) + 46px);
  }

  .admin-bar .dh-header.is-compact + .dh-subnav {
    top: 114px;
  }
}

@media (max-width: 767px) {
  :root {
    --dh-header-height: 66px;
    --dh-subnav-height: 0px;
    --dh-gutter: 20px;
  }

  .dh-luxury {
    font-size: 15px;
  }

  .dh-header {
    grid-template-columns: 44px 1fr auto;
    min-height: var(--dh-header-height);
    padding: 0 14px;
  }

  .dh-header.is-compact {
    min-height: 60px;
  }

  .dh-wordmark {
    justify-self: center;
    width: min(45vw, 174px);
  }

  .dh-header__actions .dh-icon-button:nth-child(1),
  .dh-header__actions .dh-icon-button:nth-child(2) {
    display: none;
  }

  .dh-luxury .dh-menu-toggle {
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .dh-subnav {
    display: none;
  }

  .dh-bag {
    width: 44px;
  }

  .dh-drawer {
    display: block;
    background: rgba(29, 30, 25,0.98);
  }

  .dh-drawer__nav {
    width: 100%;
    height: 100%;
    padding: 86px 24px 24px;
    overflow-y: auto;
  }

  .dh-drawer__links {
    margin: 6px 0 28px;
  }

  .dh-drawer__links a {
    grid-template-columns: 28px 1fr auto;
    padding: 15px 0;
    font-size: 1.28rem;
  }

  .dh-drawer__media {
    display: none;
  }

  .dh-drawer__close,
  .dh-search__close {
    top: 16px;
    left: 18px;
    width: 44px;
    height: 44px;
  }

  .dh-search {
    padding: 24px;
  }

  .dh-search label {
    font-size: 2.4rem;
  }

  .dh-search__field {
    grid-template-columns: 1fr 50px;
  }

  .dh-hero {
    min-height: 100svh;
  }

  .dh-hero__film iframe {
    width: max(177.78vh, 180vw);
    height: max(100vh, 101.25vw);
    transform: translate(-56%, -50%) scale(1.02);
  }

  .dh-hero__film video {
    object-position: 58% center;
  }

  .dh-hero__gradient {
    background: linear-gradient(0deg, rgba(29, 30, 25,0.88) 0%, rgba(29, 30, 25,0.36) 58%, rgba(29, 30, 25,0.38) 100%);
  }

  .dh-hero__copy {
    justify-content: flex-end;
    width: 100%;
    min-height: 100svh;
    padding: 110px var(--dh-gutter) 92px;
  }

  .dh-hero__copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .dh-hero__copy > p:not(.dh-kicker) {
    max-width: 92%;
    font-size: 0.98rem;
  }

  .dh-hero__actions {
    display: grid;
    margin-top: 24px;
  }

  .dh-cta {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
  }

  .dh-hero__rail {
    display: none;
  }

  .dh-scroll-cue {
    bottom: 18px;
  }

  .dh-scroll-cue span {
    height: 26px;
  }

  .dh-origin {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .dh-origin__copy {
    padding: 88px var(--dh-gutter) 72px;
  }

  .dh-origin__copy h2,
  .dh-section-head h2,
  .dh-dining__head h2,
  .dh-usual__intro h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .dh-origin__copy > p:not(.dh-kicker) {
    margin: 24px 0;
  }

  .dh-origin__pack {
    min-height: 72svh;
  }

  .dh-origin__pack img {
    object-position: 54% center;
  }

  .dh-origin__pack figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 0.5rem;
  }

  .dh-olive-sketch {
    bottom: 42%;
    width: 100vw;
  }

  .dh-macro,
  .dh-continue {
    padding: 88px var(--dh-gutter) 96px;
  }

  .dh-section-head {
    margin-bottom: 40px;
  }

  .dh-macro__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .dh-macro__grid figure {
    min-height: 65svh;
  }

  .dh-macro__grid .dh-macro__detail {
    min-height: 52svh;
  }

  .dh-film-journal {
    padding: 88px 0 76px;
  }

  .dh-film-track {
    gap: 12px;
    padding: 0 var(--dh-gutter) 20px;
  }

  .dh-film-card,
  .dh-film-card--wide,
  .dh-film-card--portrait {
    flex-basis: 84vw;
    aspect-ratio: 4 / 5;
  }

  .dh-film-card video {
    object-position: center;
  }

  .dh-film-card__copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .dh-film-controls {
    grid-template-columns: 42px 1fr 42px;
    gap: 12px;
    padding-top: 14px;
  }

  .dh-film-controls button {
    width: 42px;
    height: 42px;
  }

  .dh-dining {
    padding: 26px 0;
  }

  .dh-dining__paper {
    padding: 64px 20px 42px;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .dh-dining__paper::before {
    right: 10px;
    left: 10px;
  }

  .dh-dining__paper::after {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 48px;
  }

  .dh-dining__head {
    display: block;
    padding-bottom: 34px;
  }

  .dh-dining__head > p {
    margin-top: 24px;
  }

  .dh-dining__tabs {
    top: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 20px 0 8px;
  }

  .dh-dining__tabs button {
    width: 100%;
    padding: 9px 8px;
  }

  .dh-dining__tabs a {
    display: none;
  }

  .dh-menu-item {
    grid-template-columns: 74px 1fr;
    gap: 14px;
    min-height: 144px;
    padding: 20px 0;
  }

  .dh-menu-item:hover,
  .dh-menu-item:focus-within {
    padding-right: 0;
    padding-left: 0;
  }

  .dh-menu-item__image {
    height: 110px;
  }

  .dh-menu-item__title-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .dh-menu-item__leader {
    display: none;
  }

  .dh-menu-item h3 {
    font-size: 1.2rem;
  }

  .dh-menu-item__price {
    font-size: 1rem;
  }

  .dh-menu-item__copy > p {
    margin: 7px 0 12px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .dh-menu-item__actions .dh-text-link {
    display: none;
  }

  .dh-quick-add {
    width: 100%;
    min-height: 38px;
  }

  .dh-usual {
    display: block;
    padding: 90px var(--dh-gutter);
  }

  .dh-usual__card {
    margin-top: 44px;
    padding: 28px 22px;
  }

  .dh-continue__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .dh-continue__grid::-webkit-scrollbar {
    display: none;
  }

  .dh-continue-card {
    flex: 0 0 84vw;
    min-height: 68svh;
    scroll-snap-align: center;
  }

  .dh-footer {
    padding: 70px var(--dh-gutter) 24px;
  }

  .dh-footer__brand {
    display: block;
    padding-bottom: 36px;
  }

  .dh-footer__brand img {
    width: 75vw;
    max-width: 300px;
  }

  .dh-footer__brand p {
    margin-top: 20px;
  }

  .dh-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    margin: 44px 0 60px;
  }

  .dh-footer__legal {
    flex-direction: column;
    gap: 8px;
  }

  .dh-olive-cursor {
    display: none;
  }

  .dh-luxury.has-custom-cursor,
  .dh-luxury.has-custom-cursor a,
  .dh-luxury.has-custom-cursor button {
    cursor: auto;
  }
}

@media (max-width: 420px) {
  .dh-hero__copy h1 {
    font-size: 3.25rem;
  }

  .dh-menu-item {
    grid-template-columns: 64px 1fr;
  }

  .dh-menu-item__image {
    height: 96px;
  }

  .dh-menu-item h3 {
    font-size: 1.08rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .dh-olive-cursor {
    display: none;
  }

  .dh-luxury.has-custom-cursor,
  .dh-luxury.has-custom-cursor a,
  .dh-luxury.has-custom-cursor button {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dh-luxury,
  .dh-luxury * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .dh-reveal {
    opacity: 1;
    transform: none;
  }

  .dh-olive-cursor {
    display: none;
  }
}

/* Context films give every important journey its own real, page-specific portrait. */
.dh-context-page {
  --dh-context-width: min(1440px, calc(100vw - 32px));
  background: var(--dh-ivory);
}

.dh-context-film,
.dh-context-film * {
  box-sizing: border-box;
}

.dh-context-film {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  width: var(--dh-context-width);
  min-height: clamp(500px, 70svh, 760px);
  margin: 18px auto clamp(64px, 8vw, 126px);
  overflow: hidden;
  color: var(--dh-ivory);
  border: 1px solid rgba(159, 127, 54,0.48);
  background:
    radial-gradient(circle at 18% 18%, rgba(52, 69, 46,0.24), transparent 34%),
    linear-gradient(145deg, #34452e, #1d1e19 68%);
  box-shadow: 0 28px 80px rgba(29, 30, 25,0.24);
  isolation: isolate;
}

.dh-context-film::before,
.dh-context-film::after {
  position: absolute;
  z-index: 4;
  content: "";
  pointer-events: none;
}

.dh-context-film::before {
  inset: 18px;
  border: 1px solid rgba(159, 127, 54,0.18);
}

.dh-context-film::after {
  top: 0;
  bottom: 0;
  left: calc(41% - 1px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(159, 127, 54,0.56) 18%, rgba(159, 127, 54,0.56) 82%, transparent);
}

.dh-context-film__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(78px, 8vw, 130px) clamp(34px, 5vw, 82px);
}

.dh-context-film__copy::before {
  position: absolute;
  top: clamp(52px, 6vw, 92px);
  left: clamp(34px, 5vw, 82px);
  width: 74px;
  height: 108px;
  content: "";
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 52% 18%, transparent 16%, var(--dh-gold) 17% 18%, transparent 19%),
    linear-gradient(62deg, transparent 48%, var(--dh-gold) 49% 50%, transparent 51%);
  transform: rotate(-18deg);
}

.dh-context-film .dh-kicker {
  margin-bottom: 22px !important;
  color: var(--dh-gold-light);
  font-family: var(--dh-label);
}

.dh-context-film h1 {
  max-width: 10.5ch;
  margin: 0;
  color: var(--dh-ivory);
  font-family: var(--dh-serif);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.dh-context-film__copy > p:not(.dh-kicker) {
  max-width: 42ch;
  margin: 28px 0 0;
  color: rgba(244, 240, 230,0.76);
  font-family: var(--dh-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.dh-context-film__rule {
  display: block;
  width: 62px;
  height: 1px;
  margin-top: 34px;
  background: var(--dh-gold);
  transform-origin: left;
  transition: width 700ms var(--dh-ease);
}

.dh-context-film:hover .dh-context-film__rule {
  width: 132px;
}

.dh-context-film__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #1d1e19;
}

.dh-context-film__media video {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 70svh, 760px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(0.96);
  transform: scale(1.015);
  transition: transform 2.4s var(--dh-ease), filter 1s ease;
}

.dh-context-film:hover .dh-context-film__media video {
  filter: contrast(1.05) saturate(1);
  transform: scale(1.045);
}

.dh-context-film__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 30, 25,0.28), transparent 30%),
    linear-gradient(180deg, rgba(29, 30, 25,0.08), transparent 54%, rgba(29, 30, 25,0.54));
}

.dh-context-film__index {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  color: rgba(244, 240, 230,0.72);
  font-family: var(--dh-label);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Carry the same gold / olive material language through the retained store UI. */
.dh-context-page .elementor-location-header [data-id="22a0623d"] {
  background: linear-gradient(100deg, var(--dh-olive-deep) 0%, var(--dh-olive) 62%, var(--dh-olive-light) 145%) !important;
}

.dh-context-page .elementor-location-header .elementor-item:hover,
.dh-context-page .elementor-location-header .elementor-item:focus,
.dh-context-page .elementor-location-header .elementor-item.elementor-item-active {
  color: var(--dh-gold-light) !important;
}

.dh-context-page .elementor-location-header input[type="search"] {
  border: 1px solid rgba(159, 127, 54,0.24) !important;
  background: rgba(52, 69, 46,0.28) !important;
  color: var(--dh-ivory) !important;
}

.dh-context-page .woocommerce a:not(.button),
.dh-context-page .woocommerce .amount,
.dh-context-page .woocommerce .price,
.dh-context-page .wc-block-components-product-price,
.dh-context-page .wc-block-components-totals-item__value {
  color: var(--dh-gold) !important;
}

.dh-context-page .woocommerce button.button,
.dh-context-page .woocommerce a.button,
.dh-context-page .woocommerce input.button,
.dh-context-page .wc-block-components-button,
.dh-context-page .wp-element-button {
  border: 1px solid var(--dh-gold) !important;
  background: linear-gradient(135deg, var(--dh-gold-light), var(--dh-gold)) !important;
  box-shadow: none !important;
  color: var(--dh-charcoal) !important;
}

.dh-context-page .woocommerce button.button:hover,
.dh-context-page .woocommerce button.button:focus,
.dh-context-page .woocommerce a.button:hover,
.dh-context-page .woocommerce a.button:focus,
.dh-context-page .woocommerce input.button:hover,
.dh-context-page .woocommerce input.button:focus,
.dh-context-page .wc-block-components-button:hover,
.dh-context-page .wc-block-components-button:focus,
.dh-context-page .wp-element-button:hover,
.dh-context-page .wp-element-button:focus {
  border-color: var(--dh-olive) !important;
  background: linear-gradient(135deg, #34452e, var(--dh-olive)) !important;
  color: var(--dh-ivory) !important;
}

.dh-context-page .woocommerce input,
.dh-context-page .woocommerce select,
.dh-context-page .woocommerce textarea,
.dh-context-page .wc-block-components-text-input input,
.dh-context-page .wc-block-components-combobox-control input {
  border-color: rgba(29, 30, 25,0.24) !important;
  accent-color: var(--dh-gold);
}

.dh-context-page .elementor-location-footer [data-id="b69ad6d"] {
  border-top: 1px solid rgba(159, 127, 54,0.34);
  background:
    radial-gradient(ellipse at 16% 108%, transparent 0 42%, rgba(159, 127, 54,0.13) 43% 44%, transparent 45% 57%, rgba(159, 127, 54,0.08) 58% 59%, transparent 60%),
    radial-gradient(ellipse at 72% 112%, transparent 0 46%, rgba(159, 127, 54,0.11) 47% 48%, transparent 49% 62%, rgba(159, 127, 54,0.07) 63% 64%, transparent 65%),
    linear-gradient(145deg, #34452e, #1d1e19 72%) !important;
}

.dh-context-page .elementor-location-footer [data-id="b69ad6d"] h1,
.dh-context-page .elementor-location-footer [data-id="b69ad6d"] h2,
.dh-context-page .elementor-location-footer [data-id="b69ad6d"] h3,
.dh-context-page .elementor-location-footer [data-id="b69ad6d"] p,
.dh-context-page .elementor-location-footer [data-id="b69ad6d"] a {
  color: var(--dh-ivory) !important;
}

.dh-context-page .elementor-location-footer [data-id="93aa79f"] {
  border-top: 1px solid rgba(159, 127, 54,0.16);
  background: #1d1e19 !important;
}

.dh-context-page .elementor-location-footer [data-id="93aa79f"] p,
.dh-context-page .elementor-location-footer [data-id="93aa79f"] a {
  color: rgba(244, 240, 230,0.72) !important;
}

/* The new film replaces, rather than duplicates, the old archive/story mastheads. */
.dh-context-page.post-type-archive-product .elementor-location-archive > .elementor-element:first-child,
.dh-context-page.tax-product_cat .elementor-location-archive > .elementor-element:first-child,
.dh-context-page.page-id-7170 .elementor[data-elementor-type="wp-page"] > .elementor-element:first-child,
.dh-context-page.page-id-912 .elementor[data-elementor-type="wp-page"] > .elementor-element:first-child {
  display: none !important;
}

@media (max-width: 900px) {
  .dh-context-page {
    --dh-context-width: calc(100vw - 24px);
  }

  .dh-context-film {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 12px;
  }

  .dh-context-film::after {
    display: none;
  }

  .dh-context-film__copy {
    min-height: 410px;
    padding: 92px 32px 56px;
  }

  .dh-context-film__copy::before {
    top: 36px;
    left: 32px;
    width: 54px;
    height: 78px;
  }

  .dh-context-film h1 {
    font-size: clamp(2.75rem, 11vw, 4.8rem);
  }

  .dh-context-film__media,
  .dh-context-film__media video {
    min-height: 56svh;
  }
}

@media (max-width: 560px) {
  .dh-context-page {
    --dh-context-width: 100vw;
  }

  .dh-context-film {
    margin-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .dh-context-film::before {
    inset: 10px;
  }

  .dh-context-film__copy {
    min-height: 390px;
    padding: 92px 22px 48px;
  }

  .dh-context-film__copy > p:not(.dh-kicker) {
    font-size: 0.95rem;
  }

  .dh-context-film__media,
  .dh-context-film__media video {
    min-height: 62svh;
  }

  .dh-context-film__index {
    right: 20px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dh-context-film *,
  .dh-context-film__media video {
    animation: none !important;
    transition: none !important;
  }
}

/* 0.5 — one integrated house system: ivory, charcoal, olive and deep gold. */
body.dh-system-page,
body.dh-system-page button,
body.dh-system-page input,
body.dh-system-page select,
body.dh-system-page textarea {
  font-family: var(--dh-sans) !important;
  font-weight: 700 !important;
}

body.dh-system-page:not(.dr-hahnz-luxury-canvas) {
  color: var(--dh-charcoal) !important;
  background: var(--dh-ivory) !important;
}

body.dh-system-page h1,
body.dh-system-page h2,
body.dh-system-page h3,
body.dh-system-page h4,
body.dh-system-page h5,
body.dh-system-page h6 {
  color: var(--dh-charcoal);
  font-family: var(--dh-serif) !important;
}

.dh-page-olive {
  position: fixed;
  z-index: 0;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("../images/olive-engraving.svg?v=2"), url("../images/olive-engraving.svg?v=2");
  background-position: -12vw 20vh, calc(100vw - 31vw) 72vh;
  background-repeat: no-repeat;
  background-size: min(46vw, 680px) auto, min(39vw, 560px) auto;
  transform: translateZ(0);
}

body.dh-system-page > *:not(.dh-page-olive):not(.dh-pointer-halo) {
  position: relative;
  z-index: 1;
}

.dh-luxury {
  font-weight: 700;
}

.dh-luxury p,
.dh-luxury a,
.dh-luxury button,
.dh-luxury figcaption,
.dh-luxury span {
  font-weight: 700;
}

/* Premium dining cards replace dotted restaurant leaders. */
.dh-dining__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.dh-menu-item {
  grid-template-columns: clamp(110px, 10vw, 154px) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  min-height: 226px;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(52, 69, 46,0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(244, 240, 230,0.94), rgba(244, 240, 230,0.72));
  box-shadow: 0 14px 42px rgba(29, 30, 25,0.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.dh-menu-item:hover,
.dh-menu-item:focus-within {
  padding: clamp(22px, 2.4vw, 34px);
  border-color: rgba(159, 127, 54,0.52);
  background: linear-gradient(145deg, rgba(244, 240, 230,0.98), rgba(159, 127, 54,0.13));
  box-shadow: 0 22px 58px rgba(52, 69, 46,0.13);
  transform: translateY(-4px);
}

.dh-menu-item__image {
  height: 176px;
  border-radius: 18px;
  background: transparent;
}

.dh-menu-item__image img {
  mix-blend-mode: normal;
}

.dh-menu-item__title-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}

.dh-menu-item__leader {
  display: none !important;
}

.dh-menu-item__price {
  color: var(--dh-gold);
  white-space: nowrap;
}

.dh-menu-item__copy > p {
  color: rgba(29, 30, 25,0.74);
}

.dh-film-card,
.dh-film-card--wide,
.dh-film-card--portrait {
  flex-basis: min(56vw, 780px);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(159, 127, 54,0.24);
  border-radius: 24px;
}

/* Every page film uses one controlled frame, independent of source dimensions. */
.dh-context-film {
  width: min(1440px, calc(100vw - 32px));
  height: clamp(610px, 72svh, 760px);
  min-height: 0;
  margin-top: 18px;
  border-color: rgba(159, 127, 54,0.5);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--dh-olive), var(--dh-charcoal-soft));
  box-shadow: 0 30px 84px rgba(29, 30, 25,0.2);
}

.dh-context-film::before {
  border-color: rgba(159, 127, 54,0.22);
  border-radius: 18px;
}

.dh-context-film::after {
  background: linear-gradient(180deg, transparent, rgba(159, 127, 54,0.58) 18%, rgba(159, 127, 54,0.58) 82%, transparent);
}

.dh-context-film__copy,
.dh-context-film__media {
  height: 100%;
  min-height: 0;
}

.dh-context-film__media {
  background: var(--dh-charcoal-soft);
}

.dh-context-film__media video,
.dh-context-film__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.dh-context-film__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132%;
  height: 132%;
  pointer-events: none;
  filter: contrast(1.06) saturate(0.84) brightness(0.92);
  transform: translate(-50%, -50%);
}

.dh-context-film__copy > p:not(.dh-kicker) {
  color: rgba(244, 240, 230,0.84);
  font-weight: 700;
}

/* Remove legacy copper/white panels and carry the four-colour system through WooCommerce. */
.dh-context-page .elementor-location-header [data-id="22a0623d"] {
  background: linear-gradient(110deg, var(--dh-olive-deep), var(--dh-olive), var(--dh-olive-light)) !important;
}

.dh-context-page .elementor-location-header,
.dh-context-page .elementor-location-header * {
  font-family: var(--dh-sans) !important;
  font-weight: 700 !important;
}

.dh-context-page .elementor-location-header a,
.dh-context-page .elementor-location-header button,
.dh-context-page .elementor-location-header .elementor-item {
  color: var(--dh-ivory) !important;
}

.dh-context-page .elementor-location-header a:hover,
.dh-context-page .elementor-location-header a:focus,
.dh-context-page .elementor-location-header button:hover,
.dh-context-page .elementor-location-header button:focus,
.dh-context-page .elementor-location-header .elementor-item:hover,
.dh-context-page .elementor-location-header .elementor-item:focus {
  color: var(--dh-gold-light) !important;
}

.dh-context-page main,
.dh-context-page .site-main,
.dh-context-page .elementor-location-archive,
.dh-context-page .elementor-location-single,
.dh-context-page .woocommerce,
.dh-context-page .woocommerce-page {
  color: var(--dh-charcoal) !important;
  background-color: var(--dh-ivory) !important;
}

.dh-context-page main .elementor-element:not(.elementor-widget-image):not(.elementor-widget-video),
.dh-context-page .elementor-location-archive .elementor-element:not(.elementor-widget-image):not(.elementor-widget-video),
.dh-context-page .elementor-location-single .elementor-element:not(.elementor-widget-image):not(.elementor-widget-video) {
  background-color: transparent !important;
}

.dh-context-page main p,
.dh-context-page main li,
.dh-context-page main label,
.dh-context-page main td,
.dh-context-page main th,
.dh-context-page .woocommerce p,
.dh-context-page .woocommerce li,
.dh-context-page .woocommerce label,
.dh-context-page .woocommerce td,
.dh-context-page .woocommerce th {
  color: var(--dh-charcoal) !important;
  font-family: var(--dh-sans) !important;
  font-weight: 700 !important;
}

.dh-context-page main h1,
.dh-context-page main h2,
.dh-context-page main h3,
.dh-context-page main h4,
.dh-context-page .woocommerce h1,
.dh-context-page .woocommerce h2,
.dh-context-page .woocommerce h3,
.dh-context-page .woocommerce h4 {
  color: var(--dh-charcoal) !important;
  font-family: var(--dh-serif) !important;
}

.dh-context-page .woocommerce a:not(.button),
.dh-context-page .woocommerce .amount,
.dh-context-page .woocommerce .price,
.dh-context-page .wc-block-components-product-price,
.dh-context-page .wc-block-components-totals-item__value {
  color: var(--dh-gold) !important;
}

.dh-context-page .woocommerce button.button,
.dh-context-page .woocommerce a.button,
.dh-context-page .woocommerce input.button,
.dh-context-page .wc-block-components-button,
.dh-context-page .wp-element-button {
  border-color: var(--dh-gold) !important;
  border-radius: 999px !important;
  background: var(--dh-gold) !important;
  color: var(--dh-ivory) !important;
  font-family: var(--dh-sans) !important;
  font-weight: 700 !important;
}

.dh-context-page .woocommerce button.button:hover,
.dh-context-page .woocommerce button.button:focus,
.dh-context-page .woocommerce a.button:hover,
.dh-context-page .woocommerce a.button:focus,
.dh-context-page .woocommerce input.button:hover,
.dh-context-page .woocommerce input.button:focus,
.dh-context-page .wc-block-components-button:hover,
.dh-context-page .wc-block-components-button:focus,
.dh-context-page .wp-element-button:hover,
.dh-context-page .wp-element-button:focus {
  border-color: var(--dh-olive) !important;
  background: var(--dh-olive) !important;
  color: var(--dh-ivory) !important;
}

.dh-context-page .woocommerce input,
.dh-context-page .woocommerce select,
.dh-context-page .woocommerce textarea,
.dh-context-page .wc-block-components-text-input input,
.dh-context-page .wc-block-components-combobox-control input {
  color: var(--dh-charcoal) !important;
  border: 1px solid rgba(52, 69, 46,0.34) !important;
  border-radius: 12px !important;
  background: rgba(244, 240, 230,0.82) !important;
}

.dh-context-page .woocommerce-product-gallery,
.dh-context-page .woocommerce-product-gallery__wrapper,
.dh-context-page .woocommerce-product-gallery__image,
.dh-context-page .woocommerce-product-gallery__image a,
.dh-context-page .woocommerce-product-gallery__image img,
.dh-context-page ul.products li.product,
.dh-context-page ul.products li.product img {
  background: transparent !important;
}

.dh-context-page .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  filter: contrast(1.025) saturate(1.02);
}

/* Rebuilt product dossier: all old information becomes clean HTML, not raster tabs. */
.dh-product-dossier {
  width: min(1180px, calc(100vw - 40px));
  margin: clamp(54px, 7vw, 112px) auto;
  padding: clamp(26px, 4vw, 58px);
  overflow: hidden;
  color: var(--dh-charcoal);
  border: 1px solid rgba(159, 127, 54,0.36);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(244, 240, 230,0.97), rgba(244, 240, 230,0.86));
  box-shadow: 0 24px 70px rgba(29, 30, 25,0.11);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.dh-product-dossier__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(159, 127, 54,0.34);
}

.dh-product-dossier__header h2 {
  margin: 0;
  color: var(--dh-charcoal) !important;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 1;
}

.dh-product-dossier__header p {
  margin: 0;
  color: rgba(29, 30, 25,0.72) !important;
  line-height: 1.65;
}

.dh-product-dossier__tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 36px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(52, 69, 46,0.18);
  border-radius: 999px;
  background: rgba(244, 240, 230,0.72);
  scrollbar-width: none;
}

.dh-product-dossier__tabs::-webkit-scrollbar {
  display: none;
}

.dh-product-dossier__tab {
  flex: 1 0 auto;
  min-height: 46px;
  padding: 0 20px;
  color: var(--dh-olive) !important;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--dh-sans) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.dh-product-dossier__tab[aria-selected="true"],
.dh-product-dossier__tab:hover,
.dh-product-dossier__tab:focus-visible {
  color: var(--dh-ivory) !important;
  background: linear-gradient(110deg, var(--dh-olive-deep), var(--dh-olive));
}

.dh-product-dossier__panel[hidden] {
  display: none;
}

.dh-product-dossier__panel {
  animation: dh-dossier-in 520ms var(--dh-ease) both;
}

@keyframes dh-dossier-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.dh-product-dossier__panel h3 {
  margin: 0 0 20px;
  color: var(--dh-olive) !important;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.dh-product-dossier__prose {
  max-width: 78ch;
  color: var(--dh-charcoal);
  font-size: 1rem;
  line-height: 1.78;
}

.dh-product-dossier__prose p {
  color: var(--dh-charcoal) !important;
}

.dh-transition-plan,
.dh-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.dh-transition-step,
.dh-benefit-card {
  padding: 22px;
  border: 1px solid rgba(52, 69, 46,0.18);
  border-radius: 20px;
  background: rgba(244, 240, 230,0.72);
}

.dh-transition-step span,
.dh-benefit-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--dh-gold);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dh-transition-step strong,
.dh-benefit-card strong {
  display: block;
  color: var(--dh-charcoal);
  font-family: var(--dh-serif);
  font-size: 1.1rem;
  line-height: 1.35;
}

.dh-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dh-benefit-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--dh-olive);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.dh-product-dossier table {
  width: 100%;
  margin: 20px 0 0;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent !important;
}

.dh-product-dossier th,
.dh-product-dossier td {
  padding: 15px 12px !important;
  color: var(--dh-charcoal) !important;
  border-width: 0 0 1px !important;
  border-color: rgba(52, 69, 46,0.2) !important;
  background: transparent !important;
  text-align: left;
}

.dh-product-dossier th {
  color: var(--dh-olive) !important;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dh-product-dossier + .woocommerce-tabs,
.dh-product-dossier ~ .woocommerce-tabs,
.dh-product-dossier + .wc-tabs-wrapper {
  display: none !important;
}

/* Fast repeat ordering stays reachable without obscuring page content. */
.dh-quick-order {
  position: fixed;
  z-index: 9990;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 7px;
  color: var(--dh-ivory);
  border: 1px solid rgba(159, 127, 54,0.38);
  border-radius: 999px;
  background: rgba(52, 69, 46,0.92);
  box-shadow: 0 16px 48px rgba(29, 30, 25,0.2);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  backdrop-filter: blur(20px) saturate(115%);
}

.dh-quick-order a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  color: var(--dh-ivory) !important;
  border-radius: 999px;
  font-family: var(--dh-sans) !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.dh-quick-order a:hover,
.dh-quick-order a:focus-visible {
  color: var(--dh-charcoal) !important;
  background: var(--dh-gold-light);
  transform: translateY(-1px);
}

.dh-quick-order__basket {
  gap: 7px;
  color: var(--dh-charcoal) !important;
  background: var(--dh-gold);
}

.dh-quick-order__basket svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
}

.dh-quick-order__basket b {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  color: var(--dh-ivory);
  border-radius: 50%;
  background: var(--dh-olive);
}

@media (max-width: 980px) {
  .dh-dining__list {
    grid-template-columns: 1fr;
  }

  .dh-context-film {
    display: block;
    height: min(780px, 91svh);
    min-height: 660px;
    margin-top: 12px;
  }

  .dh-context-film::after {
    display: none;
  }

  .dh-context-film__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .dh-context-film__copy {
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    display: flex;
    justify-content: flex-end;
    height: auto;
    min-height: 64%;
    padding: 120px 34px 56px;
    background: linear-gradient(180deg, transparent, rgba(29, 30, 25,0.52) 30%, rgba(52, 69, 46,0.96));
  }

  .dh-context-film__copy::before {
    display: none;
  }

  .dh-context-film__media video {
    min-height: 0;
  }

  .dh-context-film__veil {
    background: linear-gradient(180deg, rgba(29, 30, 25,0.1), rgba(29, 30, 25,0.04) 44%, rgba(29, 30, 25,0.54));
  }

  .dh-context-film__index {
    right: 28px;
    bottom: 24px;
  }

  .dh-transition-plan {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dh-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .dh-page-olive {
    background-position: -52vw 18vh, 54vw 76vh;
    background-size: 112vw auto, 92vw auto;
  }

  .dh-menu-item {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 190px;
    padding: 20px;
    border-radius: 20px;
  }

  .dh-menu-item:hover,
  .dh-menu-item:focus-within {
    padding: 20px;
  }

  .dh-menu-item__image {
    height: 132px;
  }

  .dh-menu-item__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .dh-film-card,
  .dh-film-card--wide,
  .dh-film-card--portrait {
    flex-basis: 86vw;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .dh-context-film {
    width: 100vw;
    height: min(740px, 92svh);
    min-height: 620px;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 24px 24px;
  }

  .dh-context-film::before {
    inset: 10px;
    border-radius: 14px;
  }

  .dh-context-film__copy {
    padding: 112px 22px 48px;
  }

  .dh-context-film h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .dh-context-film__copy > p:not(.dh-kicker) {
    max-width: 34ch;
    font-size: 0.92rem;
  }

  .dh-context-film__iframe {
    width: 182%;
    height: 112%;
  }

  .dh-product-dossier {
    width: calc(100vw - 24px);
    padding: 24px 18px 28px;
    border-radius: 22px;
  }

  .dh-product-dossier__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dh-product-dossier__tabs {
    margin-right: -8px;
    margin-left: -8px;
    padding: 6px;
    border-radius: 18px;
  }

  .dh-product-dossier__tab {
    min-height: 42px;
    padding: 0 14px;
  }

  .dh-transition-plan,
  .dh-benefit-grid {
    grid-template-columns: 1fr;
  }

  .dh-product-dossier__table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }

  .dh-product-dossier table {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    table-layout: fixed;
  }

  .dh-product-dossier :is(th, td) {
    min-width: 0;
    padding: 13px 8px !important;
    vertical-align: top;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .dh-product-dossier :is(th, td):first-child {
    width: 58%;
  }

  .dh-product-dossier :is(th, td):last-child {
    width: 42%;
    text-align: right;
  }

  .dh-product-dossier td:last-child {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  body.dh-system-page:not(.dr-hahnz-luxury-canvas) {
    padding-bottom: 74px;
  }

  .dh-quick-order {
    right: 8px;
    bottom: 8px;
    left: 8px;
    justify-content: stretch;
    padding: 6px;
    border-radius: 18px;
  }

  .dh-quick-order a {
    flex: 1;
    justify-content: center;
    min-width: 0;
    min-height: 48px;
    padding: 0 6px;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .dh-quick-order__basket svg {
    display: none;
  }

  .dh-quick-order__basket b {
    min-width: 18px;
    height: 18px;
  }
}

/* 0.5.1 — full-bleed alignment, source-appropriate media and mobile consistency. */
body.dh-system-page {
  overflow-x: clip;
}

body.dh-system-page h1,
body.dh-system-page h2,
body.dh-system-page h3,
body.dh-system-page h4,
body.dh-system-page h5,
body.dh-system-page h6,
.dh-luxury h1,
.dh-luxury h2,
.dh-luxury h3 {
  font-weight: 600 !important;
}

.dh-context-film {
  width: 100%;
  max-width: none;
  height: clamp(620px, 72svh, 780px);
  margin: 0 0 clamp(64px, 8vw, 126px);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: 0 24px 72px rgba(29, 30, 25,0.16);
}

.dh-context-film::before {
  inset: 18px;
  border-radius: 0;
}

.dh-context-film__media video {
  image-rendering: auto;
  filter: none;
  transform: none;
}

.dh-context-film:hover .dh-context-film__media video {
  filter: none;
  transform: none;
}

.dh-context-film__iframe {
  width: max(100%, 177.78vh);
  height: 100%;
  filter: contrast(1.035) saturate(0.88) brightness(0.94);
}

.dh-context-film__index,
.dh-origin__pack figcaption,
.dh-macro__grid figcaption {
  display: none !important;
}

/* The source packaging files are 760px wide. Equal 3:2 frames keep them crisp
   instead of stretching one image into a two-storey crop. */
.dh-macro__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: clamp(12px, 1.4vw, 22px);
}

.dh-macro__grid figure,
.dh-macro__grid .dh-macro__hero,
.dh-macro__grid .dh-macro__detail {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(159, 127, 54,0.22);
  border-radius: 22px;
  background: var(--dh-charcoal-soft);
}

.dh-macro__grid img {
  image-rendering: auto;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.dh-macro__grid figure:hover img {
  filter: contrast(1.025) saturate(1.01);
  transform: none;
}

.dh-origin__pack,
.dh-origin__pack img {
  background: var(--dh-charcoal-soft);
}

.dh-origin__pack img {
  image-rendering: auto;
  filter: none;
  transform: none;
}

.dh-origin__pack:hover img {
  filter: contrast(1.02) saturate(1.01);
  transform: none;
}

/* One measured video card on every editorial clip. */
.dh-film-card,
.dh-film-card--wide,
.dh-film-card--portrait {
  flex: 0 0 min(56vw, 780px);
  width: min(56vw, 780px);
  height: auto;
  aspect-ratio: 16 / 10;
}

.dh-film-card video {
  image-rendering: auto;
  filter: contrast(1.025) saturate(0.96);
  transform: none;
}

.dh-film-card:hover video,
.dh-film-card:focus-within video {
  filter: contrast(1.04) saturate(1);
  transform: none;
}

/* Product titles, prices, descriptions and controls now occupy fixed rows. */
.dh-menu-item {
  align-items: stretch;
}

.dh-menu-item__copy {
  display: grid;
  grid-template-rows: auto minmax(4.6em, 1fr) auto;
  min-width: 0;
  height: 100%;
}

.dh-menu-item__title-row {
  grid-template-columns: minmax(0, 1fr) minmax(104px, auto);
  align-items: start;
  gap: 18px;
}

.dh-menu-item h3 {
  min-width: 0;
  min-height: 2.35em;
  margin: 0;
  overflow-wrap: anywhere;
}

.dh-menu-item__price {
  min-width: 104px;
  min-height: 2.35em;
  line-height: 1.18;
  text-align: right;
  white-space: normal;
}

.dh-menu-item__price .price,
.dh-menu-item__price ins,
.dh-menu-item__price del {
  display: inline;
}

.dh-menu-item__copy > p {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 12px 0 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.dh-menu-item__actions {
  align-self: end;
  min-height: 42px;
}

/* A recognisable botanical cursor: fruit, stem, leaf vein, bloom and highlight. */
.dh-olive-cursor {
  width: 23px;
  height: 34px;
  filter: drop-shadow(0 5px 10px rgba(29, 30, 25,0.28));
}

.dh-olive-cursor__fruit {
  z-index: 2;
  inset: 10px 3px 1px;
  overflow: hidden;
  border: 1px solid rgba(159, 127, 54,0.82);
  border-radius: 47% 53% 54% 46% / 39% 42% 58% 61%;
  background:
    radial-gradient(circle at 67% 27%, rgba(244, 240, 230,0.56) 0 4%, transparent 5%),
    radial-gradient(circle at 31% 71%, rgba(52, 69, 46,0.48), transparent 23%),
    linear-gradient(145deg, #34452e 0%, #34452e 34%, #34452e 72%, #1d1e19 100%);
  box-shadow:
    inset 4px 3px 8px rgba(244, 240, 230,0.16),
    inset -4px -5px 9px rgba(29, 30, 25,0.42),
    0 4px 12px rgba(29, 30, 25,0.2);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.dh-olive-cursor__fruit::before {
  position: absolute;
  top: 17%;
  left: 23%;
  width: 30%;
  height: 42%;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(244, 240, 230,0.44), rgba(244, 240, 230,0));
  filter: blur(0.4px);
  transform: rotate(15deg);
}

.dh-olive-cursor__fruit::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(159, 127, 54,0.46) 0 0.6px, transparent 0.8px);
  background-size: 5px 6px;
}

.dh-olive-cursor__stem {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 10px;
  width: 2px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(var(--dh-gold-light), var(--dh-olive-deep));
  transform: rotate(12deg);
  transform-origin: bottom;
}

.dh-olive-cursor__leaf {
  z-index: 3;
  top: 0;
  left: 12px;
  width: 12px;
  height: 15px;
  overflow: hidden;
  border: 1px solid rgba(159, 127, 54,0.84);
  border-radius: 92% 10% 92% 12%;
  background:
    linear-gradient(64deg, transparent 46%, rgba(159, 127, 54,0.66) 48% 51%, transparent 53%),
    linear-gradient(145deg, var(--dh-olive-light), var(--dh-olive-deep));
  box-shadow: inset 2px 2px 4px rgba(244, 240, 230,0.13);
  transform: rotate(30deg);
}

.dh-olive-cursor__leaf::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 1px;
  height: 12px;
  content: "";
  background: rgba(159, 127, 54,0.68);
  transform: rotate(-12deg);
}

.dh-olive-cursor.is-link {
  width: 44px;
  height: 64px;
}

.dh-olive-cursor.is-sidebar {
  width: 58px;
  height: 82px;
}

.dh-olive-cursor.is-link .dh-olive-cursor__fruit,
.dh-olive-cursor.is-sidebar .dh-olive-cursor__fruit {
  border-color: var(--dh-gold-light);
  background:
    radial-gradient(circle at 67% 27%, rgba(244, 240, 230,0.62) 0 4%, transparent 5%),
    radial-gradient(circle at 31% 71%, rgba(52, 69, 46,0.52), transparent 23%),
    linear-gradient(145deg, #34452e 0%, #34452e 34%, #34452e 72%, #1d1e19 100%);
}

/* Replace the last stray near-black surfaces with the approved charcoal. */
.dh-macro__grid figure,
.dh-drawer__media,
.dh-hero,
.dh-film-card,
.dh-footer {
  background-color: var(--dh-charcoal) !important;
}

@media (max-width: 980px) {
  .dh-context-film {
    display: block;
    width: 100%;
    height: min(760px, calc(100svh - 76px));
    min-height: 640px;
    margin: 0 0 clamp(54px, 9vw, 84px);
    border-radius: 0;
  }

  .dh-context-film__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .dh-context-film__media video,
  .dh-context-film__iframe {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .dh-context-film__iframe {
    width: max(100%, 177.78vh);
  }

  .dh-context-film__copy {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 110px clamp(24px, 7vw, 52px) 48px;
    background: linear-gradient(180deg, rgba(29, 30, 25,0.08) 18%, rgba(29, 30, 25,0.22) 46%, rgba(52, 69, 46,0.96) 100%);
  }

  .dh-context-film__veil {
    background: linear-gradient(180deg, rgba(29, 30, 25,0.08), rgba(29, 30, 25,0.04) 44%, rgba(29, 30, 25,0.48));
  }

  .dh-macro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .dh-context-film {
    height: min(720px, calc(100svh - 68px));
    min-height: 600px;
  }

  .dh-context-film::before {
    inset: 10px;
  }

  .dh-context-film__copy {
    padding: 102px 22px 42px;
  }

  .dh-context-film__media video {
    object-position: center;
  }

  .dh-macro,
  .dh-continue {
    padding-right: 16px;
    padding-left: 16px;
  }

  .dh-macro__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dh-macro__grid figure,
  .dh-macro__grid .dh-macro__hero,
  .dh-macro__grid .dh-macro__detail {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
    border-radius: 18px;
  }

  .dh-film-card,
  .dh-film-card--wide,
  .dh-film-card--portrait {
    flex-basis: 86vw;
    width: 86vw;
    aspect-ratio: 4 / 5;
  }

  .dh-menu-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    min-height: 276px;
    padding: 18px;
  }

  .dh-menu-item:hover,
  .dh-menu-item:focus-within {
    padding: 18px;
  }

  .dh-menu-item__image {
    align-self: start;
    width: 88px;
    height: 132px;
  }

  .dh-menu-item__copy {
    grid-template-rows: auto minmax(4.35em, 1fr) auto;
  }

  .dh-menu-item__title-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .dh-menu-item h3 {
    min-height: 3.45em;
    font-size: 1.1rem;
    line-height: 1.15;
  }

  .dh-menu-item__price {
    min-width: 0;
    min-height: 2.5em;
    font-size: 0.98rem;
    line-height: 1.22;
    text-align: left;
  }

  .dh-menu-item__copy > p {
    min-height: 4.35em;
    margin: 10px 0 15px;
    font-size: 0.81rem;
    line-height: 1.45;
  }

  .dh-menu-item__actions {
    width: 100%;
    min-height: 38px;
  }

  .dh-menu-item__actions .dh-quick-add {
    width: 100%;
  }

  /* Elementor catalogue cards use the same measured title and price rows. */
  .dh-context-page .e-loop-item.product {
    min-height: 560px;
  }

  .dh-context-page .e-loop-item.product .elementor-widget-heading {
    min-height: 36px;
  }

  .dh-context-page .e-loop-item.product .elementor-widget-woocommerce-product-price {
    min-height: 32px;
    margin-top: auto;
    text-align: left;
  }

  .dh-quick-order {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .dh-quick-order::-webkit-scrollbar {
    display: none;
  }

  .dh-quick-order a {
    flex: 1 0 66px;
  }
}

/* 0.5.2 — strict acceptance audit: one palette, one type system, no legacy patchwork. */
body.dh-system-page,
body.dh-system-page :where(p, a, span, li, label, input, select, textarea, button, td, th, b, strong, em, small, div) {
  font-weight: 700 !important;
}

body.dh-system-page :where(h1, h2, h3, h4, h5, h6),
body.dh-system-page :where(h1, h2, h3, h4, h5, h6) * {
  font-family: var(--dh-serif) !important;
  font-weight: 600 !important;
}

body.dh-system-page:not(.dr-hahnz-luxury-canvas),
body.dh-system-page:not(.dr-hahnz-luxury-canvas) .elementor-location-single,
body.dh-system-page:not(.dr-hahnz-luxury-canvas) .site-main {
  color: var(--dh-charcoal) !important;
  background-color: var(--dh-ivory) !important;
}

body.dh-context-page :where(.elementor-location-single, .site-main, .woocommerce, .dh-category-collection) :where(p, li, label, td, th, b, strong, small),
body.single-product :where(.summary, .woocommerce-product-details__short-description, .product_meta) :where(p, span, a, b, strong),
body.single-product .woocommerce-breadcrumb,
body.single-product .woocommerce-breadcrumb a {
  color: var(--dh-charcoal) !important;
}

body.dh-context-page .elementor-location-header,
body.dh-context-page .elementor-location-header .e-con,
body.dh-context-page .elementor-location-footer,
body.dh-context-page .elementor-location-footer .e-con {
  color: var(--dh-ivory) !important;
  background-color: var(--dh-charcoal) !important;
  background-image: none !important;
}

body.dh-context-page .elementor-location-header :where(a, p, span, li, button, h1, h2, h3, h4),
body.dh-context-page .elementor-location-footer :where(a, p, span, li, button, h1, h2, h3, h4),
.dh-context-film :where(h1, h2, h3, p, span),
.dh-quick-order :where(a, span, b) {
  color: var(--dh-ivory) !important;
}

body.dh-context-page .elementor-location-header :where(svg, svg *),
body.dh-context-page .elementor-location-footer :where(svg, svg *) {
  color: var(--dh-ivory) !important;
  fill: currentColor !important;
}

body.dh-context-page .elementor-location-header img[alt*="Hahnz" i],
body.dh-context-page .elementor-location-footer img[alt*="Hahnz" i],
.dh-wordmark img,
.dh-footer__brand img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(13%) saturate(228%) hue-rotate(340deg) brightness(103%) contrast(91%);
}

body.single-product .product_title,
body.single-product h1.entry-title {
  color: var(--dh-olive) !important;
}

body.single-product .price,
body.single-product .price *,
body.single-product .woocommerce-Price-amount,
body.single-product .woocommerce-Price-currencySymbol {
  color: var(--dh-gold) !important;
  font-family: Abolition, var(--dh-sans) !important;
  font-weight: 700 !important;
}

body.single-product .elementor-widget-text-editor,
body.single-product .elementor-widget-text-editor *,
body.single-product .woocommerce-product-details__short-description,
body.single-product .woocommerce-product-details__short-description * {
  color: var(--dh-charcoal) !important;
  font-weight: 700 !important;
}

body.dh-context-page :where(.elementor-location-single, .site-main, .elementor-location-archive, .woocommerce) :where(p, li, label, td, th),
body.single-product .woocommerce-product-details__short-description,
body.single-product .woocommerce-product-details__short-description * {
  font-family: "PT Sans", var(--dh-sans) !important;
}

body.single-product .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button,
body.single-product .button.alt {
  color: var(--dh-ivory) !important;
  border-color: var(--dh-gold) !important;
  border-radius: 999px !important;
  background: var(--dh-gold) !important;
}

body.single-product .quantity .qty,
body.single-product .woocommerce-product-gallery__trigger,
.dh-product-dossier__tab {
  color: var(--dh-charcoal) !important;
  border-color: rgba(52, 69, 46,0.24) !important;
  background: var(--dh-ivory) !important;
}

.dh-product-dossier__tab[aria-selected="true"],
.dh-product-dossier__tab:hover,
.dh-product-dossier__tab:focus-visible {
  color: var(--dh-ivory) !important;
  background: var(--dh-olive) !important;
}

body.dh-dossier-ready .woocommerce-tabs,
body.dh-dossier-ready .wc-tabs-wrapper,
body.dh-dossier-ready .elementor-widget-flip-box,
body.dh-dossier-ready .elementor-flip-box,
body.dh-dossier-ready .e-con:has(> .elementor-widget-flip-box) {
  display: none !important;
}

body.dh-collection-archive .elementor-location-archive {
  display: none !important;
}

.dh-category-collection {
  width: 100%;
  padding: clamp(64px, 8vw, 124px) var(--dh-gutter) clamp(108px, 12vw, 180px);
  color: var(--dh-charcoal);
  background-color: var(--dh-ivory);
}

.dh-category-collection__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  width: min(1440px, 100%);
  margin: 0 auto clamp(42px, 6vw, 84px);
  padding-bottom: clamp(26px, 3vw, 44px);
  border-bottom: 1px solid rgba(159, 127, 54,0.36);
}

.dh-category-collection__head h2 {
  margin: 0;
  color: var(--dh-charcoal) !important;
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: 0.96;
}

.dh-category-collection__head > p {
  margin: 0;
  color: var(--dh-charcoal) !important;
  font-size: 1rem;
  line-height: 1.7;
}

.dh-category-collection__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: min(1440px, 100%);
  margin: 0 auto;
}

body.dh-system-page .elementor-widget-video .elementor-wrapper,
body.dh-system-page .wp-video,
body.dh-system-page .wp-video-shortcode {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  background: var(--dh-charcoal) !important;
}

body.dh-system-page .elementor-widget-video :where(video, iframe),
body.dh-system-page .wp-video :where(video, iframe),
body.dh-system-page .wp-video-shortcode {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 700px) {
  .dh-category-collection {
    padding: 52px 16px 118px;
  }

  .dh-category-collection__head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .dh-category-collection__head h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .dh-category-collection__list {
    grid-template-columns: 1fr;
  }

  body.dh-system-page .elementor-widget-video .elementor-wrapper,
  body.dh-system-page .wp-video,
  body.dh-system-page .wp-video-shortcode {
    aspect-ratio: 4 / 5 !important;
    border-radius: 18px !important;
  }
}

/* 0.5.3 — rendered contrast lock against the legacy theme cascade. */
.dh-luxury a {
  color: inherit !important;
}

.dh-hero :where(h1, p, a, span),
.dh-film-card :where(h3, p, span, a),
.dh-continue-card :where(h3, p, span, a),
.dh-usual :where(h2, h3, p, li, a, span, strong),
.dh-footer :where(h2, h3, p, li, a, span, strong),
.dh-drawer :where(h2, h3, p, li, a, span, strong),
.dh-search :where(label, input, button, a, span),
.dh-header :where(a, button, span, b),
.dh-subnav a,
.dh-macro .dh-section-head :where(h2, p),
.dh-film-journal .dh-section-head :where(h2, p) {
  color: var(--dh-ivory) !important;
}

.dh-origin :where(h2, p),
.dh-dining :where(h2, p),
.dh-continue > .dh-section-head :where(h2, p),
.dh-category-collection :where(h2, p),
.dh-menu-item h3,
.dh-menu-item h3 a,
.dh-menu-item__copy > p {
  color: var(--dh-charcoal) !important;
}

.dh-origin .dh-kicker,
.dh-dining .dh-kicker,
.dh-continue > .dh-section-head .dh-kicker,
.dh-category-collection .dh-kicker,
.dh-menu-item__price,
.dh-menu-item__price *,
.dh-menu-item__actions .dh-text-link,
.dh-dining__tabs a,
.dh-transition-step span,
.dh-benefit-card span,
body.single-product .price,
body.single-product .price *,
body.single-product .woocommerce-Price-amount,
body.single-product .woocommerce-Price-currencySymbol {
  color: var(--dh-olive) !important;
}

.dh-bag__count,
.dh-quick-order__basket,
.dh-quick-order__basket :where(span, b, svg),
body.single-product .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button,
body.single-product .button.alt {
  color: var(--dh-ivory) !important;
  border-color: var(--dh-gold) !important;
  background: var(--dh-olive) !important;
}

body.dh-system-page .skip-link,
body.single-product .woocommerce-product-gallery,
body.single-product .woocommerce-product-gallery *,
body.dh-context-page .elementor-location-single a:not(.button) {
  color: var(--dh-olive) !important;
}

body.dh-context-page .elementor-menu-toggle,
body.dh-context-page .elementor-menu-toggle * {
  color: var(--dh-ivory) !important;
  background-color: var(--dh-charcoal) !important;
}

@media (max-width: 700px) {
  .dh-menu-item {
    height: 284px;
    min-height: 284px;
  }
}

/* 0.5.3 — final visual-integrity audit: sharp geometry, readable contrast and
   one repeatable media/content rhythm on every retained WordPress journey. */
body.dh-system-page *,
body.dh-system-page *::before,
body.dh-system-page *::after {
  border-radius: 0 !important;
}

/* The cursor is the sole organic silhouette in the interface. */
.dh-olive-cursor__fruit {
  border-radius: 47% 53% 54% 46% / 39% 42% 58% 61% !important;
}

.dh-olive-cursor__fruit::before {
  border-radius: 50% !important;
}

.dh-olive-cursor__stem {
  border-radius: 999px !important;
}

.dh-olive-cursor__leaf {
  border-radius: 92% 10% 92% 12% !important;
}

/* Prevent legacy Elementor colours and decorated panels from reappearing. */
body.dh-context-page .elementor-location-single :where(.e-con, .elementor-section, .elementor-column-wrap, .elementor-widget-wrap),
body.dh-context-page .site-main :where(.e-con, .elementor-section, .elementor-column-wrap, .elementor-widget-wrap) {
  background-color: transparent !important;
  background-image: none !important;
}

body.dh-context-page .elementor-location-single :where(h1, h2, h3, h4, h5, h6, p, li, label, td, th, strong, em, small, a, span),
body.dh-context-page .site-main :where(h1, h2, h3, h4, h5, h6, p, li, label, td, th, strong, em, small, a, span) {
  color: var(--dh-charcoal) !important;
}

body.dh-context-page .elementor-location-single :where(button, .button, input[type="submit"], input[type="button"]),
body.dh-context-page .site-main :where(button, .button, input[type="submit"], input[type="button"]) {
  color: var(--dh-ivory) !important;
  border: 1px solid var(--dh-gold) !important;
  background: var(--dh-olive) !important;
}

body.dh-context-page .elementor-location-single :where(button, .button, input[type="submit"], input[type="button"]) *,
body.dh-context-page .site-main :where(button, .button, input[type="submit"], input[type="button"]) * {
  color: var(--dh-ivory) !important;
}

body.single-product :where(.elementor-widget-flip-box, .elementor-flip-box, .elementor-widget-icon-box, .elementor-widget-image-box),
body.single-product .e-con:has(> :where(.elementor-widget-flip-box, .elementor-widget-icon-box, .elementor-widget-image-box)),
body.single-product .elementor-flip-box__layer {
  display: none !important;
}

body.dh-context-page :where(.elementor-widget-image img, .woocommerce-product-gallery img, .attachment-woocommerce_thumbnail),
.dh-luxury :where(img, video) {
  image-rendering: auto !important;
}

/* The custom film is always the single lead film. Retained page content follows
   it, so old embeds cannot create a different image/video order per page. */
body.dh-context-page:has(.dh-context-film) .elementor-location-single .elementor-widget-video,
body.dh-context-page:has(.dh-context-film) .site-main .elementor-widget-video {
  display: none !important;
}

.dh-context-film,
.dh-context-film__media,
.dh-context-film__media :where(video, iframe) {
  width: 100% !important;
}

.dh-context-film__media :where(video, iframe) {
  display: block !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Small gold text was the last marginal contrast case. Gold is now reserved
   for rules and borders; copy is ivory on dark and olive/charcoal on light. */
.dh-hero :where(h1, h2, h3, p, a, span, strong),
.dh-film-card :where(h1, h2, h3, p, a, span, strong),
.dh-continue-card :where(h1, h2, h3, p, a, span, strong),
.dh-context-film :where(h1, h2, h3, p, a, span, strong),
.dh-usual :where(h1, h2, h3, p, li, a, span, strong),
.dh-footer :where(h1, h2, h3, p, li, a, span, strong),
.dh-drawer :where(h1, h2, h3, p, li, a, span, strong),
.dh-search :where(h1, h2, h3, p, label, a, span, strong, input),
.dh-macro .dh-section-head :where(h1, h2, h3, p, a, span, strong),
.dh-film-journal .dh-section-head :where(h1, h2, h3, p, a, span, strong) {
  color: var(--dh-ivory) !important;
}

.dh-origin :where(h1, h2, h3, p, a, span, strong),
.dh-dining :where(h1, h2, h3, p, a, span, strong),
.dh-continue > .dh-section-head :where(h1, h2, h3, p, a, span, strong),
.dh-category-collection :where(h1, h2, h3, p, a, span, strong),
.dh-product-dossier :where(h1, h2, h3, p, li, a, span, strong, td, th) {
  color: var(--dh-charcoal) !important;
}

.dh-origin :where(.dh-kicker, .dh-text-link),
.dh-dining :where(.dh-kicker, .dh-text-link, .dh-menu-item__price, .dh-menu-item__price *),
.dh-continue > .dh-section-head .dh-kicker,
.dh-category-collection .dh-kicker,
.dh-product-dossier :where(a, th) {
  color: var(--dh-olive) !important;
}

/* Premium navigation: clean rules, no pointing lines/dots, and measured rows. */
.dh-drawer {
  grid-template-columns: minmax(430px, 44%) minmax(0, 1fr);
  background: var(--dh-charcoal) !important;
}

.dh-drawer__nav {
  justify-content: flex-start;
  padding: clamp(88px, 10vh, 128px) clamp(34px, 5vw, 88px) 38px;
  background: linear-gradient(145deg, var(--dh-olive), var(--dh-charcoal)) !important;
}

.dh-drawer__nav::after,
.dh-drawer__links a::before,
.dh-menu-item__leader {
  display: none !important;
}

.dh-drawer__links {
  margin: 18px 0 30px;
  border-top: 1px solid rgba(159, 127, 54,0.56);
}

.dh-drawer__links a {
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 16px;
  min-width: 0;
  padding: 18px 0;
  color: var(--dh-ivory) !important;
  border-bottom: 1px solid rgba(159, 127, 54,0.34);
  font-size: clamp(1.3rem, 2.2vw, 2.35rem);
  line-height: 1.06;
}

.dh-drawer__links a > span {
  color: var(--dh-ivory) !important;
  font-size: 0.64rem;
}

.dh-drawer__links a svg {
  color: var(--dh-ivory) !important;
  opacity: 0.78;
  transform: none;
}

.dh-drawer__links a:hover,
.dh-drawer__links a:focus-visible {
  padding-left: 12px;
  color: var(--dh-ivory) !important;
  border-color: var(--dh-gold);
  background: rgba(244, 240, 230,0.04);
}

.dh-drawer__minor {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(159, 127, 54,0.34);
}

.dh-drawer__minor a,
.dh-drawer__media p {
  color: var(--dh-ivory) !important;
}

.dh-drawer__close,
.dh-search__close {
  color: var(--dh-ivory) !important;
  border-color: var(--dh-gold) !important;
  background: transparent !important;
}

.dh-drawer__close:hover,
.dh-drawer__close:focus-visible,
.dh-search__close:hover,
.dh-search__close:focus-visible {
  color: var(--dh-charcoal) !important;
  border-color: var(--dh-ivory) !important;
  background: var(--dh-ivory) !important;
}

.dh-quick-order a:hover,
.dh-quick-order a:focus-visible {
  color: var(--dh-charcoal) !important;
  background: var(--dh-ivory) !important;
}

/* Footer and body grids are explicitly constrained so theme widths cannot
   push columns or individual letters outside the mobile viewport. */
.dh-luxury :where(h1, h2, h3, h4, h5, h6, p, a, span, li, label, td, th),
body.dh-context-page .site-main :where(h1, h2, h3, h4, h5, h6, p, a, span, li, label, td, th) {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.dh-footer__links,
.dh-footer__links > div,
.dh-continue__grid,
.dh-continue-card {
  min-width: 0;
  max-width: 100%;
}

.dh-footer__links h2 {
  color: var(--dh-ivory) !important;
  font-family: var(--dh-sans) !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
}

.dh-footer__links a,
.dh-footer__legal,
.dh-footer__brand p {
  color: var(--dh-ivory) !important;
}

.dh-category-collection__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  width: min(1440px, 100%);
  margin: 0 auto;
}

.dh-category-collection__group {
  min-width: 0;
}

.dh-category-collection__group > header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(159, 127, 54,0.42);
}

.dh-category-collection__group > header h3 {
  margin: 5px 0 0;
  color: var(--dh-charcoal) !important;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.dh-category-collection__split .dh-category-collection__list {
  grid-template-columns: minmax(0, 1fr);
}

/* Product-card acceptance fix: a long price range must never consume the title
   column and force names into a vertical string of individual letters. */
.dh-dining__list,
.dh-category-collection__list {
  align-items: start;
}

.dh-menu-item {
  align-self: start;
  width: 100%;
  height: auto !important;
  min-height: 270px;
}

.dh-menu-item__copy {
  grid-template-rows: auto minmax(4.6em, 1fr) auto;
  height: auto;
  min-height: 100%;
}

.dh-menu-item__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 8px !important;
  width: 100%;
}

.dh-menu-item h3,
.dh-menu-item h3 a {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 2.35em;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  white-space: normal !important;
}

.dh-menu-item__price,
.dh-menu-item__price .price,
.dh-menu-item__price :where(ins, del, bdi, span) {
  display: block;
  width: 100%;
  min-width: 0 !important;
  max-width: 100%;
  min-height: 1.45em;
  line-height: 1.25;
  text-align: left !important;
  white-space: normal !important;
}

.dh-cta--gold,
.dh-luxury a.dh-cta--gold,
.dh-luxury a.dh-cta--gold:visited {
  color: var(--dh-ivory) !important;
  border-color: var(--dh-gold) !important;
  background: var(--dh-olive) !important;
}

@media (max-width: 980px) {
  .dh-drawer {
    display: block;
  }

  .dh-drawer__nav {
    width: 100%;
    height: 100%;
    padding: 82px 22px 24px;
    overflow-y: auto;
  }

  .dh-drawer__media {
    display: none;
  }

  .dh-drawer__links a {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 15px 0;
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }
}

@media (max-width: 700px) {
  body.dh-system-page:not(.dr-hahnz-luxury-canvas) {
    padding-bottom: 68px;
  }

  .dh-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    width: 100%;
    padding: 0 12px;
  }

  .dh-wordmark {
    width: min(46vw, 176px);
    max-width: 100%;
  }

  .dh-wordmark img {
    display: block;
    width: 100%;
    height: auto;
  }

  .dh-header__actions {
    min-width: 0;
  }

  .dh-context-film {
    height: min(720px, calc(100svh - 66px));
    min-height: 580px;
  }

  .dh-origin__copy,
  .dh-origin__pack {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .dh-context-film__copy {
    padding: 102px 20px 42px;
  }

  .dh-context-film h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    letter-spacing: -0.025em;
    line-height: 1.02;
  }

  .dh-context-film__copy > p:not(.dh-kicker) {
    max-width: min(34ch, 100%);
  }

  .dh-continue__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    overflow: visible;
    scroll-snap-type: none;
  }

  .dh-continue-card {
    width: 100%;
    min-height: 500px;
  }

  .dh-footer {
    width: 100%;
    padding: 64px 20px 82px;
  }

  .dh-footer__brand {
    width: 100%;
  }

  .dh-category-collection__split {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .dh-footer__brand img {
    width: min(78vw, 280px);
  }

  .dh-footer__links {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 44px 0 56px !important;
  }

  .dh-footer__links > div {
    width: 100% !important;
  }

  .dh-footer__links h2,
  .dh-footer__links a {
    width: fit-content !important;
    max-width: 100% !important;
  }

  .dh-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .dh-quick-order {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    padding: 0;
    overflow: visible;
    border-width: 1px 0 0;
    background: var(--dh-olive) !important;
  }

  .dh-quick-order a {
    display: flex;
    min-width: 0;
    min-height: 64px;
    padding: 8px 3px;
    color: var(--dh-ivory) !important;
    border-right: 1px solid rgba(159, 127, 54,0.42);
    font-size: 0.55rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .dh-quick-order a:last-child {
    border-right: 0;
  }

  .dh-quick-order__basket b {
    display: none;
  }

  .dh-menu-item {
    width: 100%;
    height: auto !important;
    min-height: 0;
    max-width: 100%;
  }

  .dh-menu-item__copy,
  .dh-menu-item__title-row,
  .dh-menu-item h3,
  .dh-menu-item__price,
  .dh-menu-item__copy > p {
    min-width: 0;
    max-width: 100%;
  }
}

/* 0.5.3 cinematic grade — brighter real footage, richer colour and a precise
   contrast veil behind every piece of text that sits on moving imagery. */
.dh-hero__film video,
.dh-film-card video,
.dh-context-film__media video {
  filter: brightness(1.1) contrast(1.08) saturate(1.14) !important;
}

.dh-context-film__iframe {
  filter: brightness(1.08) contrast(1.08) saturate(1.12) !important;
}

.dh-hero__gradient {
  background:
    linear-gradient(90deg, rgba(52, 69, 46,0.86) 0%, rgba(52, 69, 46,0.38) 48%, rgba(29, 30, 25,0.18) 100%),
    linear-gradient(0deg, rgba(29, 30, 25,0.9) 0%, rgba(29, 30, 25,0.24) 50%, rgba(29, 30, 25,0.42) 100%) !important;
}

.dh-film-card::after {
  background: linear-gradient(0deg, rgba(29, 30, 25,0.94) 0%, rgba(52, 69, 46,0.7) 30%, rgba(29, 30, 25,0.06) 68%) !important;
}

.dh-context-film__veil {
  background:
    linear-gradient(90deg, rgba(29, 30, 25,0.42), rgba(29, 30, 25,0.04) 46%),
    linear-gradient(180deg, rgba(29, 30, 25,0.16), rgba(29, 30, 25,0.04) 42%, rgba(29, 30, 25,0.8)) !important;
}

.dh-continue-card::after {
  background: linear-gradient(0deg, rgba(29, 30, 25,0.96) 0%, rgba(52, 69, 46,0.72) 34%, rgba(29, 30, 25,0.08) 72%) !important;
}

.dh-drawer__veil {
  background:
    linear-gradient(90deg, rgba(52, 69, 46,0.48), rgba(29, 30, 25,0.04) 48%),
    linear-gradient(0deg, rgba(29, 30, 25,0.88), rgba(29, 30, 25,0.04) 58%) !important;
}

.dh-drawer__media img,
.dh-drawer__media img.is-changing {
  filter: brightness(1.06) contrast(1.08) saturate(1.1) !important;
}

.dh-drawer__media img.is-changing {
  opacity: 0.28;
}

@media (max-width: 980px) {
  .dh-context-film__copy {
    background: linear-gradient(180deg, rgba(29, 30, 25,0.08) 10%, rgba(29, 30, 25,0.42) 48%, rgba(52, 69, 46,0.98) 100%) !important;
  }
}

/* 0.5.3 final acceptance layer. Gold receives a brighter shade on dark
   surfaces; body copy still uses the high-contrast ivory/charcoal/olive pair. */
:root {
  --dh-gold-light: #c9aa5a;
}

/* Small editorial asides were removed at the client's request. Functional
   labels, product data, prices, tabs and navigation headings remain. */
.dh-kicker,
.dh-film-card__copy > span,
.dh-continue-card > span,
.dh-usual__eyebrow,
.dh-context-film__index {
  display: none !important;
}

.dh-film-card__copy h3,
.dh-continue-card h3 {
  margin-top: 0;
}

/* One subtle olive engraving layer follows every page at the same scale and
   edge positions, regardless of the underlying template or section colour. */
.dh-page-olive {
  z-index: 2;
  opacity: 0.026;
  background-position: -18vw 16vh, calc(100vw - 24vw) 74vh;
  background-size: min(42vw, 620px) auto, min(36vw, 520px) auto;
}

/* Remove exaggerated vertical staging gaps while preserving an editorial
   rhythm between actual content blocks. */
.dh-origin__copy {
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 100px);
}

.dh-macro,
.dh-continue {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(78px, 8vw, 120px);
}

.dh-film-journal {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(64px, 7vw, 98px);
}

.dh-section-head,
.dh-macro .dh-section-head,
.dh-film-journal .dh-section-head {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.dh-dining,
.dh-category-collection {
  padding-top: clamp(56px, 6vw, 90px);
  padding-bottom: clamp(76px, 8vw, 124px);
}

/* Dramatic but clean grade: no blur, no haze and no artificial softening. */
.dh-hero__film video,
.dh-film-card video,
.dh-context-film__media video,
.dh-context-film__iframe {
  filter: brightness(1.12) contrast(1.13) saturate(1.28) !important;
}

.dh-origin__pack img,
.dh-macro__grid img,
.dh-continue-card img,
.dh-drawer__media img,
.dh-drawer__media img.is-changing {
  image-rendering: auto !important;
  filter: brightness(1.08) contrast(1.12) saturate(1.22) !important;
}

.dh-menu-item__image img,
.dh-category-collection .dh-menu-item__image img,
body.single-product .woocommerce-product-gallery img {
  image-rendering: auto !important;
  filter: brightness(1.04) contrast(1.08) saturate(1.1) !important;
}

/* The old archive's flip panels and raster icon patches never render, even if
   a page builder moves them outside its usual archive wrapper. */
body.dh-collection-archive :where(.elementor-widget-flip-box, .elementor-flip-box, .elementor-widget-icon-box, .elementor-widget-image-box),
body.dh-collection-archive .elementor-flip-box__layer {
  display: none !important;
}

/* Stockist interface: replace the copper/white legacy block with the same
   ivory, charcoal, olive and gold control language as the store. */
body.dh-context-page :where(#wpsl-wrap, #wpsl-result-list, .wpsl-store-location, .wpsl-direction-wrap),
body.dh-context-page :where(#wpsl-wrap, #wpsl-result-list, .wpsl-store-location, .wpsl-direction-wrap) * {
  color: var(--dh-charcoal) !important;
}

body.dh-context-page .wpsl-search {
  color: var(--dh-charcoal) !important;
  border: 1px solid var(--dh-gold) !important;
  background: var(--dh-ivory) !important;
}

body.dh-context-page .wpsl-search :where(label, p, span) {
  color: var(--dh-charcoal) !important;
}

body.dh-context-page :where(.wpsl-search input, .wpsl-search select, #wpsl-search-input, #wpsl-radius) {
  color: var(--dh-charcoal) !important;
  border: 1px solid var(--dh-olive) !important;
  background: var(--dh-ivory) !important;
}

body.dh-context-page :where(#wpsl-search-btn, .wpsl-search-btn) {
  color: var(--dh-ivory) !important;
  border: 1px solid var(--dh-gold) !important;
  background: var(--dh-olive) !important;
}

body.dh-context-page :where(#wpsl-result-list li, .wpsl-store-location) {
  border-color: rgba(52, 69, 46,0.26) !important;
  background: transparent !important;
}

/* Account, basket and checkout: remove the last gray/copper tab states and
   make every input/table state legible against its actual surface. */
body.dh-context-page :where(.woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content, .e-my-account-tab, .woocommerce-cart-form, .cart_totals, .woocommerce-checkout, .woocommerce-order) {
  color: var(--dh-charcoal) !important;
  background: transparent !important;
}

body.dh-context-page .woocommerce-MyAccount-navigation-link a {
  color: var(--dh-charcoal) !important;
  border-bottom: 1px solid rgba(52, 69, 46,0.24) !important;
  background: transparent !important;
}

body.dh-context-page .woocommerce-MyAccount-navigation-link.is-active a,
body.dh-context-page .woocommerce-MyAccount-navigation-link a:hover,
body.dh-context-page .woocommerce-MyAccount-navigation-link a:focus-visible {
  color: var(--dh-ivory) !important;
  border-color: var(--dh-gold) !important;
  background: var(--dh-olive) !important;
}

body.dh-context-page :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  color: var(--dh-charcoal) !important;
  border: 1px solid var(--dh-olive) !important;
  background: var(--dh-ivory) !important;
}

body.dh-context-page :where(input, textarea)::placeholder {
  color: var(--dh-olive) !important;
  opacity: 1;
}

body.dh-context-page :where(table, thead, tbody, tfoot, tr, td, th),
body.dh-context-page :where(.shop_table, .woocommerce-table) {
  color: var(--dh-charcoal) !important;
  border-color: rgba(52, 69, 46,0.24) !important;
  background: transparent !important;
}

/* Sharp geometry is an invariant, not a component-by-component suggestion. */
body.dh-system-page *,
body.dh-system-page *::before,
body.dh-system-page *::after {
  border-radius: 0 !important;
}

.dh-olive-cursor__fruit {
  border-radius: 47% 53% 54% 46% / 39% 42% 58% 61% !important;
}

.dh-olive-cursor__fruit::before {
  border-radius: 50% !important;
}

.dh-olive-cursor__stem {
  border-radius: 999px !important;
}

.dh-olive-cursor__leaf {
  border-radius: 92% 10% 92% 12% !important;
}

@media (max-width: 700px) {
  .dh-macro,
  .dh-film-journal,
  .dh-continue,
  .dh-dining,
  .dh-category-collection {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .dh-section-head,
  .dh-macro .dh-section-head,
  .dh-film-journal .dh-section-head {
    margin-bottom: 28px;
  }

  .dh-page-olive {
    opacity: 0.022;
    background-position: -58vw 18vh, 70vw 76vh;
    background-size: 118vw auto, 98vw auto;
  }

  .dh-product-dossier__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    overflow: visible;
  }

  .dh-product-dossier__tab {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 8px 10px;
    line-height: 1.2;
    white-space: normal;
  }
}
