:root {
  --bg: #f3eadb;
  --bg-soft: #fbf5ec;
  --surface: rgba(255, 250, 243, 0.94);
  --surface-strong: #fffdf9;
  --text: #141414;
  --text-muted: #5d5a56;
  --accent: #c9ba91;
  --accent-strong: #9f9069;
  --accent-soft: rgba(201, 186, 145, 0.16);
  --accent-glow: rgba(201, 186, 145, 0.28);
  --line: rgba(20, 20, 20, 0.12);
  --hero-shadow: rgba(10, 10, 10, 0.54);
  --shadow-soft: 0 14px 40px rgba(16, 16, 16, 0.08);
  --shadow-card: 0 18px 45px rgba(16, 16, 16, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.75rem;
  --container: 1120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 186, 145, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f1e6 0%, #f3eadb 40%, #ecdfcb 100%);
  color: var(--text);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 65%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section,
footer {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

[data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 90svh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 1rem 1rem 3.75rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.84) 100%),
    url("hero-mobile-la-medina-bruay.webp") center 24% / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -13rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(201, 186, 145, 0.28) 0%, rgba(201, 186, 145, 0) 68%);
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.42) 30%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  margin: 0 auto;
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.34), rgba(10, 10, 10, 0.8)),
    linear-gradient(135deg, rgba(201, 186, 145, 0.12), transparent 45%);
  box-shadow: 0 24px 60px var(--hero-shadow);
  backdrop-filter: blur(4px);
  color: #fffaf3;
  text-align: center;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 236, 190, 0.4), rgba(255, 255, 255, 0.03));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-logo {
  width: clamp(4.25rem, 18vw, 5.5rem);
  height: auto;
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 9vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p {
  margin-top: 0.8rem;
  color: rgba(255, 247, 236, 0.88);
  font-size: 0.92rem;
  line-height: 1.55;
}

.rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  margin-bottom: 1.15rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  color: #fff6df;
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rating [data-lucide] {
  fill: currentColor;
}

.btn-primary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(180deg, #d7ccab 0%, var(--accent) 100%);
  color: #21150c;
  box-shadow: 0 16px 35px var(--accent-glow);
}

.btn-dark {
  background: linear-gradient(180deg, #232323 0%, #0f0f0f 100%);
  color: #fff7eb;
  box-shadow: 0 14px 32px rgba(10, 10, 10, 0.22);
}

.actions {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-3);
}

.card,
.info-block,
.reviews,
.map-card {
  border: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(252, 246, 238, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 5.25rem;
  padding: var(--space-3);
  margin-bottom: 0.9rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.card::before,
.info-block::before,
.reviews::before,
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%);
  opacity: 0.8;
}

.icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #262626 0%, #0e0e0e 100%);
  color: #ddd2b1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.icon [data-lucide] {
  width: 1.15rem;
  height: 1.15rem;
}

.text {
  flex: 1;
  min-width: 0;
}

.text h3 {
  font-size: 1rem;
  line-height: 1.2;
  color: #151515;
}

