:root {
  --bg: #f2f4f7;
  --surface: #ffffff;
  --surface-alt: #edf1f5;
  --ink: #131a25;
  --muted: #5f6876;
  --line: #d8dfe8;
  --brand: #2f77f7;
  --brand-dark: #1f5fd2;
  --radius: 24px;
  --shadow: 0 12px 36px rgba(10, 27, 52, .09);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.45; padding-bottom: 92px; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 76px 0; }
.section-soft { background: var(--surface-alt); }
.narrow { width: min(860px, 100%); }

.lang-switcher {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 58, .16);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(10, 27, 52, .16);
}
.lang-switcher-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  padding: 6px 8px;
  color: #2a3b58;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid transparent;
}
.lang-switcher-link:hover {
  background: #edf3ff;
  color: #1d3460;
}
.lang-switcher-link.is-active {
  background: var(--brand);
  color: #fff;
  border-color: #2566d9;
}
.lang-switcher-code { font-size: 10px; letter-spacing: .04em; }
.lang-switcher-name { display: none; }

.btn { appearance: none; border: 0; border-radius: 999px; padding: 12px 18px; font-weight: 700; text-decoration: none; cursor: pointer; transition: .2s ease; display:inline-flex; align-items:center; justify-content:center; }
.btn-small { font-size: 14px; padding: 9px 14px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-block { width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand); }

.hero-home {
  position: relative; min-height: min(86vh, 780px);
  background-image: var(--hero); background-size: cover; background-position: center; color: #fff;
}
.hero-home-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 26, 40, .64), rgba(15, 26, 40, .3) 58%, var(--bg)); }
.hero-home-inner { position: relative; z-index: 1; display: grid; align-content: center; min-height: min(86vh, 780px); padding-top: 30px; text-align: center; }
.kicker { margin: 0 auto 18px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.11); }
.hero-home h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(42px, 7.6vw, 94px); line-height: .95; letter-spacing: -.02em; }
.hero-home h1 em { font-style: italic; font-weight: 500; color: #caddff; }
.hero-home p { margin: 22px auto 0; width: min(760px, 100%); color: #e6edf8; font-size: 18px; }
.hero-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-sub {
  position: relative;
  min-height: min(82vh, 700px);
  color: #fff;
  background-image: linear-gradient(180deg, rgba(14, 24, 40, .72), rgba(14, 24, 40, .28)), var(--hero);
  background-size: cover; background-position: center;
  display: grid; align-items: center; padding: 90px 0 56px;
}
.hero-sub-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 26, 40, .64), rgba(15, 26, 40, .3) 58%, rgba(242, 244, 247, .55)); }
.hero-sub-inner { position: relative; z-index: 1; text-align: center; display: grid; align-content: center; min-height: min(82vh, 700px); }
.hero-sub h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(38px, 5.4vw, 74px); line-height: .98; }
.hero-sub p { margin: 14px auto 0; width: min(760px, 100%); color: #deebfb; font-size: 18px; }
.kicker-sub { margin-bottom: 14px; }

.floating-header-wrap {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  bottom: 12px;
  z-index: 70;
  pointer-events: none;
  padding: 0 10px;
}
.hero-home > .floating-header-wrap,
.hero-sub > .floating-header-wrap,
.premium-post-hero > .floating-header-wrap {
  position: fixed;
  bottom: 12px;
}
.floating-header {
  pointer-events: auto;
  width: min(700px, calc(100vw - 24px));
  margin: 0 auto;
  min-height: 56px;
  border-radius: 999px;
  background: rgba(248, 250, 253, .95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 36, 68, .12);
  box-shadow: 0 10px 24px rgba(10, 30, 58, .15);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
}
.fh-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #12213a;
  padding: 0 12px 0 8px;
  min-height: 40px;
  border-right: 1px solid #dbe3ef;
  flex: 0 0 auto;
}
.fh-brand img { width: 78px; height: auto; object-fit: contain; display: block; }
.fh-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.01em;
  color: #12213a;
}
.fh-wordmark em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.fh-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.fh-nav a {
  text-decoration: none;
  color: #5f6f86;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color .2s ease, color .2s ease;
}
.fh-nav a:hover { background: #ebf1fb; color: #2d4364; }
.fh-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; }
.fh-ico {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  flex: 0 0 auto;
}
.fh-nav .fh-ico { filter: grayscale(1) saturate(.15) brightness(.75); }
.fh-link-vacation .fh-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M6 15c2 0 2-2 4-2s2 2 4 2 2-2 4-2 2 2 4 2'/%3E%3C/svg%3E"); }
.fh-link-workation .fh-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='2'/%3E%3Cpath d='M8 20h8'/%3E%3C/svg%3E"); }
.fh-link-camp .fh-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 7 18H5z'/%3E%3C/svg%3E"); }
.fh-link-events .fh-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); }
.fh-link-trainer .fh-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c2-4 6-6 8-6s6 2 8 6'/%3E%3C/svg%3E"); }
.fh-link-mate .fh-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Ccircle cx='17' cy='10' r='2'/%3E%3Cpath d='M3 20c1.5-3 4.5-5 6-5s4.5 2 6 5'/%3E%3C/svg%3E"); }
.fh-cta {
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  background: linear-gradient(180deg, #4588f9, #2f77f7);
  border: 1px solid #3b74db;
  box-shadow: 0 8px 16px rgba(36, 88, 176, .25);
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fh-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(36, 88, 176, .34);
}
.fh-cta .fh-ico {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .4);
  background-size: 10px 10px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v6M12 16v6M4.93 4.93l4.24 4.24M14.83 14.83l4.24 4.24M2 12h6M16 12h6M4.93 19.07l4.24-4.24M14.83 9.17l4.24-4.24'/%3E%3C/svg%3E\");
}
.fh-cta-short { display: none; }

.center-head { text-align: center; margin-bottom: 28px; }
.left-on-desktop { text-align: left; }
.center-head h2, .split h2, .quote-block blockquote { font-family: 'Playfair Display', serif; letter-spacing: -.01em; }
.center-head h2, .split h2 { margin: 0 0 10px; font-size: clamp(32px, 5vw, 50px); line-height: 1.04; }
.center-head p, .split p { margin: 0; color: var(--muted); }

