/* =====================================================
   DECO STUDIO — CUSTOM MODERNIZATION LAYER
   Created: May 2026
   Safe override on top of theme.css — never edit theme.css directly.
   All selectors are scoped to avoid collisions.
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --ds-green:        #93d505;
  --ds-green-dark:   #7ab804;
  --ds-green-glow:   rgba(147, 213, 5, 0.18);
  --ds-dark:         #151b26;
  --ds-dark-2:       #1e2533;
  --ds-radius:       12px;
  --ds-shadow:       0 4px 24px rgba(0, 0, 0, 0.07);
  --ds-shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.14);
  --ds-ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ds-transition:   all 0.25s var(--ds-ease);
}

/* ══════════════════════════════════════
   NAVBAR — Dark glass bar (premium agency style)
══════════════════════════════════════ */

/* Main bar: dark brand colour + subtle glass blur */
#header .u-header__section {
  background: rgba(21, 27, 38, 0.92) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border-bottom: 1px solid rgba(147, 213, 5, 0.15) !important;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28) !important;
  transition: background 0.35s ease, box-shadow 0.35s ease !important;
}

/* Slightly more opaque / sharper shadow when scrolled */
#header.u-header--scrolled .u-header__section {
  background: rgba(21, 27, 38, 0.97) !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.40) !important;
}

/* Nav link typography */
#header .u-header__nav-link {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  color: rgba(255, 255, 255, 0.82) !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
  transition: color 0.18s ease !important;
}
#header .u-header__nav-link:hover,
#header .u-header__nav-link:focus {
  color: var(--ds-green) !important;
  background: transparent !important;
}
#header .u-header__nav-link .fa-angle-down {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.7rem !important;
  margin-left: 3px;
}

/* Active page link */
#header .nav-item.active > .u-header__nav-link {
  color: var(--ds-green) !important;
}

/* Dropdown — dark glass, rounded corners */
#header .u-header__sub-menu {
  background: rgba(21, 27, 38, 0.97) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45) !important;
  padding: 0.5rem 0 !important;
  overflow: visible; /* must be visible — hidden clips nested flyout sub-menus */
}
#header .u-header__sub-menu-nav-link {
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.52rem 1.25rem !important;
  border-radius: 0 !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
#header .u-header__sub-menu-nav-link:hover {
  background: rgba(147, 213, 5, 0.12) !important;
  color: var(--ds-green) !important;
}

/* ── Nested flyout sub-menus (Signwriting / Signs / Glass Manifestation) ──
   The base hs.megamenu.css starts every .hs-sub-menu with visibility:hidden.
   Visibility is normally restored by JS adding .hs-sub-menu-opened, but that
   is unreliable for nested levels.  This pure-CSS rule makes the direct-child
   flyout visible whenever its parent <li> is hovered — no JS required. */
#header .hs-menu-initialized:not(.hs-mobile-state) .hs-has-sub-menu:hover > .hs-sub-menu {
  visibility: visible !important;
  display: block !important;
}

/* Dropdown arrow icons */
#header .u-header__sub-menu-nav-link .fa-angle-right {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.7rem !important;
}

/* Dropdown divider between list items */
#header .u-header__sub-menu .dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Social icons in nav */
#header .nav-item .nav-link i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.18s ease !important;
}
#header .nav-item .nav-link:hover i {
  color: var(--ds-green) !important;
}

/* Hamburger icon on mobile — white */
#header .u-hamburger__inner,
#header .u-hamburger__inner::before,
#header .u-hamburger__inner::after {
  background-color: #fff !important;
}

/* Call button — green pill stands out against dark bar */
#header .btn-primary {
  background: var(--ds-green) !important;
  border-color: var(--ds-green) !important;
  color: var(--ds-dark) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.3rem !important;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 0 rgba(147, 213, 5, 0);
  transition: var(--ds-transition), box-shadow 0.3s ease !important;
}
#header .btn-primary:hover {
  background: var(--ds-green-dark) !important;
  border-color: var(--ds-green-dark) !important;
  box-shadow: 0 0 18px rgba(147, 213, 5, 0.40) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  border-radius: var(--ds-radius) !important;
  border: none !important;
  box-shadow: var(--ds-shadow) !important;
  transition: var(--ds-transition) !important;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ds-shadow-hover) !important;
}
.card-body {
  padding: 1.75rem !important;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: var(--ds-transition) !important;
  padding: 0.65rem 1.8rem !important;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14) !important;
}
.btn-primary {
  background: var(--ds-green) !important;
  border-color: var(--ds-green) !important;
  color: #151b26 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--ds-green-dark) !important;
  border-color: var(--ds-green-dark) !important;
  color: #151b26 !important;
}
.btn-success {
  background: var(--ds-green) !important;
  border-color: var(--ds-green) !important;
  color: #151b26 !important;
}
.btn-success:hover {
  background: var(--ds-green-dark) !important;
  border-color: var(--ds-green-dark) !important;
}

