/* ─── LONDON FONT ───────────────────────────────────────────────────
   Drop London.woff2 next to this file and uncomment:

   @font-face {
     font-family: 'London';
     src: url('London.woff2') format('woff2');
     font-weight: normal;
   }
─────────────────────────────────────────────────────────────────── */

:root {
    --f: 'Playfair Display', Georgia, serif;
    --s: 'Montserrat', sans-serif;
  
    /* ── Coffae palette ── */
    --americano: #F0E5CC;   /* background          */
    --brew:      #E4D4B0;   /* secondary surfaces  */
    --mocha:     #4A6B4E;   /* borders / dividers  */
    --chai:      #5C3D1E;   /* muted text / labels */
    --roast:     #3A5C3E;   /* caption / body text */
    --ink:       #2C1A0A;   /* primary text        */
  }
  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  
  body {
    background: var(--americano);
    color: var(--ink);
    font-family: var(--f);
    overflow-x: hidden;
  }
  
  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: rgba(44,26,10,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 0.5px solid var(--mocha);
  }
  .logo {
    font-family: var(--f);
    font-size: 1rem; font-weight: 400;
    letter-spacing: 0.55em; text-transform: uppercase;
    color: #F0E5CC !important; text-decoration: none;
  }
  .nav-right {
    display: flex;
    gap: 28px;
  }
  .nav-right a {
    font-family: var(--s);
    font-size: 0.8rem; font-weight: 400;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: #C4A882 !important; text-decoration: none;
  }
  .nav-right a:hover { color: #F0E5CC !important; }
  
  /* ── HERO ── */
  .hero {
    width: 100vw; height: 100vh;
    position: relative; overflow: hidden; cursor: zoom-in;
  }
  .hero img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.82);
  }
  .hero-wordmark {
    position: absolute; bottom: 52px; left: 48px;
    font-family: var(--f);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 400; letter-spacing: -0.02em; line-height: 0.9;
    color: var(--ink); pointer-events: none;
  }
  .hero-ph {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--brew) 0%, var(--americano) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  
  /* ── PAIR GRID ── */
  .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .pair-item {
    position: relative; overflow: hidden;
    aspect-ratio: 4 / 5; cursor: zoom-in;
    background: var(--brew);
  }
  .pair-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.85);
    transition: filter 0.6s ease, transform 0.7s ease;
  }
  .pair-item:hover img { filter: brightness(0.96); transform: scale(1.03); }
  .pair-ph {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--brew), var(--americano));
    display: flex; align-items: center; justify-content: center;
  }
  
  /* ── CAPTION ROW ── */
  .caption-row {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 22px 48px;
    border-bottom: 1px solid var(--mocha);
  }
  .cap-name {
    font-family: var(--f);
    font-size: 1rem; font-weight: 400;
    letter-spacing: 0.1em; color: var(--roast);
  }
  .cap-detail {
    font-family: var(--s);
    font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--chai);
  }
  
  /* ── TEXT BREAK ── */
  .text-break { padding: 110px 48px; max-width: 680px; }
  .tb-eyebrow {
    font-family: var(--s);
    font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--chai); margin-bottom: 28px;
  }
  .tb-headline {
    font-family: var(--f);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 400; line-height: 1.08; letter-spacing: -0.01em;
    color: var(--ink); margin-bottom: 28px;
  }
  .tb-body {
    font-family: var(--s);
    font-size: 1rem; font-weight: 400;
    line-height: 1.9; letter-spacing: 0.02em;
    color: var(--roast);
  }
  
  /* ── SPEC STRIP ── */
  .spec-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--mocha);
    background: var(--brew);
  }
  .spec-item {
    padding: 40px 48px;
    border-right: 1px solid var(--mocha);
  }
  .spec-item:last-child { border-right: none; }
  .spec-key {
    font-family: var(--s);
    font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--chai); margin-bottom: 10px;
  }
  .spec-val {
    font-family: var(--f);
    font-size: 1.1rem; font-weight: 400;
    color: var(--ink); line-height: 1.4;
  }
  
  /* ── FULL-BLEED ── */
  .full { width: 100vw; overflow: hidden; cursor: zoom-in; }
  .full img {
    width: 100%; display: block;
    max-height: 80vh; object-fit: cover; object-position: center 35%;
    filter: brightness(0.85);
    transition: filter 0.6s;
  }
  .full:hover img { filter: brightness(0.95); }
  .full-ph {
    width: 100%; aspect-ratio: 16 / 7;
    background: linear-gradient(145deg, var(--brew), var(--americano));
    display: flex; align-items: center; justify-content: center;
  }
  
  /* ── FOOTER ── */
  footer {
    padding: 64px 48px;
    display: flex; align-items: flex-end; justify-content: space-between;
    border-top: 1px solid var(--mocha);
    background: var(--brew);
  }
  .ft-logo {
    font-family: var(--f);
    font-size: 1rem; font-weight: 400;
    letter-spacing: 0.55em; text-transform: uppercase;
    color: var(--roast);
  }
  .ft-copy {
    font-family: var(--s);
    font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--chai);
  }
  
  /* ── LIGHTBOX ── */
  .lb {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(240,229,204,0.98);
    align-items: center; justify-content: center;
  }
  .lb.open { display: flex; }
  .lb img { max-width: 94vw; max-height: 94vh; object-fit: contain; }
  .lb-close {
    position: fixed; top: 32px; right: 48px;
    font-family: var(--s); font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--roast); cursor: pointer;
    background: none; border: none; transition: color 0.2s;
  }
  .lb-close:hover { color: var(--ink); }
  
  /* ── PLACEHOLDER LABEL ── */
  .ph-label {
    font-family: var(--s); font-size: 1.05rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--mocha);
  }
  
  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 22px 24px; }
    .nav-right { gap: 16px; }
    .hero-wordmark { left: 24px; bottom: 32px; font-size: clamp(2.5rem, 8vw, 6rem); }
    .pair { grid-template-columns: 1fr; gap: 2px; }
    .pair-item { aspect-ratio: 3 / 2; }
    .caption-row { padding: 16px 24px; gap: 8px; }
    .text-break { padding: 72px 24px; }
    .spec-strip { grid-template-columns: 1fr 1fr; }
    .spec-item { padding: 26px 24px; }
    footer { padding: 48px 24px; flex-direction: column; gap: 16px; }
  }
  @media (max-width: 480px) {
    nav { padding: 16px 16px; }
    .nav-right { gap: 12px; }
    .nav-right a { font-size: 0.7rem; letter-spacing: 0.25em; }
    .hero-wordmark { font-size: clamp(2rem, 10vw, 4rem); left: 16px; bottom: 20px; }
    .caption-row { flex-direction: column; padding: 12px 16px; }
    .text-break { padding: 48px 16px; }
    .spec-strip { grid-template-columns: 1fr; }
    .spec-item { padding: 20px 16px; border-right: none; border-bottom: 1px solid var(--mocha); }
    .spec-item:last-child { border-bottom: none; }
    .lb-close { top: 16px; right: 16px; font-size: 0.85rem; }
  }