.cards3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.vibe-card, .tool-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 360px; text-decoration: none; border-radius: var(--radius); overflow: hidden; padding: 22px;
  background-image: linear-gradient(180deg, rgba(5,14,24,.12), rgba(5,14,24,.76)), var(--img);
  background-size: cover; background-position: center; color: #fff;
}
.vibe-card h3 { margin: 10px 0 10px; font-family: 'Playfair Display', serif; font-size: 36px; line-height: 1; }
.badge { width: fit-content; text-transform: uppercase; font-size: 10px; letter-spacing: .1em; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: 5px 9px; }
.tool-card span { font-family: 'Playfair Display', serif; font-size: 34px; line-height: 1.05; }
.blog-wide-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(6, 18, 34, .16), rgba(6, 18, 34, .72)), var(--img);
  background-size: cover;
  background-position: center;
}
.blog-wide-card h3 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); line-height: 1.04; max-width: 900px; }
.blog-wide-card > span:last-child { font-weight: 700; }

.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.info-card h3 { margin: 0 0 8px; overflow-wrap: anywhere; word-break: break-word; }
.info-card p { margin: 0; color: var(--muted); }

.snc-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #d2dbe8;
  box-shadow: var(--shadow);
  background: #0f1a2c;
}
.snc-showcase-track {
  display: flex;
  transition: transform .78s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.snc-showcase-slide {
  position: relative;
  min-width: 100%;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(9, 18, 33, .12) 0%, rgba(9, 18, 33, .35) 52%, rgba(8, 16, 30, .86) 100%),
    var(--img);
  background-size: cover;
  background-position: center;
}
.snc-showcase-slide::before {
  content: '';
  position: absolute;
  inset: -4%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  opacity: 0;
  transition: transform 5.2s ease, opacity .55s ease;
}
.snc-showcase-slide.is-active::before {
  transform: scale(1.09);
  opacity: .2;
}
.snc-showcase-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  display: grid;
  gap: 10px;
  color: #eef4ff;
}
.snc-showcase-label {
  width: fit-content;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(226, 239, 255, .55);
  border-radius: 999px;
  padding: 6px 10px;
  color: #e6f0ff;
  background: rgba(227, 239, 255, .14);
}
.snc-showcase-copy h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  color: #f4f8ff;
}
.snc-showcase-copy p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 22px);
  color: #d7e3f7;
  width: min(620px, 100%);
}
.snc-showcase-dots {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.snc-showcase-dot {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  background: rgba(240, 246, 255, .32);
  cursor: pointer;
  padding: 0;
}
.snc-showcase-dot.is-active {
  background: #5e97ff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2);
}

.split { display: grid; gap: 34px; grid-template-columns: 1fr 1fr; align-items: center; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-grid figure, .community-grid figure, .form-visual { border-radius: var(--radius); margin: 0; background-image: var(--img); background-size: cover; background-position: center; min-height: 220px; }
.steps { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; display: grid; gap: 4px; }
.steps span { color: var(--muted); font-size: 14px; }

.community-grid { display: grid; gap: 10px; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 180px 180px; }
.community-grid .big { grid-column: 1; grid-row: 1 / span 2; }
.community-grid .wide { grid-column: 2 / span 2; }

.quote-block { background: #fff; }
.quote-inner { text-align: center; width: min(900px, 100%); }
.quote-inner blockquote { margin: 0; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.18; }
.quote-person { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; text-align: left; }
.quote-person img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.quote-person span { display: block; color: var(--muted); font-size: 13px; }

.route-flow { position: relative; display: grid; gap: 26px; }
.route-flow::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: repeating-linear-gradient(to bottom, #7aa6f8 0 10px, transparent 10px 20px);
  transform: translateX(-50%);
  opacity: .7;
}
.route-step {
  position: relative; width: min(520px, 100%); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 14px 16px;
}
.route-step:nth-child(odd) { justify-self: start; }
.route-step:nth-child(even) { justify-self: end; }
.route-step::after {
  content: ''; position: absolute; top: 18px; width: 14px; height: 14px; border-radius: 50%; background: var(--brand);
}
.route-step:nth-child(odd)::after { right: -33px; }
.route-step:nth-child(even)::after { left: -33px; }
.route-step h3 { margin: 0 0 6px; font-size: 19px; }
.route-step p { margin: 0; color: var(--muted); }
.route-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.route-step-head h3 { margin: 0; }
.route-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #cfe0ff;
  background-color: #eff5ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  flex: 0 0 auto;
}
.route-icon-match { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 12 3 3 5-6'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E"); }
.route-icon-chat { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E"); }
.route-icon-options { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18M3 12h18M3 18h18'/%3E%3Ccircle cx='7' cy='6' r='2' fill='%232f77f7'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%232f77f7'/%3E%3Ccircle cx='17' cy='18' r='2' fill='%232f77f7'/%3E%3C/svg%3E"); }
.route-icon-setup { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v5M12 17v5M4.93 4.93l3.54 3.54M15.53 15.53l3.54 3.54M2 12h5M17 12h5M4.93 19.07l3.54-3.54M15.53 8.47l3.54-3.54'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.route-icon-play { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='8,5 19,12 8,19' fill='%232f77f7'/%3E%3C/svg%3E"); }

.form-split { align-items: start; }
.form-visual { min-height: 490px; position: relative; overflow: hidden; }
.form-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(0,0,0,.72)); }
.form-visual figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; color: #fff; font-family: 'Playfair Display', serif; font-size: 30px; line-height: 1.1; }

.matching-form { margin-top: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); padding: 18px; display: grid; gap: 12px; position: relative; }
.step-box { border: 1px solid var(--line); border-radius: 16px; padding: 12px; background: #f8fbff; }
.step-box h3 { margin: 0 0 10px; font-size: 17px; }
.image-choice-grid { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.image-choice-grid.locations { grid-template-columns: repeat(4, 1fr); }
.image-choice {
  position: relative; min-height: 124px; border-radius: 16px; overflow: hidden; display: flex; align-items: end;
  background-image: linear-gradient(180deg, rgba(8,14,24,.1), rgba(8,14,24,.65)), var(--img);
  background-size: cover; background-position: center; cursor: pointer;
}
.image-choice input { position: absolute; inset: 0; opacity: 0; }
.image-choice span { width: 100%; color: #fff; padding: 10px; font-weight: 700; }
.image-choice:has(input:checked) { outline: 3px solid var(--brand); }
.mf-grid { display: grid; gap: 10px; }
.mf-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 6px; }
.field > span { font-size: 13px; font-weight: 700; color: #38455d; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font: inherit; background: #fff; }
.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  padding-right: 34px !important;
  border-color: #cdd9ec !important;
}
.field textarea { resize: vertical; }
.check { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); }

.finder-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; display: grid; gap: 14px; }
.finder-top { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 14px; align-items: start; }
.finder-map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
#trainer-map { height: 420px; }
#event-map { height: 460px; }
.finder-map-wrap .leaflet-container {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  background: #eaf1fb;
}
.finder-map-wrap .leaflet-tile-pane {
  filter: saturate(.92) contrast(1.02) brightness(1.02);
}
.finder-map-wrap .leaflet-control-zoom {
  border: 1px solid #c9d9ef !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(10, 29, 53, .14);
}
.finder-map-wrap .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  line-height: 30px;
  border: 0 !important;
  background: #f6faff;
  color: #1f4f97;
  font-weight: 700;
}
.finder-map-wrap .leaflet-control-zoom a:hover {
  background: #e9f2ff;
  color: #143f7d;
}
.finder-map-wrap .leaflet-popup-content-wrapper {
  border-radius: 14px;
  border: 1px solid #d3e0f3;
  box-shadow: 0 10px 22px rgba(10, 28, 53, .17);
}
.finder-map-wrap .leaflet-popup-content {
  margin: 10px 12px;
  color: #1c2a3f;
  font-size: 13px;
  line-height: 1.4;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}
.finder-map-wrap .leaflet-popup-content a {
  color: #2f77f7;
  font-weight: 700;
  text-decoration: none;
}
.finder-map-wrap .leaflet-popup-tip {
  background: #fff;
  border: 1px solid #d3e0f3;
}
.finder-map-wrap .leaflet-control-attribution {
  background: rgba(255, 255, 255, .9);
  border-top-left-radius: 10px;
  padding: 2px 8px;
  font-size: 11px;
  color: #5c6b81;
}
.finder-map-wrap .leaflet-control-attribution a {
  color: #3d5c8c;
  text-decoration: none;
}
.snc-marker-wrap {
  background: transparent !important;
  border: 0 !important;
}
.snc-map-marker {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .92);
  box-shadow: 0 8px 14px rgba(10, 27, 52, .24);
  position: relative;
}
.snc-map-marker::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.snc-map-marker-core {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
}
.snc-map-marker.is-trainer {
  background: linear-gradient(135deg, #2f77f7, #6da8ff);
}
.snc-map-marker.is-trainer::after {
  background: #2f77f7;
}
.snc-map-marker.is-event {
  background: linear-gradient(135deg, #2aa4a5, #57c8c7);
}
.snc-map-marker.is-event::after {
  background: #2aa4a5;
}
.snc-map-marker.is-event .snc-map-marker-core {
  width: 8px;
  height: 8px;
}
.snc-map-marker::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(47, 119, 247, .25);
  animation: sncMarkerPulse 2.4s ease-out infinite;
}
.snc-map-marker.is-event::before {
  border-color: rgba(42, 164, 165, .3);
}
@keyframes sncMarkerPulse {
  0% { transform: scale(1); opacity: .85; }
  100% { transform: scale(1.45); opacity: 0; }
}
.finder-filter { display: grid; gap: 10px; }
.finder-results { display: grid; gap: 10px; }
.finder-result { border: 1px solid var(--line); border-radius: 18px; padding: 14px; display: grid; gap: 6px; }
.finder-result h3 { margin: 0; }
.finder-result .meta-line { color: var(--muted); font-size: 14px; }
.event-type-tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #c9dbfa;
  background: #eef4ff;
  color: #204173;
  font-size: 12px;
  font-weight: 700;
}
.finder-filter .field select {
  border-radius: 14px;
  border-color: #bfd1ec;
  background-color: #f8fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.finder-filter .field select:focus {
  outline: none;
  border-color: #6ea0f6;
  box-shadow: 0 0 0 4px rgba(47, 119, 247, .14);
}

.event-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.event-city-card {
  position: relative;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(180deg, rgba(8, 18, 34, .2), rgba(8, 18, 34, .82)), var(--img);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .18);
}
.event-city-card h3 {
  margin: 8px 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.02;
}
.event-city-badge {
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, .08);
}

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.post-card h3 { margin: 0 0 7px; }
.post-card a { text-decoration: none; }
.post-card h3,
.post-card .meta,
.post-card .post-excerpt {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.post-excerpt { color: var(--muted); }
.content-page { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }

.magic-journey { display: grid; gap: 16px; }
.magic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.magic-row.reverse .magic-image { order: 2; }
.magic-row.reverse .magic-copy { order: 1; }
.magic-image {
  margin: 0;
  min-height: 280px;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(6, 18, 34, .12), rgba(6, 18, 34, .48)), var(--img);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(16, 29, 51, .08);
}
.magic-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  align-content: center;
}
.magic-copy h3 { margin: 10px 0 10px; font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); line-height: 1.06; overflow-wrap: anywhere; word-break: break-word; }
.magic-copy p { margin: 0; color: var(--muted); }
.badge-light {
  width: fit-content;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .1em;
  border: 1px solid #d6e2f5;
  background: #f3f7ff;
  border-radius: 999px;
  padding: 5px 10px;
  color: #2a4d84;
  font-weight: 700;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.stay-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.stay-image {
  min-height: 240px;
  background-image: linear-gradient(180deg, rgba(8, 20, 36, .1), rgba(8, 20, 36, .42)), var(--img);
  background-size: cover;
  background-position: center;
}
.stay-copy { padding: 16px; }
.stay-copy h3 { margin: 0 0 8px; font-family: 'Playfair Display', serif; font-size: 30px; line-height: 1.04; overflow-wrap: anywhere; word-break: break-word; }
.stay-copy p { margin: 0; color: var(--muted); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 0;
}
.faq-acc summary {
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 18px 52px 18px 18px;
  font-size: 21px;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  position: relative;
}
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #cfe0ff;
  background: #edf4ff;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.faq-acc[open] summary::after { content: '−'; }
.faq-answer {
  border-top: 1px solid #e5ebf4;
  padding: 14px 18px 18px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.footer { padding: 36px 0 30px; border-top: 1px solid #dfe6ef; background: #fff; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-copy { color: #9aa5b7; font-size: 13px; }
.footer-brand { display: inline-flex; text-decoration: none; }
.footer-brand img { width: 126px; height: auto; display: block; object-fit: contain; }
.meta { margin: 0; color: var(--muted); font-size: 13px; }

.community-steps-section { border-top: 1px solid #dde6f1; border-bottom: 1px solid #dde6f1; }
.community-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.community-step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
}
.community-step-card h3 { margin: 0 0 8px; font-size: 19px; }
.community-step-card p { margin: 0; color: var(--muted); }
.community-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #cfe0ff;
  background-color: #eff5ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  margin-bottom: 10px;
}
.community-step-icon-request { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16l4-3h10a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E"); }
.community-step-icon-check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E"); }
.community-step-icon-whatsapp { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%2325D366' d='M16 3.2a12.8 12.8 0 0 0-11 19.4L3 29.8l7.4-1.9A12.8 12.8 0 1 0 16 3.2z'/%3E%3Cpath fill='%23fff' d='M22.4 18.4c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2s-.8 1-1 1.2-.4.2-.7 0a8.9 8.9 0 0 1-2.6-1.6 10 10 0 0 1-1.8-2.2c-.2-.3 0-.5.1-.7l.5-.6.3-.5a.7.7 0 0 0 0-.6c-.1-.2-.7-1.8-1-2.4-.2-.5-.5-.4-.7-.4h-.6a1.1 1.1 0 0 0-.8.4 3.3 3.3 0 0 0-1 2.4c0 1.4 1 2.8 1.1 3 .2.2 2.1 3.2 5.1 4.5.7.3 1.3.5 1.8.7.8.2 1.6.2 2.2.1.7-.1 1.8-.8 2.1-1.5.2-.7.2-1.3.2-1.5s-.2-.2-.5-.4z'/%3E%3C/svg%3E"); }

@media (max-width: 1020px) {
  .cards3, .split, .post-grid, .offer-journey-grid, .offer-benefits, .profile-links-grid, .city-links-grid, .community-steps-grid, .football-padel-grid, .football-padel-detail-grid, .football-pro-main-grid, .football-pro-bottom-grid { grid-template-columns: 1fr 1fr; }
  .event-city-grid { grid-template-columns: 1fr 1fr; }
  .finder-top { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .magic-row { grid-template-columns: 1fr; }
  .magic-row.reverse .magic-image, .magic-row.reverse .magic-copy { order: initial; }
  .community-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 180px; }
  .community-grid .big { grid-column: 1 / span 2; grid-row: 1; }
  .community-grid .wide { grid-column: 1 / span 2; }
  .image-choice-grid.locations { grid-template-columns: repeat(2, 1fr); }
  .floating-header {
    width: min(700px, calc(100vw - 16px));
    min-height: 54px;
    gap: 6px;
    padding: 6px 8px;
  }
  .fh-brand {
    padding: 0 10px 0 7px;
    min-height: 40px;
  }
  .fh-brand img { width: 74px; }
  .fh-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding-right: 0;
  }
  .fh-nav::-webkit-scrollbar { display: none; }
  .fh-nav a {
    width: 100%;
    min-width: 0;
    font-size: 12px;
    padding: 6px 5px;
  }
  .fh-nav .fh-link { width: 100%; gap: 6px; }
  .fh-ico { width: 12px; height: 12px; background-size: 10px 10px; }
  .fh-cta {
    font-size: 12px;
    padding: 7px 10px;
    margin-left: 0;
  }
  .route-flow::before { left: 18px; }
  .route-step { width: calc(100% - 30px); justify-self: end !important; }
  .route-step::after { left: -22px !important; right: auto !important; }
  .offer-route-flow::before { left: 18px; }
  .offer-route-flow .offer-step-card { width: calc(100% - 30px); justify-self: end !important; }
  .offer-route-flow .offer-step-card::after { left: -22px !important; right: auto !important; }
}

@media (max-width: 760px) {
  .wrap { width: min(1180px, calc(100% - 20px)); }
  .section { padding: 52px 0; }
  .lang-switcher {
    top: 8px;
    right: 8px;
    left: auto;
    gap: 2px;
    padding: 3px;
  }
  .lang-switcher-link { padding: 6px 7px; gap: 0; font-size: 10px; }
  .snc-consent-banner {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 16px);
    padding: 12px;
  }
  .snc-consent-banner-copy p { font-size: 13px; }
  .snc-consent-accept-all { width: 100%; }
  .snc-consent-settings-link { font-size: 12px; }
  .snc-consent-modal-card { padding: 14px; gap: 12px; border-radius: 18px; }
  .snc-consent-option { align-items: start; }
  .hero-home-inner { min-height: 82vh; padding-top: 30px; }
  .hero-home p, .hero-sub p { font-size: 16px; }
  .cards3, .post-grid, .mf-grid.two, .image-choice-grid, .offer-journey-grid, .offer-benefits, .profile-links-grid, .city-links-grid, .community-steps-grid, .event-city-grid, .football-padel-grid, .football-padel-detail-grid, .football-pro-main-grid, .football-pro-bottom-grid { grid-template-columns: 1fr; }
  .vibe-card, .tool-card { min-height: 280px; }
  .vibe-card h3, .tool-card span { font-size: 30px; }
  .blog-wide-card { min-height: 180px; padding: 16px; }
  .blog-wide-card h3 { font-size: 28px; }
  .hero-sub { min-height: 340px; padding-top: 80px; }
  .hero-sub-inner { min-height: 340px; }
  .floating-header-wrap { padding: 0 6px; }
  .hero-home > .floating-header-wrap,
  .hero-sub > .floating-header-wrap,
  .premium-post-hero > .floating-header-wrap { bottom: 10px; }
  .floating-header {
    width: calc(100vw - 12px);
    min-height: 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 6px;
    overflow: hidden;
  }
  .fh-brand {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 9px 0 4px;
  }
  .fh-brand img { width: 64px; }
  .fh-wordmark { font-size: 15px; white-space: nowrap; }
  .fh-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding-right: 0;
  }
  .fh-nav::-webkit-scrollbar { display: none; }
  .fh-nav a {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    font-size: 10.5px;
    letter-spacing: .01em;
    padding: 6px 3px;
    border-radius: 11px;
  }
  .fh-nav .fh-link { gap: 0; width: 100%; justify-content: center; }
  .fh-nav .fh-ico { display: none; }
  .fh-cta {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 36px;
    min-width: 84px;
    font-size: 10.5px;
    line-height: 1.1;
    padding: 6px 10px;
    gap: 0;
    margin-left: 0;
    justify-content: center;
  }
  .fh-cta .fh-ico { display: none; }
  .fh-cta-long { display: none; }
  .fh-cta-short { display: inline; }
  .fh-ico { width: 14px; height: 14px; background-size: 12px 12px; }
  .fh-link-trainer, .fh-link-mate { display: none !important; }
  #trainer-map { height: 320px; }
  #event-map { height: 340px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .magic-image { min-height: 220px; }
  .magic-copy h3 { font-size: 28px; }
  .snc-showcase-slide { min-height: 420px; padding: 16px; }
  .snc-showcase-copy { gap: 8px; }
  .snc-showcase-copy h3 { font-size: clamp(30px, 10vw, 46px); }
  .snc-showcase-copy p { font-size: 16px; line-height: 1.35; }
  .snc-showcase-label { font-size: 10px; letter-spacing: .1em; }
  .snc-showcase-dots { left: 16px; right: 16px; bottom: 12px; justify-content: flex-start; }
  .snc-showcase-dot { width: 28px; height: 4px; }
}

@media (max-width: 520px) {
  .floating-header {
    width: calc(100vw - 10px);
    padding: 5px;
  }
  .fh-brand {
    padding: 0 8px 0 2px;
  }
  .fh-brand img { width: 62px; }
  .fh-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fh-link-events { display: none !important; }
  .fh-nav a {
    font-size: 10px;
    padding: 6px 2px;
  }
  .fh-cta {
    min-width: 76px;
    font-size: 10px;
    padding: 6px 8px;
  }
}

.post-cover { display:block; border-radius: 16px; overflow:hidden; margin-bottom: 10px; }
.post-cover img { width:100%; height: 190px; object-fit: cover; }

.post-top-image { margin: 0 0 16px; border-radius: 18px; overflow: hidden; }
.post-top-image img { width: 100%; height: clamp(240px, 36vw, 420px); object-fit: cover; }

.premium-post-hero {
  position: relative;
  min-height: min(84vh, 760px);
  padding: 150px 0 120px;
  color: #fff;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.premium-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 24, .22), rgba(5, 12, 24, .7));
}
.premium-post-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
}
.premium-post-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, .82);
  font-weight: 700;
}
.premium-post-hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: -.01em;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.premium-post-hero h1 span {
  font-style: normal;
  font-weight: 700;
}
.premium-post-meta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.premium-post-meta img {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .36);
}
.premium-post-meta strong {
  display: block;
  font-size: 16px;
}
.premium-post-meta span {
  display: block;
  margin-top: 2px;
  color: rgba(231, 241, 254, .86);
  font-size: 13px;
}

