/* =========================
   SARDINES — aquatic / whimsical / lyrical
   ========================= */

* { box-sizing: border-box; }

:root{
   --bg: #FAFCBA;
  --ink: rgba(18,18,18,0.92);
  --muted: rgba(70,40,85,0.70);
  --hair: rgba(95,2,37,0.14);

  --card: rgba(0,0,0,0.30);
  --card2: rgba(0,0,0,0.22);

  --aqua: rgba(120, 255, 235, 0.85);
  --violet: rgba(190, 160, 255, 0.55);
  --gold: rgba(255, 230, 170, 0.65);
}

body.sardines{
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.75;

  /* watery gradients + mild psychedelia */
  background-image:
    radial-gradient(900px 500px at 20% 10%, rgba(120,255,235,0.75), rgba(0,0,0,0) 55%),
    radial-gradient(800px 500px at 80% 18%, rgba(190,160,255,0.75), rgba(0,0,0,0) 55%),
    radial-gradient(700px 700px at 50% 85%, rgba(61,248,104,0.75), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.25));
  background-attachment: fixed;
}

/* subtle “underwater shimmer” */
body.sardines::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 2px,
      rgba(0,0,0,0) 6px,
      rgba(0,0,0,0) 12px
    );
  mix-blend-mode: overlay;
}

/* ---------- layout ---------- */

.s-hero{
  max-width: 980px;
  margin: 72px auto 28px;
  padding: 0 22px;
}

.s-back a{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.s-back a:hover{
  border-bottom-color: var(--hair);
}

.s-hero h1{
  font-family: "EB Garamond", serif;
  font-size: 64px;
  letter-spacing: 0.6px;
  margin: 8px 0 8px;
  text-shadow:
    0 0 26px rgba(120,255,235,0.12),
    0 0 48px rgba(190,160,255,0.10);
}

.s-tagline{
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.s-wrap{
  max-width: 980px;
  margin: 0 auto 70px;
  padding: 0 22px;
}

/* ---------- review card ---------- */

.review{
  margin-top: 22px;
  padding: 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, var(--card), var(--card2));
  box-shadow: 0 18px 70px rgba(0,0,0,0.35);
}

.review-head{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.review-title{
  font-family: "EB Garamond", serif;
  font-size: 25px;
  margin: 0 0 6px;
}

.review-sub{
  margin: 0 0 10px;
  color: var(--muted);
  max-width: 720px;
}

.review-meta{
  margin: 0;
  font-size: 14px;
  color: rgba(245,255,255,0.62);
}

.dot{
  margin: 0 8px;
  opacity: 0.6;
}

.rating{
  letter-spacing: 1px;
}

/* CTA button */
.btn{
  display: inline-block;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: var(--ink);
}
.btn:hover{
  border-color: rgba(120,255,235,0.45);
  box-shadow: 0 0 0 6px rgba(120,255,235,0.08);
}

/* ---------- media grid (2 photos) ---------- */

.review-media{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.shot{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
}

.shot img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.shot figcaption{
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(245,255,255,0.70);
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* ---------- long-form text ---------- */

.review-body{
  margin-top: 16px;
  font-size: 17px;
  color: rgba(245,255,255,0.90);
}

.review-body p{
  margin: 0 0 14px;
  max-width: 75ch;
}

.lead{
  font-family: "EB Garamond", serif;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(245,255,255,0.96);
}

/* optional details block (no JS) */
.more summary{
  cursor: pointer;
  color: var(--aqua);
  margin: 10px 0 12px;
}

/* ---------- tags ---------- */

.review-foot{
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag{
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(245,255,255,0.75);
}

/* links */
a{
  color: inherit;
}

/* footer */
.s-footer{
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 0 22px;
  color: rgba(245,255,255,0.70);
}

/* mobile */
@media (max-width: 820px){
  body.sardines{
    background-attachment: scroll;
  }

  .s-hero h1{
    font-size: 46px;
  }

  .review-media{
    grid-template-columns: 1fr;
  }

  .shot img{
    height: auto;
  }
}

