/* =========================================================
   DOTS MEDIA
   DOUBLE DECKER — PAGE (page-double-decker.php)
   Desktop styling lives here at the top; every breakpoint/media
   query rule for this page is kept in this SAME file too — see the
   big "RESPONSIVE" block at the very bottom — instead of living in
   responsive.css, matching the Country Pavilion page convention:
   one CSS file per page, nothing split out.
   ========================================================= */

.dd-page {
  background: #0a0705;
}

.dd-page .dots-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}


/* =========================================================
   SHARED — tag label, section heading, accent, buttons
   ========================================================= */

.dd-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #cfcfcf !important;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.dd-tag .tag-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;

  border-radius: 50%;

  background: #ff7a1a;
}

.dd-heading {
  color: #ffffff;

  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.dd-heading .accent {
  color: #ff7a1a;
}

.dd-heading-rule {
  width: 56px;
  height: 3px;

  margin-top: 22px;

  background: #ff7a1a;
  border-radius: 2px;
}

.dd-btn-primary,
.dd-btn-primary:link,
.dd-btn-primary:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ff7a1a;
  color: #1a0f08 !important;

  font-weight: 700;
  font-size: 14px;

  padding: 17px 28px;

  border: none;
  border-radius: 999px;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dd-btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35);
}

.dd-btn-secondary,
.dd-btn-secondary:link,
.dd-btn-secondary:visited {
  display: inline-flex;
  align-items: center;

  background: transparent;
  color: #ffffff !important;

  font-weight: 700;
  font-size: 14px;

  padding: 17px 28px;

  border: 1.5px solid #3a3a3a;
  border-radius: 999px;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.dd-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   HERO
   ========================================================= */

.dd-hero-wrap {
  position: relative;
  overflow: hidden;

  min-height: 620px;

  background: #0a0705;

  padding: 150px 60px 90px;
}

.dd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;
}

.dd-hero-bg img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 40%;

  opacity: 0.8;
}

.dd-hero-bg-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.55) 0%,
      rgba(10, 7, 5, 0.72) 55%,
      rgba(10, 7, 5, 0.94) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 7, 5, 0.85) 0%,
      rgba(10, 7, 5, 0.35) 55%,
      rgba(10, 7, 5, 0.15) 100%
    );
}

