/* =========================================================================
   Ghada Tohamy — Talent Street Consulting
   Restored & modernised static site
   Design system: elegant, warm, professional coaching/education brand
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --ink:        #2a2622;   /* warm near-black for text */
  --ink-soft:   #5a534c;   /* secondary text */
  --ink-faint:  #8a8178;   /* muted captions */
  --cream:      #faf6f0;   /* page background */
  --cream-2:    #f3ece2;   /* alternate section bg */
  --surface:    #ffffff;   /* cards */
  --line:       #e7ddd0;   /* hairlines / borders */

  --forest:     #2f4f47;   /* primary deep green */
  --forest-700: #243d37;
  --forest-300: #6f8c84;
  --gold:       #bd8b54;   /* warm accent */
  --gold-600:   #a4753f;
  --gold-100:   #f0e3d1;

  /* Typography */
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing & shape */
  --maxw: 1180px;
  --maxw-narrow: 800px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(42, 38, 34, .06);
  --shadow:    0 14px 40px rgba(42, 38, 34, .10);
  --shadow-lg: 0 28px 70px rgba(42, 38, 34, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--forest); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-600); }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-block;
  margin-bottom: .9rem;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.narrow { max-width: var(--maxw-narrow); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--cream-2); }
.section--forest { background: var(--forest); color: #f3efe8; }
.section--forest h2, .section--forest h3 { color: #fff; }
.section--forest p { color: #d8e0dc; }
.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 3rem; }
.section-head.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--forest); color: #fff; box-shadow: 0 8px 22px rgba(47,79,71,.28); }
.btn--primary:hover { background: var(--forest-700); color: #fff; box-shadow: 0 12px 30px rgba(47,79,71,.36); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 8px 22px rgba(189,139,84,.3); }
.btn--gold:hover { background: var(--gold-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: var(--gold-100); color: var(--forest-700); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600); margin-top: .35rem; font-weight: 600; }

.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__menu > li { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  padding: .5rem .8rem; border-radius: 999px;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--forest); background: rgba(47,79,71,.07); }
.nav__link .chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.has-dropdown:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .5rem; min-width: 240px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
/* transparent bridge so the mouse can cross the gap without the menu closing */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: .7rem .9rem; border-radius: 8px; font-size: .95rem; color: var(--ink-soft); font-weight: 500; }
.dropdown a:hover { background: var(--cream-2); color: var(--forest); }
.dropdown a small { display: block; font-weight: 400; font-size: .8rem; color: var(--ink-faint); margin-top: .1rem; }