.premium-post-main {
  padding: 82px 0 56px;
}
.premium-post-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 250px minmax(0, 1fr) 280px;
  align-items: start;
}
.premium-post-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.premium-post-toc {
  position: sticky;
  top: 108px;
}
.premium-post-toc h4 {
  margin: 0 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #7a8699;
}
.premium-post-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-height: 60vh;
  overflow: auto;
}
.premium-post-toc a {
  text-decoration: none;
  color: #516277;
  font-size: 14px;
}
.premium-post-toc a:hover {
  color: #2f77f7;
}

.premium-post-article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 42px);
}
.premium-post-article section + section {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid #edf2f7;
}
.premium-post-article h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
  color: #0f2342;
}
.premium-post-article h4 {
  margin: 0 0 7px;
  font-size: 22px;
}
.premium-post-article p {
  margin: 0 0 16px;
  color: #4a5b74;
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.premium-post-article h3 {
  margin: 24px 0 10px;
  font-size: 30px;
  line-height: 1.2;
  color: #17365f;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.premium-post-article ul,
.premium-post-article ol {
  margin: 0 0 18px 20px;
  padding: 0;
  color: #4a5b74;
  font-size: 18px;
  line-height: 1.72;
}
.premium-post-article li + li {
  margin-top: 6px;
}
.premium-post-article li,
.premium-post-article h2,
.premium-post-article h4,
.premium-post-article th,
.premium-post-article td {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.premium-post-article a {
  color: #1f5fcf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.premium-post-article table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 16px;
  table-layout: auto;
}
.premium-post-article th,
.premium-post-article td {
  border: 1px solid #dbe5f1;
  padding: 10px;
  text-align: left;
}
.premium-post-article blockquote {
  margin: 0 0 18px;
  border-left: 3px solid #bcd5ff;
  padding: 8px 0 8px 14px;
  color: #5f6f86;
  font-style: italic;
}
.premium-post-article img {
  max-width: 100%;
  height: auto;
}
.premium-post-article .premium-lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 31px);
  line-height: 1.48;
  color: #617186;
}
.premium-post-article figure {
  margin: 30px 0 28px;
}
.premium-post-article figure img {
  width: 100%;
  height: min(540px, 58vw);
  object-fit: cover;
  border-radius: 28px;
}
.premium-post-article figcaption {
  margin-top: 10px;
  text-align: center;
  color: #7a8696;
  font-size: 14px;
  font-style: italic;
}
.premium-tip-box {
  background: #f3f8ff;
  border: 1px solid #d8e8ff;
  border-radius: 24px;
  padding: 20px;
}
.premium-tip-box h4 {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #2f77f7;
}
.premium-tip-box p {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.premium-steps {
  display: grid;
  gap: 14px;
}
.premium-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}
.premium-step > span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #2f77f7;
  border: 1px solid #c9dcff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}
.premium-step p {
  margin-bottom: 0;
  font-size: 17px;
}

.premium-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.premium-city-card {
  position: relative;
  min-height: 214px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .52)), var(--img);
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: end;
  padding: 14px;
}
.premium-city-card h3 {
  margin: 0;
  font-size: 26px;
}
.premium-city-card p {
  margin: 4px 0 0;
  color: rgba(241, 247, 255, .86);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.premium-post-side {
  display: grid;
  gap: 12px;
}
.premium-post-side h4 {
  margin: 0 0 8px;
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  color: #102645;
}
.premium-post-side p {
  margin: 0 0 14px;
  color: #5a6d85;
  font-size: 15px;
  line-height: 1.55;
}
.premium-post-side a {
  text-decoration: none;
}
.premium-post-panel-cta a,
.premium-post-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 16px;
  background: #2f77f7;
  color: #fff;
  font-weight: 700;
  border: 1px solid #316fd9;
}
.premium-post-panel-dark {
  background: #0f1f35;
  border-color: #1f324c;
}
.premium-post-panel-dark h4 {
  color: #fff;
}
.premium-post-panel-dark ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.premium-post-panel-dark li {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 2px;
}
.premium-post-panel-dark strong {
  color: #fff;
}
.premium-post-panel-dark span {
  color: #a9bdd8;
  font-size: 13px;
}

