/* =============================================
   DEV Frontend Challenge: Comfort Food Edition
   CSS Art — Biryani (Dum Handi)
   Author: Nitish Kumar Pandey
   ============================================= */

/* ---- Google Fonts already loaded via <link> ---- */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color palette — warm, spiced, earthy */
  --saffron:       hsl(38, 100%, 55%);
  --saffron-light: hsl(48, 100%, 70%);
  --saffron-deep:  hsl(30, 90%, 40%);
  --rice-white:    hsl(50, 40%, 93%);
  --rice-yellow:   hsl(44, 80%, 78%);
  --clay-dark:     hsl(18, 60%, 30%);
  --clay-mid:      hsl(20, 55%, 42%);
  --clay-light:    hsl(24, 50%, 58%);
  --clay-shine:    hsl(28, 40%, 70%);
  --mint-green:    hsl(142, 55%, 36%);
  --mint-light:    hsl(135, 50%, 55%);
  --onion-brown:   hsl(30, 60%, 45%);
  --lemon-yellow:  hsl(54, 95%, 62%);
  --lemon-edge:    hsl(70, 70%, 45%);
  --rose-red:      hsl(348, 80%, 52%);
  --rose-pink:     hsl(345, 75%, 68%);
  --plate-silver:  hsl(220, 20%, 80%);
  --plate-shine:   hsl(220, 15%, 94%);
  --bg-warm:       hsl(26, 55%, 12%);
  --bg-mid:        hsl(22, 45%, 18%);
  --glow-orange:   hsla(35, 100%, 60%, 0.35);
  --spice-red:     hsl(10, 80%, 55%);
  --turmeric:      hsl(44, 100%, 42%);
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Lora', Georgia, serif;
}

/* ---- Scene / Background ---- */
.scene {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px 50px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, hsla(25, 60%, 22%, 0.9) 0%, transparent 80%),
    radial-gradient(ellipse 100% 100% at 50% 100%, hsl(18, 50%, 10%) 0%, transparent 60%),
    linear-gradient(160deg, hsl(26, 50%, 10%) 0%, hsl(20, 40%, 14%) 40%, hsl(28, 45%, 10%) 100%);
  overflow: hidden;
  position: relative;
}

/* Ambient glow under the pot */
.scene::before {
  content: '';
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 120px;
  background: radial-gradient(ellipse, hsla(35, 100%, 55%, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Floating spice particles ---- */
.spice-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s ease-in-out infinite;
}

.spice-particle.s1 { width: 6px; height: 6px; background: var(--saffron); top: 15%; left: 15%; animation-delay: 0s;   animation-duration: 7s; }
.spice-particle.s2 { width: 4px; height: 4px; background: var(--rose-red); top: 30%; right: 12%; animation-delay: 1.5s; animation-duration: 9s; }
.spice-particle.s3 { width: 5px; height: 5px; background: var(--mint-green); top: 60%; left: 8%;  animation-delay: 2.8s; animation-duration: 6s; }
.spice-particle.s4 { width: 3px; height: 3px; background: var(--turmeric); top: 20%; right: 25%; animation-delay: 0.8s; animation-duration: 10s; }
.spice-particle.s5 { width: 7px; height: 7px; background: var(--spice-red); top: 70%; right: 18%; animation-delay: 3.5s; animation-duration: 8s; }
.spice-particle.s6 { width: 4px; height: 4px; background: var(--saffron-light); top: 45%; left: 20%; animation-delay: 5s; animation-duration: 7.5s; }

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}

/* ---- Title block ---- */
.title-block {
  text-align: center;
  position: relative;
  z-index: 2;
}

.title-block h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--saffron) 45%, var(--saffron-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 18px hsla(38, 100%, 60%, 0.55));
  letter-spacing: 0.04em;
}

.subtitle {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: var(--clay-shine);
  letter-spacing: 0.25em;
  margin-top: 4px;
  opacity: 0.85;
}

/* ---- Art Stage ---- */
.art-stage {
  position: relative;
  width: 340px;
  height: 440px;
  flex-shrink: 0;
}

/* ============================================================
   STEAM
   ============================================================ */