.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span + span { margin-top: 6px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { margin-bottom: 1.3rem; }
.hero__title .accent { color: var(--gold-600); font-style: italic; }
.hero__role { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; color: var(--forest); letter-spacing: .01em; margin-bottom: 1.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__media { position: relative; max-width: 320px; margin-left: auto; }
.hero__media img { border-radius: 26px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; width: 100%; height: auto; max-height: min(440px, 62vh); object-fit: cover; }
.hero__media::before {
  content: ""; position: absolute; inset: -22px -22px auto auto; width: 75%; height: 75%;
  background: radial-gradient(circle at 70% 30%, var(--gold-100), transparent 70%);
  border-radius: 50%; z-index: 1;
}
.hero__badge {
  position: absolute; bottom: 22px; left: -18px; z-index: 3;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: .9rem 1.2rem; display: flex; align-items: center; gap: .7rem;
}
.hero__badge strong { font-family: var(--font-serif); font-size: 1.3rem; color: var(--forest); }
.hero__badge span { font-size: .8rem; color: var(--ink-faint); line-height: 1.3; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; }
.blob--1 { width: 360px; height: 360px; background: var(--gold-100); top: -120px; right: -80px; }
.blob--2 { width: 300px; height: 300px; background: #dfe7e2; bottom: -120px; left: -100px; }

/* ---- Full-bleed parallax hero (home) ---- */
.hero--bg { display: flex; align-items: center; min-height: clamp(640px, 100vh, 1040px); padding: 0; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../images/hero-bg.jpg") center 30% / cover no-repeat;
  background-attachment: fixed; /* parallax */
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(28,40,36,.86) 0%, rgba(28,40,36,.6) 45%, rgba(28,40,36,.25) 100%),
    linear-gradient(to top, rgba(20,28,25,.55), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; }
.hero--bg .hero__content { max-width: 640px; }
.hero--bg .hero__title { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.hero--bg .hero__role { color: var(--gold-100); }
.hero--bg .lead { color: #eef2ef; font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.eyebrow--light { color: #e7c79c; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-100); color: var(--gold-600); margin-bottom: 1.2rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-weight: 600; font-size: .92rem; color: var(--gold-600); }
.card__link .arrow { transition: transform .25s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* Service card with link covering whole card */
.card--link::after { content: ""; position: absolute; inset: 0; }

/* ---------- Accreditation pills ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.pill {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .7rem 1.25rem; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .55rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.pill:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--forest); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.stat span { font-size: .9rem; color: #cdd6d1; margin-top: .5rem; display: block; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split__media { position: relative; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: .85rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-soft); }
.checklist .check {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gold-100);
  color: var(--gold-600); display: grid; place-items: center; margin-top: 2px;
}
.checklist .check svg { width: 14px; height: 14px; }

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--surface); border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow); position: relative; border: 1px solid var(--line);
}
.quote__mark { font-family: var(--font-serif); font-size: 5rem; line-height: .6; color: var(--gold-100); position: absolute; top: 1.5rem; left: 1.8rem; }
.quote blockquote { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.4vw, 1.8rem); font-style: italic; color: var(--ink); line-height: 1.4; position: relative; z-index: 1; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; }
.quote cite strong { color: var(--forest); font-weight: 600; }
.quote cite span { display: block; font-size: .9rem; color: var(--ink-faint); margin-top: .2rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; position: relative; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: .85rem; color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--gold-600); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(47,79,71,.25), transparent 50%); opacity: 0; transition: opacity .35s var(--ease); }
.gallery figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,18,16,.92); display: none; place-items: center; z-index: 2000; padding: 2rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Toolbox columns ---------- */
.toolbox-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.toolbox-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.toolbox-card[dir="rtl"] { text-align: right; }
.toolbox-card h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info .info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-info .info-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; }
.contact-info .info-item h4 { font-family: var(--font-sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); margin-bottom: .25rem; }
.contact-info .info-item a, .contact-info .info-item p { font-size: 1.05rem; color: var(--ink); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-100); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: .8rem; }
.form-success { display: none; background: var(--gold-100); color: var(--forest-700); padding: 1rem 1.2rem; border-radius: 10px; margin-top: 1rem; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- Social ---------- */
.social { display: flex; gap: .6rem; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #f3efe8; border: 1px solid rgba(255,255,255,.14); transition: transform .25s var(--ease), background .25s var(--ease); }
.social a:hover { transform: translateY(-3px); background: var(--gold); color: #fff; }
.social svg { width: 18px; height: 18px; }
.social--dark a { background: var(--cream-2); color: var(--forest); border-color: var(--line); }
.social--dark a:hover { background: var(--gold); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--forest), var(--forest-700)); border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4rem); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(189,139,84,.25); top: -120px; right: -60px; filter: blur(40px); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #d8e0dc; max-width: 560px; margin: 1rem auto 2rem; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-700); color: #cdd6d1; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { font-family: var(--font-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 1.2rem; }
.site-footer a { color: #cdd6d1; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: .7rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #9fada7; }
.footer-bottom a { color: #9fada7; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin: 0 auto; order: -1; }
  /* parallax 'fixed' is janky / buggy on mobile — fall back to scroll */
  .hero__bg { background-attachment: scroll; background-position: center 25%; }
  .hero--bg { min-height: 78vh; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: initial; }
  .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .35s var(--ease);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { padding: .85rem .4rem; font-size: 1.05rem; border-radius: 8px; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 .5rem 1rem; min-width: 0; background: transparent; }
  .has-dropdown:hover .dropdown { transform: none; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .toolbox-tabs { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { left: 8px; }
}

@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .container { padding-inline: 1.15rem; }
}
