/* Park Lane Boutique — single stylesheet. Light-luxury Mayfair editorial. */
:root {
  --bg: #f7f4ee;            /* warm ivory */
  --surface: #ffffff;
  --ink: #1a1d1a;           /* near-black */
  --muted: #5c625c;
  --line: #e3ddd1;
  --accent: #0f5132;        /* deep emerald */
  --accent-ink: #0b3d26;
  --gold: #b08d57;          /* brass */
  --gold-soft: #f0e6d6;
  --crimson: #7a1d2b;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --measure: 72ch;
  --wrap: 1120px;
  --space: clamp(2.5rem, 1.8rem + 3vw, 5rem);
  --radius: 10px;
  --shadow: 0 1px 2px rgba(26,29,26,.06), 0 8px 24px rgba(26,29,26,.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(19px, 1.2rem + 0.25vw, 21.5px);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-ink); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--ink); color: #fff; padding: .5rem 1rem; z-index: 100; border-radius: 6px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 1.4rem + 4.2vw, 4rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); margin: 1.6em 0 .5em; }
h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); margin: 1.4em 0 .4em; }
p { margin: 0 0 1em; }
.prose p, .prose li { max-width: var(--measure); }
.prose ul, .prose ol { max-width: var(--measure); }

/* header / nav */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(247,244,238,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-head__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand__chip { width: 44px; height: 44px; flex-shrink: 0; display: block; }
.brand__lock { display: flex; flex-direction: column; line-height: 1.04; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; white-space: nowrap; }
.brand__tag { font-family: var(--sans); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; white-space: nowrap; margin-top: 3px; }

/* hamburger (mobile only) */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; cursor: pointer; flex-shrink: 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__list { display: flex; align-items: center; gap: clamp(.15rem, .8vw, .9rem); list-style: none; margin: 0; padding: 0; }
.nav__list > li { display: flex; align-items: center; }
.nav__list a, .nav__top { display: inline-flex; align-items: center; gap: .25rem; font-family: var(--sans);
  font-size: .94rem; font-weight: 500; color: var(--ink); text-decoration: none; background: none; border: 0;
  cursor: pointer; padding: .55rem .4rem; line-height: 1; white-space: nowrap; }
.nav__list a:hover, .nav__top:hover { color: var(--accent); }
.nav__list a[aria-current="page"] { color: var(--accent); box-shadow: inset 0 -2px 0 var(--gold); }
.nav__has-sub { position: relative; display: flex; align-items: center; }
.nav__det { display: flex; align-items: center; }
.nav__det > summary { list-style: none; }
.nav__det > summary::-webkit-details-marker { display: none; }
.nav__det > summary::marker { content: ""; }
.nav__caret { display: inline-block; box-sizing: border-box; width: .7em; height: .7em; flex: none;
  border-right: .17em solid currentColor; border-bottom: .17em solid currentColor;
  transform: rotate(45deg); position: relative; top: -.12em; transition: transform .15s ease; }
.nav__det[open] .nav__caret { transform: rotate(225deg); }
.nav__sub { position: absolute; top: calc(100% + .35rem); left: 0; min-width: 232px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  list-style: none; margin: 0; padding: .4rem; display: none; max-height: min(70vh, 520px); overflow: auto; z-index: 60; }
.nav__sub li a { display: block; padding: .5rem .65rem; border-radius: 6px; font-size: .9rem; }
.nav__sub li a:hover { background: var(--gold-soft); }

@media (min-width: 821px) {
  .nav__has-sub:hover .nav__sub, .nav__det[open] .nav__sub { display: block; }
}
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    border-top: 1px solid var(--line); box-shadow: var(--shadow); padding: .4rem 0 .8rem; }
  .nav-toggle:checked ~ .nav { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { display: block; border-top: 1px solid var(--line); }
  .nav__list > li:first-child { border-top: 0; }
  .nav__list a, .nav__top { display: flex; width: 100%; justify-content: space-between;
    padding: .9rem clamp(1rem, 5vw, 2rem); font-size: 1.05rem; }
  .nav__has-sub, .nav__det { display: block; width: 100%; }
  .nav__sub { position: static; display: none; box-shadow: none; border: 0; border-radius: 0;
    min-width: 0; max-height: none; margin: 0; padding: 0 0 .3rem; background: var(--bg); }
  .nav__det[open] .nav__sub { display: block; }
  .nav__sub li a { padding: .65rem clamp(1.6rem, 7vw, 2.6rem); font-size: 1rem; }
}