.text p {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.arrow {
  flex: 0 0 auto;
  color: rgba(20, 20, 20, 0.28);
  font-size: 1.45rem;
  line-height: 1;
}

.actions .card:nth-child(1) .icon {
  background: linear-gradient(180deg, #2d2d2d 0%, #111111 100%);
}

.actions .card:nth-child(2) .icon {
  background: linear-gradient(180deg, #383838 0%, #141414 100%);
}

.actions .card:nth-child(3) .icon {
  background: linear-gradient(180deg, #222222 0%, #090909 100%);
}

.actions .card:nth-child(4) .icon {
  background: linear-gradient(180deg, #313131 0%, #101010 100%);
}

.info {
  display: grid;
  gap: 0.9rem;
  padding: 0.35rem 0 var(--space-2);
}

.info-block {
  position: relative;
  padding: 1.15rem;
  border-radius: var(--radius-md);
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.96rem;
}

.row:last-child {
  margin-bottom: 0;
}

.row [data-lucide] {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--accent-strong);
}

.row strong {
  display: inline-block;
  margin-bottom: 0.1rem;
  color: #161616;
}

.info-link {
  color: inherit;
}

.title {
  align-items: center;
}

.info-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 0.45rem;
}

.reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.reassurance div {
  min-height: 6.4rem;
  padding: 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.96) 0%, rgba(10, 10, 10, 0.99) 100%),
    radial-gradient(circle at top, rgba(201, 186, 145, 0.16), transparent 55%);
  color: #fff8ee;
  font-size: 0.82rem;
}

.reassurance [data-lucide] {
  color: var(--accent);
}

.reviews {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-3);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.reviews-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviews-left [data-lucide] {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  fill: currentColor;
}

.reviews-left strong {
  font-size: 1.35rem;
  line-height: 1;
  color: #121212;
}

.reviews-right p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.reviews-right p:last-of-type {
  margin-bottom: 0;
}

.reviews .btn-dark {
  width: 100%;
  margin-top: 1rem;
}

.map-card {
  position: relative;
  margin-top: var(--space-3);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.map-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.map-header [data-lucide] {
  margin-top: 0.15rem;
  color: var(--accent-strong);
}

.map-container {
  position: relative;
  height: 15rem;
  border-radius: calc(var(--radius-md) - 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.map-container::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 -36px 55px rgba(22, 13, 8, 0.12);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-card .btn-dark {
  width: 100%;
  margin-top: 1rem;
}

.footer {
  position: relative;
  width: 100%;
  margin-top: var(--space-6);
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(201, 186, 145, 0.09), transparent 22rem),
    linear-gradient(180deg, #111111 0%, #050505 100%);
  border-top: 1px solid rgba(201, 186, 145, 0.16);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 10, 10, 0) 100%),
    linear-gradient(90deg, transparent 0%, rgba(201, 186, 145, 0.04) 50%, transparent 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1.5rem), 32rem);
  margin: 0 auto;
  padding: 3.2rem 0 2.2rem;
  text-align: center;
  color: #fff8ef;
}

.footer-content::before {
  content: "";
  position: absolute;
  inset: 1rem 0 auto;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 186, 145, 0.22), transparent 72%);
  filter: blur(4px);
}

.footer-kicker {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-tagline {
  margin-top: 0.45rem;
  color: rgba(255, 248, 239, 0.7);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.footer-socials a {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 186, 145, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff7eb;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-socials svg {
  width: 2rem;
  height: 2rem;
  display: block;
  fill: currentColor;
}

.footer-divider {
  width: 5.2rem;
  height: 1px;
  margin: 1.4rem auto 1rem;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 186, 145, 0.9) 50%, transparent 100%);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-text,
.footer-link {
  font-size: 0.84rem;
  color: rgba(255, 248, 239, 0.82);
}

.footer-link {
  display: inline-block;
}

.footer-text {
  margin-top: 0.95rem;
  color: rgba(255, 248, 239, 0.56);
}

.consent-banner {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 25;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(249, 243, 232, 0.96)),
    var(--surface);
  box-shadow: 0 24px 50px rgba(10, 10, 10, 0.18);
  padding: 1rem;
}

.consent-banner[hidden] {
  display: none;
}

.consent-title {
  font-weight: 700;
  color: #111111;
}

.consent-text {
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.consent-text a {
  text-decoration: underline;
  text-decoration-color: rgba(159, 144, 105, 0.45);
  text-underline-offset: 0.15em;
}

.consent-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.consent-btn-primary {
  border: 0;
  background: linear-gradient(180deg, #d7ccab 0%, var(--accent) 100%);
  color: #19130a;
}

.consent-btn-secondary {
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: #111111;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background: rgba(10, 10, 10, 0.56);
  backdrop-filter: blur(6px);
}

.popup-overlay[hidden] {
  display: none;
}

.popup-content {
  position: relative;
  width: min(100%, 28rem);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(251, 245, 235, 0.96)),
    var(--surface);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.24);
  padding: 1.35rem 1.1rem 1.1rem;
}

.popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.08);
  color: #111111;
  font-size: 1.5rem;
  line-height: 1;
}

