*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:       #1a2744;
    --navy-mid:   #243159;
    --navy-light: #2c3e6b;
    --gold:       #c9a84c;
    --gold-light: #e2c47a;
    --off-white:  #f8f7f4;
    --text:       #2a2a2a;
    --text-light: #555;
  }

  html, body { scroll-behavior: smooth; overflow-x: hidden; }

  /* ── THEME OVERRIDE: force vertical stacking ── */
  .dd-hero,
  .dd-section,
  .dd-testimonials,
  .dd-cta-band {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    flex: none !important;
    grid-column: 1 / -1 !important;
  }

  /* ── SHARED ── */
  .dd-section { padding: 80px 0; }
  .dd-container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }
  .dd-label {
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .dd-label--center { text-align: center; }
  .dd-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .dd-title--white  { color: #fff; }
  .dd-title--center { text-align: center; }
  .dd-rule { width: 50px; height: 3px; background: var(--gold); margin-bottom: 28px; }
  .dd-rule--center { margin-left: auto; margin-right: auto; }

  /* ── PAGE WRAPPER: reset theme flex/grid context ── */
  .dd-page-wrap {
    display: block !important;
    width: 100% !important;
  }
  .dd-page-wrap > * {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    flex: none !important;
  }

  /* ── HERO ── */
  .dd-hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    background: url('https://stunning-magenta-fox.diamond-discos.com/wp-content/uploads/2026/02/diamond-discos-main-image.avif') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .dd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,18,40,0.72) 0%, rgba(26,39,68,0.55) 60%, rgba(10,18,40,0.7) 100%);
  }
  .dd-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    animation: ddFadeUp 1s ease both;
  }
  .dd-hero__eyebrow {
    display: inline-block;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 18px;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 6px 16px;
    border-radius: 2px;
  }
  .dd-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 900;
  }
  .dd-hero__title span { color: var(--gold); }
  .dd-hero__sub {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    font-weight: 300;
  }
  .dd-hero__btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
  }
  .dd-hero__btn:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── ABOUT ── */
  .dd-about { background: #fff; }
  .dd-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
  }
  .dd-about__text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
  }
  .dd-about__text p:first-of-type { font-size: 18px; color: var(--text); font-weight: 400; }
  .dd-about__cta {
    display: inline-block;
    margin-top: 8px;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .dd-about__cta:hover { color: var(--gold); }
  .dd-about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .dd-stat { background: var(--navy); padding: 32px 24px; text-align: center; }
  .dd-stat:nth-child(2) { background: var(--navy-light); }
  .dd-stat:nth-child(3) { background: var(--navy-light); }
  .dd-stat:nth-child(4) { background: var(--navy); }
  .dd-stat__number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 700;
  }
  .dd-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ── SERVICES ── */
  .dd-services { background: var(--off-white); }
  .dd-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
  }
  .dd-service-card {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .dd-service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(26,39,68,0.14); }
  .dd-service-card__img { width: 100%; max-width: 100%; height: 200px; object-fit: cover; display: block !important; }
  .dd-service-card__body { padding: 22px 22px 24px; border-top: 3px solid var(--gold); }
  .dd-service-card__body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .dd-service-card__body p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
  .dd-service-card__link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .dd-service-card__link::after { content: '→'; transition: transform 0.2s; }
  .dd-service-card:hover .dd-service-card__link::after { transform: translateX(4px); }

  /* ── TESTIMONIALS ── */
  .dd-testimonials {
    background: var(--navy);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .dd-testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
  }
  .dd-testimonials::after {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 240px;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .dd-testimonials .dd-container { position: relative; z-index: 1; }
  .dd-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  .dd-rating-score {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    color: #fff;
    line-height: 1;
    font-weight: 700;
  }
  .dd-rating-details { display: flex; flex-direction: column; gap: 5px; }
  .dd-stars { display: flex; gap: 3px; }
  .dd-star    { color: var(--gold); font-size: 22px; }
  .dd-star-sm { color: var(--gold); font-size: 15px; }
  .dd-rating-count { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; }
  .dd-rating-divider { width: 1px; height: 52px; background: rgba(255,255,255,0.12); }
  .dd-rating-label { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 180px; line-height: 1.5; }

  .dd-carousel-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
  }
  .dd-carousel-outer::before,
  .dd-carousel-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .dd-carousel-outer::before { left: 0;  background: linear-gradient(to right, var(--navy), transparent); }
  .dd-carousel-outer::after  { right: 0; background: linear-gradient(to left,  var(--navy), transparent); }
  .dd-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: ddScrollLeft 48s linear infinite;
    cursor: grab;
  }
  .dd-carousel-track:active { cursor: grabbing; }
  .dd-carousel-track.paused { animation-play-state: paused; }
  @keyframes ddScrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .dd-review-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 4px;
    padding: 28px 28px 22px;
    width: 340px;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
  }
  .dd-review-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.3); }
  .dd-review-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    padding: 3px 8px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }
  .dd-review-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
  .dd-review-card__quote {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
  }
  .dd-review-card__quote::before { content: '\201C'; color: var(--gold); font-style: normal; font-size: 17px; }
  .dd-review-card__quote::after  { content: '\201D'; color: var(--gold); font-style: normal; font-size: 17px; }
  .dd-review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
  }
  .dd-review-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy-mid);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
  }
  .dd-review-card__name  { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
  .dd-review-card__event { font-size: 12px; color: rgba(255,255,255,0.4); }
  .dd-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
  }
  .dd-carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .dd-carousel-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  .dd-carousel-label { font-size: 13px; color: rgba(255,255,255,0.35); }
  .dd-carousel-cta { text-align: center; margin-top: 36px; }
  .dd-carousel-cta a {
    display: inline-block;
    border: 2px solid rgba(201,168,76,0.45);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 32px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .dd-carousel-cta a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

  /* ── FAQ ── */
  .dd-faq { background: #fff; }
  .dd-faq__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    align-items: start;
  }
  .dd-faq__intro p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }
  .dd-faq__contact { background: var(--navy); padding: 28px 24px; border-radius: 3px; margin-top: 10px; }
  .dd-faq__contact p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
  .dd-faq__contact a {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
  }
  .dd-faq__contact a:hover { background: var(--gold-light); }
  .dd-faq__list { display: flex; flex-direction: column; }
  .dd-faq__item { border-bottom: 1px solid #e8e8e8; }
  .dd-faq__item:first-child { border-top: 1px solid #e8e8e8; }
  .dd-faq__q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 40px 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    line-height: 1.4;
  }
  .dd-faq__q:hover, .dd-faq__q.active { color: var(--gold); }
  .dd-faq__q::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  .dd-faq__q.active::after { content: '−'; }
  .dd-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
  .dd-faq__a.open { max-height: 220px; padding-bottom: 18px; }
  .dd-faq__a p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

  /* ── AREAS ── */
  .dd-areas { background: var(--off-white); }
  .dd-areas__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
  }
  .dd-areas__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    list-style: none;
    margin-top: 6px;
  }
  .dd-areas__list li {
    font-size: 14px;
    color: var(--text-light);
    padding: 5px 0;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .dd-areas__list li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .dd-areas__map {
    position: relative;
    align-self: stretch;
  }
  .dd-areas__map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    display: block;
  }

  /* ── CTA BAND ── */
  .dd-cta-band {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
    position: relative;
  }
  .dd-cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
  }
  .dd-cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    margin-bottom: 12px;
  }
  .dd-cta-band p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 30px; font-weight: 300; }
  .dd-cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 2px;
    margin: 0 8px 10px;
    transition: background 0.2s, transform 0.2s;
  }
  .dd-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
  .dd-cta-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
  }
  .dd-cta-btn--outline:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

  /* ── ANIMATION ── */
  @keyframes ddFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .dd-about__inner,
    .dd-faq__inner,
    .dd-areas__inner  { grid-template-columns: 1fr; gap: 40px; }
    .dd-services__grid { grid-template-columns: repeat(2, 1fr); }
    .dd-about__stats   { grid-template-columns: repeat(2, 1fr); }
    .dd-rating-divider { display: none; }
  }
  @media (max-width: 580px) {
    .dd-services__grid { grid-template-columns: 1fr; }
    .dd-section,
    .dd-testimonials   { padding: 55px 0; }
    .dd-hero           { height: 80vh; }
    .dd-review-card    { width: 280px; padding: 22px 18px 18px; }
  }
  /* ── Full-width theme overrides ── */

  /* Nuclear option: target every possible theme wrapper by any theme */
  body.full-width-page .site,
  body.full-width-page .site-content,
  body.full-width-page #content,
  body.full-width-page #primary,
  body.full-width-page .content-area,
  body.full-width-page main,
  body.full-width-page .site-main,
  body.full-width-page article,
  body.full-width-page .hentry,
  body.full-width-page .entry,
  body.full-width-page .entry-content,
  body.full-width-page .post-inner,
  body.full-width-page .page-content,
  body.full-width-page .inner-wrap,
  body.full-width-page .wrap,
  body.full-width-page .container,
  body.full-width-page .site-inner,
  body.full-width-page .content-sidebar-wrap,
  body.full-width-page .wp-block-group,
  body.full-width-page .wp-block-post-content,
  /* Twenty Twenty-One */
  body.full-width-page .entry-header,
  body.full-width-page .post-thumbnail,
  /* Twenty Twenty-Two / Twenty Twenty-Three / FSE themes */
  body.full-width-page .wp-site-blocks,
  body.full-width-page .wp-block-template-part,
  body.full-width-page .is-layout-constrained,
  body.full-width-page .is-layout-flow,
  /* Genesis */
  body.full-width-page .content,
  body.full-width-page .content-sidebar,
  /* Divi */
  body.full-width-page #page-container,
  body.full-width-page .et_pb_section,
  /* Astra */
  body.full-width-page .ast-container,
  body.full-width-page #ast-content-id,
  /* OceanWP */
  body.full-width-page #site-content,
  body.full-width-page .content-wrapper,
  /* Kadence */
  body.full-width-page .wp-site-blocks > *,
  /* Storefront / WooCommerce */
  body.full-width-page .col-full {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
  }

  /* Also target without body class as fallback */
  .site-content,
  .entry-content,
  #content,
  #primary,
  .content-area,
  .site-main,
  .entry,
  .hentry {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Twenty Twenty-One specific — overrides its 65ch / 750px constraints */
  .entry-content > *,
  .entry-content > .alignwide,
  .entry-content > .alignfull {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* FSE / block themes constrained layout override */
  :root {
    --wp--style--global--content-size: 100% !important;
    --wp--style--global--wide-size: 100% !important;
  }

  /* Hide sidebar */
  body.full-width-page #secondary,
  body.full-width-page .widget-area,
  body.full-width-page .sidebar,
  body.full-width-page aside.sidebar,
  #secondary,
  .widget-area {
    display: none !important;
  }

  body.full-width-page {
    overflow-x: hidden;
  }