@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

:root {
  --wine-950: #3c1026;
  --wine-900: #52142f;
  --wine-800: #6b2947;
  --wine-700: #803a58;
  --gold: #d59a43;
  --gold-soft: #edc77e;
  --cream: #fff9f3;
  --cream-deep: #f6eee5;
  --sand: #eadfd3;
  --ink: #211820;
  --muted: #6d626a;
  --line: #e5dcd4;
  --eucalyptus: #587269;
  --white: #fff;
  --shadow-sm: 0 8px 24px rgba(55, 25, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(55, 25, 38, 0.16);
  --radius: 18px;
  --wrap: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.mobile-bar-visible {
  padding-bottom: 84px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--wine-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(112, 36, 69, 0.12);
  background: rgba(255, 249, 243, 0.96);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: #244f56;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-au {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.updated {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.86rem;
}

.updated-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eucalyptus);
  box-shadow: 0 0 0 4px rgba(71, 117, 101, 0.12);
}

.jump-nav {
  position: sticky;
  z-index: 15;
  top: 0;
  border-bottom: 1px solid rgba(112, 36, 69, 0.13);
  background: rgba(255, 249, 243, 0.92);
  backdrop-filter: blur(14px);
}

.jump-inner {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.jump-inner::-webkit-scrollbar {
  display: none;
}

.jump-inner a,
.jump-label {
  flex: 0 0 auto;
  font-size: 0.83rem;
}

.jump-inner a {
  color: var(--muted);
  text-decoration: none;
}

.jump-inner a:hover,
.jump-inner a:focus-visible {
  color: var(--wine-800);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jump-label {
  padding-right: 28px;
  border-right: 1px solid var(--line);
  color: var(--wine-800);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 655px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 57% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(60, 16, 38, 0.98) 0%,
      rgba(82, 20, 47, 0.93) 35%,
      rgba(82, 20, 47, 0.53) 64%,
      rgba(82, 20, 47, 0.1) 100%
    ),
    linear-gradient(0deg, rgba(30, 12, 18, 0.35), transparent 40%);
}

.hero-sun {
  position: absolute;
  z-index: 1;
  top: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(248, 201, 116, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(248, 201, 116, 0.035),
    0 0 0 140px rgba(248, 201, 116, 0.025);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 655px;
  align-items: center;
  padding-block: 82px 96px;
}

.hero-copy {
  max-width: 650px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 44px;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.83);
  text-underline-offset: 3px;
}

.eyebrow,
.kicker {
  margin-bottom: 15px;
  color: var(--wine-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.kicker-light {
  color: var(--gold-soft);
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 700;
}

.hero-deck {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button-gold {
  color: var(--wine-950);
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(243, 168, 59, 0.2);
}

.button-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(243, 168, 59, 0.28);
}

.button-primary {
  color: var(--white);
  background: var(--wine-800);
  box-shadow: 0 9px 24px rgba(112, 36, 69, 0.18);
}

.button-primary:hover {
  background: var(--wine-900);
}

.button-outline {
  border-color: rgba(112, 36, 69, 0.32);
  color: var(--wine-800);
  background: var(--white);
}

.button-outline:hover {
  border-color: var(--wine-800);
  background: var(--cream);
}

.button-cream {
  color: var(--wine-900);
  background: var(--cream);
}

.text-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.trust-list {
  display: flex;
  margin: 42px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--gold-soft);
  content: "✓";
  font-weight: 900;
}

.disclosure-bar {
  border-bottom: 1px solid #e8d8c8;
  color: #624f55;
  background: #fff2df;
  font-size: 0.82rem;
}

.disclosure-bar .wrap {
  padding-block: 13px;
  text-align: center;
}

.disclosure-bar a {
  margin-left: 5px;
  color: var(--wine-800);
  font-weight: 700;
  text-underline-offset: 3px;
}

.section {
  padding-block: 100px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.faq-intro > p:last-child {
  color: var(--muted);
}

.narrow-heading {
  max-width: 790px;
}

.picks-section {
  background:
    radial-gradient(circle at 100% 0, rgba(243, 168, 59, 0.1), transparent 25%),
    var(--cream);
}

.winner-card {
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid rgba(112, 36, 69, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.winner-ribbon {
  padding: 10px 24px;
  color: var(--cream);
  background: var(--wine-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.winner-main {
  display: grid;
  padding: 38px;
  grid-template-columns: 138px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 34px;
}

.rank-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rank-number {
  color: var(--wine-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 800;
}

.rank-number::before {
  content: "#";
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  vertical-align: 0.9em;
}

.logo-block {
  display: grid;
  width: 62px;
  height: 62px;
  border-radius: 15px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.logo-navy {
  background: #243b6b;
}

.logo-purple {
  background: #7351a7;
}

.logo-green {
  background: #268160;
}

.logo-teal {
  background: #197989;
}

.logo-red {
  background: #ba3e46;
}

.best-for {
  margin-bottom: 4px;
  color: var(--eucalyptus);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-summary h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}

.site-intro,
.site-summary > p:not(.best-for) {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.tick-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
}

.tick-list li::before {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 9px;
  border-radius: 50%;
  place-items: center;
  color: var(--eucalyptus);
  background: rgba(71, 117, 101, 0.1);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.score-panel {
  display: flex;
  padding-left: 30px;
  border-left: 1px solid var(--line);
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.score-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.score-panel > strong,
.compact-score > strong {
  color: var(--wine-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.score-panel > strong span,
.compact-score > strong span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.score-panel .button {
  margin-block: 12px 9px;
}

.score-panel small {
  color: var(--muted);
  font-size: 0.68rem;
}

.local-verdict {
  display: grid;
  padding: 20px 38px;
  border-top: 1px solid var(--line);
  color: #4f4349;
  background: #fbf7f2;
  grid-template-columns: 170px 1fr;
  align-items: start;
  gap: 20px;
  font-size: 0.86rem;
}

.local-verdict strong {
  color: var(--wine-800);
}

.local-verdict p {
  margin: 0;
}

.site-list {
  display: grid;
  gap: 14px;
}

.site-card {
  display: grid;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  grid-template-columns: 138px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 30px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.site-card:hover {
  border-color: rgba(112, 36, 69, 0.32);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.site-card .site-summary h3 {
  font-size: 1.4rem;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  color: #574b51;
  font-size: 0.78rem;
}

.mini-list li::before {
  margin-right: 6px;
  color: var(--eucalyptus);
  content: "•";
  font-weight: 900;
}

.compact-score {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  text-align: center;
}

.compact-score .button {
  min-height: 43px;
  padding-inline: 15px;
  font-size: 0.84rem;
}

.comparison-note {
  display: flex;
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 13px;
  align-items: flex-start;
  gap: 15px;
  color: #55494e;
  background: #efe8df;
  font-size: 0.84rem;
}

.comparison-note p {
  margin: 3px 0 0;
}

.note-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  place-items: center;
  color: var(--cream);
  background: var(--wine-800);
  font-family: Georgia, serif;
  font-weight: 700;
}

.local-section {
  border-block: 1px solid var(--line);
  background: #f5eee6;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
}

.region-grid {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.region-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.region-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.035);
  content: "";
}

.region-sunrise {
  background:
    linear-gradient(145deg, rgba(103, 31, 61, 0.96), rgba(135, 52, 85, 0.93)),
    var(--wine-800);
}

.region-coast {
  background:
    linear-gradient(145deg, rgba(40, 105, 112, 0.97), rgba(71, 117, 101, 0.93)),
    var(--eucalyptus);
}

.region-bush {
  background:
    linear-gradient(145deg, rgba(139, 86, 49, 0.98), rgba(171, 111, 57, 0.92)),
    #955f35;
}

.region-number {
  display: block;
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
  font-weight: 700;
}

.region-label {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.region-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.region-card > p:not(.region-label, .radius) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
}

.radius {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 27px;
  left: 34px;
  margin: 0;
  font-size: 0.76rem;
}

.profile-panel {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  grid-template-columns: 0.83fr 1.17fr;
  box-shadow: var(--shadow-lg);
}

.profile-visual {
  position: relative;
  min-height: 610px;
}

.profile-visual picture,
.profile-visual img {
  width: 100%;
  height: 100%;
}

.profile-visual img {
  object-fit: cover;
  object-position: 54% center;
}

.visual-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px 22px 20px 54px;
  border-radius: 12px;
  color: var(--cream);
  background: rgba(60, 16, 38, 0.9);
  backdrop-filter: blur(10px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  line-height: 1.45;
}

.visual-caption span {
  position: absolute;
  top: 4px;
  left: 18px;
  color: var(--gold);
  font-size: 3rem;
}

.profile-copy {
  padding: 62px;
}

.profile-copy > p:not(.kicker) {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
}

.number-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 20px;
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 16px;
}

.number-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  place-items: center;
  color: var(--wine-800);
  background: var(--cream-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.number-list strong {
  display: block;
  margin-bottom: 2px;
}

.number-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.date-ideas {
  background: var(--cream);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.idea-grid article {
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.idea-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  border-radius: 50%;
  place-items: center;
  color: var(--wine-800);
  background: #fff0d9;
  font-size: 1.1rem;
}

.idea-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.idea-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.source-line {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.source-line a {
  color: var(--wine-800);
  font-weight: 700;
  text-underline-offset: 3px;
}

.method-section {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--wine-950);
}

.method-section::before {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(243, 168, 59, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(243, 168, 59, 0.025),
    0 0 0 140px rgba(243, 168, 59, 0.018);
  content: "";
}

.method-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.method-intro p:not(.kicker) {
  margin-bottom: 32px;
  color: rgba(255, 249, 243, 0.68);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.method-grid article {
  padding: 30px;
  background: var(--wine-950);
}

.method-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.method-grid h3 {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.method-grid p {
  margin: 0;
  color: rgba(255, 249, 243, 0.6);
  font-size: 0.84rem;
}

.safety-section {
  background: #f5eee6;
}

.safety-header {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.safety-header h2 {
  margin-bottom: 0;
}

.safety-header > p {
  margin-bottom: 7px;
  color: var(--muted);
}

.safety-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 26px;
}

.safety-list {
  display: grid;
  gap: 12px;
}

.safety-list article {
  display: grid;
  padding: 25px 26px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  grid-template-columns: 34px 1fr;
  gap: 15px;
}

.safety-list article > span {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--eucalyptus);
  font-weight: 900;
}

.safety-list h3 {
  margin-bottom: 4px;
}

.safety-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.red-flags {
  position: sticky;
  top: 76px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--wine-800);
  box-shadow: var(--shadow-lg);
}

.red-flag-label {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.red-flags ul {
  display: grid;
  margin: 0 0 30px;
  padding-left: 20px;
  gap: 10px;
  color: rgba(255, 249, 243, 0.8);
  font-size: 0.87rem;
}

.red-flags li::marker {
  color: var(--gold);
}

.help-links {
  display: grid;
  padding-block: 22px;
  border-block: 1px solid rgba(255, 255, 255, 0.17);
  gap: 9px;
}

.help-links a {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.emergency {
  margin: 20px 0 0;
  color: rgba(255, 249, 243, 0.72);
  font-size: 0.78rem;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 82px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  color: var(--wine-800);
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -6px 50px 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-note {
  padding-block: 68px;
  border-block: 1px solid var(--line);
  background: #f4ede5;
}

.editorial-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 80px;
}

.editorial-note h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.editorial-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.editorial-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(60, 16, 38, 0.98), rgba(112, 36, 69, 0.95)),
    var(--wine-800);
}

.final-cta::after {
  position: absolute;
  right: -100px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(243, 168, 59, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(243, 168, 59, 0.03);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 249, 243, 0.7);
}

.final-cta .button {
  min-width: 220px;
}

.site-footer {
  padding-block: 58px 30px;
  color: rgba(255, 249, 243, 0.65);
  background: #24131c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.footer-brand .brand-name {
  color: var(--cream);
}

.footer-brand .brand-au {
  color: rgba(255, 249, 243, 0.5);
}

.footer-grid > div > p {
  max-width: 380px;
  margin: 15px 0 0;
  font-size: 0.82rem;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 12px 30px;
}

.footer-grid nav a {
  color: rgba(255, 249, 243, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  min-height: 76px;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--cream);
  background: rgba(60, 16, 38, 0.98);
  box-shadow: 0 -8px 26px rgba(34, 14, 24, 0.2);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 220ms ease;
}

.mobile-cta.visible {
  transform: none;
}

.mobile-cta span,
.mobile-cta strong {
  display: block;
}

.mobile-cta span {
  color: rgba(255, 249, 243, 0.6);
  font-size: 0.67rem;
}

.mobile-cta strong {
  font-size: 0.82rem;
}

.mobile-cta .button {
  min-height: 42px;
  padding: 10px 15px;
  flex: 0 0 auto;
  font-size: 0.79rem;
}

@media (max-width: 1000px) {
  .winner-main {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .score-panel {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    text-align: left;
  }

  .score-panel .score-label {
    margin-right: auto;
  }

  .score-panel .button {
    margin: 0;
  }

  .score-panel small {
    display: none;
  }

  .site-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .compact-score {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .compact-score > strong {
    margin-right: auto;
  }

  .compact-score .button {
    min-width: 150px;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    min-height: 315px;
  }

  .region-number {
    margin-bottom: 28px;
  }

  .profile-copy {
    padding: 46px;
  }

  .idea-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  :root {
    --wrap: min(100% - 30px, 680px);
  }

  .updated {
    font-size: 0.73rem;
  }

  .jump-label {
    display: none;
  }

  .jump-inner {
    gap: 22px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(60, 16, 38, 0.96) 0%,
        rgba(82, 20, 47, 0.83) 70%,
        rgba(82, 20, 47, 0.58) 100%
      ),
      linear-gradient(0deg, rgba(30, 12, 18, 0.5), transparent 50%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .section {
    padding-block: 76px;
  }

  .split-heading,
  .safety-header,
  .method-layout,
  .faq-layout,
  .editorial-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .winner-main {
    padding: 30px;
  }

  .local-verdict {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .profile-panel {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    min-height: 440px;
  }

  .method-layout {
    gap: 52px;
  }

  .safety-layout {
    grid-template-columns: 1fr;
  }

  .red-flags,
  .faq-intro {
    position: static;
  }

  .editorial-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-au {
    font-size: 0.66rem;
  }

  .updated {
    max-width: 100px;
    text-align: right;
  }

  .updated-dot {
    display: none;
  }

  .breadcrumbs {
    margin-bottom: 32px;
  }

  .hero,
  .hero-inner {
    min-height: 665px;
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 64px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        0deg,
        rgba(60, 16, 38, 0.99) 0%,
        rgba(60, 16, 38, 0.92) 55%,
        rgba(60, 16, 38, 0.28) 100%
      ),
      linear-gradient(90deg, rgba(60, 16, 38, 0.3), transparent);
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-deck {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .trust-list {
    margin-top: 30px;
    gap: 8px 15px;
    font-size: 0.72rem;
  }

  .disclosure-bar .wrap {
    text-align: left;
  }

  .winner-main,
  .site-card {
    grid-template-columns: 1fr;
  }

  .winner-main,
  .site-card {
    padding: 25px;
  }

  .rank-logo {
    justify-content: flex-start;
  }

  .score-panel,
  .compact-score {
    grid-column: auto;
  }

  .score-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-items: start;
  }

  .score-panel .score-label {
    grid-column: 1;
  }

  .score-panel > strong {
    grid-row: 2;
    grid-column: 1;
  }

  .score-panel .button {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .local-verdict {
    padding: 20px 25px;
  }

  .mini-list {
    display: grid;
  }

  .region-card {
    min-height: 380px;
    padding: 28px;
  }

  .radius {
    right: 28px;
    left: 28px;
  }

  .profile-visual {
    min-height: 370px;
  }

  .profile-copy {
    padding: 38px 27px;
  }

  .idea-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .idea-icon {
    margin-bottom: 25px;
  }

  .safety-list article,
  .red-flags {
    padding: 24px;
  }

  .faq-list summary {
    font-size: 1.05rem;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .jump-nav,
  .mobile-cta,
  .hero-actions,
  .affiliate-button {
    display: none !important;
  }

  .hero,
  .hero-inner {
    min-height: 0;
    color: var(--ink);
  }

  .hero-media,
  .hero-shade,
  .hero-sun {
    display: none;
  }

  .hero-inner {
    padding-block: 40px;
  }

  .eyebrow,
  .breadcrumbs,
  .hero-deck,
  .trust-list {
    color: var(--ink);
  }
}
