/* ══════════════════════════════════════════════════════════════
   STORE — Photolab Academy (Premium Enterprise v4)
   ══════════════════════════════════════════════════════════════ */

:root {
  --st-accent: #cd6903;
  --st-accent-hover: #b85d02;
  --st-gold: #f0b878;
  --st-dark: #0a0a0a;
  --st-dark2: #141414;
  --st-text: #2a2a2a;
  --st-muted: #6e6e6e;
  --st-border: #e9e5df;
  --st-bg: #fff;
  --st-alt: #f7f4ef;
  --st-r: 20px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.st-hero {
  padding: 170px 24px 110px;
  text-align: center;
  background: var(--st-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(205,105,3,.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(205,105,3,.06) 0%, transparent 40%);
}
.st-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--st-dark));
}
.st-hero__inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.st-hero__tag {
  font-size: .68rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--st-gold);
  margin-bottom: 20px; display: block;
}
.st-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.0; color: #fff; margin: 0 0 22px; font-weight: 400;
}
.st-hero h1 em { font-style: italic; color: var(--st-gold); }
.st-hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.6); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.7;
}
.st-hero__nav { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.st-pill {
  padding: 13px 28px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s; backdrop-filter: blur(6px);
}
.st-pill:hover, .st-pill--on {
  background: var(--st-accent); color: #fff;
  border-color: var(--st-accent);
  box-shadow: 0 6px 24px rgba(205,105,3,.45);
}

/* ── IN BREVE — Knowledge Panel ──────────────────────────────── */
.st-brief {
  padding: 100px 24px;
  background: linear-gradient(180deg, #fdfcfa 0%, var(--st-alt) 100%);
  position: relative; overflow: hidden;
}
.st-brief::before {
  content: ''; position: absolute;
  top: -80px; right: -100px; width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,105,3,.07) 0%, transparent 65%);
  pointer-events: none;
}
.st-brief__inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 64px; align-items: start; position: relative; z-index: 1;
}
.st-brief__head { margin-bottom: 32px; }
.st-brief__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .6rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--st-accent);
  background: rgba(205,105,3,.1); padding: 7px 16px;
  border-radius: 50px; margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(205,105,3,.12);
}
.st-brief__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1; color: var(--st-dark); font-weight: 400; margin: 0;
}
.st-brief__title em { font-style: italic; color: var(--st-accent); }
.st-brief__stats {
  display: flex; gap: 0; margin-bottom: 36px;
  background: #fff; border-radius: 14px;
  border: 1px solid var(--st-border);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.04);
}
.st-brief__stat {
  flex: 1; text-align: center; padding: 26px 18px;
  border-right: 1px solid var(--st-border);
  position: relative;
}
.st-brief__stat:last-child { border-right: none; }
.st-brief__stat::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--st-accent), var(--st-gold));
  opacity: .6;
}
.st-brief__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--st-dark); line-height: 1;
  background: linear-gradient(135deg, var(--st-dark), var(--st-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.st-brief__lbl {
  font-size: .67rem; color: var(--st-muted);
  letter-spacing: .4px; margin-top: 8px; display: block;
}
.st-brief__specs {
  background: #fff; border-radius: 18px;
  border: 1px solid var(--st-border);
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.05);
}
.st-brief__row {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 18px; padding: 16px 28px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  font-size: .9rem; align-items: baseline;
  transition: background .2s;
}
.st-brief__row:hover { background: rgba(205,105,3,.02); }
.st-brief__row:last-child { border-bottom: none; }
.st-brief__k {
  font-weight: 700; color: var(--st-dark);
  font-size: .73rem; letter-spacing: .5px; text-transform: uppercase;
}
.st-brief__v { color: var(--st-text); line-height: 1.55; }
.st-brief__v strong { color: var(--st-accent); font-weight: 700; }
.st-brief__right { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.st-brief__qa {
  background: #fff; border-radius: 18px; padding: 30px 26px;
  border: 1px solid var(--st-border);
  box-shadow: 0 8px 32px rgba(0,0,0,.05);
}
.st-brief__qa-label {
  font-size: .6rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--st-accent); margin-bottom: 20px;
}
.st-brief__q {
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700;
  color: var(--st-dark); margin-bottom: 5px; padding-top: 16px;
  border-top: 1px solid var(--st-border);
}
.st-brief__q:first-of-type { border-top: none; padding-top: 0; }
.st-brief__a { font-size: .85rem; color: var(--st-muted); line-height: 1.6; margin-bottom: 12px; }
.st-brief__voice {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(145deg, var(--st-dark) 0%, var(--st-dark2) 100%);
  border-radius: 18px; padding: 28px 26px;
  border: 1px solid rgba(205,105,3,.3);
  box-shadow: 0 12px 36px rgba(0,0,0,.2), 0 0 0 1px rgba(205,105,3,.1);
}
.st-brief__avatar {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--st-accent); flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(205,105,3,.35);
}
.st-brief__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: rgba(255,255,255,.9); line-height: 1.5; margin: 0 0 10px;
}
.st-brief__quote::before {
  content: '\201c'; font-size: 2rem; color: var(--st-accent);
  line-height: 0; vertical-align: -8px; margin-right: 6px;
}
.st-brief__sign { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .5px; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.st-sec { padding: 110px 24px; }
.st-sec--alt { background: var(--st-alt); }
.st-sec__hd { text-align: center; max-width: 680px; margin: 0 auto 68px; }
.st-sec__hd h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  color: var(--st-dark); margin: 12px 0 16px;
  line-height: 1.1; font-weight: 400;
}
.st-sec__hd h2 em { font-style: italic; color: var(--st-accent); }
.st-sec__hd p { font-size: 1rem; color: var(--st-muted); line-height: 1.65; }
.st-tag {
  font-size: .63rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--st-accent);
}

