:root {
  --bg: #1c1c1f;
  --bg-alt: #232328;
  --text: #f1f1f3;
  --muted: #a3a3ab;
  --red: #f4515a;
  --orange: #f5a623;
  --pink: #ec4cb8;
  --green: #4cc88e;
  --blue: #4ab4ec;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

p { color: var(--muted); }

a { color: inherit; text-decoration: none; }

#tetris-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(28, 28, 31, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 64px; display: block; }
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { font-size: 15px; color: var(--muted); transition: color .2s; }
.nav nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--orange);
  color: #1c1c1f !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-cta:hover { background: #ffb938; }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px;
  flex-wrap: wrap;
}
.hero-content { max-width: 600px; flex: 1 1 420px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1.08; }
.hero .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: dropIn .6s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero .line:nth-child(1) { animation-delay: .1s; }
.hero .line:nth-child(2) { animation-delay: .35s; }
.hero .line:nth-child(3) { animation-delay: .6s; }
.hero .line:nth-child(4) { animation-delay: .85s; }
.highlight {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-50px); }
  60% { opacity: 1; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 1.05rem;
  margin: 24px 0 32px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp .6s ease forwards;
  animation-delay: 1.15s;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #1c1c1f;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: transform .15s ease, background .2s ease;
  opacity: 0;
  animation: fadeUp .6s ease forwards;
  animation-delay: 1.35s;
}
.btn-primary:hover { background: #ffb938; transform: translateY(-2px); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Falling tetris stack animation in hero */
.hero-stack {
  position: relative;
  width: 260px;
  height: 420px;
  flex: 0 0 260px;
}
.tetri-block {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.25), inset 0 6px 0 rgba(255,255,255,0.18);
  opacity: 0;
  animation: fallBlock 1s cubic-bezier(.5,0,.7,1) forwards;
}
@keyframes fallBlock {
  0% { opacity: 1; transform: translateY(-360px); }
  70% { opacity: 1; transform: translateY(var(--landing)); }
  85% { opacity: 1; transform: translateY(calc(var(--landing) - 10px)); }
  100% { opacity: 1; transform: translateY(var(--landing)); }
}

/* Playful one-time entrance for the calm mobile block row — drops in,
   bounces gently, then settles and stays put. */
@keyframes mobileBlockIn {
  0% { opacity: 0; transform: translateY(-46px) scale(.55) rotate(-10deg); }
  55% { opacity: 1; transform: translateY(7px) scale(1.06) rotate(3deg); }
  75% { opacity: 1; transform: translateY(-2px) scale(.97) rotate(-1deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

/* SECTIONS */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
}
.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.block-prefix {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.25), inset 0 4px 0 rgba(255,255,255,0.2);
}
.section-note {
  margin-top: 36px;
  font-size: 1.05rem;
  max-width: 640px;
}

/* SERVICES */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.22), inset 0 6px 0 rgba(255,255,255,0.18);
}
.i-content { background: var(--red); }
.i-social { background: var(--pink); }
.i-photo { background: var(--green); }
.i-ads { background: var(--blue); }
.i-ugc { background: linear-gradient(135deg, var(--pink), var(--orange)); }
.i-design { background: linear-gradient(135deg, var(--blue), var(--green)); }
.i-jit { background: linear-gradient(135deg, var(--red), var(--blue)); }

/* WHY US */
.grid-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.16); }
.why-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  opacity: 0.85;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; }

/* PROCESS */
.grid-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.process-step {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 26px 22px;
  transition: transform .2s ease, border-color .2s ease;
}
.process-step:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.16); }
.process-block {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: inset 0 -5px 0 rgba(0,0,0,0.22), inset 0 5px 0 rgba(255,255,255,0.18);
}
.process-block-1 { background: var(--red); }
.process-block-2 { background: var(--orange); }
.process-block-3 { background: var(--pink); }
.process-block-4 { background: var(--green); }
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; }

