:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #5b6472;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --line: #e3e9f2;
  --wine: #2563eb;
  --wine-2: #1d4ed8;
  --amber: #ff7a1a;
  --teal: #0f766e;
  --charcoal: #0f172a;
  --mint: #14b8a6;
  --shadow: 0 18px 42px rgba(15, 23, 42, .10);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, .08);
  --hover-shadow: 0 22px 54px rgba(15, 23, 42, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  animation: pageEnter .7s cubic-bezier(.22, 1, .36, 1) both;
}
body.page-leave {
  animation: pageLeave .26s ease both;
}
html.ad-landing body {
  animation: none;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(14px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes pageLeave {
  to { opacity: 0; transform: translateY(8px); filter: blur(6px); }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
img[data-src] { background: linear-gradient(135deg, #e8eef7, #f7fafc); }
.defer-img {
  filter: blur(8px);
  transform: scale(1.01);
}
.defer-img.is-loaded {
  filter: none;
  transform: none;
}
svg { width: 1.05em; height: 1.05em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
a,
button,
input,
textarea,
.club-card,
.review-card,
.content-card,
.region-tile,
.journey article,
.mini-list a,
.side-panel,
.detail-main,
.quick-form {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease, opacity .22s ease;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1), filter .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(246, 248, 251, .78);
  border-bottom: 1px solid rgba(227, 233, 242, .9);
  backdrop-filter: blur(22px) saturate(1.25);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), #334155);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.brand span:last-child { display: grid; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.top-nav { display: flex; justify-content: center; gap: 8px; }
.top-nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.top-nav a:hover { background: rgba(37, 99, 235, .1); color: var(--wine); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.header-action,
.floating-contact,
.footer-actions a,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.header-action {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #14b8a6);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}
.header-action:hover { transform: translateY(-2px); box-shadow: var(--hover-shadow); }

.hero {
  position: relative;
  min-height: min(82svh, 780px);
  display: flex;
  align-items: center;
  padding: clamp(74px, 12vh, 122px) clamp(20px, 5vw, 72px) clamp(44px, 8vh, 78px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .68) 48%, rgba(15, 23, 42, .38) 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, .56), transparent 34%);
  z-index: 2;
  pointer-events: none;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroSlideFade 24s infinite;
  animation-delay: calc(var(--slide-index) * 6s);
}
.hero-bg-slider img:first-child { opacity: 1; }
html.ad-landing .hero-bg-slider img {
  animation: none;
  transform: none;
}
html.ad-landing .hero-bg-slider img:not(:first-child) {
  display: none;
}
@keyframes heroSlideFade {
  0%, 21% { opacity: 1; transform: scale(1.02); }
  27%, 94% { opacity: 0; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1.02); }
}
.hero-content {
  position: relative;
  max-width: 850px;
  z-index: 3;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1,
.detail-copy h1 {
  margin: 12px 0 16px;
  font-size: 72px;
  line-height: .96;
  letter-spacing: 0;
}
.hero p,
.detail-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}
.hero-finder {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-top: 28px;
}
.hero-finder label {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 850;
}
.hero-finder div {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
}
.hero-finder input {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  padding: 0 14px;
  font: inherit;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
}
.hero-actions,
.detail-actions,
.club-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.42), transparent 28%), linear-gradient(135deg, rgba(255,255,255,.16), transparent 44%);
  opacity: .72;
  transition: transform .28s ease, opacity .28s ease;
}
.btn:hover::before { transform: scale(1.08); opacity: .95; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); }
.btn-primary { background: linear-gradient(135deg, var(--wine), #14b8a6); color: #fff; border-color: transparent; box-shadow: 0 12px 28px rgba(37, 99, 235, .20); }
.btn-primary:hover { background: linear-gradient(135deg, var(--wine-2), #0f766e); box-shadow: var(--hover-shadow); }
.btn-light { background: rgba(255, 255, 255, .94); color: var(--ink); border-color: rgba(255, 255, 255, .68); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: var(--ink); border-color: rgba(15, 23, 42, .16); }
.btn-soft { background: rgba(238, 244, 255, .9); color: var(--wine); border-color: rgba(191, 209, 255, .7); }
.btn.full { width: 100%; }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .7); }
.detail-copy p { color: var(--muted); }
.btn-whatsapp,
.header-action.btn-whatsapp,
.floating-contact.btn-whatsapp,
.footer-actions a.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .24);
}
.btn-whatsapp:hover,
.header-action.btn-whatsapp:hover,
.floating-contact.btn-whatsapp:hover,
.footer-actions a.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22c55e, #075e54);
  color: #fff;
  box-shadow: 0 22px 54px rgba(37, 211, 102, .32);
}
.btn-whatsapp svg {
  fill: currentColor;
  stroke: none;
}
.btn-whatsapp svg.fa-whatsapp,
.btn-whatsapp svg.fa-whatsapp path {
  fill: currentColor;
  stroke: none;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--paper);
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.stats-band div {
  background: linear-gradient(135deg, #fff, #f1f7ff);
  border: 1px solid rgba(227, 233, 242, .9);
  border-radius: 8px;
  padding: 24px clamp(18px, 4vw, 34px);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}
.stats-band div::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .10);
}
.stats-band div:hover { transform: translateY(-3px); box-shadow: var(--hover-shadow); }
.stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #14b8a6);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .18);
}
.stat-icon svg { width: 21px; height: 21px; }
.stats-band strong { display: block; color: var(--wine); font-size: 42px; line-height: 1; }
.stats-band span { color: var(--muted); font-weight: 700; }

