/* =========================================================
   DOTS MEDIA
   STAND DESIGN — PAGE (page-stand-design.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 / Double Decker
   page convention: one CSS file per page, nothing split out.
   ========================================================= */

.sd-page {
  background: #0a0705;
}

.sd-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
   ========================================================= */

.sd-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;
}

.sd-tag .tag-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;

  border-radius: 50%;

  background: #ff7a1a;
}

.sd-heading {
  color: #ffffff;

  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.sd-heading .accent {
  color: #ff7a1a;
}

.sd-heading-rule {
  width: 56px;
  height: 3px;

  margin-top: 22px;

  background: #ff7a1a;
  border-radius: 2px;
}

.sd-btn-primary,
.sd-btn-primary:link,
.sd-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;
}

.sd-btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35);
}

.sd-btn-secondary,
.sd-btn-secondary:link,
.sd-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;
}

.sd-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   HERO
   ========================================================= */

.sd-hero-wrap {
  position: relative;
  overflow: hidden;

  min-height: 620px;

  background: #0a0705;

  padding: 150px 60px 90px;
}

.sd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;
}

.sd-hero-bg img {
  display: block;

  /*
   * The source photo only covers the right side of the hero (the
   * left side is reserved for the heading text), so the image is
   * anchored to the right edge at a moderate width instead of being
   * stretched full-bleed — stretching a near-square crop across the
   * whole wide hero would zoom in far too much.
   */
  position: absolute;
  top: 0;
  right: 0;

  width: 62%;
  height: 100%;
  min-width: 480px;

  object-fit: cover;
  object-position: center 30%;

  opacity: 1;
}

.sd-hero-bg-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.25) 0%,
      rgba(10, 7, 5, 0.35) 55%,
      rgba(10, 7, 5, 0.75) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 7, 5, 0.97) 0%,
      rgba(10, 7, 5, 0.6) 45%,
      rgba(10, 7, 5, 0.05) 68%,
      rgba(10, 7, 5, 0) 100%
    );
}

.sd-hero {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.sd-hero-content {
  max-width: 620px;
}

.sd-hero-title {
  color: #ffffff;

  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;

  margin-bottom: 22px;
}

.sd-hero-title .accent {
  color: #ff7a1a;
}

.sd-hero-description {
  color: #c9c9c9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 480px;

  margin-bottom: 40px;
}

.sd-hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.sd-statement-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sd-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;
}

.sd-statement-left .sd-heading {
  font-size: 38px;
}

.sd-statement-right p {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.75;

  max-width: 620px;

  margin-bottom: 18px;
}

.sd-statement-tagline {
  display: block;

  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #ff7a1a;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   OUR APPROACH — "Designed With Purpose." numbered list
   ========================================================= */

.sd-approach-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;
}

.sd-approach-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 10px;
}