.steam-group {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  z-index: 5;
}

.steam {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 60px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(to top, hsla(200, 30%, 85%, 0.45), hsla(200, 20%, 95%, 0.05));
  filter: blur(4px);
  animation: steamRise 3.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.steam.st1 { left:  28px; animation-delay: 0s;    animation-duration: 3.2s; height: 55px; width: 12px; }
.steam.st2 { left:  60px; animation-delay: 0.7s;  animation-duration: 3.8s; height: 65px; width: 16px; }
.steam.st3 { left:  92px; animation-delay: 0.2s;  animation-duration: 3.0s; height: 70px; width: 18px; }
.steam.st4 { left: 124px; animation-delay: 1.1s;  animation-duration: 4.0s; height: 60px; width: 13px; }
.steam.st5 { left: 154px; animation-delay: 0.5s;  animation-duration: 3.5s; height: 50px; width: 11px; }

@keyframes steamRise {
  0%   { opacity: 0;   transform: translateY(0)   scaleX(1)   ; }
  30%  { opacity: 0.6; transform: translateY(-20px) scaleX(1.15); }
  70%  { opacity: 0.4; transform: translateY(-45px) scaleX(0.9) ; }
  100% { opacity: 0;   transform: translateY(-70px) scaleX(0.6) ; }
}

/* ============================================================
   HANDI (CLAY POT)
   ============================================================ */
.handi {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  z-index: 3;
}

/* --- LID --- */
.lid {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}

.lid-knob {
  width: 28px;
  height: 22px;
  background: radial-gradient(circle at 40% 30%, var(--clay-light), var(--clay-dark));
  border-radius: 50% 50% 40% 40%;
  box-shadow: inset -3px -3px 6px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.5);
  margin-bottom: -2px;
  position: relative;
  z-index: 5;
}

.lid-body {
  position: relative;
  width: 220px;
  height: 52px;
  background: radial-gradient(ellipse 70% 60% at 35% 35%, var(--clay-light), var(--clay-mid) 50%, var(--clay-dark));
  border-radius: 50% 50% 20% 20% / 100% 100% 30% 30%;
  box-shadow:
    inset -8px -10px 18px rgba(0,0,0,0.35),
    inset 6px 4px 14px rgba(255,200,120,0.18),
    0 4px 12px rgba(0,0,0,0.6);
  overflow: hidden;
}

.lid-shine {
  position: absolute;
  top: 8px;
  left: 30px;
  width: 70px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.22), transparent);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.lid-stripe {
  position: absolute;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.lid-stripe.ls1 { width: 130px; top: 20px; left: 40px; transform: rotate(-2deg); }
.lid-stripe.ls2 { width: 80px;  top: 32px; left: 70px; transform: rotate(-1deg); opacity: 0.6; }

.lid-rim {
  width: 240px;
  height: 12px;
  background: linear-gradient(to bottom, var(--clay-mid), var(--clay-dark));
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* --- POT BODY --- */
.pot-body {
  position: relative;
  width: 240px;
  height: 200px;
  background: radial-gradient(ellipse 65% 75% at 35% 30%, var(--clay-light), var(--clay-mid) 40%, var(--clay-dark) 85%);
  border-radius: 40% 40% 60% 60% / 25% 25% 75% 75%;
  box-shadow:
    inset -18px -18px 40px rgba(0,0,0,0.8),
    inset 12px 10px 25px rgba(255,180,80,0.2),
    0 12px 45px rgba(0,0,0,0.7),
    0 4px 12px rgba(0,0,0,0.5);
  overflow: hidden;
  margin-top: 0;
}

/* Decorative bands / rings on pot */
.pot-band {
  position: absolute;
  width: 110%;
  left: -5%;
  height: 40px;
  border-radius: 50%;
  border-bottom: 6px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.5);
  top: 20%;
}
.pot-band.band2 {
  top: 50%;
  height: 50px;
  border-bottom: 4px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px -3px rgba(0, 0, 0, 0.4);
}

/* Texture grooves on clay */
.pot-texture {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
}
.pot-texture.t1 { width: 210px; height: 100px; top: 10px; left: 15px; border-color: rgba(0,0,0,0.1); }
.pot-texture.t2 { width: 170px; height: 80px; top: 45px; left: 35px; border-color: rgba(255,190,100,0.06); }
.pot-texture.t3 { width: 110px; height: 60px; top: 85px; left: 65px; border-color: rgba(0,0,0,0.08); }

/* Glossy highlight on clay pot */
.pot-shine {
  position: absolute;
  width: 70px;
  height: 110px;
  top: 15px;
  left: 20px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.25) 0%, transparent 60%);
  border-radius: 50%;
  transform: rotate(-15deg);
  filter: blur(4px);
}

