@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --color-ink: #061a18;
  --color-deep: #0b3d3a;
  --color-teal: #136f68;
  --color-mist: #e8f2f0;
  --color-cream: #f7faf9;
  --color-amber: #2fbfb0;
  --color-amber-soft: #6ed9cd;
  --color-text: #1a2e2c;
  --color-muted: #4a6562;
  --color-white: #ffffff;
  --font-hero: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', sans-serif;
  --nav-height: 72px;
  --radius: 12px;
  --shadow-soft: 0 10px 40px rgba(6, 26, 24, 0.12);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  min-height: 100vh;
}

#site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#site-wrap main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: relative;
  background: var(--color-white);
  border-bottom: 1px solid rgba(11, 61, 58, 0.1);
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 110;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--color-deep), var(--color-teal));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11, 61, 58, 0.25);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-deep);
  line-height: 1.1;
}

.brand-title span {
  color: var(--color-amber);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 61, 58, 0.15);
  border-radius: 10px;
  background: var(--color-cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--color-deep);
  background: rgba(19, 111, 104, 0.08);
}

.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 26, 24, 0.88) 0%,
    rgba(11, 61, 58, 0.72) 48%,
    rgba(11, 61, 58, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0;
  max-width: 640px;
}

.hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-amber-soft);
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(247, 250, 249, 0.88);
  max-width: 36rem;
}

.listings {
  padding: 3.25rem 0 3.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(47, 191, 176, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(19, 111, 104, 0.1), transparent 50%),
    var(--color-cream);
}

.listings-head {
  max-width: 620px;
  margin-bottom: 2rem;
}

.listings-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.55rem;
}

.listings-head h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  font-weight: 600;
  color: var(--color-deep);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.listings-lead {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.offer-block {
  background: var(--color-white);
  border: 1px solid rgba(11, 61, 58, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6, 26, 24, 0.06);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 140px minmax(110px, 1.1fr) minmax(160px, 1.5fr) 90px auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background:
    linear-gradient(90deg, rgba(11, 61, 58, 0.04) 0%, transparent 28%),
    var(--color-white);
}

.offer-rank span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-deep);
  background: linear-gradient(145deg, #d8f5f1, #6ed9cd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.offer-logo {
  width: 128px;
  height: 78px;
  display: grid;
  place-items: center;
  background: var(--color-mist);
  border-radius: 12px;
  border: 1px solid rgba(11, 61, 58, 0.08);
  overflow: hidden;
  padding: 0.45rem;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.offer-name strong {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-deep);
}

.offer-bonus strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1.35;
}

.offer-score strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
}

.offer-score em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-amber);
  margin-right: 0.1rem;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 0.78rem 1.15rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-ink);
  background: linear-gradient(135deg, var(--color-amber-soft), #1fa89a);
  box-shadow: 0 8px 18px rgba(47, 191, 176, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-offer:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgba(47, 191, 176, 0.35);
}

.offer-disclaimer {
  padding: 0.7rem 1.25rem 0.85rem;
  border-top: 1px dashed rgba(11, 61, 58, 0.14);
  background: rgba(232, 242, 240, 0.55);
}

.offer-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.section {
  padding: 3.25rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--color-deep);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.how-section {
  background: var(--color-white);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.how-item {
  padding: 1.4rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--color-mist), var(--color-cream));
  border: 1px solid rgba(11, 61, 58, 0.08);
}

.how-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  font-weight: 800;
  color: var(--color-ink);
  background: var(--color-amber-soft);
}

.how-item h3 {
  font-size: 1.05rem;
  color: var(--color-deep);
  margin-bottom: 0.45rem;
}

.how-item p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.trust-section {
  background:
    linear-gradient(120deg, rgba(11, 61, 58, 0.96), rgba(19, 111, 104, 0.9)),
    var(--color-deep);
  color: rgba(247, 250, 249, 0.9);
}

.trust-section .listings-eyebrow {
  color: var(--color-amber-soft);
}

.trust-section h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.85rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.trust-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.98rem;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-amber-soft);
}

.trust-panel {
  display: grid;
  gap: 0.85rem;
}

.trust-stat {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-amber-soft);
  line-height: 1.1;
}

.trust-stat span {
  font-size: 0.9rem;
  color: rgba(247, 250, 249, 0.78);
}

.guide-section {
  background: var(--color-cream);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.guide-card {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: var(--color-white);
  border: 1px solid rgba(11, 61, 58, 0.1);
}

.guide-card h3 {
  color: var(--color-deep);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.guide-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.faq-section {
  background: var(--color-white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid rgba(11, 61, 58, 0.12);
  border-radius: 12px;
  background: var(--color-cream);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-deep);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.65rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.responsible-section {
  padding-top: 0;
  background: var(--color-cream);
}

.responsible-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(115deg, #0b3d3a, #136f68);
  color: rgba(247, 250, 249, 0.92);
}

.responsible-box .listings-eyebrow {
  color: var(--color-amber-soft);
}

.responsible-box h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--color-white);
  margin-bottom: 0.45rem;
}

.btn-responsible {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--color-ink);
  background: var(--color-amber-soft);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 26, 24, 0.88);
}

.age-gate[hidden] {
  display: none;
}

.age-gate-dialog,
.age-gate-restricted {
  width: min(440px, 100%);
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  background: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.age-gate-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-deep);
  margin-bottom: 0.85rem;
}

.age-gate-brand span {
  color: var(--color-amber);
}

.age-gate-dialog h2,
.age-gate-restricted h2 {
  font-family: var(--font-hero);
  font-size: 1.55rem;
  color: var(--color-deep);
  margin-bottom: 0.7rem;
}

