@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/inter-tight-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/inter-tight-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/inter-tight-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/inter-tight-latin-700-normal.woff2") format("woff2");
}


:root {
  --sig-ink: #0a0a0c;
  --sig-paper: #fafaf9;
  --sig-mute: #737373;
  --sig-hair: #e7e5e4;
  --sig-accent: #3730a3;
  --sig-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sig-pad-x: 24px;
  --sig-max: 720px;
  --sig-section: 56px;
  --star-on: var(--sig-accent);
  --star-off: rgba(10,10,12,0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.sig {
  margin: 0;
  background: var(--sig-paper);
  color: var(--sig-ink);
  font-family: "Inter Tight", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}

::selection { background: color-mix(in srgb, var(--sig-accent) 22%, transparent); }
a { color: inherit; }

.sig-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: transparent;
  transition: background 0.35s var(--sig-ease), backdrop-filter 0.35s var(--sig-ease), border-color 0.35s var(--sig-ease);
  border-bottom: 1px solid transparent;
}
.sig-nav.is-scrolled {
  background: rgba(250, 250, 249, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--sig-hair);
}
.sig-nav__inner {
  max-width: var(--sig-max);
  margin: 0 auto;
  padding: 16px var(--sig-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sig-nav__brand {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
}

.sig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 980px;
  background: var(--sig-accent);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--sig-ease), box-shadow 0.15s var(--sig-ease), filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.sig-btn:hover { filter: brightness(1.06); }
.sig-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 2px rgba(10, 10, 12, 0.18);
}
.sig-btn--lg { min-height: 48px; padding: 0 24px; font-size: 15px; }
.sig-btn--invert { background: var(--sig-paper); color: var(--sig-ink); }
.sig-textlink {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--sig-mute);
  text-decoration: none;
  border-bottom: 1px solid var(--sig-hair);
  transition: color 0.2s var(--sig-ease), border-color 0.2s var(--sig-ease);
}
.sig-textlink:hover { color: var(--sig-ink); border-bottom-color: var(--sig-accent); }

.sig-kicker {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sig-mute);
}
/* Brand is the hero signal — larger than the supporting headline */
.sig-brand {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 12ch;
}
.sig-display {
  margin: 20px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 22ch;
  color: var(--sig-ink);
}
.sig-lede {
  margin: 14px 0 0;
  max-width: 34em;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sig-mute);
}
.sig-body {
  margin: 20px 0 0;
  max-width: 38em;
  font-size: 17px;
  line-height: 1.7;
  color: var(--sig-mute);
}

/* Single rhythm: hero bottom + section top = one section gap, not doubled */
.sig-hero {
  max-width: var(--sig-max);
  margin: 0 auto;
  padding: 56px var(--sig-pad-x) 8px;
}
.sig-hero .g-reviews { margin-bottom: 4px; }
.sig-hero__actions { margin-top: 32px; }
.sig-hero__meta { margin-top: 14px; }
.sig-hero__meta .sig-textlink { margin-top: 10px; }
.sig-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  padding: 20px 0 0;
  border-top: 1px solid var(--sig-hair);
}
.sig-stat {
  flex: 1 1 110px;
  padding: 8px 20px 0 0;
  min-width: 0;
}
.sig-stat + .sig-stat {
  border-left: 1px solid var(--sig-hair);
  padding-left: 20px;
}
.sig-stat__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sig-mute);
}
.sig-stat__value {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.sig-stat .stars { margin-top: 8px; }

.sig-section {
  max-width: var(--sig-max);
  margin: 0 auto;
  padding: var(--sig-section) var(--sig-pad-x) 0;
}
.sig-section:last-of-type { padding-bottom: var(--sig-section); }
.sig-services { list-style: none; margin: 0; padding: 0; }
.sig-service {
  padding: 28px 0;
  border-bottom: 1px solid var(--sig-hair);
}
.sig-service:first-child { border-top: 1px solid var(--sig-hair); margin-top: 8px; }
.sig-service:last-child { border-bottom: none; padding-bottom: 8px; }
.sig-service__name {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.sig-service__desc {
  margin: 10px 0 0;
  max-width: 36em;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sig-mute);
}

.sig-about { padding-top: var(--sig-section); }
.sig-about .sig-pull {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  max-width: 18em;
}
.sig-about .sig-pull::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--sig-accent);
  margin-bottom: 20px;
}