/* ── SUBSCRIPTION CARDS ──────────────────────────────────────── */
.st-sub-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.st-sub {
  border-radius: var(--st-r); padding: 44px 32px;
  display: flex; flex-direction: column;
  border: 1px solid var(--st-border); background: #fff;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  position: relative;
}
.st-sub:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,.1); }
.st-sub--feat {
  background: linear-gradient(160deg, var(--st-dark) 0%, var(--st-dark2) 100%);
  color: #fff; border-color: var(--st-accent);
  box-shadow: 0 0 0 1px var(--st-accent), 0 24px 56px rgba(205,105,3,.15);
}
.st-sub__badge {
  position: absolute; top: -1px; right: 26px;
  background: linear-gradient(135deg, var(--st-accent), #e8a040);
  color: #fff; font-size: .56rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(205,105,3,.3);
}
.st-sub h3 { font-family: 'Inter', sans-serif; font-size: .92rem; font-weight: 700; margin: 0 0 12px; letter-spacing: .3px; }
.st-sub__pr { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.st-sub__pr strong { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; }
.st-sub__pr span { font-size: .84rem; opacity: .5; }
.st-sub__note { font-size: .78rem; color: var(--st-muted); margin-bottom: 22px; }
.st-sub--feat .st-sub__note { color: rgba(255,255,255,.4); }
.st-sub__list { list-style: none; padding: 0; margin: 0 0 30px; flex-grow: 1; }
.st-sub__list li {
  padding: 10px 0; font-size: .86rem;
  border-bottom: 1px solid var(--st-border);
  display: flex; align-items: center; gap: 10px;
}
.st-sub--feat .st-sub__list li { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.78); }
.st-sub__list li::before { content: '\2713'; color: var(--st-accent); font-size: .72rem; font-weight: 700; }

/* ── CTA BUTTONS ─────────────────────────────────────────────── */
.st-cta {
  padding: 15px 30px; border-radius: 50px;
  font-size: .88rem; font-weight: 700; font-family: 'Inter', sans-serif;
  text-decoration: none; white-space: nowrap; letter-spacing: .3px;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
}
.st-cta--p {
  background: linear-gradient(135deg, var(--st-accent) 0%, #e08b20 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(205,105,3,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.st-cta--p:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(205,105,3,.55), inset 0 1px 0 rgba(255,255,255,.15);
}
.st-cta--o {
  border: 1.5px solid var(--st-border); color: var(--st-dark); background: #fff;
}
.st-cta--o:hover {
  border-color: var(--st-accent); color: var(--st-accent);
  box-shadow: 0 6px 18px rgba(205,105,3,.12);
}
.st-cta--w { border: 1.5px solid rgba(255,255,255,.2); color: #fff; }
.st-cta--w:hover { background: var(--st-accent); border-color: var(--st-accent); }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.st-g { max-width: 1200px; margin: 0 auto; display: grid; gap: 26px; }
.st-g4 { grid-template-columns: repeat(4, 1fr); }
.st-g2 { grid-template-columns: repeat(2, 1fr); }
.st-c {
  background: #fff; border: 1px solid var(--st-border);
  border-radius: var(--st-r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  position: relative;
}
.st-c:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,.12);
}
.st-c--feat { border-color: var(--st-accent); box-shadow: 0 0 0 1px var(--st-accent); }
.st-c__img {
  width: 100%; aspect-ratio: 3/2;
  object-fit: cover; object-position: center;
  display: block; transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.st-c:hover .st-c__img { transform: scale(1.06); }
.st-c__body { padding: 24px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.st-c__badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--st-accent), #e8a040);
  color: #fff; font-size: .56rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; z-index: 2;
  box-shadow: 0 4px 14px rgba(205,105,3,.45);
}
.st-c__level {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,10,10,.72); color: #fff;
  font-size: .56rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 7px 16px;
  border-radius: 50px; z-index: 2;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.st-c h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--st-dark);
  margin: 6px 0 10px; line-height: 1.2; font-weight: 600;
}
.st-c__desc { font-size: .85rem; color: var(--st-muted); line-height: 1.55; margin-bottom: auto; padding-bottom: 18px; }
.st-c__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--st-border); margin-top: auto;
}
.st-c__pr { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--st-dark); }
.st-c__pr span { font-size: .7rem; font-weight: 400; color: var(--st-muted); margin-left: 4px; }