/* Saffron drips / stains on outside */
.saffron-drip {
  position: absolute;
  background: linear-gradient(to bottom, var(--saffron), var(--saffron-deep));
  border-radius: 0 0 4px 4px;
  opacity: 0.55;
}
.saffron-drip.d1 { width: 3px; height: 22px; top: 22%; left: 38%; }
.saffron-drip.d2 { width: 2px; height: 14px; top: 18%; left: 60%; opacity: 0.35; }

/* --- HANDLES --- */
.handle {
  position: absolute;
  width: 38px;
  height: 52px;
  border: 10px solid var(--clay-dark);
  border-radius: 50%;
  top: 50px;
  box-shadow: inset -3px -3px 8px rgba(0,0,0,0.7), 4px 4px 10px rgba(0,0,0,0.6);
}
.handle::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,180,80,0.15), transparent);
}

.left-handle  { left:  -28px; }
.right-handle { right: -28px; }

/* --- RICE TOP (open top of pot) --- */
.rice-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 55px;
  z-index: 6;
  overflow: hidden;
  border-radius: 50%;
}

.rice-layer {
  position: absolute;
  left: 0; right: 0;
  height: 55px;
  border-radius: 50%;
}

.rice-layer.base-layer {
  background: radial-gradient(ellipse, var(--rice-white) 30%, var(--rice-yellow) 70%, hsl(36,60%,62%) 100%);
  top: 0;
}

.rice-layer.saffron-layer {
  background:
    radial-gradient(ellipse 40% 50% at 60% 40%, hsla(44, 95%, 68%, 0.8), transparent),
    radial-gradient(ellipse 30% 40% at 30% 60%, hsla(38, 85%, 58%, 0.6), transparent);
  top: 0;
  mix-blend-mode: multiply;
}

/* Individual rice grains */
.grain {
  position: absolute;
  background: var(--rice-white);
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  box-shadow: inset 0 -1px 2px rgba(180,140,50,0.4);
}

.grain.g1  { width:16px; height:6px; top:10px; left: 20px; transform: rotate(15deg);  background: var(--rice-yellow); }
.grain.g2  { width:14px; height:5px; top:5px;  left: 50px; transform: rotate(-20deg); }
.grain.g3  { width:17px; height:6px; top:12px; left: 80px; transform: rotate(5deg);  background: var(--saffron-light); }
.grain.g4  { width:15px; height:5px; top:4px;  left:110px; transform: rotate(-10deg); }
.grain.g5  { width:16px; height:6px; top:14px; left:138px; transform: rotate(20deg); background: var(--rice-yellow); }
.grain.g6  { width:13px; height:5px; top:6px;  left:170px; transform: rotate(-15deg); }
.grain.g7  { width:14px; height:5px; top:22px; left: 35px; transform: rotate(8deg);  background: var(--rice-yellow); }
.grain.g8  { width:16px; height:6px; top:20px; left: 65px; transform: rotate(-12deg); background: var(--saffron-light); }
.grain.g9  { width:15px; height:5px; top:24px; left: 95px; transform: rotate(18deg); }
.grain.g10 { width:14px; height:5px; top:20px; left:125px; transform: rotate(-7deg);  background: var(--rice-yellow); }
.grain.g11 { width:16px; height:6px; top:22px; left:155px; transform: rotate(12deg); }
.grain.g12 { width:13px; height:5px; top:32px; left: 50px; transform: rotate(-18deg); background: var(--saffron-light); }
.grain.g13 { width:15px; height:5px; top:34px; left: 85px; transform: rotate(10deg); }
.grain.g14 { width:14px; height:5px; top:32px; left:115px; transform: rotate(-5deg);  background: var(--rice-yellow); }
.grain.g15 { width:16px; height:6px; top:36px; left:145px; transform: rotate(22deg); background: var(--saffron-light); }