.sig-cta {
  background: var(--sig-ink);
  color: var(--sig-paper);
  margin-top: var(--sig-section);
  padding: var(--sig-section) var(--sig-pad-x);
  text-align: center;
}
.sig-cta__title {
  margin: 0 auto 28px;
  max-width: 16em;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.sig-footer {
  max-width: var(--sig-max);
  margin: 0 auto;
  padding: 40px var(--sig-pad-x) 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--sig-mute);
  border-top: 1px solid var(--sig-hair);
}
.sig-footer p { margin: 0; }
.sig-footer__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--sig-ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px !important;
}
.sig-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .sig-footer__meta { align-items: flex-end; text-align: right; }
}
.sig-footer a {
  color: var(--sig-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--sig-hair);
}
.sig-footer a:hover { border-bottom-color: var(--sig-accent); }
.sig-cta .outcome-proof { margin-left: auto; margin-right: auto; }

/* Sticky bar — slides in on scroll only, elevated */
.sig-bar {
  position: fixed;
  z-index: 55;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 12px;
  border-radius: 980px;
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--sig-accent);
  box-shadow:
    0 10px 28px rgba(10,10,12,0.12),
    0 0 0 1px color-mix(in srgb, var(--sig-accent) 25%, transparent);
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: opacity 0.35s var(--sig-ease), transform 0.45s var(--sig-ease);
}
.sig-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sig-bar__call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 980px;
  background: var(--sig-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.15s var(--sig-ease);
}
.sig-bar__call:active { transform: scale(0.97); }
.sig-bar__wa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sig-mute);
  text-decoration: none;
}
.sig-bar__wa:hover { color: var(--sig-ink); }
.sig-bar .ico { width: 16px; height: 16px; }

@media (min-width: 768px) {
  :root { --sig-pad-x: 32px; --sig-section: 80px; }
  .sig-hero { padding-top: 80px; }
  .sig-lede { font-size: 19px; }
  .sig-service { padding: 32px 0; }
  .sig-bar {
    left: 50%;
    right: auto;
    width: min(420px, calc(100% - 48px));
    transform: translate(-50%, 120%);
  }
  .sig-bar.is-visible { transform: translate(-50%, 0); }
}
@media (max-width: 420px) {
  .sig-stat + .sig-stat { border-left: none; padding-left: 0; }
  .sig-stats { gap: 16px; }
  .sig-stat { flex: 1 1 100%; padding-right: 0; }
  .sig-display { max-width: none; font-size: clamp(2rem, 9vw, 2.6rem); }
}



.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
  vertical-align: middle;
}
.stars .ico-star { width: 15px; height: 15px; flex-shrink: 0; }
.stars .ico-star--on { color: var(--star-on, currentColor); }
.stars .ico-star--half { color: var(--star-on, currentColor); }
.stars .ico-star--off { color: var(--star-off, rgba(128,128,128,0.35)); }
.stars__num {
  margin-left: 6px;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.g-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(66, 133, 244, 0.08);
  border: 1px solid rgba(66, 133, 244, 0.18);
  backdrop-filter: blur(4px);
}
.g-reviews__g { width: 20px; height: 20px; flex-shrink: 0; }
.g-reviews__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.g-reviews__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.01em;
}
.g-reviews--compact {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  gap: 8px;
  flex-wrap: wrap;
}
.g-reviews--compact .g-reviews__g { width: 16px; height: 16px; }
.g-reviews--compact .g-reviews__count {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}