.stock-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: #fff;
}
.showcase-copy h2 {
  margin: 8px 0 12px;
  font-size: 44px;
  line-height: 1.06;
}
.showcase-copy p { color: var(--muted); }
.stock-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.stock-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  aspect-ratio: 4 / 3;
  transition: transform .28s ease, box-shadow .28s ease;
}
.stock-grid img:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
.stock-grid img:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--hover-shadow);
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(180deg, #f6f8fb, #eef4ff);
  padding: clamp(22px, 5vw, 48px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.journey article {
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}
.journey article:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.step-label,
.content-card span,
.keyword-row span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #fff3e8;
  color: #c2410c;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
}
.journey h2 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.15;
}
.journey p { color: var(--muted); }

.section,
.detail-layout,
.feature-strip {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}
.section.alt { background: #fff; border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 26px; }
.section h2,
.detail-main h2,
.side-panel h2,
.feature-strip h2 {
  margin: 6px 0 10px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}
.section-head p,
.detail-main p,
.side-panel p,
.feature-strip p,
.club-body p {
  color: var(--muted);
}
.toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.search-box:focus-within { border-color: rgba(37, 99, 235, .55); box-shadow: 0 0 0 4px rgba(37, 99, 235, .10), var(--soft-shadow); }
.search-box input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  background: transparent;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}
.filter-chip.is-active,
.filter-chip:hover {
  background: linear-gradient(135deg, var(--wine), #14b8a6);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}
.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
}
.result-line { margin: 0; color: var(--muted); font-weight: 700; }
.result-line strong { color: var(--wine); }
.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  background: #fff;
  color: var(--wine);
  box-shadow: var(--soft-shadow);
}
.carousel-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--wine);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--hover-shadow);
}
.carousel-btn:disabled {
  opacity: .38;
  cursor: default;
  box-shadow: none;
}
.catalog-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 54px) / 4));
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
  scroll-margin-top: 112px;
  padding: 4px 4px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, .35) transparent;
}
.catalog-carousel::-webkit-scrollbar { height: 8px; }
.catalog-carousel::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, .35);
  border-radius: 999px;
}
.catalog-carousel .club-card {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  scroll-margin-top: 112px;
}
.club-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.club-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--soft-shadow);
  position: relative;
}
.club-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,.04));
}
.club-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); border-color: rgba(37, 99, 235, .22); }
.club-card[hidden] { display: none; }
.club-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #20151c;
}
.club-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.club-card:hover .club-media img { transform: scale(1.055); }
.club-sign {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 9px 15px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15,23,42,.94), rgba(15,23,42,.78));
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 0 0 1px rgba(20,184,166,.28), 0 10px 26px rgba(15,23,42,.32), 0 0 24px rgba(20,184,166,.34);
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(20,184,166,.75);
}
.club-type-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--wine);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}
.detail-media { position: relative; }
.detail-sign {
  top: 20px;
  font-size: clamp(18px, 2vw, 30px);
}
.club-body { display: grid; gap: 10px; padding: 16px; }
.club-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 850;
}
.club-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
}
.club-title-row h3 { margin: 0; font-size: 22px; line-height: 1.15; }
.club-title-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .28);
  color: #9a3412;
  font-weight: 950;
  font-size: 13px;
}
.club-body p { margin: 0; font-size: 15px; }
.club-actions { margin-top: auto; }
.club-actions .btn { flex: 1 1 130px; }
.empty-state {
  padding: 28px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}