/* Saffron strands */
.saffron-strand {
  position: absolute;
  width: 18px;
  height: 3px;
  background: linear-gradient(to right, var(--saffron-deep), var(--saffron));
  border-radius: 2px;
  opacity: 0.9;
}
.saffron-strand.ss1 { top: 8px;  left: 90px;  transform: rotate(-25deg); width: 22px; }
.saffron-strand.ss2 { top: 20px; left: 140px; transform: rotate(18deg);  width: 16px; }
.saffron-strand.ss3 { top: 30px; left: 60px;  transform: rotate(-10deg); width: 20px; }

/* Mint leaves on rice */
.mint-leaf {
  position: absolute;
  background: var(--mint-green);
  border-radius: 50% 0 50% 0;
  box-shadow: inset -1px -1px 3px rgba(0,0,0,0.3);
}
.mint-leaf.ml1 { width: 14px; height: 9px;  top: 10px; left: 60px;  transform: rotate(-30deg); background: var(--mint-light); }
.mint-leaf.ml2 { width: 12px; height: 8px;  top: 25px; left:130px; transform: rotate(20deg);  }
.mint-leaf.ml3 { width: 16px; height: 10px; top: 16px; left:170px; transform: rotate(-15deg); background: var(--mint-light); }

/* Fried onion crisps */
.onion-crisp {
  position: absolute;
  background: var(--onion-brown);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  opacity: 0.85;
  box-shadow: inset 1px 1px 3px rgba(255,200,100,0.3);
}
.onion-crisp.oc1 { width: 18px; height: 8px;  top: 14px; left: 32px;  transform: rotate(10deg); }
.onion-crisp.oc2 { width: 15px; height: 7px;  top: 30px; left:100px; transform: rotate(-20deg); background: hsl(28,55%,40%); }
.onion-crisp.oc3 { width: 20px; height: 9px;  top: 8px;  left:155px; transform: rotate(15deg); }
.onion-crisp.oc4 { width: 13px; height: 6px;  top: 38px; left: 78px;  transform: rotate(-5deg); background: hsl(28,55%,40%); }

/* ============================================================
   PLATE
   ============================================================ */
.plate {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 38px;
  background: radial-gradient(ellipse 80% 100% at 40% 30%, var(--plate-shine), var(--plate-silver) 60%, hsl(220,15%,65%));
  border-radius: 50%;
  box-shadow:
    0 6px 24px rgba(0,0,0,0.7),
    inset 0 2px 8px rgba(255,255,255,0.35),
    inset 0 -4px 12px rgba(0,0,0,0.25);
  z-index: 2;
  overflow: visible;
}

.plate-inner {
  position: absolute;
  top: 5px; left: 14px; right: 14px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.plate-design {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,180,140,0.35);
}
.plate-design.pd1 { top: 3px; left: 8px;  right: 8px;  height: 30px; }
.plate-design.pd2 { top: 7px; left: 25px; right: 25px; height: 22px; opacity: 0.5; }
.plate-design.pd3 { top: 9px; left: 40px; right: 40px; height: 18px; opacity: 0.3; }

/* ============================================================
   GARNISH GROUP (on plate)
   ============================================================ */
.garnish-group {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 70px;
  z-index: 4;
}

/* Lemon wedges */
.lemon {
  position: absolute;
  width: 44px;
  height: 30px;
  bottom: 18px;
  border-radius: 0 50% 50% 0 / 0 100% 100% 0;
  overflow: hidden;
}
.left-lemon  { left: 8px;  transform: rotate(-20deg); }
.right-lemon { right: 8px; transform: rotate(20deg) scaleX(-1); }

.lemon-flesh {
  position: absolute;
  inset: 0;
  background: var(--lemon-yellow);
  border-radius: inherit;
  border-left: 4px solid var(--lemon-edge);
}
.lemon-segment {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: rgba(100,120,20,0.35);
  top: 50%;
  transform-origin: left center;
}
.lemon-segment.lseg1 { transform: rotate(20deg);  }
.lemon-segment.lseg2 { transform: rotate(-20deg); }