/* ══════════════════════════════════════
   FORM CONTROLS — Global
══════════════════════════════════════ */
.form-control {
  border-radius: 8px !important;
  border: 2px solid #e4e9f0 !important;
  padding: 0.72rem 1rem !important;
  font-size: 0.95rem !important;
  background-color: #f8fafc !important;
  transition: var(--ds-transition) !important;
  color: #111 !important;
}
.form-control:focus {
  border-color: var(--ds-green) !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 3px var(--ds-green-glow) !important;
  outline: none !important;
}
.form-control::placeholder {
  color: #b0bac6 !important;
}
select.form-control {
  appearance: auto;
}

/* ══════════════════════════════════════
   SECTION LABEL CHIP
══════════════════════════════════════ */
.ds-chip {
  display: inline-block;
  background: var(--ds-green);
  color: var(--ds-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

/* ══════════════════════════════════════
   CONTACT SECTION — Dark / Light split
══════════════════════════════════════ */
/* ══════════════════════════════════════
   CONTACT INFO SECTION
   4-col centred layout
══════════════════════════════════════ */
.ds-cinfo-section {
  background: #f8f9fa;
  padding: 5rem 0 4.5rem;
}

.ds-cinfo-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ds-dark);
  margin: 0 0 0.6rem;
}

.ds-cinfo-sub {
  color: #7a8595;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Column padding */
.ds-cinfo-col {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Large icon */
.ds-cinfo-icon-wrap {
  font-size: 2.4rem;
  color: var(--ds-dark);
  margin-bottom: 1.1rem;
  display: block;
  transition: color 0.22s ease, transform 0.22s ease;
}

.ds-cinfo-col:hover .ds-cinfo-icon-wrap {
  color: var(--ds-green);
  transform: translateY(-4px);
}

/* Uppercase label */
.ds-cinfo-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ds-dark);
  margin-bottom: 0.75rem;
}

/* Clickable phone / email */
.ds-cinfo-link {
  font-size: 0.97rem;
  color: #4a5568;
  text-decoration: none !important;
  line-height: 1.8;
  transition: color 0.18s ease;
}

.ds-cinfo-link:hover { color: var(--ds-green) !important; }

/* Opening hours text */
.ds-cinfo-hours {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.8;
}

/* Social icons row */
.ds-cinfo-socials {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  align-items: center;
}

.ds-cinfo-socials a {
  font-size: 1.45rem;
  color: var(--ds-dark);
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
  display: inline-flex;
}