.dd-hero {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.dd-hero-content {
  /* "Go Higher. Stand Out." is short enough to sit comfortably on
     one line at this size, so this only needs to cap the paragraph
     width below — not force a wrap in the title. */
  max-width: 900px;
}

.dd-hero-title {
  color: #ffffff;

  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;

  margin-bottom: 22px;
}

.dd-hero-title .accent {
  color: #ff7a1a;
}

.dd-hero-description {
  color: #c9c9c9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 480px;

  margin-bottom: 40px;
}

.dd-hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.dd-statement-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dd-statement {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;

  align-items: start;
}

.dd-statement-left .dd-heading {
  font-size: 38px;
}

.dd-statement-right p {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.75;

  max-width: 620px;

  margin-bottom: 22px;
}

.dd-statement-right p:last-of-type {
  margin-bottom: 0;
}

.dd-statement-tagline {
  display: block;

  margin-top: 26px;

  color: #ff7a1a;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   THE ADVANTAGE — 4 cards
   ========================================================= */

.dd-advantage-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;
}

.dd-advantage-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.dd-advantage-header .dd-heading {
  max-width: 760px;
}

.dd-advantage-grid {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dd-advantage-card {
  border-radius: 16px;

  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 30px 26px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.dd-advantage-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 122, 26, 0.35);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.dd-advantage-num {
  display: block;

  color: #ff7a1a;

  font-size: 22px;
  font-weight: 800;

  letter-spacing: 0.5px;

  margin-bottom: 20px;
}

.dd-advantage-title {
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.3px;
  text-transform: uppercase;

  margin-bottom: 12px;
}

.dd-advantage-desc {
  color: #9a9a9a;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   THE STRUCTURE — "Designed On Two Levels" feature photo
   ========================================================= */

.dd-structure-wrap {
  position: relative;

  background: #0a0705;

  padding: 0 60px 130px;
}

.dd-structure-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 40px;
}

.dd-structure-frame {
  position: relative;

  max-width: 1400px;
  margin: 0 auto;

  border-radius: 20px;
  overflow: hidden;

  height: 460px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.dd-structure-frame img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  /* Source photo is now the exact Figma structure crop (781x284,
     landscape), so a simple centered fit is all that's needed. */
  object-position: center;
}

.dd-structure-callout {
  position: absolute;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  padding: 8px 14px;

  background: rgba(10, 7, 5, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;

  backdrop-filter: blur(4px);
}

.dd-structure-callout-tl {
  top: 30px;
  left: 30px;
}

.dd-structure-callout-tr {
  top: 30px;
  right: 30px;
}

.dd-structure-callout-bl {
  bottom: 30px;
  left: 30px;
}

.dd-structure-callout-br {
  bottom: 30px;
  right: 30px;
}


/* =========================================================
   LEVEL BREAKDOWN — Ground Floor / Upper Floor
   ========================================================= */

.dd-levels-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dd-levels {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;

  align-items: center;
}

.dd-level-title {
  color: #ffffff;

  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;

  margin-bottom: 8px;
}

.dd-level-subtitle {
  color: #8a8a8a;

  font-size: 14px;

  margin-bottom: 22px;
}

.dd-level-list {
  list-style: none;
}

.dd-level-list li {
  position: relative;

  padding-left: 18px;

  color: #a9a9a9;

  font-size: 14.5px;
  line-height: 2.3;
}

.dd-level-list li::before {
  content: '';

  position: absolute;
  left: 0;
  top: 12px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #ff7a1a;
}

.dd-level-02 {
  text-align: right;
}

.dd-level-02 .dd-tag {
  flex-direction: row-reverse;
}

.dd-level-02 .dd-level-list li {
  padding-left: 0;
  padding-right: 18px;
}

.dd-level-02 .dd-level-list li::before {
  left: auto;
  right: 0;
}

.dd-levels-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dd-levels-wireframe {
  display: block;

  width: 100%;
  max-width: 520px;

  /*
   * The source graphic's own backdrop is a mid-grey glow, not pure
   * black, so placed at full opacity it reads as a hard-edged card
   * against the section's near-black background. A wide radial mask
   * fades that glow out to transparent well before the edges, so
   * the wireframe blends straight into the page background — the
   * same way it sits directly in the section background in Figma,
   * with no visible box.
   */
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 70% at center, #000 20%, transparent 78%);
}


/* =========================================================
   PORTFOLIO — "Built Up. Built To Impact." gallery
   ========================================================= */

.dd-gallery-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px 130px;

  overflow: hidden;
}

.dd-gallery-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.dd-gallery-header .dd-heading {
  margin-bottom: 16px;
}

.dd-gallery-description {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 620px;
}

.dd-gallery {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 16px;
}

.dd-gallery-item {
  position: relative;

  border-radius: 14px;
  overflow: hidden;

  background: #111111;
}

.dd-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.dd-gallery-item:hover img {
  transform: scale(1.06);
}

.dd-gallery-item-1 { grid-column: span 6; grid-row: span 3; }
.dd-gallery-item-2 { grid-column: span 6; grid-row: span 3; }
.dd-gallery-item-3 { grid-column: span 6; grid-row: span 3; }
.dd-gallery-item-4 { grid-column: span 6; grid-row: span 3; }
.dd-gallery-item-5 { grid-column: span 12; grid-row: span 2; }
.dd-gallery-item-6 { grid-column: span 4; grid-row: span 2; }
.dd-gallery-item-7 { grid-column: span 4; grid-row: span 2; }
.dd-gallery-item-8 { grid-column: span 4; grid-row: span 2; }


/* =========================================================
   OUR PROCESS — "From Structure To Show Floor." 5-step row
   ========================================================= */

.dd-process-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;
}

.dd-process-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.dd-process-row {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.dd-process-rule {
  width: 100%;
  height: 2px;

  margin-bottom: 22px;

  background: #ff7a1a;
}

.dd-process-num {
  display: block;

  color: #ff7a1a;

  font-size: 20px;
  font-weight: 800;

  margin-bottom: 14px;
}

.dd-process-title {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.3px;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.dd-process-desc {
  color: #9a9a9a;

  font-size: 13.5px;
  line-height: 1.6;
}


/* =========================================================
   CONTACT — "Ready To Go Higher?"
   ========================================================= */

.dd-contact-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px 130px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dd-contact {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;

  align-items: start;
}

.dd-contact-intro {
  margin-bottom: 40px;
}

.dd-contact-intro .dd-heading {
  max-width: 560px;
  margin-bottom: 14px;
}

.dd-contact-subtitle {
  color: #a9a9a9;

  font-size: 15px;
  line-height: 1.7;

  max-width: 500px;
}


/* --- FORM --- */

.dd-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.dd-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dd-field.dd-field-full {
  grid-column: 1 / -1;
}

.dd-field label {
  color: #cfcfcf;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.dd-field input,
.dd-field textarea {
  width: 100%;

  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;

  font-family: inherit;
  font-size: 14px;

  padding: 13px 16px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;

  transition: border-color 0.25s ease, background 0.25s ease;
}

.dd-field input::placeholder,
.dd-field textarea::placeholder {
  color: #6a6a6a;
}

.dd-field input:focus,
.dd-field textarea:focus {
  outline: none;

  border-color: #ff7a1a;
  background: rgba(255, 122, 26, 0.05);
}

.dd-field textarea {
  min-height: 120px;
  resize: vertical;
}

.dd-services-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dd-service-option {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  color: #c9c9c9;

  font-size: 130px;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  cursor: pointer;

  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.dd-service-option input {
  appearance: none;
  -webkit-appearance: none;

  width: 14px;
  height: 14px;
  flex-shrink: 0;

  border: 1.5px solid #6a6a6a;
  border-radius: 3px;

  cursor: pointer;

  transition: background 0.2s ease, border-color 0.2s ease;
}

.dd-service-option input:checked {
  background: #ff7a1a;
  border-color: #ff7a1a;
}

.dd-service-option:has(input:checked) {
  color: #ffffff;

  border-color: rgba(255, 122, 26, 0.5);
  background: rgba(255, 122, 26, 0.08);
}

.dd-form-submit {
  width: 100%;
  justify-content: center;

  margin-top: 6px;
}


/* --- SIDE PANEL --- */

.dd-contact-side {
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 34px 30px;
}

.dd-contact-side .dd-heading {
  font-size: 26px;

  margin-bottom: 14px;
}

.dd-contact-side-subtitle {
  color: #9a9a9a;

  font-size: 14px;
  line-height: 1.7;

  margin-bottom: 34px;
}

.dd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dd-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dd-contact-info-item:first-child {
  padding-top: 0;
  border-top: none;
}

.dd-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(255, 122, 26, 0.1);
  color: #ff7a1a;
}

.dd-contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.dd-contact-info-label {
  color: #7a7a7a;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  margin-bottom: 5px;
}

.dd-contact-info-value {
  color: #ffffff;

  font-size: 14.5px;
  font-weight: 600;
}


/* =========================================================================
   RESPONSIVE
   Everything below this line is the responsive (media-query) CSS for
   the Double Decker page — kept in this same file on purpose, instead
   of in responsive.css (same convention as Country Pavilion). Hero,
   the advantage cards, the level breakdown, the process row and every
   2-column layout on this page drop to fewer columns starting at
   Tablet; the gallery collapses to a simple 2-up (then 1-up) grid
   since the desktop bento spans don't translate to narrow screens.
   ========================================================================= */

/* --- TABLET — max-width: 1100px --- */

@media (max-width: 1100px) {

    .dd-hero-wrap,
    .dd-statement-wrap,
    .dd-advantage-wrap,
    .dd-structure-wrap,
    .dd-levels-wrap,
    .dd-gallery-wrap,
    .dd-process-wrap,
    .dd-contact-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    .dd-hero-content {
        max-width: 620px;
    }

    .dd-statement {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dd-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dd-structure-frame {
        height: 360px;
    }

    .dd-levels {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .dd-level-02 {
        text-align: left;
    }

    .dd-level-02 .dd-tag {
        flex-direction: row;
    }

    .dd-level-02 .dd-level-list li {
        padding-left: 18px;
        padding-right: 0;
    }

    .dd-level-02 .dd-level-list li::before {
        left: 0;
        right: auto;
    }

    .dd-levels-visual {
        order: -1;
    }

    .dd-levels-visual img {
        max-width: 280px;
    }

    .dd-process-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

    .dd-contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

/* --- MOBILE — max-width: 768px --- */

@media (max-width: 768px) {

    .dd-hero-wrap {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .dd-hero-content {
        max-width: 100%;
    }

    .dd-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .dd-hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .dd-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .dd-btn-primary,
    .dd-btn-secondary {
        justify-content: center;
    }

    .dd-statement-wrap,
    .dd-advantage-wrap,
    .dd-levels-wrap,
    .dd-gallery-wrap,
    .dd-process-wrap,
    .dd-contact-wrap {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .dd-structure-wrap {
        padding-bottom: 70px;
    }

    .dd-heading {
        font-size: 28px;
    }

    .dd-statement-left .dd-heading {
        font-size: 28px;
    }

    .dd-statement-right p {
        font-size: 14px;
    }

    .dd-advantage-grid {
        grid-template-columns: 1fr;
    }

    .dd-structure-frame {
        height: 260px;
        border-radius: 14px;
    }

    .dd-structure-callout {
        font-size: 9px;
        padding: 6px 10px;
    }

    .dd-structure-callout-tl,
    .dd-structure-callout-tr {
        top: 16px;
    }

    .dd-structure-callout-bl,
    .dd-structure-callout-br {
        bottom: 16px;
    }

    .dd-structure-callout-tl,
    .dd-structure-callout-bl {
        left: 16px;
    }

    .dd-structure-callout-tr,
    .dd-structure-callout-br {
        right: 16px;
    }

    /* The desktop bento spans (6/6/6/6/12/4/4/4 columns) only work at
       wide widths — collapse to a simple, evenly-sized 2-up grid so
       nothing gets crushed into a sliver on a phone. */
    .dd-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .dd-gallery-item-1,
    .dd-gallery-item-2,
    .dd-gallery-item-3,
    .dd-gallery-item-4,
    .dd-gallery-item-5,
    .dd-gallery-item-6,
    .dd-gallery-item-7,
    .dd-gallery-item-8 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .dd-gallery-item-5 {
        grid-column: span 2;
    }

    .dd-process-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }

    .dd-form {
        grid-template-columns: 1fr;
    }

    .dd-contact-side {
        padding: 28px 22px;
    }

}

/* --- SMALL MOBILE — max-width: 480px --- */

@media (max-width: 480px) {

    .dd-hero-wrap,
    .dd-statement-wrap,
    .dd-advantage-wrap,
    .dd-structure-wrap,
    .dd-levels-wrap,
    .dd-gallery-wrap,
    .dd-process-wrap,
    .dd-contact-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .dd-hero-title {
        font-size: 30px;
    }

    .dd-heading {
        font-size: 24px;
    }

    .dd-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .dd-gallery-item-5 {
        grid-column: span 1;
    }

    .dd-process-row {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

}


/* --- END RESPONSIVE --- */