/* ===================================================================
   hibitions.com — Main Stylesheet
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1A3050;
  --navy-light:  #2A4880;
  --gold:        #C9A84C;
  --gold-light:  #E2C46A;
  --gold-pale:   #F7EDCF;
  --gold-dim:    rgba(201,168,76,0.18);

  --bg:          #FFFFFF;
  --surface:     #F6F3EC;
  --surface-2:   #EDEAE3;

  --text:        #0D1B2A;
  --text-mid:    #374B6A;
  --text-muted:  #6B7A94;

  --border:      rgba(13,27,42,0.10);
  --border-gold: rgba(201,168,76,0.30);

  --shadow-xs:   0 1px 4px  rgba(13,27,42,0.06);
  --shadow-sm:   0 3px 14px rgba(13,27,42,0.09);
  --shadow-md:   0 10px 32px rgba(13,27,42,0.13);
  --shadow-lg:   0 22px 64px rgba(13,27,42,0.17);
  --shadow-gold: 0 8px 28px  rgba(201,168,76,0.28);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      0.18s ease;

  --max-w:       1200px;
  --hh:          72px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-mid); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-label.no-before::before { display: none; }
.section-label.no-after::after   { display: none; }

.section-title   { margin-bottom: 14px; }
.section-lead    {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 52px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--hh);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: var(--t);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-name em { font-style: normal; color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 13px;
  border-radius: 8px;
  transition: var(--t-fast);
}
.nav-link:hover { color: var(--navy); background: var(--surface); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--hh);
  left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 0.95rem; padding: 11px 14px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: var(--surface);
  padding-top: calc(var(--hh) + 56px);
  padding-bottom: 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,27,42,0.065) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-bg-blob1 {
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 68%);
  top: -120px; right: -80px;
}
.hero-bg-blob2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,27,42,0.07) 0%, transparent 70%);
  bottom: 40px; left: 8%;
}
.hero-bg-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { max-width: 740px; margin: 0 auto; }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FEATURED BRAND SECTION ===== */
.featured-section {
  background: var(--bg);
  padding: 0 0 48px;
  position: relative;
  z-index: 5;
}

/* On desktop: normal flow below hero */
/* On mobile: overlaps hero (see media query) */

.featured-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.featured-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.featured-card-logo {
  flex-shrink: 0;
  margin-top: 18px; /* offset badge */
}
.featured-card-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.featured-card-info {
  flex: 1;
  min-width: 160px;
}
.featured-card-bonus-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.featured-card-bonus-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.featured-card-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.featured-stars {
  display: flex;
  gap: 2px;
}
.featured-stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.featured-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.featured-card-cta {
  flex-shrink: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-sections { background: var(--bg); }

.content-section { padding: 64px 0; }
.content-section--alt { background: var(--surface); }

.content-section-inner { max-width: 760px; }

.content-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-mid);
  margin-bottom: 20px;
  position: relative;
}
.content-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 12px;
}
.content-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text-mid);
}
.content-section p:last-child { margin-bottom: 0; }

/* ===== BRANDS SECTION ===== */
.brands-section {
  background: var(--bg);
  padding: 80px 0 96px;
}
.brands-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.brands-head .section-label {
  justify-content: center;
}

.brands-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Brand card */
.brand-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.brand-card:hover::after { opacity: 1; }