.popup-kicker {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.popup-header h2 {
  margin-top: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.popup-subtitle {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.popup-body {
  margin-top: 1rem;
}

.rules-message {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(201, 186, 145, 0.12);
}

.icon-large {
  display: inline-flex;
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
}

.rules-message p + p {
  margin-top: 0.7rem;
}

.highlight {
  color: #111111;
  font-weight: 700;
}

.popup-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-accept,
.btn-close-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
}

.btn-accept {
  background: linear-gradient(180deg, #d7ccab 0%, var(--accent) 100%);
  color: #19130a;
  box-shadow: 0 16px 35px var(--accent-glow);
}

.btn-close-popup {
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.66);
  color: #111111;
}

.legal-page {
  min-height: 100vh;
}

.rules-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(calc(100% - 1.5rem), 52rem);
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.rules-shell {
  width: min(calc(100% - 1.5rem), 52rem);
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.legal-card {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(252, 246, 238, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.2rem;
}

.rules-section {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(252, 246, 238, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.2rem;
}

.rules-section h1 {
  margin-top: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
}

.rules-intro {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.rules-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.rules-nav a {
  min-height: 2.65rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.rule-block {
  margin-top: 1.5rem;
}

.rule-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.14rem;
  line-height: 1.3;
}

.rule-icon {
  font-size: 1.2rem;
}

.rule-text {
  margin-top: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.text-important {
  color: #111111;
  font-weight: 700;
}

.rule-separator {
  height: 1px;
  margin-top: 1.5rem;
  border: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(20, 20, 20, 0.12) 18%, rgba(20, 20, 20, 0.12) 82%, transparent 100%);
}

.payment-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.legal-kicker {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin-top: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
}

.legal-intro {
  margin-top: 1rem;
  color: var(--text-muted);
}

.legal-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.legal-section h2 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.legal-section p {
  margin-top: 0.35rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-section a {
  text-decoration: underline;
  text-decoration-color: rgba(159, 144, 105, 0.45);
  text-underline-offset: 0.15em;
}

.matomo-optout-box {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  .consent-banner {
    right: 1rem;
    bottom: 1rem;
    left: auto;
    width: min(28rem, calc(100vw - 2rem));
    padding: 1.1rem;
  }

  .consent-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popup-overlay {
    place-items: center;
    padding: 1.5rem;
  }

  .popup-content {
    padding: 1.7rem 1.5rem 1.35rem;
  }

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

  .hero {
    min-height: 42rem;
    padding: 1.5rem 1.5rem 4.75rem;
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.76) 100%),
      url("hero-desktop-restaurant-bruay-la-medina.webp") center 32% / cover no-repeat;
  }

  .hero-content {
    margin-inline: 0;
    margin-left: clamp(1rem, 4vw, 4rem);
    width: min(100%, 35rem);
    padding: 2.1rem 2rem;
    text-align: left;
  }

  .hero-logo {
    margin: 0 0 1rem;
  }

  .rating {
    justify-content: flex-start;
  }

  .btn-primary {
    width: auto;
    min-width: 14rem;
  }

  .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: -2.6rem;
  }

  .card {
    margin-bottom: 0;
  }

  .info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 0.65rem;
  }

  .reviews {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .reviews-left {
    flex-direction: column;
    align-items: flex-start;
    min-width: 7rem;
  }

  .reviews .btn-dark,
  .map-card .btn-dark {
    width: auto;
  }

  .map-container {
    height: 19rem;
  }

  .footer-content {
    padding: 3.9rem 0 2.7rem;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .legal-shell {
    padding-top: 1.6rem;
  }

  .rules-shell {
    padding-top: 1.6rem;
  }

  .legal-card {
    padding: 2.2rem 2rem;
  }

  .rules-section {
    padding: 2.2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
    min-height: 44rem;
  }

  .hero-content {
    margin-left: clamp(2rem, 9vw, 8rem);
    max-width: 37rem;
  }

  .actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card {
    min-height: 100%;
  }

  .reviews,
  .map-card,
  .info-block {
    box-shadow: var(--shadow-card);
  }
}

@media (hover: hover) {
  .btn-primary:hover,
  .btn-dark:hover {
    transform: translateY(-1px);
  }

  .btn-primary:hover {
    box-shadow: 0 20px 42px rgba(201, 186, 145, 0.34);
  }

  .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
  }

  .info-link:hover {
    color: var(--accent-strong);
  }

  .footer-socials a:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}
