:root{
  --bg:#070709;
  --panel:rgba(0,0,0,.60);
  --line:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --radius:20px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(140,0,0,.25), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(255,120,0,.12), transparent 55%),
    var(--bg);
  color: var(--text);
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px, 92vw); margin:0 auto}

/* =========================
   TOP BAR + NAV
========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.55);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  font-weight:800; letter-spacing:.5px;
  text-transform:uppercase;
}
.menu{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
}
.menu a{
  opacity:.85;
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease;
}
.menu a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  opacity: 1;
}
.menu a.is-active{
  opacity: 1;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.menu a.is-active::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:4px;
  height:2px;
  border-radius: 2px;
  background: rgba(255,255,255,.65);
}

/* =========================
   HERO (CLEAN + STABLE)
   - Uses .hero-bg wrapper (no <picture> layout weirdness)
   - Desktop crop controlled via object-position so shop name can show
========================= */
.hero,
.hero-ch{
  position:relative;
  min-height: clamp(520px, 62vh, 820px);
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

/* background wrapper */
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-bg picture,
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* overlay */
.hero::after,
.hero-ch::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 650px at 50% 30%, rgba(0,0,0,.10), rgba(0,0,0,.78) 70%);
}

/* If you still have any hero overlay content, keep it above overlay */
.hero-inner,
.hero-content{
  position:relative;
  z-index:2;
}

/* DESKTOP: show more TOP of hero art (shop name area) */
@media (min-width: 821px){
  .hero-ch .hero-bg img,
  .hero .hero-bg img{
    object-position: 50% 10%;
  }
}

/* MOBILE: center crop works better */
@media (max-width: 820px){
  .hero-ch .hero-bg img,
  .hero .hero-bg img{
    object-position: 50% 50%;
  }
}

/* =========================
   FLOATING CTA PLAQUES (NO RECTANGLE)
   - overlaps hero slightly
========================= */
.cta-float{
  position: relative;
  margin-top: -54px;  /* overlap amount */
  z-index: 5;
  padding-bottom: 6px;
}

.cta-plaques,
.cta-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: clamp(14px, 2vw, 28px);

  /* IMPORTANT: no strip rectangle */
  background: transparent;
  border: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;

  width: min(1100px, 92vw);
  margin: 0 auto;
}

.cta-plaques a,
.cta-row a{
  display:block;
  transition: transform .18s ease, filter .18s ease;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.75));
}
.cta-plaques a:hover,
.cta-row a:hover{
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 26px 64px rgba(0,0,0,.85));
}

.cta-plaques img,
.cta-row img{
  height: clamp(110px, 8.2vw, 170px);
  width:auto;
  display:block;
}

/* Mobile stack */
@media (max-width: 820px){
  .cta-float{ margin-top: -22px; }

  .cta-plaques,
  .cta-row{
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .cta-plaques img,
  .cta-row img{
    height: 104px;
  }
}

/* =========================
   SECTIONS + PANELS + GRID
========================= */
.section{
  padding: clamp(40px, 6vw, 100px) 0;
}

.panel{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  will-change: transform;
}
.panel:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.14);
  background: rgba(0,0,0,.68);
  box-shadow: 0 26px 70px rgba(0,0,0,.65);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.card{ grid-column: span 6; }
@media (max-width: 900px){ .card{ grid-column: span 12; } }

/* =========================
   HOME “CREATIVE HANDS STYLE” BLOCKS
========================= */
.home-blocks{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .home-blocks{ grid-template-columns: 1fr; }
}

.kicker{
  color: rgba(255,255,255,.72);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
}

.h1{
  margin: 8px 0 12px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.lead{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 72ch;
}

.feature-list{
  display:grid;
  gap:12px;
  margin-top: 14px;
}
.feature{
  padding:14px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
}
.feature strong{ display:block; margin-bottom:4px; }
.feature span{ color: rgba(255,255,255,.72); }

.quick-actions{
  display:grid;
  gap:12px;
}
.quick-actions a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.quick-actions a:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.50);
  border-color: rgba(255,255,255,.14);
}
.quick-actions small{ color: rgba(255,255,255,.70); }

.hr{
  border:0;
  border-top:1px solid rgba(255,255,255,.08);
  margin: 18px 0;
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .panel, .menu a, .reveal, .cta-plaques a, .cta-row a{ transition: none !important; }
  .panel:hover, .cta-plaques a:hover, .cta-row a:hover, .menu a:hover{ transform:none; }
}

/* =========================
   FOOTER
========================= */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color: var(--muted);
  background: rgba(0,0,0,.45);
}
/* ===== DESKTOP: SHOW TOP OF HERO ART (TITLE AREA) ===== */
@media (min-width: 821px){
  .hero-ch{
    min-height: clamp(560px, 68vh, 860px) !important; /* gives room so top can show */
  }

  .hero-ch .hero-bg img{
    object-fit: cover !important;
    object-position: 50% 0% !important; /* THIS is the fix */
  }

  /* optional: stop the overlay from blacking out the title */
  .hero-ch::after{
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.25) 0%,
      rgba(0,0,0,.50) 40%,
      rgba(0,0,0,.80) 100%
    ) !important;
  }
}
/* =========================
   MOBILE CTA (FINAL)
   - centered
   - stacked
   - floats slightly over hero
   - no strip box
========================= */
@media (max-width: 820px){

  /* Ensure hero doesn't clip the floating section */
  .hero-ch{ overflow: visible; }

  /* Float the plaques up slightly over the hero */
  .cta-float{
    position: relative;
    z-index: 9999;
    transform: translateY(-200px); /* adjust: -34 lower, -54 higher */
    margin-top: 0;
    padding-bottom: 0;
  }

  /* Center within the container */
  .cta-float .container{
    display: flex;
    justify-content: center;
  }

  /* Stack and center */
  .cta-plaques{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    background: transparent;
    border: 0;
    padding: 0;
    backdrop-filter: none;
    box-shadow: none;
  }

  /* Big, readable plaques */
  .cta-plaques img{
    height: 122px;    /* change to 110 / 130 if you want */
    width: auto;
    display: block;
    max-width: none;
  }
}
