:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --paper: #ffffff;
  --paper-2: #edf1f3;
  --ink: #191715;
  --muted: #625d56;
  --line: #d8dde1;
  --line-strong: #aeb8bf;
  --accent: #25736f;
  --accent-dark: #1f5552;
  --rose: #e8eef2;
  --blue: #e3f0f6;
  --green: #e5f0ea;
  --gold: #eef0f2;
  --radius: 4px;
  --shadow: 0 2px 5px rgba(31, 28, 24, 0.12), 0 10px 24px rgba(31, 28, 24, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f7f8;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.62;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main > section {
  padding-left: max(22px, calc((100vw - 1120px) / 2));
  padding-right: max(22px, calc((100vw - 1120px) / 2));
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  border-bottom: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  max-width: min(100%, 760px);
  text-decoration: none;
  white-space: normal;
}

.brand img {
  display: block;
  width: 95px;
  max-width: 42vw;
  height: auto;
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: min(45vw, 470px);
  border-left: 1px solid var(--line);
  padding-left: 14px;
  color: #37312c;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  text-wrap: balance;
}

.top-nav {
  position: relative;
  justify-self: end;
  min-width: 0;
  font-size: 0.92rem;
}

.country-nav {
  position: relative;
}

.country-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 36px 7px 13px;
  background: #ffffff;
  color: #3c3935;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.country-nav summary::-webkit-details-marker {
  display: none;
}

.country-nav summary::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.country-nav[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.country-nav summary:hover,
.country-nav summary:focus-visible,
.country-nav[open] summary {
  border-color: var(--accent);
  color: var(--accent-dark);
  outline: none;
}

.country-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 8px;
  width: min(640px, calc(100vw - 44px));
  max-height: min(68vh, 560px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.country-nav-panel a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: #ffffff;
  color: #3c3935;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.country-nav-panel a:hover,
.country-nav-panel a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
  outline: none;
}

.country-nav-panel a[aria-current="page"] {
  border-color: var(--accent);
  background: var(--green);
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  line-height: 1.14;
  margin: 0;
}

h1,
h2,
.starting-feature h3 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: min(100%, 860px);
  margin-top: 16px;
  color: #181613;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  letter-spacing: 0;
  text-wrap: pretty;
}

h2 {
  margin-bottom: 18px;
  color: #181613;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.eyebrow,
.starting-feature span,
.route-card span,
.decision-card span,
.card-topline span:not(.card-badge) {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: end;
  padding-top: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 248, 0.98)),
    linear-gradient(90deg, rgba(37, 115, 111, 0.06), transparent 48%);
}

.home-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  min-height: 360px;
  background: #f6f7f8;
  overflow: hidden;
}

@media (min-width: 768px) {
  /* Couple image container */
  .home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: max(22px, calc((100vw - 1120px) / 2));
    bottom: 0;
    width: 50%;
    max-width: 560px;
    background: url('brand/swinger-couple.png') no-repeat right bottom;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Gradient fade overlay */
  .home-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f6f7f8 0%, #f6f7f8 35%, rgba(246, 247, 248, 0.8) 50%, rgba(246, 247, 248, 0) 65%);
    z-index: 2;
    pointer-events: none;
  }
}