.sd-approach-list {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.sd-approach-row {
  display: grid;
  grid-template-columns: 70px 260px 1fr;
  align-items: center;
  gap: 40px;

  padding: 28px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sd-approach-num {
  color: #ff7a1a;

  font-size: 22px;
  font-weight: 800;
}

.sd-approach-title {
  color: #ffffff;

  font-size: 17px;
  font-weight: 700;

  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.sd-approach-desc {
  color: #9a9a9a;

  font-size: 14.5px;
  line-height: 1.7;

  max-width: 640px;
}


/* =========================================================
   THE JOURNEY — "From First Line To Final Form." 4 steps
   ========================================================= */

.sd-journey-wrap {
  position: relative;

  background: #0a0705;

  padding: 20px 60px 110px;
}

.sd-journey-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.sd-journey-row {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 18px;
}

.sd-journey-step {
  flex: 1;
  min-width: 0;
}

.sd-journey-image {
  border-radius: 12px;
  overflow: hidden;

  aspect-ratio: 1 / 1;

  background: #111111;
}

.sd-journey-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.sd-journey-step:hover .sd-journey-image img {
  transform: scale(1.06);
}

.sd-journey-caption {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 16px;
}

.sd-journey-num {
  color: #ff7a1a;

  font-size: 13px;
  font-weight: 800;
}

.sd-journey-title {
  color: #ffffff;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.sd-journey-arrow {
  flex-shrink: 0;

  color: #ff7a1a;

  font-size: 20px;

  margin-top: -30px;
}


/* =========================================================
   CAPABILITIES — "What We Design." 2-column grid
   ========================================================= */

.sd-capabilities-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sd-capabilities-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.sd-capabilities-grid {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.sd-capability-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 22px 26px;

  color: #ffffff;

  font-size: 14.5px;
  font-weight: 600;

  letter-spacing: 0.3px;
  text-transform: uppercase;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;

  transition: border-color 0.25s ease, background 0.25s ease;
}

.sd-capability-item:hover {
  border-color: rgba(255, 122, 26, 0.4);
  background: rgba(255, 122, 26, 0.05);
}

.sd-capability-arrow {
  flex-shrink: 0;

  color: #ff7a1a;

  font-size: 16px;
}


/* =========================================================
   SELECTED WORK — "Design That Makes People Stop." gallery
   ========================================================= */

.sd-gallery-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

.sd-gallery-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.sd-gallery-header .sd-heading {
  margin-bottom: 16px;
}

.sd-gallery-description {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 620px;
}

.sd-gallery {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

.sd-gallery-item {
  position: relative;

  border-radius: 14px;
  overflow: hidden;

  background: #111111;
}

.sd-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.sd-gallery-item:hover img {
  transform: scale(1.06);
}

.sd-gallery-item-1 { grid-column: span 8; grid-row: span 3; }
.sd-gallery-item-2 { grid-column: span 4; grid-row: span 3; }
.sd-gallery-item-3 { grid-column: span 4; grid-row: span 3; }
.sd-gallery-item-4 { grid-column: span 8; grid-row: span 3; }
.sd-gallery-item-5 { grid-column: span 12; grid-row: span 2; }
.sd-gallery-item-6 { grid-column: span 4; grid-row: span 2; }
.sd-gallery-item-7 { grid-column: span 4; grid-row: span 2; }
.sd-gallery-item-8 { grid-column: span 4; grid-row: span 2; }


/* =========================================================
   VISITOR JOURNEY — "Design For The Way People Move."
   ========================================================= */

.sd-visitor-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sd-visitor {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;

  align-items: center;

  padding-bottom: 50px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sd-visitor-image {
  border-radius: 14px;
  overflow: hidden;

  aspect-ratio: 6 / 5;
}

.sd-visitor-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.sd-visitor-content p {
  color: #a9a9a9;

  font-size: 15.5px;
  line-height: 1.75;

  max-width: 500px;

  margin-top: 16px;
}

.sd-visitor-content .sd-heading {
  margin-bottom: 4px;
}

.sd-visitor-steps {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 40px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;
}

.sd-visitor-step {
  color: #cfcfcf;

  font-size: 12.5px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.sd-visitor-step-arrow {
  color: #ff7a1a;

  font-size: 13px;
}


/* =========================================================
   OUR PROCESS — "Our Design Process." 5-step row
   ========================================================= */

.sd-process-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;
}

.sd-process-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.sd-process-row {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.sd-process-rule {
  width: 100%;
  height: 2px;

  margin-bottom: 22px;

  background: #ff7a1a;
}

.sd-process-num {
  display: block;

  color: #ff7a1a;

  font-size: 20px;
  font-weight: 800;

  margin-bottom: 14px;
}

.sd-process-title {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.3px;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.sd-process-desc {
  color: #9a9a9a;

  font-size: 13.5px;
  line-height: 1.6;
}


/* =========================================================
   CONTACT — "Let's Design Something Worth Visiting."
   ========================================================= */

.sd-contact-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px 130px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sd-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;
}

.sd-contact-intro {
  margin-bottom: 40px;
}

.sd-contact-intro .sd-heading {
  max-width: 560px;
  margin-bottom: 14px;
}

.sd-contact-subtitle {
  color: #a9a9a9;

  font-size: 15px;
  line-height: 1.7;

  max-width: 500px;
}


/* --- FORM --- */

.sd-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.sd-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sd-field.sd-field-full {
  grid-column: 1 / -1;
}

.sd-field label {
  color: #cfcfcf;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sd-field input,
.sd-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;
}

.sd-field input::placeholder,
.sd-field textarea::placeholder {
  color: #6a6a6a;
}

.sd-field input:focus,
.sd-field textarea:focus {
  outline: none;

  border-color: #ff7a1a;
  background: rgba(255, 122, 26, 0.05);
}

.sd-field textarea {
  min-height: 120px;
  resize: vertical;
}

.sd-services-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sd-service-option {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  color: #c9c9c9;

  font-size: 13px;
  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;
}

.sd-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;
}

.sd-service-option input:checked {
  background: #ff7a1a;
  border-color: #ff7a1a;
}

.sd-service-option:has(input:checked) {
  color: #ffffff;

  border-color: rgba(255, 122, 26, 0.5);
  background: rgba(255, 122, 26, 0.08);
}

.sd-form-submit {
  width: 100%;
  justify-content: center;

  margin-top: 6px;
}


/* --- SIDE PANEL --- */

.sd-contact-side {
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 34px 30px;
}

.sd-contact-side .sd-heading {
  font-size: 26px;

  margin-bottom: 14px;
}

.sd-contact-side-subtitle {
  color: #9a9a9a;

  font-size: 14px;
  line-height: 1.7;

  margin-bottom: 34px;
}

.sd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sd-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sd-contact-info-item:first-child {
  padding-top: 0;
  border-top: none;
}

.sd-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;
}

.sd-contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.sd-contact-info-label {
  color: #7a7a7a;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  margin-bottom: 5px;
}

.sd-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 Stand Design page — kept in this same file on purpose, instead
   of in responsive.css (same convention as every other page on this
   theme).
   ========================================================================= */

/* --- TABLET — max-width: 1100px --- */

@media (max-width: 1100px) {

    .sd-hero-wrap,
    .sd-statement-wrap,
    .sd-approach-wrap,
    .sd-journey-wrap,
    .sd-capabilities-wrap,
    .sd-gallery-wrap,
    .sd-visitor-wrap,
    .sd-process-wrap,
    .sd-contact-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    .sd-hero-content {
        max-width: 560px;
    }

    .sd-statement {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sd-approach-row {
        grid-template-columns: 50px 1fr;
        row-gap: 10px;
    }

    .sd-approach-desc {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .sd-journey-row {
        flex-wrap: wrap;
    }

    .sd-journey-step {
        flex: 1 1 calc(50% - 9px);
    }

    .sd-journey-arrow {
        display: none;
    }

    .sd-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .sd-gallery-item-1,
    .sd-gallery-item-2,
    .sd-gallery-item-3,
    .sd-gallery-item-4 {
        grid-column: span 6;
    }

    .sd-visitor {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sd-visitor-image {
        aspect-ratio: 16 / 9;
    }

    .sd-process-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

    .sd-contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sd-form {
        grid-template-columns: 1fr;
    }

    .sd-field.sd-field-full {
        grid-column: auto;
    }

}


/* --- MOBILE — max-width: 768px --- */

@media (max-width: 768px) {

    .sd-hero-wrap,
    .sd-statement-wrap,
    .sd-approach-wrap,
    .sd-journey-wrap,
    .sd-capabilities-wrap,
    .sd-gallery-wrap,
    .sd-visitor-wrap,
    .sd-process-wrap,
    .sd-contact-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sd-hero-wrap {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .sd-hero-content {
        max-width: 100%;
    }

    .sd-hero-title {
        font-size: 34px;
    }

    .sd-hero-description {
        max-width: 100%;
    }

    .sd-heading {
        font-size: 28px;
    }

    .sd-statement-left .sd-heading {
        font-size: 26px;
    }

    .sd-statement-right p {
        font-size: 14px;
        max-width: 100%;
    }

    .sd-approach-row {
        grid-template-columns: 40px 1fr;
    }

    .sd-journey-step {
        flex: 1 1 100%;
    }

    .sd-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .sd-gallery-item-1,
    .sd-gallery-item-2,
    .sd-gallery-item-3,
    .sd-gallery-item-4,
    .sd-gallery-item-6,
    .sd-gallery-item-7,
    .sd-gallery-item-8 {
        grid-column: span 1;
        grid-row: span 2;
    }

    .sd-gallery-item-5 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .sd-visitor-content p {
        max-width: 100%;
    }

    .sd-visitor-steps {
        gap: 10px;
    }

    .sd-visitor-step {
        font-size: 11px;
    }

    .sd-process-row {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* --- SMALL MOBILE — max-width: 480px --- */

@media (max-width: 480px) {

    .sd-hero-wrap,
    .sd-statement-wrap,
    .sd-approach-wrap,
    .sd-journey-wrap,
    .sd-capabilities-wrap,
    .sd-gallery-wrap,
    .sd-visitor-wrap,
    .sd-process-wrap,
    .sd-contact-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sd-hero-title {
        font-size: 28px;
    }

    .sd-heading {
        font-size: 24px;
    }

    .sd-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .sd-hero-buttons a {
        justify-content: center;
    }

    .sd-journey-step {
        flex: 1 1 calc(50% - 9px);
    }

    .sd-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .sd-gallery-item-1,
    .sd-gallery-item-2,
    .sd-gallery-item-3,
    .sd-gallery-item-4,
    .sd-gallery-item-5,
    .sd-gallery-item-6,
    .sd-gallery-item-7,
    .sd-gallery-item-8 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sd-process-row {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .sd-capability-item {
        padding: 18px 20px;

        font-size: 13px;
    }

}