.brand-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.brand-card-img-wrap {
  padding: 26px 26px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.brand-card-img-wrap img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.brand-card-body {
  padding: 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.brand-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.brand-card-rating {
  display: flex;
  align-items: center;
  gap: 7px;
}
.brand-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; }
.brand-score { font-size: 0.77rem; font-weight: 600; color: var(--text-muted); }

.brand-card-footer { padding: 0 26px 26px; }

/* Featured brand (Betsson) */
.brand-card.brand-featured {
  border-color: var(--border-gold);
  background: linear-gradient(155deg, #fff 65%, var(--gold-pale) 100%);
}

/* ===== RESPONSIBLE GAMBLING SECTION ===== */
.responsible-section {
  background: var(--surface);
  padding: 96px 0;
}
.responsible-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.responsible-head { max-width: 560px; margin-bottom: 52px; }

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.responsible-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.responsible-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.responsible-card-media {
  height: 155px;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsible-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.responsible-card:hover .responsible-card-media img { transform: scale(1.06); }

.responsible-card-info { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.responsible-card-info h4 { font-size: 1rem; margin-bottom: 6px; }
.responsible-card-info p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.58; flex: 1; }
.responsible-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 14px;
}
.responsible-card-cta svg { transition: transform var(--t-fast); }
.responsible-card:hover .responsible-card-cta svg { transform: translateX(4px); }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg); padding: 96px 0; }
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-lg) + 14px);
  border: 2px dashed var(--border-gold);
  z-index: -1;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-lead { margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-feature  { display: flex; gap: 14px; align-items: flex-start; }
.about-feat-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.about-feat-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.about-feat-text p { font-size: 0.83rem; line-height: 1.55; }

/* ===== 18+ DISCLAIMER ===== */
.disclaimer {
  background: var(--navy);
  padding: 36px 24px;
}
.disclaimer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.disclaimer-badge {
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.disclaimer-text { flex: 1; min-width: 240px; }
.disclaimer-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}
.disclaimer-text p { color: rgba(255,255,255,0.65); font-size: 0.83rem; line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-col {}

/* Used in policy pages */
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-name em { font-style: normal; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: white; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.footer-brand-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
}

/* Responsible gambling logos */
.footer-responsible {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-resp-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-resp-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t-fast);
  flex-shrink: 0;
}
.footer-resp-logo:hover { opacity: 0.8; }
.footer-resp-logo img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-resp-logo--cta img { max-height: 48px; }
.footer-resp-logo--helpline img { max-height: 64px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--t-fast);
}
.footer-nav-links a:hover { color: white; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 28px rgba(13,27,42,0.11);
  padding: 18px 24px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-icon { font-size: 1.9rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.cookie-text a { color: var(--gold); font-weight: 500; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--navy); color: white;
  border: none; padding: 9px 20px;
  border-radius: 8px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer;
  transition: background var(--t-fast);
}
.cookie-btn-accept:hover { background: var(--navy-mid); }
.cookie-btn-config {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 9px 20px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--t-fast);
}
.cookie-btn-config:hover { border-color: var(--navy); color: var(--navy); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ===== HERO ENTRANCE ANIMATIONS ===== */
.hero-content > * {
  animation: fadeUp 0.75s var(--ease) both;
}
.hero-title    { animation-delay: 0.10s; }
.hero-subtitle { animation-delay: 0.25s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.35); }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ===== POLICY PAGES ===== */
.policy-header {
  background: var(--surface);
  padding: calc(var(--hh) + 56px) 24px 56px;
  text-align: center;
}
.policy-header .section-label { justify-content: center; }
.policy-header h1 { margin-top: 14px; font-size: clamp(1.9rem, 4vw, 3rem); }

.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.policy-updated {
  font-size: 0.81rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin-bottom: 40px;
  display: inline-block;
}
.policy-body h2 {
  font-size: 1.45rem;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-body h2:first-of-type { margin-top: 0; }
.policy-body p  { margin-bottom: 16px; }
.policy-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.policy-body ul li {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 5px;
}
.policy-body a { color: var(--gold); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --hh: 62px; }
  section { padding: 52px 0; }

  /* Header */
  .site-nav   { display: none; }
  .hamburger  { display: flex; }

  /* Hero — extra bottom padding for card overlap */
  .hero {
    padding-bottom: 100px;
    min-height: auto;
  }

  /* Featured card overlaps hero on mobile */
  .featured-section {
    margin-top: -60px;
    padding: 0 0 32px;
  }
  .featured-section .container {
    padding: 0; /* full width edge-to-edge */
  }
  .featured-card {
    border-radius: 0;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border-left: none;
    border-right: none;
    gap: 14px;
    padding: 20px 18px 20px;
  }
  .featured-card-cta .btn { padding: 11px 18px; font-size: 0.85rem; }

  /* Content sections */
  .content-section { padding: 44px 0; }

  /* Responsible grid */
  .responsible-grid { grid-template-columns: 1fr; }

  /* About */
  .about-inner   { grid-template-columns: 1fr; gap: 40px; }
  .about-visual  { order: -1; }
  .about-img-frame::after { display: none; }

  /* Disclaimer */
  .disclaimer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-resp-row { gap: 16px; }
  .footer-resp-logo img { max-height: 44px; }
  .footer-resp-logo--helpline img { max-height: 52px; }
  .footer-nav-links { flex-direction: column; gap: 10px; }

  /* Cookie */
  .cookie-inner   { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept,
  .cookie-btn-config { flex: 1; text-align: center; }
}

@media (max-width: 420px) {
  .hero-stats { gap: 20px; }
  .hero-title { font-size: 2rem; }
}