.home-hero .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-meta,
.language-switcher {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-meta span,
.language-switcher a,
.card-topline span:not(.card-badge) {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 10px;
  background: #ffffff;
  color: #383430;
  text-decoration: none;
}

.hero-meta span:nth-child(2n) {
  background: var(--blue);
}

.hero-meta span:nth-child(3n) {
  background: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 26px;
}

.home-location-action {
  flex: 0 1 360px;
  display: grid;
  gap: 6px;
  max-width: min(100%, 360px);
}

.home-location-button {
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.home-location-button:focus-visible {
  outline: 2px solid rgba(23, 79, 76, 0.18);
}

.home-location-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.home-location-status.is-error {
  color: #8b2e22;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-panel > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-panel > div:last-child {
  border-bottom: 0;
}

.stat-link-inline {
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

.stat-link-inline:hover .panel-number {
  color: var(--accent);
}

.panel-number {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent-dark);
  font-size: 2.65rem;
  line-height: 1;
  transition: color 150ms ease;
}

.panel-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.language-switcher {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.language-switcher a {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 40px;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  color: #171412;
  font-weight: 800;
}

.language-switcher a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--flag-image);
  background-position: center;
  background-size: cover;
  opacity: 0.28;
}

.language-switcher a[aria-current="page"] {
  border-color: var(--accent);
  background: var(--gold);
}

.summary-grid,
.content-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(130px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.summary-grid > div,
.card,
.platform-row,
.source-row,
.disclosure,
.starting-copy,
.starting-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.summary-grid > div {
  padding: 18px 20px;
}

.summary-grid h2 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.summary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 98px;
  border-top: 4px solid var(--accent);
}

.stat {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card > span:not(.stat) {
  font-weight: 800;
  line-height: 1.2;
}

.stat-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.starting-point {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 48px;
}

.starting-copy {
  padding: 28px;
  border-left: 5px solid var(--accent);
}

.starting-copy p,
.starting-feature p,
.route-card p,
.decision-intro p,
.decision-card p {
  color: var(--muted);
}

.starting-feature {
  padding: 28px;
  border-top: 5px solid #191715;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 241, 243, 0.96)),
    var(--paper);
}

.starting-feature span,
.route-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
}

.starting-feature h3 {
  font-size: 1.85rem;
}

.starting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.route-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-card {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.route-card:last-child {
  border-right: 0;
}

.route-card span {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.route-card h3 {
  font-size: 1rem;
}

.route-card p {
  margin-top: 0;
  font-size: 0.92rem;
}

.decision-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

.decision-intro {
  border-top: 4px solid var(--accent);
  padding-top: 18px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.decision-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--blue));
}

.decision-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--green));
}

.decision-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--rose));
}

.decision-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.68rem;
}

.decision-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.decision-card p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 18px;
}

.card,
.platform-row {
  padding: 24px;
}

.card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.97)),
    var(--card-flag);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.15) saturate(0.85);
  opacity: 0.42;
}

.country-card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 4px 8px rgba(31, 28, 24, 0.14), 0 14px 28px rgba(31, 28, 24, 0.1);
}

.card-topline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card-topline span:not(.card-badge) {
  background: #e8eef2;
  color: #263238;
  padding: 5px 9px;
  letter-spacing: 0.02em;
}

.card h3 {
  color: #181613;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.card p {
  margin-top: 12px;
}

.muted,
.card p,
.platform-row p,
.source-row p,
.site-footer p {
  color: var(--muted);
}

.site-copyright {
  margin-top: 16px;
  font-size: 0.82rem;
}

.footer-policy-links {
  margin-top: 18px;
}

.footer-policy-links p {
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-policy-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-policy-links a {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: #111;
}

.details,
.platform-row dl,
.source-row dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.details div,
.platform-row dl div,
.source-row dl div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: #70685f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.platform-list,
.source-list {
  display: grid;
  gap: 14px;
}

.platform-row,
.source-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) auto;
  gap: 22px;
  align-items: center;
}

.platform-row {
  border-left: 5px solid var(--accent);
}

.source-row {
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  padding: 18px;
}

.source-row p {
  margin: 8px 0 0;
}

.button,
.text-link {
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #181613;
  border-radius: var(--radius);
  background: #181613;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: #ffffff;
  color: #181613;
}

.button-secondary:hover {
  background: var(--paper-2);
  color: #181613;
}

.text-link {
  color: var(--accent-dark);
}

.text-link:hover {
  color: #111;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.two-column > div {
  border-top: 4px solid var(--accent);
  padding-top: 18px;
}

.map-hero {
  grid-template-columns: minmax(0, 1fr);
}

.map-section {
  padding-top: 34px;
  padding-bottom: 44px;
}

.map-layout {
  display: block;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e6eef2;
  box-shadow: var(--shadow);
}

.guide-map {
  width: 100%;
  min-height: 660px;
  background: #dfe9ee;
}

.area-map-section {
  padding-top: 28px;
}

.area-map-frame {
  margin-top: 18px;
}

.area-guide-map {
  min-height: 430px;
}

.leaflet-container {
  font: inherit;
}

.country-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(25, 23, 21, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: #1c2325;
  box-shadow: 0 2px 5px rgba(31, 28, 24, 0.16);
}