/* NUMBERS */
.section-numbers { background: var(--bg-alt); border-radius: 16px; }
.grid-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.number-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 20px;
}
.number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.number-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SHOWCASE */
.showcase { margin-top: 56px; }
.showcase-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.showcase-intro {
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 0 22px;
}
.grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.showcase-card {
  display: block;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}
.showcase-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  position: relative;
}
.thumb-1 { background: linear-gradient(135deg, var(--red), var(--orange)); }
.thumb-2 { background: linear-gradient(135deg, var(--green), var(--blue)); }
.thumb-3 { background: linear-gradient(135deg, var(--pink), var(--blue)); }
.showcase-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.ig-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 2.5px solid rgba(255,255,255,0.92);
  border-radius: 14px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.ig-icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2.5px solid rgba(255,255,255,0.92);
  border-radius: 50%;
}
.ig-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
}
.fb-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.fb-icon::before {
  content: "f";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.95);
}
.platform-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.28);
  padding: 4px 9px;
  border-radius: 5px;
}
.showcase-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.ig-handle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}
.showcase-note { margin-top: 26px; font-size: 0.9rem; }

/* CLIENTS */
.grid-clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.client-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.client-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.16); }
.client-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.client-card p { font-size: 0.95rem; }
.client-flagship {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(245,166,35,0.12), var(--bg-alt) 60%);
}
.client-wide {
  grid-column: 1 / -1;
}
.client-wide p { max-width: 760px; }
.client-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--orange);
  color: #1c1c1f;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
}
.client-more {
  border-style: dashed;
  background: transparent;
}

/* PORTFOLIO (click-through cards linking out to Instagram) */
.portfolio-intro { max-width: 640px; margin: 0 auto 32px; text-align: left; }
.grid-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}
.portfolio-card {
  display: block;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}
