/* DOTS Mobile Estimates — dark editorial layout */

*, *:before, *:after { box-sizing: border-box; }
html, body, div, span, h1, h2, h3, h4, p, a, em, strong, img, ul, li,
label, form, input, select, textarea, button, section, header, footer, nav {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
section, header, footer, nav { display: block; }
ul { list-style: none; }

:root {
  --viewport-height: 100vh;
  --background-height: 100vh;
  --padding-horizontal: 2.5rem;
  --padding-vertical: 2rem;
  --width: 52rem;
}

html { font-size: 18pt; }

body {
  line-height: 1.0;
  min-height: var(--viewport-height);
  min-width: 320px;
  overflow-x: hidden;
  word-wrap: break-word;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #FFFFFF;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
}

body:before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: var(--background-height);
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(4, 8, 16, 0.82), rgba(4, 8, 16, 0.94)),
                    url('../img/dots_hero_bg-DdYGzSxCPWYiCwXFm9NS6D.webp');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000000;
}

a { color: inherit; text-decoration: underline; transition: color .25s ease; }
strong { font-weight: 800; }
em { font-style: italic; }

/* ---------- shell ---------- */

#wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: var(--viewport-height);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 0; flex-shrink: 0;
  max-width: 100%;
  position: relative;
  text-align: center;
  z-index: 1;
}

#main > .inner {
  width: var(--width);
  max-width: 100%;
  position: relative;
  padding: var(--padding-vertical) var(--padding-horizontal);
}

/* ---------- containers ---------- */

.container { position: relative; display: flex; width: 100%; justify-content: center; }
.container > .wrapper { position: relative; width: 100%; max-width: var(--width); }
.container > .wrapper > .inner { position: relative; max-width: 100%; padding: 2.75rem var(--padding-horizontal); }

.full.screen {
  max-width: 100vw;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  right: auto;
}

.container.columns > .wrapper > .inner,
.container.columns2 > .wrapper > .inner,
.container.quotes > .wrapper > .inner { display: flex; flex-wrap: wrap; }

/* header bar */
#topbar > .wrapper { max-width: 100%; }
#topbar > .wrapper > .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem var(--padding-horizontal);
}
#topbar .col-brand {
  flex: 1 1 33.3333%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-width: 0;
}
#topbar .col-nav { flex: 1 1 33.3333%; text-align: center; }
#topbar .col-actions { flex: 1 1 33.3333%; text-align: right; }