/* hero */
.hero { padding: var(--space) 0 .5rem; }
.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  font-weight: 600; color: var(--gold); margin: 0 0 1rem; }
.lede { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); color: var(--muted); max-width: 60ch; }
.hero__updated { font-size: .85rem; color: var(--muted); margin-top: .9rem; }

.section { padding: .5rem 0; }
.section.prose { padding-block: 1rem; }
/* pull the first section (the toplist) up tight under the hero so it sits above the fold */
.hero + .section { padding-top: 0; }
.hero + .section > h2 { margin-top: .5rem; }

/* toplist */
.tl { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: 14px; }
.tl__row { display: grid; grid-template-columns: 56px 160px 1fr auto; align-items: center; gap: 1.25rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.35rem; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; }
.tl__row:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(26,29,26,.08), 0 16px 36px rgba(26,29,26,.10); }
.tl__rank { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); text-align: center; }
.tl__logo { display: grid; place-items: center; }
.tl__img { max-width: 160px; max-height: 80px; width: auto; height: auto; object-fit: contain; }
/* casino name + bonus use the sans (Inter) for legibility — the display serif is too thin for short factual strings */
.tl__brand { font-family: var(--sans); font-weight: 800; font-size: 1.2rem; letter-spacing: -.012em; margin: 0 0 .2rem; }
.tl__bonus { font-family: var(--sans); color: var(--accent-ink); font-weight: 700; font-size: 1.18rem; line-height: 1.3;
  letter-spacing: -.005em; font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; margin: 0 0 .5rem; }