.reviews-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.home-reviews {
  background: #fff;
}
.review-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -8px 0 18px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.review-grid.review-carousel {
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 48px) / 4));
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
  padding: 4px 4px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, .35) transparent;
}
.review-grid.review-carousel::-webkit-scrollbar { height: 8px; }
.review-grid.review-carousel::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, .35);
  border-radius: 999px;
}
.review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 216px;
  padding: 18px;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .18);
  box-shadow: var(--hover-shadow);
}
.review-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), #14b8a6);
  color: #fff;
  font-weight: 950;
}
.review-top strong {
  display: block;
  color: var(--ink);
  line-height: 1.15;
}
.review-top span:last-child {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}
.review-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-score-row strong {
  color: #9a3412;
  font-weight: 950;
}
.review-club-link {
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}
.review-club-link:hover { color: var(--wine-2); }
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.region-tile {
  min-height: 172px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(15,23,42,.18), rgba(15,23,42,.86)), var(--region-img);
  background-size: cover;
  background-position: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.region-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 16%, rgba(255,255,255,.35), transparent 28%), linear-gradient(135deg, rgba(37,99,235,.34), rgba(20,184,166,.16));
  opacity: .7;
  transition: opacity .28s ease, transform .28s ease;
}
.region-tile:hover { transform: translateY(-7px); box-shadow: var(--hover-shadow); }
.region-tile:hover::before { opacity: .95; transform: scale(1.04); }
.region-tile strong { font-size: 21px; }
.region-tile span { opacity: .88; }
.region-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}
.region-icon svg { width: 21px; height: 21px; }
.region-tile em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease;
}
.region-tile:hover em { opacity: 1; transform: translateY(0); }

.map-region-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, .85fr);
  gap: 20px;
  align-items: stretch;
}
.cyprus-map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.46)),
    url("../cyprus-map-visual.svg"),
    linear-gradient(135deg, #f8fbff, #eef4ff);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  border: 1px solid rgba(227,233,242,.95);
  box-shadow: var(--soft-shadow);
}
.cyprus-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#dbe6f4 1px, transparent 1px), linear-gradient(90deg, #dbe6f4 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .18;
}
.cyprus-shape {
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(94%, 820px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 28px 50px rgba(15,23,42,.14));
  opacity: .34;
}
.cyprus-shape path {
  fill: rgba(255,255,255,.58);
  stroke: rgba(37,99,235,.22);
  stroke-width: 2;
}
.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px 6px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  border: 1px solid rgba(227,233,242,.95);
  box-shadow: var(--soft-shadow);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 850;
}
.map-pin span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #14b8a6);
}
.map-pin svg { width: 15px; height: 15px; }
.map-pin:hover {
  transform: translate(-50%, -54%) scale(1.04);
  box-shadow: var(--hover-shadow);
  color: var(--wine);
}
.region-list {
  display: grid;
  gap: 10px;
  align-content: center;
}
.region-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(227,233,242,.95);
  box-shadow: var(--soft-shadow);
}
.region-row:hover {
  transform: translateX(4px);
  color: var(--wine);
  box-shadow: var(--hover-shadow);
  border-color: rgba(37,99,235,.22);
}
.region-row-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #14b8a6);
}
.region-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #1e293b 58%, #0f766e);
  color: #fff;
  border-block: 1px solid rgba(15, 23, 42, .12);
}
.feature-strip p { color: rgba(255, 255, 255, .72); }
.mini-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mini-list a {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}
.mini-list a:hover { transform: translateY(-5px); box-shadow: 0 24px 58px rgba(0, 0, 0, .22); }
.mini-list img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.mini-list span {
  display: block;
  padding: 10px;
  font-weight: 850;
}
.faq details {
  max-width: 860px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}