.wordmark {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: -0.05rem;
  text-transform: lowercase;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wordmark:hover { color: #E6E6E6; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: .5rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex: 1 1 100%;
  width: 100%;
  padding: .75rem 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: .75rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav .links {
  flex-direction: column;
  align-items: stretch;
  gap: .25rem;
  margin-bottom: .75rem;
}
.mobile-nav .links li a {
  text-align: left;
  padding: .85rem 1rem;
  font-size: 1rem;
}
.mobile-nav .buttons {
  flex-direction: column;
  width: 100%;
}
.mobile-nav .buttons .btn { width: 100%; }

.links { display: flex; justify-content: center; gap: 1.375rem; flex-wrap: wrap; line-height: 1.5; }
.links li a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: transparent;
  transition: background-color .2s ease;
}
.links li a:hover { background-color: rgba(255,255,255,0.2); }

/* ---------- buttons ---------- */

.buttons { display: flex; gap: .75rem; flex-wrap: wrap; padding: 0; }
.buttons.center { justify-content: center; }
.head-buttons { justify-content: flex-end; gap: .5rem; }
.buttons:not(:first-child) { margin-top: 1.25rem; }
.buttons:not(:last-child) { margin-bottom: 1.25rem; }

.btn {
  display: inline-block;
  min-height: 2.5rem;
  height: auto;
  line-height: 1.2;
  padding: .65rem 1.1rem;
  border-radius: .5rem;
  font-size: .75em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-wide { min-width: 8.5rem; font-size: .625em; font-weight: 600; letter-spacing: .025rem; }
.btn-white { background-color: #FFFFFF; color: #111827; }
.btn-white:hover { background-color: #BDBDBD; }
.btn-slate { background-color: #4A525F; color: #FFFFFF; }
.btn-slate:hover { background-color: #5c6675; }
.btn-mint { background-color: #A7F3D0; color: #10281f; }
.btn-mint:hover { background-color: #8fe6be; }
.btn-peach { background-color: #FED7AA; color: #33240f; }
.btn-peach:hover { background-color: #f6c78f; }
.btn-outline {
  min-height: 2.25rem;
  line-height: 1.2;
  padding: .45rem .85rem;
  border-radius: 0;
  border: solid 3px #FFFFFF;
  color: #FFFFFF;
  letter-spacing: -.025rem;
  font-weight: 400;
}
.btn-outline:hover { background-color: rgba(255,255,255,.12); }

/* ---------- typography ---------- */

h1, h2, h3, p { position: relative; }
p span.p { display: block; position: relative; }
p span.p:nth-child(n + 2) { margin-top: 1rem; }

.h-hero {
  font-size: 2em;
  line-height: 1.125;
  font-weight: 800;
  letter-spacing: -0.05rem;
  text-align: center;
  max-width: 37.75rem;
  margin: 0 auto 1.5rem;
}
.h-hero.left { text-align: left; margin-left: 0; }

.lead {
  font-size: .875em;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  max-width: 29.625rem;
  margin: 0 auto 1.5rem;
}
.lead.left { text-align: left; margin-left: 0; }

.h-section {
  font-size: 1.5em;
  line-height: 1.125;
  font-weight: 800;
  text-align: center;
  margin: 2.5rem 0;
}

.h-thin {
  font-size: 1.125em;
  line-height: 1.25;
  font-weight: 200;
  text-align: center;
  margin-bottom: .875rem;
}

.h-block {
  font-size: 1em;
  line-height: 1.625;
  font-weight: 800;
  text-align: left;
  margin: .875rem 0;
}
.h-block.center { text-align: center; }

.body {
  font-size: .75em;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .025rem;
  text-align: left;
  margin: .875rem 0;
}
.body.center { text-align: center; }
.body.narrow { max-width: 28.75rem; margin-left: auto; margin-right: auto; }

.role { font-size: .75em; line-height: 1.625; font-weight: 400; letter-spacing: .025rem; }
.org { font-size: .75em; line-height: 1.75; font-weight: 400; color: #CFCFCF; }
.flag { font-size: 3.25em; line-height: 1.4; }

/* ---------- images ---------- */

.image { display: block; line-height: 0; max-width: 100%; position: relative; text-align: center; }
.image .frame { display: inline-block; max-width: 100%; overflow: hidden; vertical-align: top; width: 100%; }
.image .frame img { max-width: 100%; width: 100%; vertical-align: top; }
.image.rounded { margin: 2.375rem 0; }
.image.rounded .frame { border-radius: 1rem; }
.image.shadowed .frame { box-shadow: 0 1.125rem 3.125rem .625rem rgba(0,0,0,.75); }
.image.portrait .frame { width: 20.625rem; max-width: 100%; }
.image.logo-plate .frame { width: 12rem; max-width: 100%; margin: 0 auto; }
.image.logo-plate img { filter: drop-shadow(0 0 2rem rgba(0,0,0,.6)); }
.hero-image { margin-top: 1.5rem; }
img { height: auto; max-width: 100%; }

/* ---------- cards / bands ---------- */

.container.card > .wrapper {
  background-color: rgba(0, 0, 0, 0.28);
  border-radius: 2.25rem;
  box-shadow: 0 1.125rem 3.125rem .625rem rgba(0,0,0,.55);
}
.container.card { margin-bottom: 5rem; }
.container.card.light > .wrapper { background-color: rgba(255,255,255,.06); }

.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-top: 2rem; }
.stats li { text-align: center; }
.stat-n { display: block; font-size: 1.5em; font-weight: 800; line-height: 1.125; }
.stat-l { display: block; margin-top: .5rem; font-size: .75em; font-weight: 300; letter-spacing: .025rem; color: #CFCFCF; }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.chips li {
  font-size: .75em;
  font-weight: 500;
  letter-spacing: .025rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background-color: rgba(255,255,255,.05);
}

/* two-column blocks */
.container.columns2 > .wrapper { max-width: 50rem; }
.container.columns2 > .wrapper > .inner { gap: 4rem; align-items: center; padding: 3.5rem var(--padding-horizontal); }
.container.columns2 > .wrapper > .inner > div { flex: 1 1 calc(50% - 2rem); min-width: 0; text-align: left; }

/* quote columns */
.container.quotes > .wrapper { max-width: 50rem; }
.container.quotes > .wrapper > .inner { gap: 2rem; align-items: flex-start; padding: 0 var(--padding-horizontal) 3.5rem; }
.container.quotes > .wrapper > .inner > div { flex: 1 1 calc(50% - 1rem); min-width: 0; text-align: left; }

/* tile grids */
.grid3, .grid4 { display: grid; gap: 1.25rem; text-align: left; margin: 2.5rem 0; }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid4 { grid-template-columns: repeat(4, 1fr); }

.tile {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
}
.tile h3 { font-size: .875em; font-weight: 800; line-height: 1.35; margin-bottom: .6rem; }
.tile p { font-size: .7em; line-height: 1.7; font-weight: 400; color: #D8D8D8; }

.packages { grid-template-columns: repeat(3, 1fr); align-items: start; }
.pkg { position: relative; display: flex; flex-direction: column; }
.pkg .pkg-sub { color: #A7F3D0; font-weight: 600; margin-bottom: .75rem; }
.pkg.featured { background-color: rgba(167,243,208,.08); border-color: rgba(167,243,208,.35); }
.badge {
  position: absolute; top: -.7rem; left: 1.5rem;
  font-size: .55em; font-weight: 700; letter-spacing: .05rem; text-transform: uppercase;
  background-color: #A7F3D0; color: #10281f;
  padding: .3rem .7rem; border-radius: 999px;
}
.pkg .buttons { margin-top: auto; }

/* bullet list */
.list { margin: 1rem 0; }
.list ul li { display: flex; align-items: flex-start; margin-top: .5rem; }
.list ul li:before {
  content: '';
  flex: 0 0 auto;
  width: .35rem; height: .35rem;
  margin: .5rem .55rem 0 0;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.list ul li p { font-size: .7em; line-height: 1.5; font-weight: 300; letter-spacing: .025rem; }

/* pullquote */
.pullquote { margin: 3rem auto; max-width: 34rem; text-align: center; }
.pullquote .quote { font-size: 1.125em; line-height: 1.5; font-weight: 200; font-style: italic; }
.pullquote .attrib { margin-top: 1rem; font-size: .75em; letter-spacing: .025rem; color: #CFCFCF; }

/* gallery */
.gallery { margin: 3rem 0; text-align: center; }
.gallery ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem; }
.gallery ul li { display: inline-block; }
.gallery .thumbnail { display: block; transition: transform .25s ease; }
.gallery .thumbnail:hover { transform: rotate(2.125deg); z-index: 1; }
.gallery .frame {
  display: inline-block; overflow: hidden; vertical-align: top;
  border-radius: .75rem;
  box-shadow: -0.017rem .5rem 2.625rem 0 #000000;
}
.gallery img { display: block; height: 9rem; width: auto; max-width: 100%; object-fit: cover; }

/* ---------- form ---------- */

.form { text-align: left; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .625em; font-weight: 600; letter-spacing: .05rem;
  text-transform: uppercase; color: #CFCFCF;
  margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .75em;
  color: #FFFFFF;
  background-color: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .5rem;
  padding: .65rem .8rem;
  -webkit-appearance: none; appearance: none;
  transition: border-color .25s ease, background-color .25s ease;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field select option { color: #111827; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.55);
  background-color: rgba(255,255,255,.1);
}

/* ---------- footer ---------- */

#footer { margin-top: 4rem; }
.footer-help { font-size: 1.875em; line-height: 1.125; font-weight: 800; text-align: center; margin: 1rem 0; }
.footer-help a { color: #34D399; }
.footer-mark {
  font-size: 10vw;
  line-height: 1.125;
  font-weight: 700;
  letter-spacing: -0.5rem;
  text-align: center;
  margin: 1rem 0;
}
#footer-bar > .wrapper > .inner { display: flex; align-items: flex-end; padding: 1rem var(--padding-horizontal); }
#footer-bar > .wrapper > .inner > div:first-child { flex: 1 1 75%; text-align: left; }
#footer-bar > .wrapper > .inner > div:last-child { flex: 1 1 25%; text-align: right; }
.copyright { font-size: .75em; line-height: 2; letter-spacing: .025rem; text-transform: lowercase; }

/* ---------- sections + reveal ---------- */

section.inactive { display: none; }

.reveal { opacity: 0; transition: opacity 1s ease-in-out; }
.reveal.is-visible { opacity: 1; }
body.no-anim .reveal { opacity: 1; }

/* ---------- responsive ---------- */

@media (max-width: 1680px) { html { font-size: 13pt; } }
@media (max-width: 980px)  { html { font-size: 11pt; } }

@media (max-width: 980px) {
  .grid3, .packages { grid-template-columns: repeat(2, 1fr); }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 736px) {
  :root { --padding-horizontal: 1.25rem; --padding-vertical: 1.5rem; }
  #main > .inner { padding: var(--padding-vertical) var(--padding-horizontal); }
  .container > .wrapper > .inner { padding: 1.75rem var(--padding-horizontal); }
  #topbar > .wrapper > .inner { padding: .75rem var(--padding-horizontal); gap: 0; }
  #topbar .col-brand { flex: 1 1 100%; }
  #topbar .col-nav,
  #topbar .col-actions,
  [data-visibility="desktop"] { display: none !important; }
  .nav-toggle { display: flex; }
  .wordmark { font-size: 1.05em; letter-spacing: -0.03rem; }
  .h-hero { font-size: 1.55em; max-width: none; margin-bottom: 1rem; }
  .h-hero.left { text-align: center; }
  .lead, .lead.left { text-align: center; margin-left: auto; margin-right: auto; max-width: none; }
  .h-section { font-size: 1.25em; margin: 1.75rem 0; }
  .h-block, .h-block.center { text-align: center; }
  .body, .body.center { text-align: left; }
  .container.columns2 > .wrapper > .inner,
  .container.quotes > .wrapper > .inner { flex-direction: column; gap: 1.75rem; padding: 1.75rem var(--padding-horizontal); }
  .container.columns2 > .wrapper > .inner > div,
  .container.quotes > .wrapper > .inner > div { flex: 1 1 100%; width: 100%; text-align: center; }
  .container.columns2 .buttons { justify-content: center; }
  .list ul li { text-align: left; }
  .grid3, .grid4, .packages { grid-template-columns: 1fr; gap: 1rem; }
  .container.card { margin-bottom: 2rem; }
  .container.card > .wrapper { border-radius: 1.25rem; }
  .stats { gap: 1.25rem; flex-direction: column; }
  .gallery ul { gap: 1rem; }
  .gallery img { height: 5.5rem; width: 100%; max-width: 10rem; object-fit: cover; }
  .footer-mark { font-size: 22vw; letter-spacing: -0.25rem; }
  .footer-help { font-size: 1.35em; }
  #footer-bar > .wrapper > .inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  #footer-bar > .wrapper > .inner > div { text-align: center !important; }
  .buttons.outline { justify-content: center; }
  .copyright { text-align: center; }
  .image.rounded { margin: 1.25rem 0; }
  .image.portrait .frame { width: 100%; max-width: 18rem; margin: 0 auto; }
  .image.logo-plate .frame { width: 9rem; }
  .chips { gap: .5rem; }
  .chips li { font-size: .7em; padding: .45rem .85rem; }
  .field input, .field select, .field textarea { font-size: 16px; /* prevents iOS zoom */ }
  .form { text-align: left; }
}

@media (max-width: 480px) {
  :root { --padding-horizontal: 1rem; }
  .btn { width: 100%; max-width: 32rem; }
  .buttons { flex-direction: column; align-items: stretch; }
  .buttons.outline { flex-direction: column; }
  .buttons.outline .btn { width: 100%; }
  .wordmark { font-size: .95em; }
  .h-hero { font-size: 1.35em; }
  .gallery img { max-width: 100%; height: 7rem; }
}