.premium-post-faq {
  padding: 20px 0 56px;
}
.premium-post-faq-inner {
  width: min(920px, calc(100% - 32px));
}
.premium-post-faq h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
}
.premium-post-faq details {
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 20px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}
.premium-post-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
}
.premium-post-faq p {
  margin: 12px 0 2px;
  color: #53667f;
  font-size: 18px;
  line-height: 1.68;
}

.premium-post-big-cta {
  padding: 14px 0 68px;
}
.premium-post-big-cta-box {
  border-radius: 36px;
  background: linear-gradient(135deg, #2362d7, #3f82f8);
  color: #fff;
  box-shadow: 0 26px 52px rgba(35, 98, 215, .27);
  padding: clamp(24px, 5vw, 52px);
  text-align: center;
}
.premium-post-big-cta-box h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.6vw, 56px);
}
.premium-post-big-cta-box p {
  margin: 14px auto 0;
  max-width: 760px;
  color: rgba(239, 246, 255, .93);
  font-size: 19px;
}
.premium-post-big-cta-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.premium-post-big-cta-actions a {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  background: rgba(255, 255, 255, .09);
}
.premium-post-big-cta-actions a:first-child {
  color: #1f57c0;
  background: #fff;
  border-color: #fff;
}

.premium-post-related {
  padding: 0 0 78px;
}
.premium-post-related h3 {
  margin: 0 0 12px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 46px);
}
.premium-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.premium-related-card {
  text-decoration: none;
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.premium-related-image {
  display: block;
}
.premium-related-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.premium-related-card strong {
  display: block;
  padding: 12px 12px 4px;
  font-size: 21px;
  line-height: 1.28;
}
.premium-related-card p {
  margin: 0;
  padding: 0 12px 12px;
  color: #566b86;
  font-size: 14px;
}

@media (max-width: 1240px) {
  .premium-post-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .premium-post-toc {
    display: none;
  }
}

@media (max-width: 980px) {
  .premium-post-main {
    padding-top: 56px;
  }
  .premium-post-grid {
    grid-template-columns: 1fr;
  }
  .premium-post-side {
    grid-template-columns: 1fr;
  }
  .premium-city-grid,
  .premium-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .premium-post-hero {
    min-height: 600px;
    padding: 120px 0 110px;
  }
  .premium-post-hero-inner {
    width: min(1180px, calc(100% - 20px));
  }
  .premium-post-breadcrumbs {
    font-size: 10px;
  }
  .premium-post-article {
    padding: 18px;
  }
  .premium-post-hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
    text-wrap: pretty;
  }
  .premium-post-article p,
  .premium-post-faq p {
    font-size: 17px;
  }
  .premium-post-article table {
    font-size: 14px;
    min-width: 560px;
  }
  .premium-post-article figure img {
    height: 280px;
    border-radius: 18px;
  }
  .premium-city-grid,
  .premium-related-grid {
    grid-template-columns: 1fr;
  }
  .premium-post-side h4 {
    font-size: 24px;
  }
  .premium-post-faq-inner {
    width: min(920px, calc(100% - 20px));
  }
  .premium-post-faq summary {
    font-size: 18px;
  }
}