.portfolio-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  position: relative;
}
.portfolio-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.play-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,0,0,0.28);
  border: 2.5px solid rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgba(255,255,255,0.92);
  margin-left: 4px;
}
.portfolio-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* CTA */
.section-cta { text-align: center; }
.cta-box {
  background: linear-gradient(135deg, rgba(244,81,90,0.15), rgba(74,180,236,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 70px 40px;
}
.cta-box h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 16px; }
.cta-box p { max-width: 480px; margin: 0 auto 30px; }
.btn-large { padding: 16px 36px; font-size: 1.05rem; opacity: 1; animation: none; }

/* CREATOR SPOTLIGHT (Kavárník Mója) */
.section-creator { text-align: center; }
.creator-box {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245,166,35,0.14), rgba(244,81,90,0.10));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 56px 40px 46px;
}
.creator-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #1c1c1f;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 5px;
  white-space: nowrap;
}
.creator-layout {
  display: flex;
  align-items: center;
  gap: 36px;
  text-align: left;
  margin-bottom: 34px;
}
.creator-photo {
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--orange);
}
.creator-content { flex: 1 1 auto; }
.creator-content h2 {
  justify-content: flex-start;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 14px;
}
.creator-content p { margin: 0 0 14px; }
.creator-content p:last-child { margin-bottom: 0; }
.creator-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.creator-stat { display: flex; flex-direction: column; align-items: center; }
.creator-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.creator-stat-label {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}
.contact-form input {
  flex: 1 1 200px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.contact-form input::placeholder { color: var(--muted); }
.contact-form input:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form button { flex: 1 1 100%; cursor: pointer; border: none; }
.form-success {
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}
.form-hint {
  margin-top: 14px;
  font-size: 0.82rem;
}

.contact-direct {
  margin: 34px auto 0;
  max-width: 380px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.contact-direct-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-direct-phone {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}
.contact-direct-phone:hover { text-decoration: underline; }
.contact-direct-name {
  margin-top: 4px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.contact-direct-tip {
  margin-top: 6px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--orange);
}

/* FOOTER LINKS */
.footer-links { margin-top: 4px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover { color: var(--text); }

/* COOKIE BANNER */
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
/* Slide/fade the banner in gently instead of popping over the hero animation */
.cookie-banner-enter {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.cookie-banner-enter.cookie-banner-show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  flex: 1 1 320px;
}
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-banner .btn-primary {
  opacity: 1;
  animation: none;
  padding: 11px 22px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}

/* LEGAL PAGE */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}
.legal h1 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin-bottom: 6px;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.legal section { margin-bottom: 34px; }
.legal h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--orange);
}
.legal p, .legal li { font-size: 0.96rem; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); text-decoration: underline; }
.legal-back {
  display: inline-block;
  margin-top: 10px;
  opacity: 1;
  animation: none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 50px 24px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.logo-footer { height: 46px; margin: 0 auto 14px; opacity: 0.85; }
.footer p { font-size: 0.9rem; }

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 16px;
  }
  .hero-content { margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  /* The falling stack overlapped the heading on narrow screens — hide it
     and instead show a small calm row of blocks under the CTA. */
  .hero-stack {
    display: grid;
    grid-template-columns: repeat(4, 34px);
    grid-auto-rows: 34px;
    position: static;
    width: auto;
    height: auto;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
  }
  .hero-stack .tetri-block {
    position: static;
    width: 34px;
    height: 34px;
    opacity: 0;
    animation: mobileBlockIn .55s cubic-bezier(.34,1.56,.64,1) forwards;
  }

  /* Calm down the background animation so it doesn't distract from the text */
  #tetris-bg { opacity: 0.18; }

  .nav { padding: 4px 0; }
  .nav-inner { padding: 10px 16px; }
  .logo { height: 34px; }
  .nav nav { gap: 14px; }
  .nav nav a:not(.nav-cta) { display: none; }
  .nav-cta {
    padding: 8px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .section { padding: 60px 20px; }
  .hero + .section { padding-top: 28px; }

  /* Showcase profiles: switch from tall stacked cards to a compact tile grid */
  .grid-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .showcase-card { border-radius: 10px; }
  .showcase-thumb { height: 92px; }
  .ig-icon, .fb-icon { width: 32px; height: 32px; border-radius: 10px; }
  .ig-icon::before { inset: 7px; }
  .ig-icon::after { width: 5px; height: 5px; top: 6px; right: 6px; }
  .fb-icon::before { font-size: 1.15rem; }
  .platform-tag {
    top: 7px;
    left: 7px;
    font-size: 0.6rem;
    padding: 3px 7px;
  }
  .showcase-label {
    padding: 10px 12px;
    font-size: 0.8rem;
    gap: 2px;
  }
  .ig-handle { font-size: 0.7rem; }

  /* Portfolio: switch from stacked single column to a 2-up tile grid */
  .grid-portfolio {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .portfolio-card { border-radius: 10px; }
  .portfolio-thumb { height: 110px; }
  .play-icon { width: 40px; height: 40px; border-width: 2px; }
  .play-icon::before { border-width: 7px 0 7px 11px; margin-left: 3px; }
  .ig-icon, .fb-icon { width: 32px; height: 32px; border-radius: 10px; }
  .ig-icon::before { inset: 7px; }
  .ig-icon::after { width: 5px; height: 5px; top: 6px; right: 6px; }
  .portfolio-label {
    padding: 10px 12px;
    font-size: 0.78rem;
    gap: 2px;
  }
  .portfolio-label .ig-handle { font-size: 0.66rem; }

  /* Services: 2-up tile grid instead of one big column */
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .grid-services .card {
    padding: 18px 16px;
    border-radius: 10px;
  }
  .grid-services .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    margin-bottom: 12px;
  }
  .grid-services .card h3 { font-size: 0.98rem; margin-bottom: 6px; }
  .grid-services .card p { font-size: 0.82rem; }

  .cookie-banner {
    display: block;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 18px;
    text-align: center;
  }
  .cookie-banner p { margin-bottom: 14px; }
  .cookie-banner .btn-primary { display: block; width: 100%; }

  .creator-layout {
    flex-direction: column;
    text-align: center;
  }
  .creator-photo { flex: 0 0 140px; width: 140px; height: 140px; }
  .creator-content h2 { justify-content: center; }
  .creator-content p { text-align: left; }
}