.faq details p { color: var(--muted); }

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.content-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.content-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}
.content-card::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.14), transparent 68%);
}
.content-card:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); border-color: rgba(37, 99, 235, .22); }
.content-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}
.content-card p {
  margin: 0;
  color: var(--muted);
}
.content-card .btn { width: fit-content; margin-top: 4px; }

.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 440px);
  gap: 24px;
  align-items: start;
  padding: clamp(44px, 8vw, 78px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #ecfeff, #f8fbff);
  border-block: 1px solid var(--line);
}
.contact-band h2 {
  margin: 8px 0 10px;
  font-size: 44px;
  line-height: 1.05;
}
.contact-band p { color: var(--muted); }
.quick-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  box-shadow: var(--hover-shadow);
}
.quick-form label {
  font-size: 14px;
  font-weight: 850;
}
.quick-form input,
.quick-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}
.quick-form input:focus,
.quick-form textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, .55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}
.quick-form input { min-height: 46px; }
.quick-form textarea { resize: vertical; }
.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 44vw);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(72px, 10vw, 112px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 72px);
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.back-link {
  grid-column: 1 / -1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}
.detail-media {
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(227, 233, 242, .95);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.detail-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.detail-main,
.side-panel {
  background: #fff;
  border: 1px solid rgba(227, 233, 242, .95);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--soft-shadow);
}
.detail-main:hover,
.side-panel:hover { box-shadow: var(--hover-shadow); }
.side-photo {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}
.side-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .28s ease;
}
.side-panel:hover .side-photo img { transform: scale(1.04); }
.side-panel { position: sticky; top: 92px; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}
.info-grid div {
  padding: 14px;
  border-radius: 6px;
  background: #eef4ff;
  border: 1px solid #bfd1ff;
}
.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.info-grid strong { display: block; margin-top: 6px; }
.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}
.detail-catalog-panel {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.detail-catalog-panel h2 {
  margin-bottom: 8px;
}
.catalog-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.catalog-mini-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 196px;
  padding: 16px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid rgba(191, 209, 255, .9);
}
.catalog-mini-card strong {
  color: var(--ink);
  font-size: 18px;
}
.catalog-mini-card span {
  color: var(--muted);
  font-size: 14px;
}
.catalog-mini-card .btn {
  margin-top: auto;
  justify-content: flex-start;
  min-height: 54px;
  padding: 10px 14px;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.catalog-mini-card .btn svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
}
.catalog-mini-card .btn-whatsapp {
  box-shadow: 0 10px 22px rgba(37, 211, 102, .16);
}
.catalog-mini-card .btn-soft {
  background: #f8fbff;
  color: var(--wine);
}
.related { padding-top: 0; }

