:root {
  --abyss: #0B1B2B;
  --deep: #071320;
  --ink: #111820;
  --tide: #1E6F7A;
  --foam: #F1F4F2;
  --pearl: #FFFFFF;
  --chrome: #C9CED6;
  --mist: #8FA3B4;
  --body-font: "Manrope", "Avenir Next", Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display-font: "Newsreader", Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--abyss);
  color: var(--foam);
  font-family: var(--body-font);
  text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--abyss);
  color: var(--foam);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--tide);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  min-height: 100dvh;
  place-items: center;
  padding: clamp(18px, 4vh, 48px) max(16px, env(safe-area-inset-left)) clamp(22px, 4vh, 48px) max(16px, env(safe-area-inset-right));
}

.seal-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(78vmin, 720px);
  aspect-ratio: 1;
  background: var(--pearl);
  opacity: .06;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  -webkit-mask: url("/brand/dsd-seal.svg") center / contain no-repeat;
  mask: url("/brand/dsd-seal.svg") center / contain no-repeat;
}

.links-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}

.links-panel {
  width: 100%;
  border: 1px solid var(--chrome);
  background: var(--foam);
  color: var(--ink);
  padding: 28px clamp(20px, 6vw, 32px) 22px;
}

.panel-seal {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  width: min(200px, 80%);
  margin: 14px auto 0;
  color: var(--ink);
}

.brand-wordmark img {
  width: 100%;
  height: auto;
}

.panel-descriptor {
  margin: 14px auto 0;
  max-width: 340px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.panel-rule,
.panel-bottom-rule {
  width: 100%;
  height: 1px;
  background: var(--chrome);
}

.panel-rule {
  margin-top: 20px;
}

.panel-bottom-rule {
  margin-top: 18px;
}

.links-list {
  display: grid;
  width: 100%;
  gap: 10px;
  margin-top: 18px;
}

.link-row,
.social-link {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--chrome);
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.link-row:hover,
.link-row:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  border-color: var(--tide);
  color: var(--tide);
}

.link-row.is-featured {
  min-height: 72px;
  border-color: var(--tide);
  background: var(--tide);
  color: var(--foam);
}

.link-row.is-featured:hover,
.link-row.is-featured:focus-visible {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--foam);
}

.row-copy {
  display: block;
  min-width: 0;
}

.row-eyebrow,
.row-label {
  display: block;
}

.row-eyebrow {
  margin-bottom: 6px;
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.35;
  opacity: .78;
  text-transform: uppercase;
}

.row-label {
  overflow-wrap: anywhere;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.social-link {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px;
  font-size: 13px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.social-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-signoff {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.phone-line {
  display: flex;
  justify-content: center;
  margin: 12px 0 0;
}

.phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--foam);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--mist);
}

@media (max-width: 390px) {
  .page-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .links-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .panel-descriptor {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .link-row,
  .social-link {
    font-size: 14px;
  }

  .social-link {
    gap: 5px;
    padding-right: 4px;
    padding-left: 4px;
    font-size: 12px;
  }

  .social-link svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: .001ms;
  }
}