.trust-line {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-line--sig {
  color: var(--sig-mute, #737373);
  font-size: 13px;
}
.trust-line--hb {
  color: var(--hb-mute, #8aa39a);
  font-size: 13px;
}
.trust-line--dl {
  color: #547084;
  font-size: 13px;
}
.trust-line--fg {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}


html { opacity: 0; }
html.is-ready {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  html { opacity: 1; transition: none; }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
/* Stronger presence for brand + primary CTA in the hero */
[data-reveal-hero] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-hero].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-hero][data-reveal-delay="120ms"].is-in { transition-delay: 120ms; }
[data-reveal-hero][data-reveal-delay="220ms"].is-in { transition-delay: 220ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-hero] { opacity: 1; transform: none; transition: none; }
}


.seo-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 0;
}
.seo-faq__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}
.seo-faq__title {
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.seo-faq__item {
  border-top: 1px solid rgba(128,128,128,0.22);
}
.seo-faq__item:last-child { border-bottom: 1px solid rgba(128,128,128,0.22); }
.seo-faq__heading { margin: 0; font-size: inherit; font-weight: inherit; }
.seo-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}
.seo-faq__q:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.seo-faq__chev {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  transition: transform 0.25s ease;
}
.seo-faq__q[aria-expanded="true"] .seo-faq__chev {
  transform: rotate(225deg);
}
.seo-faq__panel {
  overflow: hidden;
  height: 0;
  transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.seo-faq__panel-inner { padding: 0 0 16px; }
.seo-faq__a {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 40em;
}
.seo-faq--dark { color: #f0ebe3; }
.seo-faq--dark .seo-faq__kicker { color: #c4a35a; opacity: 1; }
.seo-faq--dark .seo-faq__a { color: #c4bfb6; opacity: 1; }
.seo-faq--dark .seo-faq__item { border-color: rgba(240,235,227,0.12); }


.photo-credit {
  margin: 8px 0 0;
  font-size: 11px;
  opacity: 0.65;
  font-weight: 500;
}
.photo-credit a { text-decoration: underline; text-underline-offset: 2px; }

.site-img { margin: 0; }
.site-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-img--fallback {
  background:
    radial-gradient(120% 80% at 20% 10%, color-mix(in srgb, var(--img-accent, #666) 35%, transparent), transparent 55%),
    linear-gradient(145deg, color-mix(in srgb, var(--img-accent, #666) 22%, #111), #1a1a1a 60%, color-mix(in srgb, var(--img-accent, #666) 18%, #222));
}

.site-img--signature {
  width: auto;
  max-width: 720px;
  margin: 28px 24px 0;
  overflow: hidden;
  border-radius: 12px;
  background: #e7e5e4;
}
.site-img--signature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: none;
  object-fit: cover;
}
.site-img--signature.site-img--fallback {
  min-height: 200px;
  aspect-ratio: 4 / 3;
}
.site-img--signature .photo-credit {
  margin: 10px 0 0;
  padding: 0 2px;
}
@media (min-width: 640px) {
  .site-img--signature {
    margin: 40px auto 0;
    width: calc(100% - 64px);
    max-width: 720px;
    border-radius: 14px;
  }
  .site-img--signature img {
    aspect-ratio: 16 / 9;
    max-height: 48vh;
  }
}
@media (min-width: 900px) {
  .site-img--signature {
    width: 100%;
    max-width: none;
    margin: 48px 0 0;
    border-radius: 0;
  }
  .site-img--signature img {
    aspect-ratio: 21 / 9;
    max-height: 52vh;
  }
  .site-img--signature .photo-credit {
    max-width: 720px;
    margin: 12px auto 0;
    padding: 0 24px;
  }
}

.day-hero--photo,
.day-hero--fallback {
  position: relative;
  width: 100%;
  max-width: none !important;
  color: #fff;
  background-color: #0b1c2c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.day-hero--photo {
  background-image:
    linear-gradient(180deg, rgba(11,28,44,0.45) 0%, rgba(11,28,44,0.72) 100%),
    var(--hero-image);
}
.day-hero__inner {
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .day-hero__inner { max-width: 48rem; }
}
@media (min-width: 1024px) {
  .day-hero__inner { max-width: 56rem; }
}
.day-hero--photo .text-ink,
.day-hero--fallback .text-ink { color: #fff !important; }
.day-hero--photo .text-slate,
.day-hero--fallback .text-slate { color: rgba(255,255,255,0.88) !important; }
.day-hero--photo .text-teal,
.day-hero--fallback .text-teal { color: #7fd4d6 !important; }
.day-hero--fallback {
  background-image:
    radial-gradient(100% 80% at 80% 0%, color-mix(in srgb, var(--img-accent, #0d7377) 40%, transparent), transparent 50%),
    linear-gradient(160deg, #0b1c2c, color-mix(in srgb, var(--img-accent, #0d7377) 55%, #0b1c2c));
}


.map-embed {
  margin: 20px 0 0;
  max-width: 720px;
}
.map-embed__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(128,128,128,0.12);
}
.map-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed__cap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.75;
}
.map-embed__cap a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 1;
}
.map-embed--harbor .map-embed__frame {
  border: 1px solid rgba(232, 242, 239, 0.12);
  border-radius: 12px;
  background: #0e1614;
}
.map-embed--harbor .map-embed__cap { color: var(--hb-mute, #8aa39a); }
.map-embed--harbor .map-embed__cap a { color: var(--hb-foam, #e8f2ef); }
.map-embed--daylight .map-embed__frame {
  border: 1px solid rgba(11, 28, 44, 0.08);
  box-shadow: 0 12px 32px rgba(11, 28, 44, 0.08);
}
.map-embed--forge .map-embed__frame {
  border: 1px solid #ddd8d2;
  border-radius: 12px;
}
.map-embed--forge .map-embed__cap a { color: var(--fg-soot, #12100e); }
.map-embed--signature .map-embed__frame {
  border-radius: 12px;
  background: #e7e5e4;
}
@media (min-width: 640px) {
  .map-embed__frame { min-height: 280px; }
}


.claim-bar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 10px 16px;
  background: #111;
  color: #fafafa;
  font-size: 13px;
  line-height: 1.35;
}
.claim-bar__copy { margin: 0; display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: baseline; }
.claim-bar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}
.claim-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.claim-bar__cta:hover { filter: brightness(0.95); }
.claim-bar__cta:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (max-width: 520px) {
  .claim-bar { padding-left: 12px; padding-right: 12px; }
  .claim-bar__cta { width: 100%; justify-content: center; }
}
/* Desktop only: drop toggle below claim bar (mobile handled in designToggleCss) */
@media (min-width: 641px) {
  body:has(.claim-bar) .design-toggle {
    top: 56px;
  }
}


.design-toggle {
  position: fixed;
  z-index: 70;
  top: calc(12px + env(safe-area-inset-top, 0px));
  left: 12px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.design-toggle__btn {
  appearance: none;
  border: 1px solid rgba(128,128,128,0.35);
  background: rgba(255,255,255,0.78);
  color: #111;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.design-toggle__menu {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(128,128,128,0.25);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.design-toggle__menu[hidden] { display: none !important; }
.design-toggle__opt {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  font-size: 12px;
  font-weight: 500;
}
.design-toggle__opt:hover { background: rgba(0,0,0,0.05); }
.design-toggle__opt.is-active {
  background: rgba(0,0,0,0.08);
  font-weight: 700;
}
@media (max-width: 640px) {
  /* Bottom-left on mobile — never compete with the sticky claim bar */
  .design-toggle,
  body:has(.claim-bar) .design-toggle {
    top: auto;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    left: 12px;
  }
}
