  :root {
      --ink: #160607;
      --ink-2: #210a0c;
      --maroon: #7a101d;
      --maroon-2: #a11527;
      --maroon-deep: #4a0a12;
      --paper: #f8f8f8;
      --slate: #fff0cf;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html,
  body {
      height: 100%;
  }

  body {
      font-family: 'Inter', sans-serif;
      background: var(--ink);
      color: var(--paper);
      overflow: hidden;
  }

  #ambient {
      position: fixed;
      inset: 0;
      z-index: 0;
      display: block;
  }

  .hero {
      position: relative;
      z-index: 1;
      height: 100vh;
      width: 100vw;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr;
  }

  .panel {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 3.2rem;
      cursor: pointer;
      transition: filter .5s ease;
      border: 1px solid rgba(255, 255, 255, .06);
      text-decoration: none;
  }

  .hero:hover .panel {
      filter: brightness(.55) saturate(.7);
  }

  .hero:hover .panel:hover {
      filter: brightness(1) saturate(1);
  }

  .panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
      z-index: 0;
  }

  .panel:hover::before {
      transform: scale(1);
  }

  .panel::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
  }

  /* two distinct atmospheres, both drawn from the logo's maroon-on-white identity */
  #renovation::before {
      background:
          radial-gradient(120% 100% at 20% 100%, rgba(122, 16, 29, .45), transparent 60%),
          linear-gradient(180deg, rgba(22, 6, 7, .15), rgba(22, 6, 7, .92)),
          repeating-linear-gradient(115deg, #241012 0 2px, #180a0b 2px 44px),
          #1c0d0e;
  }

  #technical::before {
       background:
          radial-gradient(120% 100% at 20% 100%, rgba(122, 16, 29, .45), transparent 60%),
          linear-gradient(180deg, rgba(22, 6, 7, .15), rgba(22, 6, 7, .92)),
          repeating-linear-gradient(230deg, #241012 0 2px, #180a0b 2px 44px),
          #1c0d0e;
  }

  .panel::after {
      background: none;
  }

  .eyebrow {
      position: absolute;
      top: 2.4rem;
      right: 2.6rem;
      z-index: 2;
      font-size: 1rem;
      letter-spacing: .14em;
      color: rgba(248, 248, 248, 0.788);
      font-weight: 500;
  }

  .panel-content {
      position: relative;
      z-index: 2;
      max-width: 420px;
  }

  .panel-title {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 65px;
      line-height: 1.02;
      margin-bottom: .6rem;
      color: var(--slate);
      
  }

  .panel-tag {
      font-size: .98rem;
      color: rgba(248, 248, 248, 0.795);
      margin-bottom: 1.4rem;
      font-weight: 400;
  }

  .panel-cta {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .02em;
      color: var(--paper);
      background: rgba(248, 248, 248, .08);
      border: 1px solid rgba(248, 248, 248, .35);
      padding: .7rem 1.3rem;
      border-radius: 2px;
      backdrop-filter: blur(6px);
      transition: background .3s ease, border-color .3s ease;
  }

  .panel:hover .panel-cta {
      background: rgba(248, 248, 248, .94);
      color: var(--ink);
      border-color: transparent;
  }

  /* center seal */
  .seal {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: var(--ink-2);
      border: 1px solid rgba(248, 248, 248, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 8px rgba(22, 6, 7, .9), 0 20px 50px rgba(0, 0, 0, .6);
      pointer-events: none;
  }

  .seal-mark {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 1.9rem;
      letter-spacing: .02em;
      color: var(--paper);
      display: flex;
      align-items: center;
        justify-content: center;
  }

  .imagelogo {
      width: 90%;
      height: 80%;  
      object-fit: cover;
  }

  .seal-mark span {
      color: var(--maroon-2);
  }

  .seal-tag {
      position: absolute;
      bottom: -2.6rem;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      font-size: .68rem;
      letter-spacing: .22em;
      color: rgba(248, 248, 248, .55);
      background: rgba(22, 6, 7, .75);
      padding: .4rem .9rem;
      border-radius: 20px;
      border: 1px solid rgba(248, 248, 248, .12);
  }

  @media (max-width:820px) {
      .hero {
          grid-template-columns: 1fr;
          grid-template-rows: repeat(2, 1fr);
          overflow-y: auto;
          height: auto;
          min-height: 100vh;
      }

      body {
          overflow: auto;
      }

      .panel {
          padding: 2rem;
      }

      .seal {
          width: 96px;
          height: 96px;
      }

      .seal-mark {
          font-size: 1.4rem;
      }
  }