/* ── TRUST + GIFT ────────────────────────────────────────────── */
.st-trust { text-align: center; padding: 44px 24px 0; font-size: .8rem; color: var(--st-muted); letter-spacing: .3px; }
.st-gift {
  padding: 80px 24px;
  background: linear-gradient(160deg, var(--st-dark) 0%, var(--st-dark2) 100%);
  text-align: center;
}
.st-gift h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: #fff; margin: 0 0 14px; }
.st-gift p { color: rgba(255,255,255,.55); font-size: 1rem; margin: 0 0 32px; line-height: 1.6; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .st-g4 { grid-template-columns: repeat(2, 1fr); }
  .st-sub-grid { grid-template-columns: repeat(2, 1fr); }
  .st-brief__inner { grid-template-columns: 1fr; gap: 36px; }
  .st-brief__right { position: static; }
}
@media (max-width: 600px) {
  .st-g4, .st-g2, .st-sub-grid { grid-template-columns: 1fr; }
  .st-c__foot { flex-direction: column; gap: 14px; align-items: flex-start; }
  .st-hero { padding: 140px 24px 80px; }
  .st-brief__row { grid-template-columns: 1fr; gap: 4px; }
  .st-brief__stats { flex-direction: column; }
  .st-brief__stat { border-right: none; border-bottom: 1px solid var(--st-border); padding: 18px; }
  .st-brief__stat:last-child { border-bottom: none; }
  .st-brief__stat::after { display: none; }
}
