:root {
  --bg: #050505;
  --bg-soft: #101112;
  --surface: #171615;
  --surface-2: #211f19;
  --line: rgba(245, 190, 83, 0.22);
  --text: #f8f5ed;
  --muted: #e9e3d8;
  --gold: #f6c655;
  --gold-deep: #b98516;
  --teal: #40c7b0;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 50% 0%, rgba(246, 198, 85, 0.15), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner,
.site-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding,
.brand-logo,
.custom-logo-link {
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(48vw, 220px);
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.footer-brand img {
  max-width: 150px;
  max-height: 48px;
}

.primary-navigation {
  display: flex;
  align-items: center;
}

.nav-list,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.footer-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.site-main {
  padding: 0 0 72px;
}

.hero-section {
  padding: 56px 0 40px;
  display: grid;
  gap: 30px;
  text-align: center;
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
}

.hero-copy h1,
.page-hero h1 {
  color: #ffd96b;
  text-shadow: 0 2px 18px rgba(246, 198, 85, 0.24);
}

h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.72rem, 3.2vw, 3rem);
}

h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.24rem;
}

.hero-lead,
.page-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dduu-wordmark,
.dduu-logo-mark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gold);
  font-size: 1.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.dduu-logo-mark {
  gap: 10px;
  max-width: 100%;
}

.brand-logo__icon {
  display: inline-flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(246, 198, 85, 0.22);
}

.brand-logo__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-logo__text {
  color: var(--gold);
  font-size: 1.58rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand .brand-logo__icon {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
}

.footer-brand .brand-logo__text {
  font-size: 1.42rem;
}

.dduu-secondary-action {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
  box-shadow: none;
}

.dduu-secondary-action:hover {
  background: rgba(246, 198, 85, 0.08);
}

.dduu-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.dduu-breadcrumb a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.dduu-breadcrumb-separator {
  color: rgba(248, 245, 237, 0.72);
}

.dduu-hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dduu-hero-links a {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.main-action,
.mobile-action-link,
.wp-block-button__link,
.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  background: #f1ad25 linear-gradient(180deg, #ffd96b, #f1ad25);
  color: #13100a;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(246, 198, 85, 0.2);
  cursor: pointer;
}

.main-action.dduu-secondary-action {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
  box-shadow: none;
}

.main-action:hover,
.mobile-action-link:hover,
.wp-block-button__link:hover,
.search-form button:hover {
  background: #f7bd36 linear-gradient(180deg, #ffe08a, #f7bd36);
}

.main-action.dduu-secondary-action:hover {
  background: rgba(246, 198, 85, 0.08);
}

.hero-media {
  max-width: 1040px;
  margin: 0 auto;
}

.hero-visual,
.entry-content .wp-block-image img,
.entry-content figure img,
.content-visual {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.entry-content figure.dduu-editorial-image {
  margin: clamp(24px, 4vw, 48px) 0;
}

.entry-content figure.dduu-editorial-image img {
  height: min(560px, calc((100vw - 40px) * 2 / 3));
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-color: rgba(212, 175, 55, 0.28);
  background: #111;
}

.entry-content figure.dduu-editorial-image--wide img {
  height: min(520px, calc((100vw - 40px) * 9 / 16));
  aspect-ratio: 16 / 9;
}

.entry-content figure.dduu-editorial-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  opacity: 0.86;
  font-size: 0.875rem;
  line-height: 1.5;
}

.entry-content {
  max-width: 980px;
  margin: 0 auto;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 24px;
}

.entry-content > h2 {
  margin-top: 58px;
}

.entry-content > h3 {
  margin-top: 34px;
}

.entry-content p,
.entry-content li {
  color: var(--muted);
}

.entry-content strong {
  color: var(--text);
}

.entry-content a {
  color: var(--gold);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.entry-content .wp-block-button__link {
  color: #13100a;
}

.entry-content .wp-block-button__link:hover {
  color: #13100a;
}

.wp-block-group {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.wp-block-columns {
  gap: 22px;
}

.wp-block-column {
  min-width: 0;
}

.wp-block-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text);
  background: rgba(246, 198, 85, 0.08);
}

.wp-block-list,
.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.wp-block-details {
  margin: 12px 0;
  padding: 18px 20px;
  border: 1px solid rgba(246, 198, 85, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.wp-block-details summary {
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

.wp-block-details p {
  margin: 12px 0 0;
}

.page-main {
  padding-top: 44px;
}

.page-hero {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.content-page {
  padding-bottom: 60px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.post-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--surface);
}

.post-card a {
  text-decoration: none;
}

.search-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.search-field {
  min-height: 48px;
  width: min(440px, 62vw);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a0a0a;
  color: var(--text);
  padding: 12px 14px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070707;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(240px, 1fr) minmax(260px, 1.4fr);
  gap: 34px;
  padding: 42px 0;
}

.footer-brand p,
.footer-disclosure p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-disclosure a {
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-contact-email {
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-links {
  flex-wrap: wrap;
  align-items: flex-start;
}

.dduu-footer-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dduu-footer-group h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.dduu-footer-group .footer-links {
  display: grid;
  gap: 8px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .footer-inner,
  .site-main {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .primary-navigation {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 14px;
    border: 1px solid rgba(246, 198, 85, 0.22);
    border-radius: 8px;
    background: #090909;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 6px;
  }

  .nav-list a {
    display: block;
    padding: 10px;
  }

  .site-branding,
  .brand-logo,
  .custom-logo-link {
    max-width: min(58vw, 160px);
  }

  .custom-logo,
  .custom-logo-link img,
  .site-branding img,
  .brand-logo img {
    max-width: 140px;
    max-height: 44px;
  }

  .hero-section {
    padding: 34px 0 28px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.55rem);
  }

  .page-main {
    padding-top: 36px;
  }

  .wp-block-columns {
    display: block;
  }

  .wp-block-column + .wp-block-column {
    margin-top: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .dduu-footer-groups {
    grid-template-columns: 1fr;
  }

  body:has(.mobile-action-bar) {
    padding-bottom: 78px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    justify-content: center;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(5, 5, 5, 0.92);
    border-top: 1px solid rgba(246, 198, 85, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-action-link {
    width: min(100%, 420px);
  }
}

@media (max-width: 520px) {
  .hero-lead,
  .page-lead {
    font-size: 1rem;
  }

  .wp-block-group {
    padding: 18px;
  }

  th,
  td {
    padding: 12px;
  }

  .search-form {
    display: grid;
  }

  .search-field {
    width: 100%;
  }
}