.ds-cinfo-socials a:hover {
  color: var(--ds-green);
  transform: translateY(-3px);
  text-decoration: none;
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════ */
.ds-float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  transition: var(--ds-transition);
  gap: 0;
}
.ds-float-wa .ds-wa-text { display: none; }
.ds-float-wa:hover {
  background: #1daa53;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
@media (min-width: 768px) {
  .ds-float-wa {
    width: auto;
    height: 48px;
    border-radius: 50px;
    padding: 0 1.3rem 0 1rem;
    gap: 0.55rem;
    font-size: 1.2rem;
  }
  .ds-float-wa .ds-wa-text {
    display: inline;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════
   HERO — immersive typography treatment
══════════════════════════════════════ */

/* Small green eyebrow line */
.ds-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ds-green);
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

/* Main H1 */
.ds-hero-h1 {
  font-size: clamp(38px, 5.5vw, 68px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.6rem !important;
}

/* "in Bristol" — green highlight */
.ds-hero-accent {
  color: var(--ds-green);
  font-weight: 900;
  display: inline-block;
}

/* Short green rule between heading and body */
.ds-hero-rule {
  width: 52px;
  height: 3px;
  background: var(--ds-green);
  border-radius: 3px;
  margin: 0 auto 1.6rem;
  box-shadow: 0 0 12px rgba(147, 213, 5, 0.5);
}

/* Body copy — lighter weight, readable */
.ds-hero-desc {
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Inline links in hero — green underline */
.ds-hero-link {
  color: rgba(255, 255, 255, 0.90) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(147, 213, 5, 0.55) !important;
  text-underline-offset: 3px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.ds-hero-link:hover {
  color: var(--ds-green) !important;
  text-decoration-color: var(--ds-green) !important;
}

/* ══════════════════════════════════════
   ABOUT US — Dark cinematic split
══════════════════════════════════════ */
.ds-about-dark {
  display: flex;
  flex-wrap: wrap;
  background: var(--ds-dark);
  overflow: hidden;
}

/* Photo column — full-height, edge-to-edge */
.ds-about-photo-col {
  flex: 0 0 100%;
  max-height: 380px;
  overflow: hidden;
  position: relative;
}
.ds-about-photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ds-dark) 100%);
}
.ds-about-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.ds-about-dark:hover .ds-about-photo-col img {
  transform: scale(1.03);
}

/* Text column */
.ds-about-text-col {
  flex: 0 0 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Desktop: side by side */
@media (min-width: 992px) {
  .ds-about-photo-col {
    flex: 0 0 52%;
    max-height: none;
    min-height: 500px;
  }
  .ds-about-photo-col::after {
    background: linear-gradient(to right, transparent 55%, var(--ds-dark) 98%);
  }
  .ds-about-text-col {
    flex: 0 0 48%;
    padding: 5rem 4rem 5rem 3rem;
  }
}

.ds-about-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem !important;
}

/* "Deco Studio" brand name highlight in heading */
.ds-about-brand {
  color: var(--ds-green);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(147, 213, 5, 0.4);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.ds-about-body {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Stats row */
.ds-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  margin-top: 0.5rem;
}
.ds-stat {
  display: flex;
  flex-direction: column;
}
.ds-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ds-green);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ds-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.3rem;
}

/* CTA button */
.ds-about-btn {
  align-self: flex-start;
}

/* ══════════════════════════════════════
   WATERMARK LOGO
══════════════════════════════════════ */
.ds-watermark-section {
  position: relative;
  overflow: hidden; /* prevents watermark from causing horizontal scroll */
}
.ds-watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ds-dark);
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  /* Fade: D invisible → E partial → C/O full */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.7) 50%, black 75%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.7) 50%, black 75%);
}

/* Services card — glass so DECO watermark shows through */
.ds-services-card {
  background: rgba(248, 249, 250, 0.25) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
}
.ds-watermark-section .row {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   SERVICE PAGE CTA BAR
══════════════════════════════════════ */
.ds-service-cta {
  background: linear-gradient(135deg, var(--ds-dark) 0%, var(--ds-dark-2) 100%);
  border-top: 3px solid var(--ds-green);
  padding: 3rem 0;
  margin-top: 3rem;
}
.ds-service-cta .ds-cta-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.ds-service-cta .ds-cta-sub {
  color: #8c98a4;
  margin-bottom: 0;
  font-size: 0.95rem;
}
.ds-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .ds-cta-actions {
    margin-top: 0;
    justify-content: flex-end;
  }
}
.ds-btn-cta-call {
  background: var(--ds-green) !important;
  color: var(--ds-dark) !important;
  font-weight: 700 !important;
  border-color: var(--ds-green) !important;
}
.ds-btn-cta-call:hover {
  background: var(--ds-green-dark) !important;
  border-color: var(--ds-green-dark) !important;
  color: var(--ds-dark) !important;
}
.ds-btn-cta-quote {
  border: 2px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
  background: transparent !important;
}
.ds-btn-cta-quote:hover {
  border-color: var(--ds-green) !important;
  color: var(--ds-green) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════════
   SERVICE GRID CARDS — "We can help you with"
══════════════════════════════════════ */
.ds-svc-card {
  position: relative;
  padding: 2rem 1.75rem 1.6rem;
  background: #fff;
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  transition: var(--ds-transition);
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Green sweep line from left on hover */
.ds-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ds-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s var(--ds-ease);
  border-radius: 3px 3px 0 0;
}
.ds-svc-card:hover::before,
.ds-svc-card:focus::before {
  transform: scaleX(1);
}
.ds-svc-card:hover,
.ds-svc-card:focus {
  transform: translateY(-7px);
  box-shadow: var(--ds-shadow-hover);
  color: inherit;
}

/* Icon circle */
.ds-svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ds-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-green-dark);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ds-svc-card:hover .ds-svc-icon {
  background: var(--ds-green);
  color: var(--ds-dark);
  transform: scale(1.08) rotate(-4deg);
}