.age-gate-dialog p,
.age-gate-restricted p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.age-gate-restricted a {
  color: var(--color-teal);
  text-decoration: underline;
}

.age-gate-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.btn-age-yes,
.btn-age-no,
.btn-cookie-accept,
.btn-cookie-refuse {
  border: none;
  cursor: pointer;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-age-yes,
.btn-cookie-accept {
  color: var(--color-ink);
  background: linear-gradient(135deg, var(--color-amber-soft), #1fa89a);
}

.btn-age-no,
.btn-cookie-refuse {
  color: var(--color-deep);
  background: var(--color-mist);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--color-ink);
  color: rgba(247, 250, 249, 0.9);
  box-shadow: 0 -8px 30px rgba(6, 26, 24, 0.25);
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-amber-soft);
}

.cookie-copy p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-copy a {
  color: var(--color-amber-soft);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.site-footer {
  margin-top: auto;
  padding: 2.75rem 0 1.75rem;
  background: var(--color-ink);
  color: rgba(247, 250, 249, 0.78);
  font-size: 0.9rem;
  text-align: left;
}

.site-footer strong {
  color: var(--color-amber-soft);
  font-weight: 600;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.footer-brand .brand-title {
  color: var(--color-white);
}

.footer-brand-block p {
  margin-top: 0.85rem;
  max-width: 360px;
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: rgba(247, 250, 249, 0.72);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-amber-soft);
}

.footer-badges {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges-title {
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-badge-row a,
.footer-badge-row img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0;
  background: none;
}

.footer-badge-row img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  background: none;
}

.footer-badge-row a img {
  height: 36px;
}

.footer-help {
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-disclosure {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-age-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(47, 191, 176, 0.12);
  border: 1px solid rgba(110, 217, 205, 0.25);
}

.age-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-ink);
  background: linear-gradient(145deg, var(--color-amber-soft), #1fa89a);
  box-shadow: 0 0 0 4px rgba(110, 217, 205, 0.25);
}

.footer-age-row p {
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

body.is-age-locked #site-wrap {
  display: none;
}

body.is-age-locked .cookie-banner {
  display: none !important;
}

.page-hero {
  padding: 2.75rem 0 1.5rem;
  background:
    linear-gradient(120deg, rgba(11, 61, 58, 0.96), rgba(19, 111, 104, 0.88)),
    var(--color-deep);
  color: rgba(247, 250, 249, 0.92);
}

.page-hero .listings-eyebrow {
  color: var(--color-amber-soft);
}

.page-hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  max-width: 760px;
  margin-bottom: 0.75rem;
}

.page-lead {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247, 250, 249, 0.86);
}

.page-section {
  background: var(--color-cream);
}

.page-content {
  max-width: 780px;
}

.page-content h2 {
  font-family: var(--font-hero);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-deep);
  margin: 1.75rem 0 0.7rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  color: var(--color-muted);
  margin-bottom: 0.85rem;
}

.page-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 1.1rem;
}

.page-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-muted);
}

.page-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-amber);
}

.text-link {
  color: var(--color-teal);
  text-decoration: underline;
}

.contact-panel {
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid rgba(11, 61, 58, 0.1);
  margin-bottom: 1.5rem;
}

.contact-email {
  margin: 0.85rem 0 1rem;
}

.contact-email a {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-deep);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(110, 217, 205, 0.35), rgba(47, 191, 176, 0.2));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.blog-card {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: var(--color-white);
  border: 1px solid rgba(11, 61, 58, 0.1);
}

.blog-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.55rem;
}

.blog-card h2 {
  font-family: var(--font-hero);
  font-size: 1.25rem;
  color: var(--color-deep);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.review-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(11, 61, 58, 0.1);
}

.review-block:last-of-type {
  border-bottom: none;
}

.review-block h2 {
  margin-top: 0;
}

.page-note {
  margin-top: 1.25rem;
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  background: rgba(19, 111, 104, 0.08);
  color: var(--color-muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .offer-row {
    grid-template-columns: 56px 120px minmax(100px, 1fr) minmax(140px, 1.4fr);
    grid-template-areas:
      "rank logo name score"
      "bonus bonus bonus cta";
  }

  .offer-rank { grid-area: rank; }
  .offer-logo { grid-area: logo; }
  .offer-name { grid-area: name; }
  .offer-bonus { grid-area: bonus; }
  .offer-score { grid-area: score; justify-self: end; text-align: right; }
  .offer-cta { grid-area: cta; justify-self: end; }

  .how-grid,
  .trust-layout,
  .guide-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.85rem 4%;
    background: var(--color-white);
    border-bottom: 1px solid rgba(11, 61, 58, 0.1);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: 240px;
  }

  .hero-content {
    padding: 2.25rem 0;
  }

  .offer-row {
    grid-template-columns: 52px 110px 1fr;
    grid-template-areas:
      "rank logo name"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.85rem 0.75rem;
  }

  .offer-rank { grid-area: rank; }
  .offer-logo { grid-area: logo; }
  .offer-name { grid-area: name; }
  .offer-bonus { grid-area: bonus; }
  .offer-score { grid-area: score; align-self: center; }
  .offer-cta { grid-area: cta; justify-self: end; }

  .btn-offer {
    min-width: 132px;
  }

  .responsible-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 220px;
  }

  .listings {
    padding: 2.5rem 0 3rem;
  }

  .offer-row {
    grid-template-columns: 46px 100px 1fr;
    padding: 1rem;
  }

  .offer-logo {
    width: 100px;
    height: 64px;
  }

  .offer-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .btn-offer {
    width: 100%;
  }

  .offer-disclaimer {
    padding: 0.65rem 1rem 0.8rem;
  }

  .footer-cols,
  .guide-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-age-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