.tl__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .4rem; }
.tl__chip { font-size: .78rem; background: var(--gold-soft); color: var(--accent-ink); border-radius: 999px; padding: .2rem .6rem; }
.tl__chip--code { background: var(--accent); color: #fff; }
.tl__pay { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin: 0 0 .5rem; }
.tl__pay-label { font-family: var(--sans); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted); font-weight: 600; }
.tl__pay-chip { font-family: var(--sans); font-size: .72rem; font-weight: 600; padding: .16rem .55rem;
  border-radius: 999px; background: #fff; color: var(--accent-ink); border: 1px solid var(--gold); }
.tl__pay-chip--more { background: var(--accent); color: #fff; border-color: var(--accent);
  min-width: 1.5em; text-align: center; padding: .16rem .4rem; cursor: help; }
.tl__review { font-size: .85rem; }
.tl__cta { display: flex; flex-direction: column; align-items: stretch; gap: .35rem; text-align: center; }
.tl__btn { display: inline-block; background: var(--crimson); color: #fff; font-weight: 600; font-size: 1rem;
  text-decoration: none; padding: .85rem 1.6rem; border-radius: 8px; white-space: nowrap; transition: background .15s ease; }
.tl__btn:hover { background: #5e1622; color: #fff; }
.tl__terms { font-size: .72rem; color: var(--muted); }

/* tables / methodology / pros-cons / steps */
.cmp { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .95rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp th, .cmp td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); }
.cmp thead th { background: var(--accent); color: var(--gold-soft); font-family: var(--sans); font-weight: 600; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.rank-method { padding-left: 1.1rem; }
.rank-method li { margin-bottom: .5rem; }
.steps { padding-left: 1.2rem; }
.steps li { margin-bottom: .6rem; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.proscons h3 { margin-top: 0; }
.pros, .cons { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.pros { border-top: 3px solid var(--accent); }
.cons { border-top: 3px solid var(--crimson); }
.callout { background: var(--gold-soft); border: 1px solid #e6d5b8; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; }
.callout p { max-width: none; margin: 0; }

/* faq */
.faq { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .6rem; }
.faq summary { cursor: pointer; padding: .9rem 1.2rem; font-weight: 600; font-family: var(--serif); font-size: 1.2rem; }
.faq summary::marker { color: var(--gold); }
.faq__a { padding: 0 1.2rem 1rem; color: var(--muted); }
.faq__a p { max-width: var(--measure); margin: 0; }

/* review page */
.byline { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: .9rem; margin: .5rem 0 1.5rem; }
.rcard { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 1.5rem;
  background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); margin: 1.5rem 0; }
.rcard__logo { display: grid; place-items: center; }
.rcard__offer { font-family: var(--sans); color: var(--accent-ink); font-weight: 700; font-size: 1.18rem; line-height: 1.35;
  letter-spacing: -.005em; font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; margin: 0; }
.rcard__code { font-size: .85rem; color: var(--muted); margin: .35rem 0 0; }
.rcard__cta { display: flex; flex-direction: column; gap: .35rem; text-align: center; }
.review-body h2 { margin-top: 1.5em; }
/* review payment-methods at-a-glance block */
.pay-methods { margin: .9rem 0 1.6rem; padding: 1.1rem 1.3rem; background: var(--gold-soft);
  border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; }
.pay-methods__lead { margin: 0 0 .8rem; max-width: none; font-size: .95rem; color: var(--ink); }
.pay-methods__groups { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; max-width: none; }
.pay-methods__groups li { max-width: none; display: grid; grid-template-columns: 11rem 1fr; gap: .4rem 1rem;
  align-items: baseline; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.pay-methods__groups li:last-child { border-bottom: 0; padding-bottom: 0; }
.pay-methods__type { font-family: var(--sans); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent-ink); font-weight: 700; }
.pay-methods__list { color: var(--ink); }
@media (max-width: 560px) { .pay-methods__groups li { grid-template-columns: 1fr; gap: .15rem; } }
@media (max-width: 820px) {
  .rcard { grid-template-columns: 1fr; text-align: center; }
  .rcard__cta .tl__btn { width: 100%; }
}

/* review screenshots gallery */
.shots { margin: 1.75rem 0 2rem; }
.shots__grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
.shots--one .shots__grid { grid-template-columns: 1fr; max-width: 720px; }
.shots__fig { margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--gold); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.shots__img { display: block; width: 100%; height: auto; aspect-ratio: 1366 / 900;
  object-fit: cover; object-position: top center; background: var(--ink); }
.shots__cap { font-family: var(--sans); font-size: .82rem; color: var(--muted);
  padding: .55rem .85rem; border-top: 1px solid var(--line); margin: 0; }
.shots__cap strong { color: var(--ink); font-weight: 700; }
@media (max-width: 620px) { .shots__grid { grid-template-columns: 1fr; } }

/* authors */
.author-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1rem 0; }
.author-card h2 { margin: 0 0 .1em; }
.author-role { color: var(--gold); font-weight: 600; font-size: .9rem; margin: 0 0 .6rem; }

/* footer */
.site-foot { margin-top: var(--space); background: var(--ink); color: #cfd3cd; }
.site-foot a { color: #e8e3d6; text-decoration: none; }
.site-foot a:hover { color: var(--gold); }
.site-foot__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: var(--space) 0 2rem; }
.foot-col__h { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin: 0 0 .8rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .4rem; font-size: .92rem; }
.site-foot__rg { border-top: 1px solid #333; padding: 1.5rem 0 2.5rem; font-size: .85rem; color: #9aa099; }
.site-foot__rg a { text-decoration: underline; }
.site-foot__legal { margin-top: .8rem; }

@media (max-width: 820px) {
  .nav { width: 100%; }
  .nav__list { gap: .2rem .8rem; }
  .tl__row { grid-template-columns: 48px 1fr; grid-template-areas: "rank logo" "main main" "cta cta"; row-gap: .9rem; padding: 1.1rem 1.15rem; }
  .tl__rank { grid-area: rank; font-size: 2rem; }
  .tl__logo { grid-area: logo; justify-self: start; }
  .tl__img { max-height: 70px; }
  .tl__main { grid-area: main; }
  .tl__cta { grid-area: cta; }
  .tl__btn { width: 100%; padding: 1rem; font-size: 1.1rem; }
  /* mobile readability: bigger, bolder, sans, higher-contrast standout colours */
  .tl__brand { font-family: var(--sans); font-weight: 800; font-size: 1.6rem; color: var(--ink); margin-bottom: .45rem; letter-spacing: -.01em; }
  .tl__bonus { font-family: var(--sans); font-weight: 800; font-size: 1.35rem; line-height: 1.3;
    color: #fff; background: var(--accent); padding: .55rem .75rem; border-radius: 8px; display: block; margin-bottom: .6rem; }
  .tl__chip { font-size: .85rem; padding: .25rem .65rem; }
  .tl__review { font-size: .95rem; font-weight: 600; }
  .proscons { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cmp { display: block; overflow-x: auto; }
}