/* Title */
.ds-svc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ds-dark);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

/* Body copy */
.ds-svc-body {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.4rem;
}

/* "Explore →" link at bottom */
.ds-svc-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ds-green-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none !important;
  transition: gap 0.22s ease, color 0.22s ease;
}
.ds-svc-link .ds-arrow {
  font-size: 0.8rem;
  transition: transform 0.22s ease;
}
.ds-svc-card:hover .ds-svc-link {
  color: var(--ds-green);
}
.ds-svc-card:hover .ds-svc-link .ds-arrow {
  transform: translateX(4px);
}

/* Section wrapper — fades from light into the dark area section below */
.ds-svc-grid-section {
  background: linear-gradient(180deg, #f0f2f5 0%, #eaecf0 60%, #1c2332 100%);
}

/* Modifier: when preceded by a dark section (e.g. About page studio split)
   — entry starts dark so there's no white flash between two dark sections */
.ds-svc-grid-section.ds-dark-entry {
  background: linear-gradient(180deg,
    var(--ds-dark)  0%,
    #dee1e8        18%,
    #eaecf0        60%,
    #1c2332       100%);
}

/* "View all" link row at the bottom of the grid */
.ds-svc-all-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
}
.ds-svc-all-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}
.ds-svc-all-btn {
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: transparent !important;
  font-size: 0.84rem !important;
  padding: 0.55rem 1.6rem !important;
  transition: var(--ds-transition) !important;
}
.ds-svc-all-btn:hover {
  border-color: var(--ds-green) !important;
  color: var(--ds-green) !important;
  background: rgba(147, 213, 5, 0.06) !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════════
   TYPOGRAPHY POLISH
══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.01em;
}
p {
  line-height: 1.75;
}

/* ══════════════════════════════════════
   INNER PAGE HERO — shorter than homepage (about, services)
══════════════════════════════════════ */
.ds-inner-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .ds-inner-hero { min-height: 460px; }
}
.ds-inner-hero-content {
  padding-top: 8rem;   /* clear fixed navbar */
  padding-bottom: 4rem;
  text-align: center;
}

/* ══════════════════════════════════════
   WHY CHOOSE US — Dark dot-grid section
══════════════════════════════════════ */
.ds-why-section {
  background: var(--ds-dark);
  position: relative;
  overflow: hidden;
}
.ds-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.ds-why-section .container { position: relative; z-index: 1; }

/* Reason card */
.ds-why-card { padding: 0; }

.ds-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(147, 213, 5, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-green);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ds-why-card:hover .ds-why-icon {
  background: rgba(147, 213, 5, 0.18);
  transform: scale(1.08);
}
.ds-why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.ds-why-body {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.72;
  margin: 0;
}