/* Mint sprig */
.sprig {
  position: absolute;
  bottom: 16px;
  left: 60px;
  width: 40px;
  height: 50px;
}
.sprig-stem {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 40px;
  background: var(--mint-green);
  border-radius: 1px;
}
.sprig-leaf {
  position: absolute;
  width: 14px;
  height: 9px;
  background: var(--mint-green);
  border-radius: 50% 0 50% 0;
}
.sprig-leaf.sl1 { bottom: 28px; left: 6px;  transform: rotate(20deg); background: var(--mint-light); }
.sprig-leaf.sl2 { bottom: 20px; left: -4px; transform: rotate(-20deg); }
.sprig-leaf.sl3 { bottom: 12px; left: 7px;  transform: rotate(15deg);  background: var(--mint-light); }

/* Small spice bowl */
.spice-bowl {
  position: absolute;
  bottom: 14px;
  right: 60px;
  width: 32px;
  height: 22px;
}
.spice-bowl-body {
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 18px;
  background: radial-gradient(ellipse at 40% 30%, hsl(220,20%,88%), hsl(220,15%,70%));
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.2);
}
.spice-content {
  position: absolute;
  bottom: 14px;
  left: 4px; right: 4px;
  height: 8px;
  background: radial-gradient(ellipse, var(--spice-red) 40%, hsl(10,70%,40%));
  border-radius: 50%;
}

/* Rose petals scattered */
.rose-petal {
  position: absolute;
  background: var(--rose-red);
  border-radius: 50% 0 50% 0;
  opacity: 0.85;
}
.rose-petal.rp1 { width: 14px; height: 9px;  bottom: 40px; left:  30px;  transform: rotate(30deg);  background: var(--rose-pink); }
.rose-petal.rp2 { width: 12px; height: 8px;  bottom: 44px; right: 35px;  transform: rotate(-20deg); }
.rose-petal.rp3 { width: 10px; height: 7px;  bottom: 48px; left:  15px;  transform: rotate(55deg);  background: var(--rose-pink); }
.rose-petal.rp4 { width: 11px; height: 7px;  bottom: 50px; right: 18px;  transform: rotate(-50deg); }
.rose-petal.rp5 { width: 13px; height: 8px;  bottom: 56px; left: 120px;  transform: rotate(10deg);  background: var(--rose-pink); }

/* ============================================================
   CAPTION / FOOTER
   ============================================================ */
.caption {
  text-align: center;
  z-index: 2;
  position: relative;
}

.dish-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--saffron-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dish-sub {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: var(--clay-shine);
  margin-top: 6px;
  opacity: 0.8;
}

.spice-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 8px;
}

.spice-icon {
  font-size: 1.3rem;
  animation: gentleBob 2.5s ease-in-out infinite;
}
.spice-icon:nth-child(1) { animation-delay: 0s; }
.spice-icon:nth-child(2) { animation-delay: 0.3s; }
.spice-icon:nth-child(3) { animation-delay: 0.6s; }
.spice-icon:nth-child(4) { animation-delay: 0.9s; }
.spice-icon:nth-child(5) { animation-delay: 1.2s; }

@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.challenge-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: hsl(38, 50%, 55%);
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

/* ============================================================
   SUBTLE HOVER GLOW INTERACTION
   ============================================================ */
.art-stage:hover .pot-body {
  box-shadow:
    inset -14px -14px 30px rgba(0,0,0,0.5),
    inset 10px 8px 20px rgba(255,180,80,0.18),
    0 10px 40px rgba(0,0,0,0.7),
    0 0 40px hsla(35, 90%, 55%, 0.25);
  transition: box-shadow 0.6s ease;
}

.art-stage:hover .steam .st1,
.art-stage:hover .steam .st3 {
  animation-play-state: paused;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 400px) {
  .art-stage    { transform: scale(0.82); transform-origin: top center; }
  .title-block h1 { font-size: 2.4rem; }
}