.offer-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.offer-step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 12px;
}
.offer-step-image {
  margin: 0 0 10px;
  border-radius: 14px;
  min-height: 180px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
.offer-step-card h3 { margin: 0 0 6px; font-size: 20px; overflow-wrap: anywhere; word-break: break-word; }
.offer-step-card p { margin: 0; color: var(--muted); }
.offer-route-flow {
  position: relative;
  gap: 22px;
}
.offer-route-flow::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #8cb2fb 0 10px, transparent 10px 20px);
  transform: translateX(-50%);
  opacity: .75;
}
.offer-route-flow .offer-step-card {
  position: relative;
  width: min(520px, 100%);
}
.offer-route-flow .offer-step-card:nth-child(odd) { justify-self: start; }
.offer-route-flow .offer-step-card:nth-child(even) { justify-self: end; }
.offer-route-flow .offer-step-card::after {
  content: '';
  position: absolute;
  top: 86px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
}
.offer-route-flow .offer-step-card:nth-child(odd)::after { right: -34px; }
.offer-route-flow .offer-step-card:nth-child(even)::after { left: -34px; }
.offer-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.offer-benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}
.offer-benefit-item p { margin: 0; color: var(--muted); }

.btn-secondary { background: #eef3fa; color: #26406a; }
.snc-consent-root {
  position: relative;
  z-index: 120;
}
.snc-consent-banner[hidden],
.snc-consent-modal[hidden],
.snc-consent-confirm[hidden] {
  display: none !important;
}
.snc-consent-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, calc(100vw - 24px));
  background: rgba(255, 255, 255, .97);
  border: 1px solid #cfdaea;
  box-shadow: 0 16px 36px rgba(9, 24, 46, .22);
  border-radius: 20px;
  padding: 14px;
  display: grid;
  gap: 12px;
}
.snc-consent-banner-copy strong {
  display: block;
  margin: 0 0 4px;
  font-size: 16px;
}
.snc-consent-banner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.snc-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.snc-consent-accept-all {
  min-width: 210px;
}
.snc-consent-settings-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #2a4d84;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 2px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.snc-consent-settings-link:hover {
  color: #1e3b68;
}
.snc-consent-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 24, 44, .52);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  padding: 12px;
  z-index: 125;
}
.snc-consent-modal-card {
  width: min(680px, 100%);
  background: #fff;
  border: 1px solid #d3deef;
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(10, 24, 47, .26);
  padding: 18px;
  display: grid;
  gap: 14px;
}
.snc-consent-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.snc-consent-modal-head h2 {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.08;
}
.snc-consent-close {
  appearance: none;
  border: 1px solid #d7e1f0;
  background: #f4f8ff;
  color: #254067;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.snc-consent-intro {
  margin: 0;
  color: var(--muted);
}
.snc-consent-options {
  display: grid;
  gap: 10px;
}
.snc-consent-option {
  border: 1px solid #d5dfef;
  background: #f8fbff;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.snc-consent-option strong {
  display: block;
  margin: 0 0 3px;
}
.snc-consent-option p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.snc-consent-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}
.snc-consent-toggle-track {
  width: 72px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #bfd0ea;
  background: #e9eff8;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  transition: background-color .2s ease, border-color .2s ease;
}
.snc-consent-toggle-knob {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-color: #ffffff;
  box-shadow: 0 3px 7px rgba(12, 28, 53, .25);
  transition: transform .2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20c2-5 7-9 12-9h3'/%3E%3Cpath d='M14 9h5v5'/%3E%3Ccircle cx='7' cy='17' r='2.6' fill='%232f77f7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.snc-consent-toggle.is-on .snc-consent-toggle-track {
  background: #2f77f7;
  border-color: #2b67d0;
}
.snc-consent-toggle.is-on .snc-consent-toggle-knob {
  transform: translateX(34px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E");
}
.snc-consent-toggle.is-locked {
  cursor: not-allowed;
}
.snc-consent-toggle.is-locked .snc-consent-toggle-track {
  background: #b8cee9;
  border-color: #a8c1df;
}
.snc-consent-modal-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.snc-consent-confirm {
  border: 1px solid #d7e1f0;
  background: #f3f7ff;
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 8px;
}
.snc-consent-confirm p {
  margin: 0;
  font-size: 14px;
  color: #2a4267;
}
.snc-consent-confirm-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.snc-consent-meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.snc-consent-meta a {
  color: #1f57aa;
}
body.snc-consent-modal-open {
  overflow: hidden;
}
.finder-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.city-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.football-padel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.football-padel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.football-padel-card h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.06;
}
.football-padel-card p { margin: 0; color: var(--muted); }
.football-padel-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.football-padel-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.football-padel-panel h2 { margin: 0 0 10px; font-size: 30px; font-family: 'Playfair Display', serif; }
.football-padel-panel h3 { margin: 14px 0 8px; font-size: 18px; }
.football-padel-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.football-padel-list li { color: var(--muted); }
.football-padel-list a { color: #1d4d9c; }
.football-pro-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 14px;
  align-items: start;
}
.football-pro-news-stack {
  display: grid;
  gap: 10px;
}
.football-news-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}
.football-news-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
}
.football-news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.football-news-item a { color: #204c92; text-decoration: none; }
.football-news-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid #cfe0ff;
  background-color: #eff5ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.football-news-icon-profile { background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c2-4 6-6 8-6s6 2 8 6'/%3E%3C/svg%3E\"); }
.football-news-icon-news { background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v14H4z'/%3E%3Cpath d='M8 9h8M8 13h8M8 17h5'/%3E%3C/svg%3E\"); }
.football-news-icon-upcoming { background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3v18'/%3E%3C/svg%3E\"); }
.football-news-icon-link { background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 14a5 5 0 0 1 0-7l1-1a5 5 0 0 1 7 7l-1 1'/%3E%3Cpath d='M14 10a5 5 0 0 1 0 7l-1 1a5 5 0 0 1-7-7l1-1'/%3E%3C/svg%3E\"); }
.football-news-icon-calendar { background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E\"); }
.football-pro-longform {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.football-pro-longform h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.8vw, 44px);
  font-family: 'Playfair Display', serif;
  line-height: 1.03;
}
.football-pro-longform p { color: #324158; }
.football-article-section {
  border-top: 1px solid #e5ecf5;
  padding-top: 12px;
  margin-top: 12px;
}
.football-article-section:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 4px;
}
.football-article-section h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  display: flex;
  align-items: center;
  gap: 10px;
}
.football-pro-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.football-pro-subtle-panel {
  border: 1px solid #dfe6f1;
  background: rgba(255, 255, 255, .82);
  border-radius: 16px;
  padding: 14px;
}
.football-pro-subtle-panel h2 {
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #22314b;
}
.football-subtle-list { gap: 6px; }
.football-subtle-list li { font-size: 14px; opacity: .9; }
.city-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 12px;
}
.profile-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.profile-link-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 12px;
}
.profile-link-card h3 { margin: 0 0 6px; }
.profile-link-card h3 a { text-decoration: none; }
.profile-page-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.profile-page-card h2 { margin: 8px 0 12px; }
.profile-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.profile-meta-grid > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #f8fbff;
}
.profile-meta-grid strong { display: block; font-size: 13px; margin-bottom: 3px; }
.profile-links-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.seo-text p { color: var(--muted); margin: 0; }

