/* ============================================================
   P3 — BOTTLE SERIES (TARTZ)
   Art direction overrides — this page only.
   Loads after style.css. Uncomment any block to override.
   Nav, type, colors, and footer are never touched here.
   ============================================================ */


/* -- DEFENSE TEXT COLUMNS ------------------------------------ */
/* Default: 1fr 1fr (two equal columns)
   Options: "2fr 1fr" wide left · "1fr" single column          */

/* .project-defense { grid-template-columns: 2fr 1fr; } */


/* -- FLATS GRID ---------------------------------------------- */
/* Single column vertical stack — one flavor per row            */

.flats-grid { grid-template-columns: 1fr; gap: clamp(12px, 2vw, 20px); }


/* -- FLAT ITEM ----------------------------------------------- */
/* Wrapper holds image row + flavor name + defense text         */

.flat-item { display: flex; flex-direction: column; gap: 6px; }

.flat-item__images {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

/* Body — doubled in size, drives the row height */
.flat-item__body {
  width: 60%;
  max-width: 840px;
  aspect-ratio: 2/3;
  object-fit: contain;
}

/* Neck + top stacked vertically to the right — scaled down ~60% */
.flat-item__parts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 240px;
  flex-shrink: 0;
}

.flat-item__parts img {
  width: 100%;
  object-fit: contain;
}

.flat-item__name {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.flat-item__defense {
  max-width: 60ch;
  margin: 0;
  opacity: 0.6;
}


/* -- MOBILE FLATS FIX ---------------------------------------- */
@media (max-width: 640px) {
  .flat-item__images {
    gap: 8px;
    width: 100%;
    overflow: hidden;
  }

  .flat-item__body {
    width: 55%;
    max-width: 100%;
    flex-shrink: 1;
  }

  .flat-item__parts {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    flex-shrink: 1;
  }

  .flat-item__parts img {
    width: 100%;
    max-width: 100%;
  }
}


/* -- MOODBOARD IMAGE ----------------------------------------- */
/* Default: aspect-ratio 16/7 (cinematic strip)                */

/* .moodboard-img { aspect-ratio: 16/9; } */


/* -- MOCKUP ALTERNATING SPLIT -------------------------------- */
/* Default: 1fr 1fr (50/50 image + caption)
   Options: "2fr 1fr" image-heavy · "1fr 2fr" caption-heavy    */

/* .mockup-item { grid-template-columns: 2fr 1fr; } */