/* ══════════════════════════════════════
   SERVICE AREA SECTION — Dark with dot grid + chips
══════════════════════════════════════ */
.ds-area-section {
  background: var(--ds-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid — pure CSS, no image */
.ds-area-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* Green glow blob — bottom right atmosphere */
.ds-area-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147, 213, 5, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ds-area-section .container {
  position: relative;
  z-index: 1;
}

/* Heading */
.ds-area-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem !important;
}

/* Body copy */
.ds-area-body {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Chips grid */
.ds-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Individual location chip */
.ds-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  transition: var(--ds-transition);
  cursor: default;
}
.ds-area-chip:hover {
  background: rgba(147, 213, 5, 0.1);
  border-color: rgba(147, 213, 5, 0.35);
  color: #fff;
  transform: translateY(-2px);
}
.ds-area-chip-pin {
  color: var(--ds-green);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* "We come to you" — full-width featured chip */
.ds-area-chip--cta {
  width: 100%;
  justify-content: center;
  background: rgba(147, 213, 5, 0.08);
  border-color: rgba(147, 213, 5, 0.28);
  color: var(--ds-green);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.ds-area-chip--cta:hover {
  background: rgba(147, 213, 5, 0.16);
  border-color: rgba(147, 213, 5, 0.55);
  color: var(--ds-green);
}

/* ══════════════════════════════════════
   FOOTER — Modern dark premium
══════════════════════════════════════ */

/* Wrapper — solid dark, no hero image */
.ds-footer {
  background: var(--ds-dark);
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}

/* Green gradient accent line along the top */
.ds-footer-accent {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--ds-green) 25%,
    var(--ds-green) 75%,
    transparent 100%);
}

/* Main grid area — only set vertical padding, never horizontal
   (horizontal is handled by Bootstrap .container = 15px each side) */
.ds-footer-main {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

/* Typographic wordmark — always crisp on dark, no image needed */
.ds-footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  text-decoration: none !important;
  margin-bottom: 1.2rem;
  line-height: 1;
}
.ds-fw-deco {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.2s ease;
}
.ds-fw-studio {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ds-green);
  padding-bottom: 0.1em;
  transition: color 0.2s ease;
}
.ds-footer-wordmark:hover .ds-fw-deco { color: var(--ds-green); }
.ds-footer-wordmark:hover .ds-fw-studio { color: #fff; }

/* Studio tagline under logo */
.ds-footer-tagline {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 230px;
  margin-bottom: 1.6rem;
}

/* Column heading — small caps with icon */
.ds-footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ds-footer-heading-icon {
  color: var(--ds-green);
  font-size: 0.72rem;
}

/* Link lists */
.ds-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds-footer-list li {
  margin-bottom: 0.55rem;
}
.ds-footer-list a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: inline-block;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.ds-footer-list a:hover {
  color: var(--ds-green);
  padding-left: 5px;
}

/* Contact items — icon circle + text */
.ds-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.ds-footer-contact-item .ds-info-icon {
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ds-footer-contact-item a,
.ds-footer-contact-item p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  line-height: 1.65;
  margin: 0;
}
.ds-footer-contact-item a:hover {
  color: var(--ds-green);
}

/* Social icons */
.ds-footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ds-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--ds-transition);
}
.ds-footer-social a:hover {
  background: var(--ds-green);
  border-color: var(--ds-green);
  color: var(--ds-dark);
  transform: translateY(-3px);
}

/* Partners strip */
.ds-footer-partners {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.2rem 0 2rem;
}
.ds-partners-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  margin-bottom: 1.4rem;
}
.ds-partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Individual partner tile */
.ds-partner-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ds-radius);
  text-decoration: none !important;
  min-width: 110px;
  transition: var(--ds-transition);
}
.ds-partner-tile:hover {
  background: rgba(147, 213, 5, 0.07);
  border-color: rgba(147, 213, 5, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.ds-partner-tile img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.ds-partner-tile:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.ds-partner-tile span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  transition: color 0.25s ease;
}
.ds-partner-tile:hover span {
  color: var(--ds-green);
}

/* Bottom copyright bar */
.ds-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.3rem 0;
}
.ds-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .ds-footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.ds-footer-bottom small,
.ds-footer-bottom small a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
}
.ds-footer-bottom small b { color: rgba(255, 255, 255, 0.5); }
.ds-footer-bottom small a:hover { color: var(--ds-green); text-decoration: none; }

/* Legal links in bottom bar */
.ds-footer-legal {
  display: flex;
  gap: 1.25rem;
}
.ds-footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.18s ease;
}
.ds-footer-legal a:hover { color: var(--ds-green); }

/* ══════════════════════════════════════
   SMALL UTILITY TWEAKS
══════════════════════════════════════ */
/* Smoother image sliders */
.js-slick-carousel img {
  border-radius: var(--ds-radius);
}

/* Badge/label modernization */
.u-label--success {
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
}

