   /* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/Inter-300-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/Inter-400-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/Inter-500-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(/assets/fonts/Source-Serif-4-300-900-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(/assets/fonts/Source-Serif-4-300-900-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
    --serif: "Source Serif 4", Georgia, serif;
    --sans: "Inter", system-ui, sans-serif;
    --gold: #d4a83a;
    --gold-2: #ecc356;
    --ivory: #f4efe6;
    --ivory-2: #cdc6b9;
    --ivory-3: #8a8479;
  }

  html, body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
  }

  body {
    min-height: 100svh;
    background: #0a0a0a;
    color: var(--ivory);
    font-family: var(--sans);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  /* ---- LEFT: TEXT SIDE ---- */
  .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(40px, 5vw, 72px);
    position: relative;
    z-index: 2;
    background: #0a0a0a;
  }

  .left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 0% 50%, rgba(212,168,58,0.08), transparent 70%);
    pointer-events: none;
  }

  .logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
    position: relative;
    z-index: 1;
    /* the SVG has internal left padding; nudge it so the K aligns with body text edge */
    margin-left: -28px;
  }

  .main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6em;
    /* compensate trailing letter-spacing so visual left-edge aligns */
    margin-left: -0.14em;
  }

  .sub-headline {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 52px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--ivory-3);
    margin-bottom: 0.05em;
    font-weight: 300;
  }

  h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 3.2vw, 52px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--ivory);
    margin-bottom: clamp(32px, 5vh, 52px);
    padding-bottom: 0.1em;
  }

  h1 em {
    font-style: italic;
    color: var(--gold-2);
    font-weight: 300;
  }

  .divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin-bottom: clamp(24px, 3.5vh, 40px);
  }

  .notice {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ivory-2);
    font-weight: 300;
    max-width: 36ch;
    margin-bottom: clamp(24px, 3vh, 36px);
  }

  .contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--ivory);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,168,58,0.35);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .contact:hover { color: var(--gold); border-bottom-color: var(--gold); }
  .contact::after { content: '→'; font-size: 12px; color: var(--gold); }

  .bottom {
    position: relative;
    z-index: 1;
  }

  .legal {
    font-size: 11px;
    letter-spacing: 0.10em;
    color: var(--ivory-3);
    font-weight: 300;
  }

  /* ---- RIGHT: IMAGE SIDE ---- */
  .right {
    position: relative;
    overflow: hidden;
  }

  .lion-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(0.45) brightness(0.65) contrast(1.12) sepia(0.18);
  }

  /* Left-fade so image blends into text side */
  .right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      rgba(10,10,10,1) 0%,
      rgba(10,10,10,0.55) 20%,
      rgba(10,10,10,0) 55%);
    z-index: 1;
    pointer-events: none;
  }

  /* Bottom fade */
  .right::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
    z-index: 1;
    pointer-events: none;
  }

  /* Gold horizontal line accent */
  .right-accent {
    position: absolute;
    bottom: clamp(40px, 5vh, 64px);
    right: clamp(32px, 5vw, 80px);
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 0.6em;
    row-gap: 0.4em;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(212,168,58,0.6);
  }

  .right-accent .ra-l { text-align: right; padding-left: 0.3em; }
  .right-accent .ra-d { text-align: center; }
  .right-accent .ra-r { text-align: left;  padding-left: 0.3em; }

  /* Fade-in */
  .left { animation: fadeIn 1s cubic-bezier(0.22,1,0.36,1) both; }
  .right { animation: fadeIn 1.2s cubic-bezier(0.22,1,0.36,1) 0.15s both; }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @media (max-width: 768px) {
    body {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr auto;
      overflow: auto;
    }
    .right {
      height: 45svh;
      order: -1;
    }
    .right::before {
      background: linear-gradient(to bottom,
        rgba(10,10,10,0) 40%,
        rgba(10,10,10,1) 100%);
    }
    .left {
      padding: 32px 24px 40px;
    }
  }