.country-marker span {
  display: block;
  max-width: 122px;
  padding: 4px 7px;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-marker:hover,
.country-marker.is-active {
  z-index: 900 !important;
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.map-load-error {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.map-floating-card {
  position: absolute;
  z-index: 1000;
  right: 16px;
  top: 16px;
  width: min(360px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  overflow: auto;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(31, 28, 24, 0.2), 0 18px 38px rgba(31, 28, 24, 0.14);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-floating-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.map-card-close {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.map-card-close:hover,
.map-card-close:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  outline: none;
}

.map-floating-card h2 {
  margin: 8px 40px 10px 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.map-floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.map-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.map-card-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px;
  background: var(--paper-2);
}

.map-card-stats dt {
  margin-bottom: 4px;
}

.map-card-stats dd {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.map-floating-card .button {
  margin-top: 2px;
}

.map-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.map-back-button {
  position: absolute;
  z-index: 1001;
  left: 16px;
  top: 16px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #181613;
  border-radius: var(--radius);
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 28, 24, 0.16);
}

.map-back-button:hover,
.map-back-button:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  outline: none;
}

.map-nearest-control {
  position: absolute;
  z-index: 1001;
  left: 16px;
  top: 64px;
  width: min(340px, calc(100% - 32px));
  max-height: calc(100% - 86px);
  overflow: auto;
  border: 1px solid rgba(24, 22, 19, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(31, 28, 24, 0.18);
}

.map-nearest-control h3 {
  margin: 0 34px 8px 0;
  font-size: 1rem;
}

.map-nearest-close {
  position: absolute;
  right: 8px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.map-nearest-close:hover,
.map-nearest-close:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  outline: none;
}

.map-location-button,
.map-location-search button,
.map-nearest-results button {
  font: inherit;
  cursor: pointer;
}

.map-location-button {
  width: 100%;
  min-height: 36px;
  border: 1px solid #181613;
  border-radius: var(--radius);
  background: #181613;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.map-location-button:hover,
.map-location-button:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  outline: none;
}

.map-location-search {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.map-location-search label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-location-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.map-location-search input {
  min-width: 0;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 0.84rem;
}

.map-location-search button {
  min-height: 36px;
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.map-location-search input:focus,
.map-location-search button:focus-visible {
  border-color: var(--accent-dark);
  outline: 2px solid rgba(23, 79, 76, 0.18);
  outline-offset: 2px;
}

.map-location-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.map-location-status.is-error {
  color: #8b2e22;
  font-weight: 700;
}

.map-nearest-results {
  display: grid;
  gap: 6px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.map-nearest-results button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--paper-2);
  color: #181613;
  text-align: left;
}

.map-nearest-results button:hover,
.map-nearest-results button:focus-visible {
  border-color: var(--accent-dark);
  outline: none;
}

.map-nearest-results strong,
.map-nearest-results em,
.map-nearest-results b {
  display: block;
}

.map-nearest-results strong {
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-nearest-results em {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-nearest-results b {
  align-self: center;
  color: var(--accent-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.map-event-toggle {
  position: absolute;
  z-index: 1001;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(320px, calc(100% - 28px));
  min-height: 34px;
  border: 1px solid rgba(24, 22, 19, 0.22);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: #24211d;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(31, 28, 24, 0.14);
  cursor: pointer;
}

.map-event-toggle input {
  width: 15px;
  height: 15px;
  accent-color: #b86b23;
}

.map-event-toggle:focus-within {
  border-color: #b86b23;
  outline: 2px solid rgba(184, 107, 35, 0.22);
  outline-offset: 2px;
}

.club-map-popup {
  max-width: 290px;
}

.club-map-popup h3 {
  margin: 6px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.club-map-popup p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.club-map-category-note {
  border-left: 3px solid #d48a3a;
  padding-left: 9px;
  color: #5f3c1b !important;
  font-weight: 700;
}

.club-map-popup dl {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.club-map-popup dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 6px;
}

.club-map-popup dt {
  font-size: 0.64rem;
}

.club-map-popup dd {
  margin: 0;
  font-size: 0.86rem;
}

.club-map-popup-shell .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
}

.club-map-popup-shell .leaflet-popup-content {
  margin: 16px;
  font: inherit;
}

.map-updated {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.disclosure {
  margin-bottom: 36px;
  padding: 24px;
}

.directory-note {
  padding-top: 10px;
  padding-bottom: 52px;
}

.directory-note h2,
.directory-note p {
  max-width: 860px;
}

.directory-note h2 {
  margin-bottom: 16px;
}

.directory-note p {
  margin: 0 0 14px;
  color: var(--muted);
}

.directory-note p:last-child {
  margin-bottom: 0;
}

.directory-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.directory-note a:hover {
  color: #111;
}

.directory-note-action {
  padding-top: 4px;
}

.about-page {
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-hero {
  max-width: 900px;
}

.about-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-hero .text-link {
  display: inline-flex;
  margin-top: 10px;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 42px;
}

.about-stat-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.about-stat-grid .stat {
  margin-bottom: 6px;
}

.about-stat-grid span:not(.stat) {
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
}

.about-content {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.about-section {
  border-top: 2px solid var(--line);
  padding-top: 22px;
}

.about-section h2 {
  margin-bottom: 12px;
}

.about-section p {
  max-width: 820px;
  margin: 0 0 12px;
  color: var(--muted);
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.about-section a:hover {
  color: #111;
}

.site-footer {
  padding-top: 28px;
  padding-bottom: 36px;
  border-top: 2px solid var(--line);
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel > div {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-panel > div:last-child {
    border-right: 0;
  }

  .summary-grid {
    display: none;
  }

  .starting-point,
  .decision-guide,
  .about-stat-grid,
  .platform-row,
  .source-row,
  .two-column {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
    position: static;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand span {
    min-height: 0;
    max-width: 100%;
    border-left: 0;
    padding-left: 0;
  }

  .top-nav {
    justify-self: stretch;
    width: 100%;
  }

  .country-nav summary {
    width: 100%;
  }

  .country-nav-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 320px;
    margin-top: 8px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel > div {
    grid-template-columns: 76px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }

  .home-location-action {
    width: 100%;
    max-width: none;
  }

  .home-location-button {
    width: 100%;
    white-space: normal;
  }

  .guide-map {
    min-height: 520px;
  }

  .area-guide-map {
    min-height: 390px;
  }

  .map-floating-card {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: min(74%, 430px);
    padding: 16px;
  }

  .map-card-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-card-stats div {
    padding: 8px;
  }

  .map-card-stats dt {
    font-size: 0.64rem;
  }

  .map-card-stats dd {
    font-size: 1.35rem;
  }

  .map-card-actions {
    grid-template-columns: 1fr;
  }

  .map-back-button {
    left: 10px;
    top: 10px;
  }

  .map-nearest-control {
    left: 10px;
    top: 56px;
    width: min(330px, calc(100% - 20px));
    max-height: min(48%, 320px);
    padding: 10px;
  }

  .map-nearest-control h3 {
    font-size: 0.94rem;
  }

  .map-location-search-row {
    grid-template-columns: 1fr;
  }

  .map-location-search button {
    width: 100%;
  }

  .map-event-toggle {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.74rem;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  main > section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    width: 95px;
    max-width: 72vw;
  }

  .details div,
  .platform-row dl div,
  .source-row dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* Club visit extra details accordion panel styling */
details.club-extra {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

details.club-extra summary {
  font-weight: 800;
  cursor: pointer;
  color: var(--accent-dark);
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 8px;
  user-select: none;
}

details.club-extra summary:hover {
  color: var(--accent);
}

details.club-extra .club-extra-fact {
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

details.club-extra .club-extra-fact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Club dynamic filtering panel styles */
.club-filter-section {
  margin-top: 24px;
  margin-bottom: 24px;
}

.filter-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.filter-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  user-select: none;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.checkbox-container:hover {
  color: var(--text);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #f1f2f3;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.15s ease;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #e5e6e7;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent);
  border-color: var(--accent);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-container .checkmark::after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio-checkmark {
  border-radius: 50%;
}

.checkbox-container input:checked ~ .radio-checkmark::after {
  left: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  border: 0;
}

.weekday-group {
  justify-content: flex-start;
}

.weekday-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.day-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.day-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #f8f9fa;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.day-btn:hover {
  background: #e9ecef;
  color: var(--text);
  border-color: #ced4da;
}

.day-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(var(--accent-rgb, 100, 110, 245), 0.3);
}

.filter-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-counter {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.reset-filters-btn {
  font-size: 0.88rem;
  padding: 8px 16px;
  height: auto;
}

/* Card badges styles */
.card-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Color palettes for badges */
.tag-accessible_for_singles {
  background: #e8f5e9;
  color: #2e7d32;
}

.tag-singles_selected_nights {
  background: #fff3e0;
  color: #ef6c00;
}

.tag-couples_only {
  background: #f3e5f5;
  color: #6a1b9a;
}

.tag-has_pool {
  background: #e3f2fd;
  color: #1565c0;
}

.tag-has_sauna {
  background: #e0f2f1;
  color: #00695c;
}

.tag-has_bdsm {
  background: #ffebee;
  color: #c62828;
}

.tag-serves_alcohol {
  background: #efebe9;
  color: #4e342e;
}

.tag-no_membership_required {
  background: #f1f8e9;
  color: #558b2f;
}

.tag-dropin_ok {
  background: #e0f7fa;
  color: #00838f;
}

/* All badges are hidden by default */
.card-badge {
  display: none !important;
}

/* Reveal active filter's positive badges */
.filter-active-policy .card-badge.tag-accessible_for_singles,
.filter-active-policy .card-badge.tag-singles_selected_nights,
.filter-active-policy .card-badge.tag-couples_only,
.filter-active-has_pool .card-badge.tag-has_pool:not(.badge-unknown),
.filter-active-has_sauna .card-badge.tag-has_sauna:not(.badge-unknown),
.filter-active-has_bdsm .card-badge.tag-has_bdsm:not(.badge-unknown),
.filter-active-serves_alcohol .card-badge.tag-serves_alcohol:not(.badge-unknown),
.filter-active-no_membership_required .card-badge.tag-no_membership_required:not(.badge-unknown),
.filter-active-dropin_ok .card-badge.tag-dropin_ok:not(.badge-unknown) {
  display: inline-block !important;
}

/* Reveal active filter's unknown badges only, styled with dashed border */
.filter-active-policy .card-badge.badge-unknown.tag-policy,
.filter-active-has_pool .card-badge.badge-unknown.tag-has_pool,
.filter-active-has_sauna .card-badge.badge-unknown.tag-has_sauna,
.filter-active-has_bdsm .card-badge.badge-unknown.tag-has_bdsm,
.filter-active-serves_alcohol .card-badge.badge-unknown.tag-serves_alcohol,
.filter-active-no_membership_required .card-badge.badge-unknown.tag-no_membership_required,
.filter-active-dropin_ok .card-badge.badge-unknown.tag-dropin_ok {
  display: inline-block !important;
  background: #f1f2f3;
  color: #6c757d;
  border: 1px dashed #ced4da;
}

/* Filtering classes to toggle card/section visibility */
.card.hidden-by-filter,
.content-section.hidden-by-filter {
  display: none !important;
}

/* Collapsible Filter Panel Toggle button */
.filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  text-align: left;
}

.filter-toggle-icon {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-toggle-btn[aria-expanded="true"] .filter-toggle-icon {
  transform: rotate(180deg);
}

.filter-panel-content {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 16px;
}

/* Unknown card overlay styling */
.card.card-unknown-filtered {
  opacity: 0.65;
  filter: grayscale(60%);
  position: relative;
}

.card.card-unknown-filtered::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(120, 120, 120, 0.08);
  pointer-events: none;
  border-radius: var(--radius);
  z-index: 5;
}

/* Articles Section */
.articles-section {
  margin-top: 48px;
  margin-bottom: 48px;
}

.articles-section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 18px;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-thumbnail {
  transform: scale(1.05);
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-content h3 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--ink);
}

.article-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 16px;
  flex-grow: 1;
}

.article-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.article-card:hover .article-link {
  text-decoration: underline;
  color: var(--accent-dark);
}

/* Article Page Styling */
.article-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 16px 64px 16px;
}

.article-hero {
  margin-bottom: 20px;
}

.article-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.article-hero .back-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.article-container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.article-cover-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.article-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 32px;
  color: var(--ink);
}

.article-body h1 {
  font-size: 2.1rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.article-body .lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 28px;
  font-weight: 500;
  border-bottom: 2px solid var(--line);
  padding-bottom: 24px;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 600;
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

.article-body p {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--ink);
}

.article-body ul {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body li {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: 24px;
  z-index: 9999;
  background: rgba(24, 22, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  padding: 16px 24px;
  max-width: 600px;
  margin: 0 auto;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent-banner.cookie-consent-hidden {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  max-width: 420px;
}

.cookie-consent-link {
  color: #4db6ac;
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.cookie-consent-link:hover {
  color: #80cbc4;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-consent-btn {
  background: linear-gradient(135deg, #174f4c 0%, #0d3533 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-consent-btn:hover {
  background: linear-gradient(135deg, #1f6763 0%, #124644 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 79, 76, 0.35);
}

.cookie-consent-btn:active {
  transform: translateY(0);
}

.cookie-consent-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-consent-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: none;
}

@media (max-width: 580px) {
  .cookie-consent-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 16px;
  }
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-consent-text {
    max-width: none;
  }
  .cookie-consent-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .cookie-consent-btn {
    text-align: center;
    width: 100%;
  }
}

/* About page logo styling */
.about-logo {
  float: left;
  max-width: 130px;
  height: auto;
  margin-right: 28px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.about-hero::after {
  content: "";
  clear: both;
  display: table;
}

@media (max-width: 680px) {
  .about-logo {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    max-width: 160px;
  }
}