.simple-hero,
.article-page {
  padding: clamp(74px, 12vw, 118px) clamp(18px, 5vw, 72px);
}
.simple-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.simple-hero.has-cover {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, .82), rgba(15, 23, 42, .48)), var(--cover-image);
  background-size: cover;
  background-position: center;
}
.simple-hero.has-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ffffff24 1px, transparent 1px), linear-gradient(90deg, #ffffff1f 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.simple-hero.has-cover > * {
  position: relative;
  z-index: 1;
}
.simple-hero.has-cover p,
.simple-hero.has-cover .back-link.dark {
  color: rgba(255, 255, 255, .84);
}
.simple-hero h1,
.article-page h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  font-size: 64px;
  line-height: 1;
}
.simple-hero p,
.article-page .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}
.back-link.dark { color: var(--muted); margin-bottom: 22px; }
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.article-page {
  max-width: 980px;
}
.article-cover {
  margin: 28px 0 34px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-page h2 {
  margin: 34px 0 8px;
  font-size: 32px;
  line-height: 1.12;
}
.article-page p { color: var(--muted); }
.article-cta {
  margin-top: 36px;
  padding: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
}
.not-found { min-height: 62svh; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}
.site-footer p { max-width: 720px; color: rgba(255, 255, 255, .65); margin-bottom: 0; }
.footer-actions a {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  white-space: nowrap;
}
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.mobile-whatsapp-widget {
  display: none;
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 90;
}
.mobile-whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(328px, calc(100vw - 28px));
  padding: 17px;
  border: 1px solid rgba(37, 211, 102, .18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 0%, rgba(37, 211, 102, .18), transparent 32%),
    linear-gradient(145deg, #101823 0%, #12080d 100%);
  color: #fff;
  box-shadow: 0 24px 62px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255, 255, 255, .03) inset;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(.96);
  transform-origin: right bottom;
  transition: opacity .2s ease, transform .2s ease;
}
.mobile-whatsapp-widget.is-open .mobile-whatsapp-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}
.mobile-whatsapp-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.mobile-whatsapp-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #0f766e);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .22);
}
.mobile-whatsapp-head strong {
  display: block;
  font-size: 15.5px;
  line-height: 1.2;
  letter-spacing: 0;
}
.mobile-whatsapp-head small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  color: #3ee582;
  font-size: 12px;
  font-weight: 700;
}
.mobile-whatsapp-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(49, 215, 114, .12);
}
.mobile-whatsapp-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .58);
  font-size: 21px;
  cursor: pointer;
}
.mobile-whatsapp-close:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.mobile-whatsapp-panel p {
  margin: 16px 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  background: rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .82);
  font-size: 14.5px;
  line-height: 1.5;
}
.mobile-whatsapp-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: clamp(14px, 4vw, 15px);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .26);
}
.mobile-whatsapp-action svg {
  width: 20px;
  height: 20px;
}
.mobile-whatsapp-fab {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(18, 140, 126, .34);
  transform: translateZ(0);
  animation: whatsappFloat 2.8s ease-in-out infinite;
}
.mobile-whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 20px;
  border: 2px solid rgba(37, 211, 102, .28);
  animation: whatsappPulse 2.8s ease-out infinite;
  pointer-events: none;
}
.mobile-whatsapp-fab svg {
  width: 30px;
  height: 30px;
  transform-origin: 50% 50%;
  animation: whatsappIconRing 3.4s ease-in-out infinite;
}
.mobile-whatsapp-badge {
  display: grid;
  place-items: center;
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(239, 68, 68, .32);
  animation: whatsappBadgePop 2.4s ease-in-out infinite;
}
@keyframes whatsappFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}
@keyframes whatsappPulse {
  0% { opacity: .9; transform: scale(.88); }
  70% { opacity: 0; transform: scale(1.18); }
  100% { opacity: 0; transform: scale(1.18); }
}
@keyframes whatsappIconRing {
  0%, 58%, 100% { transform: rotate(0deg) scale(1); }
  62% { transform: rotate(-12deg) scale(1.08); }
  66% { transform: rotate(12deg) scale(1.08); }
  70% { transform: rotate(-8deg) scale(1.04); }
  74% { transform: rotate(8deg) scale(1.04); }
  78% { transform: rotate(0deg) scale(1); }
}
@keyframes whatsappBadgePop {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1); }
  55% { transform: scale(1.18); }
  65% { transform: scale(1); }
}
.mobile-whatsapp-widget.is-open .mobile-whatsapp-fab svg,
.mobile-whatsapp-widget.is-open .mobile-whatsapp-badge {
  animation-play-state: paused;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding-inline: 14px;
  }
  .brand { min-width: 0; }
  .brand strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .menu-toggle { display: inline-flex; grid-column: 3; grid-row: 1; }
  .header-action { grid-column: 2; grid-row: 1; }
  .top-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(227, 233, 242, .95);
    border-radius: 8px;
    box-shadow: var(--hover-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .site-header.is-menu-open .top-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .top-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    background: #f8fbff;
    border: 1px solid rgba(227, 233, 242, .9);
  }
  .toolbar,
  .feature-strip,
  .detail-hero,
  .detail-layout,
  .journey,
  .stock-showcase,
  .map-region-shell,
  .contact-band { grid-template-columns: 1fr; }
  .club-grid,
  .club-grid.compact,
  .content-grid,
  .content-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid.review-carousel { grid-auto-columns: minmax(280px, calc((100% - 16px) / 2)); }
  .catalog-carousel { grid-auto-columns: minmax(280px, calc((100% - 18px) / 2)); }
  .stats-band,
  .stock-grid,
  .region-grid,
  .mini-list,
  .info-grid,
  .catalog-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side-panel { position: static; }
  .hero h1,
  .detail-copy h1 { font-size: 58px; }
  .section h2,
  .detail-main h2,
  .side-panel h2,
  .feature-strip h2,
  .contact-band h2 { font-size: 38px; }
  .showcase-copy h2 { font-size: 38px; }
  .cyprus-map-card { min-height: 360px; }
  .simple-hero h1,
  .article-page h1 { font-size: 52px; }
}