/* Better list group in footer */
.list-group-transparent .list-group-item {
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.list-group-transparent .list-group-item:hover {
  padding-left: 0.5rem;
}

/* ══════════════════════════════════════
   MOBILE — ≤767px
   All sections: tighter spacing, corrected gradients
══════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Hero ── */
  .ds-hero-h1 {
    font-size: clamp(32px, 9vw, 52px) !important;
  }
  .ds-hero-desc {
    font-size: 0.97rem !important;
  }

  /* ── About split: photo gradient must fade to bottom on mobile ── */
  /* On mobile the photo sits above the text, so the right-to-dark
     gradient makes no sense — replace with top-to-dark bottom fade */
  .ds-about-photo-col::after {
    background: linear-gradient(to bottom, transparent 40%, var(--ds-dark) 100%) !important;
  }
  .ds-about-photo-col {
    max-height: 320px;
  }
  .ds-about-text-col {
    padding: 2rem 1.5rem 2.5rem;
  }
  .ds-about-heading {
    font-size: clamp(1.35rem, 6vw, 1.8rem) !important;
  }

  /* ── Stats row: tighter gap, smaller number ── */
  .ds-stats-row {
    gap: 1.2rem;
    padding-top: 1.4rem;
  }
  .ds-stat-num {
    font-size: 1.8rem;
  }
  .ds-stat-label {
    font-size: 0.65rem;
  }

  /* ── Service grid cards: tighter padding ── */
  .ds-svc-card {
    padding: 1.4rem 1.25rem 1.1rem;
  }
  .ds-svc-icon {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
  }
  .ds-svc-title {
    font-size: 0.97rem;
  }
  .ds-svc-body {
    font-size: 0.86rem;
  }

  /* ── Area chips: smaller text, tighter padding ── */
  .ds-area-chip {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }
  .ds-area-heading {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
  }

  /* ── Service area section: remove pseudo-element overflow issues ── */
  .ds-area-section::after {
    width: 250px;
    height: 250px;
    bottom: -40px;
    right: -40px;
  }

  /* ── Footer: tighter top padding (horizontal stays with Bootstrap container) ── */
  .ds-footer-main {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
  .ds-footer-tagline {
    max-width: 100%;
    margin-bottom: 1.2rem;
  }

  /* ── Footer columns: collapse Services + Navigate to stacked on xs ── */
  /* (handled by col-12 override below in the xs block) */
  .ds-footer-list a {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .ds-footer-list li {
    margin-bottom: 0.45rem;
  }

  /* ── Footer contact items: smaller icon circles ── */
  .ds-footer-contact-item .ds-info-icon {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }
  .ds-footer-contact-item a,
  .ds-footer-contact-item p {
    font-size: 0.85rem;
  }

  /* ── Footer social icons: smaller ── */
  .ds-footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  /* ── Partner tiles: more compact row ── */
  .ds-partner-tile {
    min-width: 88px;
    padding: 0.7rem 0.9rem;
  }
  .ds-partner-tile img {
    width: 40px;
    height: 40px;
  }

  /* ── CTA service bar ── */
  .ds-service-cta {
    text-align: center;
    padding: 2rem 0;
  }
  .ds-cta-actions {
    justify-content: center;
  }

  /* ── Contact section ── */
  .ds-cinfo-section { padding: 3rem 0 2.5rem; }
  .ds-cinfo-heading { font-size: 1.9rem; }
}

/* ══════════════════════════════════════
   EXTRA SMALL — ≤575px
   XS phones: 320px–575px
══════════════════════════════════════ */
@media (max-width: 575px) {

  /* Wordmark: slightly smaller */
  .ds-fw-deco {
    font-size: 1.3rem;
  }
  .ds-fw-studio {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  /* Service grid: full-width cards on xs */
  .ds-svc-card {
    padding: 1.25rem 1.1rem 1rem;
  }

  /* Stats: 3 across even on xs — shrink further */
  .ds-stat-num {
    font-size: 1.55rem;
  }

  /* Area chips grid: limit to 2 chips per row naturally */
  .ds-area-chip {
    font-size: 0.76rem;
    padding: 0.45rem 0.75rem;
    gap: 0.4rem;
  }

  /* Hero eyebrow: smaller tracking */
  .ds-hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  /* Watermark: allow smaller than 100px on tiny screens */
  .ds-watermark-text {
    font-size: clamp(60px, 22vw, 320px);
  }

  /* Partners row: 2 tiles side-by-side on xs */
  .ds-partners-row {
    gap: 0.6rem;
  }
  .ds-partner-tile {
    min-width: calc(50% - 0.3rem);
    max-width: calc(50% - 0.3rem);
  }
}
