/* =====================================================================
   Sefoulis — cozy mobile game studio
   Shared stylesheet (style.css)
   Palette, typography and components recreated from the Claude Design
   handoff. Plain CSS, no build step. Edit colours via the variables below.
   ===================================================================== */

:root {
  /* Brand palette */
  --cream:        #FFF7ED;   /* page background */
  --ink:          #4A352B;   /* main text / footer bg */
  --orange:       #EE7B4E;   /* primary accent */
  --orange-dark:  #B85C34;
  --pink:         #F6A8C0;
  --green:        #86CFB8;
  --green-dark:   #2E8B6E;
  --yellow:       #FFD36B;

  /* Tints & text */
  --tint-cream:   #FFE7C2;
  --muted:        #7A6453;
  --muted-2:      #8A7460;
  --muted-3:      #A07E63;
  --muted-4:      #C2A48C;

  /* Borders */
  --bd-nav:       #FBE3CB;
  --bd-card:      #FCE9D6;
  --bd-input:     #F0E0CE;
  --bd-filter:    #F0D9C2;

  /* Misc */
  --maxw:         1180px;
  --radius-card:  30px;
  --shadow-card:  0 16px 36px rgba(0,0,0,.05);
  --shadow-soft:  0 14px 30px rgba(0,0,0,.04);
  --font-head:    'Fredoka', sans-serif;
  --font-body:    'Nunito', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--yellow); color: var(--ink); }

/* Hide elements toggled by JS (filters / form states / language) */
[hidden] { display: none !important; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section   { max-width: var(--maxw); margin: 0 auto; padding: 50px 28px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tint-cream); color: var(--orange-dark);
  font-weight: 800; font-size: 14px; padding: 8px 16px;
  border-radius: 999px; white-space: nowrap;
}