.form-step { display: none; }
.form-step.is-active { display: block; }
.form-step-indicator { display: grid; gap: 8px; }
.form-step-indicator span { font-size: 13px; color: var(--muted); font-weight: 700; }
.form-step-progress { height: 8px; border-radius: 999px; background: #e8eef7; overflow: hidden; }
.form-step-progress > span { display:block; height:100%; background: linear-gradient(90deg, var(--brand), #7aa6f8); }
.form-step-actions { display: flex; gap: 10px; justify-content: space-between; }
.form-step-actions .btn { min-width: 120px; }
.form-feedback {
  display: none;
  margin: 8px 0 0;
  border-radius: 14px;
  border: 1px solid #d8e6ff;
  background: #f3f8ff;
  color: #1b3762;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-error {
  border-color: #f2c3c8;
  background: #fff2f4;
  color: #7a1e2b;
}
.form-feedback.is-success {
  border-color: #bfdfc8;
  background: #effaf2;
  color: #1f5c30;
  box-shadow: 0 8px 22px rgba(32, 102, 52, .12);
}
.matching-form.is-submitted .form-step,
.matching-form.is-submitted .form-step-indicator,
.matching-form.is-submitted .form-step-actions {
  display: none;
}
.matching-form.is-submitted {
  min-height: 340px;
}
.form-submit-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  border-radius: inherit;
  background: rgba(248, 252, 255, .95);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 5;
}
.form-submit-overlay.is-visible {
  display: flex;
}
.form-submit-overlay-card {
  width: min(560px, 100%);
  border-radius: 20px;
  border: 1px solid #bfdfc8;
  background: linear-gradient(180deg, #f5fdf7 0%, #eefaf2 100%);
  color: #1f5c30;
  box-shadow: 0 18px 36px rgba(32, 102, 52, .16);
  padding: 22px 20px;
}
.form-submit-overlay-title {
  display: block;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.form-submit-overlay-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.city-preset-note {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.pill-grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pill-grid.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pill-grid.vibe-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 10px 12px;
  cursor: pointer;
  min-height: 46px;
}
.pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pill:has(input:checked) {
  border-color: #8cb2fb;
  box-shadow: 0 0 0 3px rgba(47, 119, 247, .12);
  background: #f3f8ff;
}
.pill-city { justify-content: flex-start; }
.pill-choice { align-items: center; }
.pill-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #cfe0ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.pill-icon-solo { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M5 21c2-4 5-6 7-6s5 2 7 6'/%3E%3C/svg%3E"); }
.pill-icon-group { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='9' r='2.5'/%3E%3Cpath d='M3 20c1.3-3 3.8-5 5-5s3.7 2 5 5'/%3E%3Cpath d='M12 20c1-2 2.7-3.5 4-3.5S19 18 20 20'/%3E%3C/svg%3E"); }
.pill-icon-size { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M7 8l-4 4 4 4'/%3E%3Cpath d='M17 8l4 4-4 4'/%3E%3C/svg%3E"); }
.pill-icon-community { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.pill-icon-fitness { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6.5 6.5 11 11'/%3E%3Cpath d='m21 21-1-1'/%3E%3Cpath d='m3 3 1 1'/%3E%3Cpath d='m18 22 4-4'/%3E%3Cpath d='m2 6 4-4'/%3E%3Cpath d='m3.5 9.5 4-4'/%3E%3Cpath d='m16.5 20.5 4-4'/%3E%3C/svg%3E"); }
.pill-icon-trips { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M3 18h18'/%3E%3C/svg%3E"); }
.pill-icon-nightlife { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3c0 4.97 4.03 9 9 9.79z'/%3E%3C/svg%3E"); }
.pill-icon-language { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l6 6'/%3E%3Cpath d='M4 14l6-6 2-3'/%3E%3Cpath d='M2 5h12'/%3E%3Cpath d='M7 2h1'/%3E%3Cpath d='M22 22l-5-10-5 10'/%3E%3Cpath d='M14 18h6'/%3E%3C/svg%3E"); }
.pill-icon-business { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a4 4 0 0 0-8 0v2'/%3E%3C/svg%3E"); }
.pill-icon-pro { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15 9 22 9 16.5 13.5 18.5 21 12 16.8 5.5 21 7.5 13.5 2 9 9 9 12 2'/%3E%3C/svg%3E"); }
.pill-icon-chill { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12c2 0 2-2 4-2s2 2 4 2 2-2 4-2 2 2 4 2 2-2 4-2'/%3E%3C/svg%3E"); }
.pill-icon-open { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E"); }
.pill-icon-wellness { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4.5 8-12V4l-8-2-8 2v6c0 7.5 8 12 8 12z'/%3E%3C/svg%3E"); }
.pill-icon-food { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f77f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v6a4 4 0 0 0 4 4v10'/%3E%3Cpath d='M7 2v6'/%3E%3Cpath d='M11 2v6'/%3E%3Cpath d='M18 2v20'/%3E%3C/svg%3E"); }

@media (max-width: 760px) {
  .pill-grid, .pill-grid.three-cols, .pill-grid.vibe-grid, .stay-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 18px; }
  .split > * { min-width: 0; }
  .mini-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mini-grid figure { min-height: 170px; }
  .steps { gap: 10px; margin-top: 14px; }
  .steps li { padding: 12px; border-radius: 14px; }
  .steps li strong { font-size: 16px; line-height: 1.2; display: block; }
  .steps li span { font-size: 14px; line-height: 1.35; display: block; }

  .form-split { grid-template-columns: 1fr; gap: 14px; }
  .form-split > div { order: 1; }
  .form-split .form-visual {
    order: 2;
    min-height: 220px;
    border-radius: 20px;
  }
  .form-visual figcaption {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.02;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .offer-journey-grid { grid-template-columns: 1fr; gap: 12px; }
  .offer-route-flow::before { left: 14px; top: 12px; bottom: 12px; }
  .offer-route-flow .offer-step-card {
    width: calc(100% - 24px);
    justify-self: end !important;
    padding: 10px;
  }
  .offer-route-flow .offer-step-card::after {
    left: -18px !important;
    right: auto !important;
    top: 70px;
  }
  .offer-step-image { min-height: 136px; border-radius: 12px; }
  .offer-step-card h3 { font-size: 18px; line-height: 1.15; }
  .offer-step-card p { font-size: 15px; line-height: 1.35; }

  .offer-benefits { grid-template-columns: 1fr; gap: 10px; }
  .offer-benefit-item {
    padding: 12px;
    border-radius: 14px;
    align-items: center;
  }
  .offer-benefit-item p { font-size: 15px; line-height: 1.35; }

  .magic-journey { gap: 16px; }
  .magic-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
  }
  .magic-image { min-height: 210px; border-radius: 14px; }
  .magic-copy { padding: 2px 2px 4px; }
  .magic-copy h3 { font-size: 34px; line-height: 1.02; }
  .magic-copy p { font-size: 15px; line-height: 1.36; }

  .matching-form { padding: 12px; gap: 10px; border-radius: 18px; }
  .form-step-indicator span { font-size: 11px; }
  .step-box { padding: 10px; border-radius: 14px; }
  .step-box h3 { font-size: 16px; line-height: 1.2; margin-bottom: 8px; }
  .image-choice-grid { grid-template-columns: 1fr; gap: 8px; }
  .image-choice { min-height: 150px; }
  .image-choice span { font-size: 14px; line-height: 1.1; }
  .form-step-actions { gap: 8px; }
  .form-step-actions .btn { min-width: 0; width: 100%; padding: 10px 12px; }

  .section { overflow-x: clip; }
  .wrap { overflow-x: clip; }
}