@media (max-width: 640px) {
  body { animation: none; }
  .hero-bg-slider img {
    animation: none;
    transform: none;
    opacity: 0;
  }
  .hero-bg-slider img:first-child { opacity: 1; }
  .hero-bg-slider img:not(:first-child) { display: none; }
  .site-header { padding: 12px 14px; gap: 10px; }
  .brand { grid-column: 1; grid-row: 1; }
  .header-action { grid-column: 2; grid-row: 1; }
  .brand small { display: none; }
  .header-action { width: 42px; padding: 0; font-size: 0; }
  .header-action svg { width: 20px; height: 20px; }
  .top-nav { grid-template-columns: 1fr; }
  .hero { min-height: calc(100svh - 66px); padding: 42px 18px 82px; }
  .hero h1,
  .detail-copy h1 { font-size: 40px; }
  .hero p,
  .detail-copy p { font-size: 17px; }
  .hero-finder div { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .detail-actions .btn { width: 100%; }
  .catalog-meta { align-items: flex-start; }
  .review-carousel-head { align-items: flex-start; }
  .carousel-btn { width: 40px; height: 40px; }
  .catalog-carousel {
    grid-auto-columns: minmax(260px, 84vw);
    margin-inline: -4px;
    padding-bottom: 18px;
  }
  .review-grid.review-carousel {
    grid-auto-columns: minmax(260px, 84vw);
    margin-inline: -4px;
    padding-bottom: 18px;
  }
  .club-grid,
  .club-grid.compact,
  .content-grid,
  .content-grid.two,
  .review-grid,
  .stats-band,
  .stock-grid,
  .region-grid,
  .mini-list,
  .info-grid,
  .catalog-mini-grid { grid-template-columns: 1fr; }
  .journey h2 { font-size: 24px; }
  .simple-hero h1,
  .article-page h1 { font-size: 38px; }
  .simple-hero p,
  .article-page .lead { font-size: 18px; }
  .contact-band h2 { font-size: 36px; }
  .showcase-copy h2 { font-size: 34px; }
  .stock-grid img:first-child { grid-row: auto; aspect-ratio: 4 / 3; }
  .cyprus-map-card { min-height: 310px; }
  .map-pin { min-height: 34px; padding: 5px; }
  .map-pin strong { display: none; }
  .map-pin span { width: 24px; height: 24px; }
  .region-row { grid-template-columns: auto 1fr auto; }
  .region-row > svg { display: none; }
  .site-footer { flex-direction: column; padding-bottom: 86px; }
  .floating-contact { display: none; }
  .mobile-whatsapp-widget { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .hero-bg-slider img { opacity: 0 !important; animation: none !important; transform: none !important; }
  .hero-bg-slider img:first-child { opacity: 1 !important; }
  .mobile-whatsapp-fab,
  .mobile-whatsapp-fab::before,
  .mobile-whatsapp-fab svg,
  .mobile-whatsapp-badge {
    animation: none !important;
  }
}