/* =====================================================================
   Navigation
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,247,237,.82);
  border-bottom: 2px solid var(--bd-nav);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 24px; letter-spacing: -.5px;
}

/* Logo badge — orange/pink rounded square with a little chef hat */
.logo-badge {
  width: 46px; height: 46px; border-radius: 16px;
  background: linear-gradient(145deg, var(--orange), var(--pink));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(238,123,78,.35);
  position: relative; flex: none;
}
.logo-badge .hat-base {
  position: absolute; top: -7px; width: 30px; height: 20px;
  background: #fff; border-radius: 12px 12px 4px 4px;
  box-shadow: 0 2px 0 rgba(0,0,0,.04);
}
.logo-badge .hat-puff { position: absolute; background: #fff; border-radius: 50%; }
.logo-badge .puff-l { top: -12px; left: 8px;  width: 13px; height: 13px; }
.logo-badge .puff-r { top: -12px; right: 8px; width: 13px; height: 13px; }
.logo-badge .puff-c { top: -16px; left: 16px; width: 14px; height: 14px; }
.logo-badge .logo-letter {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: 22px; margin-top: 8px;
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-weight: 700; padding: 9px 16px; border-radius: 999px;
  color: var(--muted-2); transition: background .15s, color .15s;
}
.nav-link:hover { background: #FBE3CB; color: var(--orange-dark); }
.nav-link.active { background: #FBE3CB; color: var(--orange-dark); }

.lang-btn {
  margin-left: 6px; font-family: var(--font-body); font-weight: 800;
  font-size: 13px; padding: 9px 14px; border-radius: 999px;
  border: 2px solid var(--orange); background: #fff; color: var(--orange);
  cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.lang-btn:hover { background: var(--orange); color: #fff; }
.lang-btn .globe { font-size: 14px; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  font-family: var(--font-head); font-weight: 600; font-size: 18px;
  padding: 15px 28px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(238,123,78,.4); }
.btn-ghost   { background: #fff; color: var(--orange-dark); border: 2px solid #FBD9B8; }

/* =====================================================================
   Home — hero
   ===================================================================== */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px 28px 30px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center;
}
.hero h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 58px; line-height: 1.04; letter-spacing: -1px;
  margin: 18px 0; text-wrap: balance;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 20px; line-height: 1.55; color: var(--muted);
  max-width: 460px; margin: 0 0 30px; text-wrap: pretty;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.soon-row {
  display: flex; align-items: center; gap: 18px; margin-top: 28px;
  color: var(--muted-3); font-weight: 700; font-size: 14px; flex-wrap: wrap;
}
.store-chips { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.store-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 2px solid var(--bd-input); border-radius: 12px;
  padding: 7px 12px; font-size: 13px; color: #6B5848;
}

/* Mascot */
.mascot-wrap { position: relative; display: grid; place-items: center; min-height: 420px; }
.blob {
  position: absolute; width: 360px; height: 360px;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(150deg, #FFE0B8, #F9C6D5);
  filter: blur(2px); animation: floatySlow 7s ease-in-out infinite;
}
.float-chip {
  position: absolute; display: grid; place-items: center;
  animation: floaty 5s ease-in-out infinite;
}
.float-code {
  top: 18px; right: 30px; width: 64px; height: 64px; border-radius: 18px;
  background: var(--green); box-shadow: 0 8px 18px rgba(134,207,184,.5);
  color: #fff; font-weight: 800; font-family: var(--font-head); --r: 8deg;
}
.float-game {
  bottom: 36px; left: 14px; width: 58px; height: 58px; border-radius: 16px;
  background: var(--yellow); box-shadow: 0 8px 18px rgba(255,211,107,.55);
  font-size: 26px; --r: -10deg; animation-delay: .6s; animation-duration: 6s;
}
.float-heart {
  bottom: 90px; right: 6px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 8px 18px rgba(246,168,192,.55);
  font-size: 20px; animation-delay: .3s; animation-duration: 4.4s;
}

/* CSS chef mascot */
.chef { position: relative; z-index: 2; width: 280px; height: 320px; display: grid; place-items: end center; }
.chef-inner { position: relative; width: 200px; height: 250px; display: grid; place-items: center; }
.chef-hat { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 150px; height: 92px; }
.chef-hat .band { position: absolute; bottom: 0; left: 18px; width: 114px; height: 40px; background: #fff; border-radius: 10px; box-shadow: inset 0 -6px 0 rgba(0,0,0,.04), 0 6px 14px rgba(0,0,0,.06); }
.chef-hat .puff { position: absolute; top: 0; width: 60px; height: 60px; background: #fff; border-radius: 50%; box-shadow: 0 6px 14px rgba(0,0,0,.05); }
.chef-hat .puff.l { left: 8px; }
.chef-hat .puff.r { right: 8px; }
.chef-hat .puff.c { top: -10px; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; box-shadow: none; }
.chef-face { position: absolute; top: 78px; width: 150px; height: 138px; background: linear-gradient(160deg, #FFE3CB, #FFD2B0); border-radius: 50% 50% 46% 46%; box-shadow: 0 14px 30px rgba(238,123,78,.25); }
.chef-eye { position: absolute; top: 132px; width: 16px; height: 18px; background: var(--ink); border-radius: 50%; }
.chef-eye.l { left: 64px; }
.chef-eye.r { right: 64px; }
.chef-cheek { position: absolute; top: 130px; width: 18px; height: 9px; background: var(--pink); border-radius: 50%; opacity: .7; }
.chef-cheek.l { left: 50px; }
.chef-cheek.r { right: 50px; }
.chef-smile { position: absolute; top: 158px; left: 50%; transform: translateX(-50%); width: 30px; height: 16px; border: 4px solid var(--ink); border-top: none; border-radius: 0 0 30px 30px; }

/* =====================================================================
   Section headings
   ===================================================================== */
.section-head { text-align: center; margin-bottom: 38px; }
.section-head h2 {
  font-family: var(--font-head); font-weight: 700; font-size: 40px;
  margin: 0 0 10px; letter-spacing: -.5px;
}
.section-head p { font-size: 18px; color: var(--muted-2); margin: 0; }

/* =====================================================================
   Category cards (home)
   ===================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  background: #fff; border-radius: 28px; padding: 32px 28px;
  border: 2px solid var(--bd-card); box-shadow: var(--shadow-soft);
}
.cat-icon { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; font-size: 32px; margin-bottom: 18px; }
.cat-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 24px; margin: 0 0 8px; }
.cat-card p { color: var(--muted-2); line-height: 1.55; margin: 0; font-size: 16px; }

/* =====================================================================
   Game cards
   ===================================================================== */
.games-band { background: linear-gradient(180deg, #FFF7ED, #FCEBD7); padding: 56px 0; }
.games-band-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.pill-tag { display: inline-block; background: var(--green); color: #fff; font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 12px; }
.games-band-head h2 { font-family: var(--font-head); font-weight: 700; font-size: 40px; margin: 0; letter-spacing: -.5px; }
.link-all { font-weight: 800; color: var(--orange); white-space: nowrap; }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.game-card {
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  border: 2px solid var(--bd-card); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.game-cover { height: 180px; position: relative; display: grid; place-items: center; }
.game-cover.tall { height: 190px; }
.game-emoji { font-size: 68px; }
.feat-grid .game-emoji { font-size: 72px; }
.game-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.92); font-weight: 800; font-size: 12px;
  padding: 6px 12px; border-radius: 999px;
}
.game-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.game-tag { font-size: 12px; font-weight: 800; letter-spacing: .5px; }
.feat-grid .game-tag { font-size: 13px; }
.game-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 24px; margin: 6px 0 8px; }
.feat-grid .game-card h3 { font-size: 26px; }
.game-desc { color: var(--muted-2); line-height: 1.5; margin: 0 0 18px; font-size: 15px; flex: 1; }
.feat-grid .game-desc { font-size: 16px; }

.store-row { display: flex; gap: 9px; }
.store-btn {
  flex: 1; text-align: center; background: #F4ECE3; color: #B0987F;
  font-weight: 700; font-size: 13px; padding: 11px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .15s, color .15s;
}
.feat-grid .store-btn { font-size: 14px; border-radius: 14px; }
/* Live links (real store URLs) get the brand colour; '#' placeholders stay muted */
.store-btn.live:hover { background: var(--orange); color: #fff; }
.store-btn svg { width: 15px; height: 15px; flex: none; }

/* =====================================================================
   About (home)
   ===================================================================== */
.about-grid { max-width: var(--maxw); margin: 0 auto; padding: 64px 28px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.about-art { position: relative; min-height: 280px; background: linear-gradient(150deg, #E0F4EC, #FFF1CC); border-radius: 32px; display: grid; place-items: center; overflow: hidden; }
.about-art .big-emoji { font-size: 110px; position: relative; z-index: 1; }
.about-art .dot { position: absolute; top: 24px; left: 24px; width: 18px; height: 18px; border-radius: 50%; background: var(--pink); }
.about-art .square { position: absolute; bottom: 30px; right: 36px; width: 26px; height: 26px; border-radius: 8px; background: var(--orange); transform: rotate(18deg); }
.about-art .code { position: absolute; bottom: 60px; left: 30px; font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 24px; }
.about-text h2 { font-family: var(--font-head); font-weight: 700; font-size: 40px; margin: 0 0 18px; letter-spacing: -.5px; text-wrap: balance; }
.about-text p { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; text-wrap: pretty; }
.about-text p:last-child { margin-bottom: 0; }

/* =====================================================================
   Newsletter (home)
   ===================================================================== */
.news { max-width: var(--maxw); margin: 0 auto 64px; padding: 0 28px; }
.news-inner {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border-radius: 36px; padding: 54px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.news-inner .o1 { position: absolute; top: -30px; left: -20px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.12); }
.news-inner .o2 { position: absolute; bottom: -40px; right: -10px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.1); }
.news-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: 38px; margin: 0 0 10px; letter-spacing: -.5px; }
.news-inner p { font-size: 18px; opacity: .95; margin: 0 0 26px; }
.news-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.news-form input {
  flex: 1; min-width: 220px; font-family: var(--font-body); font-size: 16px;
  padding: 15px 20px; border-radius: 999px; border: none; outline: none; color: var(--ink);
}
.news-form button {
  font-family: var(--font-head); font-weight: 600; font-size: 17px;
  padding: 15px 30px; border-radius: 999px; border: none;
  background: var(--ink); color: #fff; cursor: pointer; transition: transform .15s;
}
.news-form button:hover { transform: translateY(-2px); }

/* =====================================================================
   Games page — hero, filters, kitchen strip
   ===================================================================== */
.page-hero { max-width: var(--maxw); margin: 0 auto; padding: 56px 28px 34px; text-align: center; }
.page-hero h1 { font-family: var(--font-head); font-weight: 700; font-size: 52px; margin: 18px 0 14px; letter-spacing: -1px; text-wrap: balance; }
.page-hero p { font-size: 19px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.55; }

.filters { max-width: var(--maxw); margin: 0 auto; padding: 0 28px 30px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  padding: 10px 20px; border-radius: 999px; cursor: pointer;
  transition: all .15s; border: 2px solid var(--bd-filter); background: #fff; color: var(--muted-3);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { border-color: var(--orange); background: var(--orange); color: #fff; }

.kitchen { max-width: var(--maxw); margin: 30px auto 0; padding: 0 28px 64px; }
.kitchen-inner {
  background: linear-gradient(135deg, var(--green), #9FD8C4);
  border-radius: 32px; padding: 44px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; color: #fff;
}
.kitchen-inner h3 { font-family: var(--font-head); font-weight: 700; font-size: 30px; margin: 0 0 8px; }
.kitchen-inner p { font-size: 17px; opacity: .95; margin: 0; max-width: 460px; }
.kitchen-cta { font-family: var(--font-head); font-weight: 600; font-size: 17px; padding: 14px 28px; border-radius: 999px; background: #fff; color: var(--green-dark); white-space: nowrap; transition: transform .15s; }
.kitchen-cta:hover { transform: translateY(-2px); }

/* =====================================================================
   Contact page
   ===================================================================== */
.contact-grid { max-width: var(--maxw); margin: 0 auto; padding: 56px 28px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-intro h1 { font-family: var(--font-head); font-weight: 700; font-size: 48px; margin: 18px 0 16px; letter-spacing: -1px; text-wrap: balance; }
.contact-intro .lead { font-size: 19px; color: var(--muted); line-height: 1.6; margin: 0 0 32px; max-width: 420px; text-wrap: pretty; }

.info-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 2px solid var(--bd-card); border-radius: 20px;
  padding: 18px 22px; margin-bottom: 16px; box-shadow: var(--shadow-soft);
  transition: transform .15s;
}
a.info-card:hover { transform: translateY(-2px); }
.info-icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-size: 24px; flex: none; }
.info-label { display: block; font-size: 13px; font-weight: 800; color: var(--muted-4); letter-spacing: .5px; }
.info-value { display: block; font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--ink); }

.follow-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; margin: 30px 0 14px; }
.social-row { display: flex; gap: 12px; }
.social-big { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-size: 22px; transition: transform .15s; }
.social-big:hover { transform: translateY(-3px); }
.social-big.ig { background: linear-gradient(145deg, var(--pink), var(--orange)); box-shadow: 0 8px 18px rgba(238,123,78,.3); }
.social-big.tt { background: var(--ink); }
.social-big.yt { background: var(--orange); }

.contact-form {
  background: #fff; border-radius: 32px; padding: 38px 34px;
  border: 2px solid var(--bd-card); box-shadow: 0 20px 44px rgba(0,0,0,.06);
}
.contact-form h3 { font-family: var(--font-head); font-weight: 600; font-size: 26px; margin: 0 0 22px; }
.contact-form label { display: block; font-weight: 700; font-size: 14px; color: #6B5848; margin-bottom: 7px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  padding: 14px 16px; border-radius: 14px; border: 2px solid var(--bd-input);
  outline: none; margin-bottom: 18px; background: #FFFCF8; color: var(--ink);
  transition: border-color .15s;
}
.contact-form textarea { resize: vertical; margin-bottom: 22px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); }
.contact-form .submit {
  width: 100%; font-family: var(--font-head); font-weight: 600; font-size: 18px;
  padding: 16px; border-radius: 16px; border: none; background: var(--orange);
  color: #fff; cursor: pointer; box-shadow: 0 10px 22px rgba(238,123,78,.35);
  transition: transform .15s;
}
.contact-form .submit:hover { transform: translateY(-2px); }
.form-success { text-align: center; padding: 40px 10px; }
.form-success .emoji { font-size: 64px; margin-bottom: 14px; }
.form-success h3 { font-family: var(--font-head); font-weight: 700; font-size: 28px; margin: 0 0 10px; }
.form-success p { color: var(--muted-2); font-size: 17px; margin: 0; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--ink); color: #FFE9D5; padding: 50px 28px 30px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start; }
.foot-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-logo { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(145deg, var(--orange), var(--pink)); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; }
.foot-brand-name { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; }
.foot-tag { color: #C8AE9B; line-height: 1.6; max-width: 320px; margin: 0; }
.foot-col h4 { font-family: var(--font-head); font-weight: 600; font-size: 17px; margin: 0 0 14px; color: #fff; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: #C8AE9B; transition: color .15s; }
.foot-links a:hover { color: #fff; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; font-size: 18px; transition: background .15s; }
.foot-social a:hover { background: rgba(255,255,255,.2); }
.foot-bottom { max-width: var(--maxw); margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #A88B77; font-size: 14px; }

/* =====================================================================
   Animations
   ===================================================================== */
@keyframes floaty     { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }
@keyframes floatySlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

@media (prefers-reduced-motion: reduce) {
  .blob, .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; }
  .mascot-wrap { min-height: 360px; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 46px; }
}

@media (max-width: 760px) {
  .cat-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .games-band-head { flex-direction: column; align-items: flex-start; }
  .section-head h2, .games-band-head h2, .about-text h2 { font-size: 32px; }
  .page-hero h1 { font-size: 40px; }
  .contact-intro h1 { font-size: 38px; }
  .kitchen-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  .container, .section, .hero, .nav-inner, .page-hero, .filters,
  .about-grid, .news, .contact-grid { padding-left: 18px; padding-right: 18px; }
  .nav-inner { padding: 12px 18px; }
  .brand-name { display: none; }            /* keep just the badge on tiny screens */
  .nav-link { padding: 8px 12px; font-size: 14px; }
  .lang-btn { padding: 8px 11px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 18px; }
  .btn { font-size: 16px; padding: 13px 22px; }
  .news-inner, .kitchen-inner { padding: 36px 24px; }
  .contact-form { padding: 28px 22px; }
}
