  /* =========================
       FONTS (Brand rules)
    ========================= */
  @font-face {
    font-family: "Termina";
    src: url("../assets/fonts/Termina-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display:block;
  }

  @font-face {
    font-family: "Termina";
    src: url("../assets/fonts/Termina-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: block;
  }

  @font-face {
    font-family: "Nave";
    src: url("../assets/fonts/Nave-HeavyItalic.woff2") format("woff2");
    font-weight: 800;
    font-style: italic;
    font-display: block;
  }

  /* =========================
       TOKENS
    ========================= */
  :root {
    --magenta: #B11258;
    --stone: #F4F2EF;
    --white: #FFFFFF;
    --charcoal: #1E1E1E;

    --grad-a: #458cad;
    --grad-b: #B11258;
    --grad-c: #f8aa15;

    --max: 1160px;
    --gutter: clamp(16px, 4vw, 34px);

    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-sm: 14px;

    --shadow-soft: 0 16px 44px rgba(30, 30, 30, .10);
    --shadow-strong: 0 26px 70px rgba(30, 30, 30, .14);

    --h1: clamp(34px, 4.6vw, 58px);
    --h2: clamp(24px, 3.2vw, 40px);
    --p: 16px;
    --small: 13px;

    --section-pad: clamp(64px, 8vw, 92px);
    --slate: #5D8093;

    scroll-padding-top: 15px;
  }

  section[id] {
    scroll-margin-top: 15px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  /* =========================
       BASE
    ========================= */
  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: "Termina", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    background: var(--stone);
    color: var(--charcoal);
    line-height: 1.55;
    font-size: var(--p);
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .wrap {
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
    margin: 0 auto;
  }

  /* =========================
       TYPOGRAPHY
    ========================= */
  h1,
  h2,
  h3 {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
    line-height: 1.02;
  }

  h1 {
    font-size: var(--h1);
  }

  h2 {
    font-size: var(--h2);
  }

  p {
    margin: 0;
  }

  .muted {
    opacity: .82;
  }

  .fine {
    font-size: var(--small);
    opacity: .65;
  }

  .subhead {
    font-family: "Nave";
    font-weight: 800;
    font-style: italic;
    letter-spacing: .01em;
  }

  /* =========================
       HEADER
    ========================= */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--magenta);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
  }

  .brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 0 0 auto;
  }

  .brand img {
    width: clamp(160px, 18vw, 300px);
    height: auto;
  }

  .header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
    position: relative;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
  }

  .nav a {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    color: rgba(255, 255, 255, .92);
    padding: 8px 10px;
    border-radius: 999px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, .10);
  }

  @media (max-width: 980px) {
    .nav {
      gap: 10px;
    }

    .nav a {
      padding: 8px 8px;
      letter-spacing: .10em;
    }
  }

  /* =========================
       BUTTONS
    ========================= */
  .btn {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .98);
    background: var(--slate);
  }

  .btn:hover {
    filter: brightness(.96);
  }

  .btn-dark {
    border: 1px solid rgba(30, 30, 30, .10);
    color: rgba(255, 255, 255, .98);
    background: var(--slate);
  }

  .btn-dark:hover {
    filter: brightness(.96);
  }

  .btn-magenta {
    border: 1px solid rgba(177, 18, 88, .40);
    background: var(--magenta);
    color: var(--white);
  }

  .btn-magenta:hover {
    background: #9e0f4f;
    filter: none;
  }

  .btn-invert {
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .94);
    color: var(--magenta);
  }

  .btn-invert:hover {
    background: rgba(255, 255, 255, .86);
    color: #8f0d47;
  }

  /* =========================
       FULLSCREEN MOBILE MENU
       - 100% opaque background
       - stone text
       - no extra CTA buttons
    ========================= */
  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .98);
    cursor: pointer;
    user-select: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 110;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, .16);
  }

  .menu-toggle .bars {
    width: 18px;
    height: 12px;
    position: relative;
    display: block;
  }

  .menu-toggle .bars span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    transition: transform .18s ease, top .18s ease, opacity .18s ease;
  }

  .menu-toggle .bars span:nth-child(1) {
    top: 0;
  }

  .menu-toggle .bars span:nth-child(2) {
    top: 5px;
  }

  .menu-toggle .bars span:nth-child(3) {
    top: 10px;
  }

  /* Always hidden by default */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: none;
    padding: max(18px, env(safe-area-inset-top)) var(--gutter) max(22px, env(safe-area-inset-bottom));
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    /* 100% opaque charcoal-based gradient (no transparency) */
    background:
      radial-gradient(900px 520px at 85% 18%, rgba(69, 140, 173, 1) 0%, rgba(69, 140, 173, 0) 62%),
      radial-gradient(900px 560px at 20% 78%, rgba(177, 18, 88, 1) 0%, rgba(177, 18, 88, 0) 62%),
      radial-gradient(820px 520px at 70% 25%, rgba(248, 170, 21, 1) 0%, rgba(248, 170, 21, 0) 60%),
      linear-gradient(180deg, #1E1E1E 0%, #1A1A1A 100%);

    color: var(--stone);
  }

  .header.is-open .mobile-overlay {
    display: block;
  }

  .header.is-open .menu-toggle .bars span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }

  .header.is-open .menu-toggle .bars span:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .menu-toggle .bars span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
  }

  .overlay-inner {
    width: min(520px, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(24px, 10vh, 70px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .overlay-title {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    opacity: .8;
    color: var(--stone);
  }

  .overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
  }

  .overlay-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(244, 242, 239, .22);
    background: rgba(244, 242, 239, .08);

    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: clamp(14px, 4.2vw, 18px);
    line-height: 1.15;

    color: var(--stone);
  }

  .overlay-nav a:hover {
    background: rgba(244, 242, 239, .14);
  }

  @media (max-width: 820px) {
    .menu-toggle {
      display: inline-flex;
    }

    .nav {
      display: none;
    }

    .header-right {
      gap: 12px;
    }
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  /* =========================
       RASPBERRY BACKGROUND
    ========================= */
  .raspberry-bg {
    position: absolute;
    pointer-events: none;
    opacity: .06;
    z-index: 0;
  }

  .raspberry-hero {
    right: -40px;
    top: 140px;
    width: min(500px, 60vw);
    transform: rotate(-8deg);
  }

  .raspberry-about {
    left: -60px;
    top: 40px;
    width: min(520px, 60vw);
    transform: rotate(12deg);
  }

  .raspberry-contact {
    right: -60px;
    bottom: -80px;
    width: min(560px, 62vw);
    transform: rotate(-12deg);
    opacity: .07;
  }

  .raspberry-contact-white {
    position: absolute;
    right: -80px;
    bottom: -140px;
    width: min(500px, 74vw);
    transform: rotate(-10deg);
    opacity: .07;
    pointer-events: none;
  }

  /* =========================
       HERO
    ========================= */
  .section {
    padding: var(--section-pad) 0;
  }

  .hero {
    position: relative;
    padding-top: clamp(34px, 5vw, 56px);
    padding-bottom: clamp(40px, 5vw, 64px);
  }

  .hero-top-gap {
    height: 10px;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(18px, 3vw, 44px);
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-kicker {
    font-family: "Nave";
    font-weight: 800;
    font-style: italic;
    font-size: 18px;
    opacity: .86;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .hero-photo {
    position: relative;
    z-index: 2;
    justify-self: end;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(30, 30, 30, .10);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, .30);
    height: 100%;
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 980px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }
  }

  /* =========================
       IMPRESSIONS
    ========================= */
  #impressions {
    padding-bottom: calc(var(--section-pad) / 4);
  }

  .impressions-panel {
    position: relative;
    border-radius: calc(var(--radius-xl) + 8px);
    border: 1px solid rgba(30, 30, 30, .10);
    background:
      radial-gradient(900px 420px at 15% 10%, rgba(93, 128, 147, .14) 0%, rgba(93, 128, 147, 0) 62%),
      radial-gradient(900px 420px at 95% 85%, rgba(177, 18, 88, .10) 0%, rgba(177, 18, 88, 0) 64%),
      rgba(255, 255, 255, .55);
    box-shadow: var(--shadow-soft);
    padding: clamp(22px, 3vw, 34px);
    overflow: hidden;
  }

  .impressions-panel::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(177, 18, 88, .45), rgba(93, 128, 147, .28), rgba(30, 30, 30, 0));
    opacity: .9;
  }

  .impressions-title {
    margin-top: 14px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }

  .impressions-title .subhead {
    text-align: left;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
  }

  .card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 30, 30, .10);
    background: rgba(93, 128, 147, .99);
    box-shadow: var(--shadow-soft);
    padding: 18px 18px 16px;
    color: var(--stone);
  }

  .card .name {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    margin-top: 12px;
    opacity: .9;
  }

  .card .role {
    font-size: 12px;
    opacity: .65;
    margin-top: 2px;
  }

  @media (max-width: 980px) {
    .cards {
      grid-template-columns: 1fr;
    }
  }

  /* =========================
       EXPLORE
    ========================= */
  .explore {
    position: relative;
  }

  .explore-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .explore-title {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 45px;
    line-height: 1.05;
    max-width: 900px;
  }

  .explore-desc {
    font-family: "Nave";
    font-weight: 800;
    font-style: italic;
    opacity: .86;
    margin-top: 10px;
    max-width: 900px;
  }

  .carousel {
    position: relative;
    border-radius: var(--radius-xl);
  }

  .carousel-viewport {
    position: relative;
    overflow: visible;
    padding: 14px 14px 6px;
    border-radius: calc(var(--radius-xl) + 10px);
  }

  .carousel-viewport::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      radial-gradient(820px 460px at 18% 20%, rgba(177, 18, 88, .10) 0%, rgba(177, 18, 88, 0) 66%),
      radial-gradient(860px 520px at 92% 85%, rgba(93, 128, 147, .14) 0%, rgba(93, 128, 147, 0) 70%),
      rgba(255, 255, 255, .42);
    border: 1px solid rgba(30, 30, 30, .08);
    box-shadow: 0 22px 64px rgba(30, 30, 30, .10);
    pointer-events: none;
  }

  .carousel-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    padding: 10px 6px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .concept-card {
    flex: 0 0 min(340px, 82vw);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(30, 30, 30, .10);
    background: rgba(255, 255, 255, .62);
    overflow: hidden;
  }

  .concept-preview {
    height: 210px;
    background: rgba(30, 30, 30, .08);
  }

  .concept-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .concept-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .concept-meta {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 11px;
    opacity: .72;
  }

  .concept-title {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 18px;
    line-height: 1.06;
  }

  .concept-body p {
    font-size: 13px;
    opacity: .86;
    margin-top: 2px;
  }

  .concept-body ul {
    margin: 6px 0 0;
    padding-left: 18px;
    font-size: 13px;
    opacity: .86;
  }

  .concept-body li {
    margin: 6px 0;
  }

  .concept-cta {
    margin-top: 8px;
  }

  .concept-cta .btn {
    border-color: rgba(30, 30, 30, .10);
    width: fit-content;
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
  }

  .arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(30, 30, 30, .12);
    background: rgba(255, 255, 255, .70);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
  }

  .arrow:hover {
    background: rgba(255, 255, 255, .84);
  }

  .arrow span {
    font-family: "Termina";
    font-weight: 900;
    letter-spacing: .04em;
    opacity: .82;
  }

  /* =========================
       ABOUT
    ========================= */
  .about {
    position: relative;
    background: var(--magenta);
    color: var(--white);
    overflow: hidden;
  }

  .about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 520px at 12% 18%, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 60%),
      radial-gradient(900px 560px at 88% 78%, rgba(69, 140, 173, .20) 0%, rgba(69, 140, 173, 0) 62%),
      radial-gradient(820px 520px at 70% 25%, rgba(248, 170, 21, .12) 0%, rgba(248, 170, 21, 0) 60%),
      linear-gradient(135deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, 0) 55%);
    opacity: .9;
    pointer-events: none;
  }

  .about::after {
    content: "";
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 22px;
    height: 1px;
    background: rgba(255, 255, 255, .16);
    pointer-events: none;
  }

  .about .wrap {
    position: relative;
    z-index: 1;
  }

  .about-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(18px, 3vw, 44px);
    align-items: stretch;
  }

  .photo-grid {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    height: 100%;
    min-height: 360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .about-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
  }

  .about-copy-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .about-copy .subhead {
    font-size: 22px;
    color: rgba(255, 255, 255, .92);
  }

  .about-copy p {
    opacity: .90;
  }

  .about-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .about-box {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    background: rgba(30, 30, 30, .10);
    padding: 14px;
  }

  .about-box strong {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    opacity: .95;
  }

  @media (max-width: 980px) {
    .about-inner {
      grid-template-columns: 1fr;
    }

    .about-boxes {
      grid-template-columns: 1fr;
    }
  }

  /* =========================
       WHY
    ========================= */
  .why {
    position: relative;
    background: transparent;
    padding: calc(var(--section-pad) * 1.25) 0;
    overflow: hidden;
  }

  .why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(1100px 540px at 10% 18%, rgba(93, 128, 147, .14) 0%, rgba(93, 128, 147, 0) 60%),
      radial-gradient(1000px 520px at 90% 78%, rgba(177, 18, 88, .10) 0%, rgba(177, 18, 88, 0) 62%);
    pointer-events: none;
  }

  .why-head {
    max-width: 900px;
    position: relative;
    z-index: 1;
  }

  .why-lede {
    font-family: "Nave";
    font-weight: 800;
    font-style: italic;
    opacity: .88;
    margin-top: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 42px;
    position: relative;
    z-index: 1;
  }

  .why-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 30, 30, .08);
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--shadow-soft);
    padding: 22px 20px 18px;
    position: relative;
    overflow: hidden;
  }

  .why-card::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 14px;
    height: 4px;
    border-radius: 999px;
    opacity: .9;
  }

  .why-card.cue-atmosphere::before {
    background: linear-gradient(90deg, rgba(177, 18, 88, .45), rgba(93, 128, 147, .22), rgba(30, 30, 30, 0));
  }

  .why-card.cue-teams::before {
    background: rgba(30, 30, 30, .28);
  }

  .why-card.cue-longterm::before {
    background:
      linear-gradient(rgba(177, 18, 88, .42), rgba(177, 18, 88, .42)) top/100% 2px no-repeat,
      linear-gradient(rgba(177, 18, 88, .20), rgba(177, 18, 88, .20)) bottom/100% 2px no-repeat;
    height: 6px;
  }

  .why-card strong {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
    margin-top: 10px;
  }

  .why-card p {
    margin-top: 8px;
  }

  @media (max-width: 980px) {
    .why-grid {
      grid-template-columns: 1fr;
    }
  }

  /* =========================
       CONTACT
    ========================= */
  .contact {
    position: relative;
    background: var(--magenta);
    color: var(--white);
    overflow: hidden;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(18px, 3vw, 44px);
    align-items: start;
    position: relative;
    z-index: 2;
  }

  .form {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(30, 30, 30, .10);
    border-radius: var(--radius-xl);
    padding: 18px;
  }

  .form .subhead {
    font-size: 24px;
  }

  .field {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  label {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 11px;
    opacity: .90;
  }

  input,
  textarea {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    padding: 12px 12px;
    color: rgba(255, 255, 255, .95);
    font-family: "Termina";
    font-weight: 400;
    outline: none;
  }

  textarea {
    min-height: 120px;
    resize: vertical;
  }

  input::placeholder,
  textarea::placeholder {
    color: rgba(255, 255, 255, .70);
  }

  .send {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
  }

  .send button {
    border-radius: 999px;
    padding: 10px 16px;
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: var(--slate);
    color: rgba(255, 255, 255, .98);
    cursor: pointer;
  }

  .send button:hover {
    filter: brightness(.96);
  }

  .details {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(30, 30, 30, .10);
    border-radius: var(--radius-xl);
    padding: 18px;
    overflow: hidden;
    min-height: 225px;
  }

  .details .subhead {
    font-size: 24px;
  }

  .details p {
    margin-top: 10px;
    opacity: .90;
  }

  .details a {
    color: rgba(255, 255, 255, .95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .35);
  }

  @media (max-width: 980px) {
    .contact-inner {
      grid-template-columns: 1fr;
    }

    .details {
      min-height: auto;
    }

    .raspberry-contact-white {
      display: none;
    }
  }

  /* =========================
       FOOTER
    ========================= */
  .footer {
    position: relative;
    padding: 56px 0 44px;
    background:
      radial-gradient(1200px 700px at 100% 0%, rgba(69, 140, 173, .50) 0%, rgba(69, 140, 173, 0) 60%),
      radial-gradient(1200px 700px at 0% 100%, rgba(248, 170, 21, .40) 0%, rgba(248, 170, 21, 0) 58%),
      linear-gradient(135deg, rgba(248, 170, 21, .08) 0%, rgba(177, 18, 88, .88) 42%, rgba(69, 140, 173, .28) 100%),
      var(--magenta);
    color: var(--white);
    overflow: hidden;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    align-items: start;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .footer-logo a {
    display: inline-flex;
    align-items: center;
  }

  .footer-logo img {
    width: clamp(160px, 18vw, 250px);
    height: auto;
    margin: 0;
  }

  .footer-links strong {
    font-family: "Termina";
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
    opacity: .92;
  }

  .footer-links a {
    display: block;
    font-size: 13px;
    opacity: .88;
    margin: 8px 0;
  }

  .footer-links a:hover {
    opacity: 1;
  }

  .footer-cta {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-cta .btn {
    border-color: rgba(255, 255, 255, .18);
  }

  .footer-bottom {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    opacity: .80;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 18px;
  }

  @media (max-width: 980px) {
    .footer-inner {
      grid-template-columns: 1fr;
    }

    .footer-cta {
      justify-content: flex-start;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 2px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    display: grid;
    place-items: center;
    opacity: .95;
  }

  .social-icons a:hover {
    background: rgba(255, 255, 255, .16);
  }

  .social-icons svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, .92);
  }


  /* Imprint and Data-policy */

  /* =====================================
   eRecht24 – Impressum & Datenschutz
   ===================================== */

  #Imprint,
  #dataPolicy {
    margin: 100px 30px;
    max-width: 900px;
    line-height: 1.7;
  }

  @media (min-width: 768px) {

    #Imprint,
    #dataPolicy {
      margin: 120px auto;
    }
  }

  @media (min-width: 992px) {

    #Imprint,
    #dataPolicy {
      margin: 140px auto;
    }
  }

  /* Headings */

  #Imprint h1,
  #dataPolicy h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--magenta);
  }

  #Imprint h2,
  #dataPolicy h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--magenta);
  }

  #Imprint h3,
  #dataPolicy h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  #Imprint h4,
  #dataPolicy h4 {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  #Imprint h5,
  #dataPolicy h5 {
    font-size: 0.95rem;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* Text */

  #Imprint p,
  #dataPolicy p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  #Imprint strong,
  #dataPolicy strong {
    font-weight: 600;
  }

  /* Links */

  #Imprint a,
  #dataPolicy a {
    color: var(--magenta);
    text-decoration: underline;
    transition: opacity 0.2s ease;
  }

  #Imprint a:hover,
  #dataPolicy a:hover {
    opacity: 0.8;
  }

  /* Lists */

  #Imprint ul,
  #dataPolicy ul {
    margin: 1.5rem 0 1.5rem 1.2rem;
  }

  #Imprint li,
  #dataPolicy li {
    margin-bottom: 0.6rem;
  }