.responsible-bar {
  background: var(--pine);
  color: var(--sand);
  border-bottom: 1px solid color-mix(in srgb, var(--copper) 38%, transparent);
  padding-block: 0.38rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.responsible-bar p {
  margin: 0;
}

.responsible-bar a {
  color: var(--bone);
  font-weight: 600;
  text-decoration: none;
}

.responsible-bar a:hover {
  color: var(--sand);
  text-decoration: underline; /* deslop-ignore 09 — real link hover */
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header);
  min-width: 0;
  position: relative;
  width: min(100% - (var(--gutter) * 2), var(--max));
  max-width: calc(100vw - (var(--gutter) * 2));
  margin-inline: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem 0.85rem;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand__mark svg,
.brand__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: transform 0.4s var(--ease);
}

.brand:hover .brand__svg {
  transform: translateY(-0.08rem);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__tag {
  grid-column: 2;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 58%, white);
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1.5px solid var(--ink);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 46;
}

.nav-toggle:hover {
  background: var(--bone);
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.nav-toggle__icon::before {
  top: -0.38rem;
}

.nav-toggle__icon::after {
  top: 0.38rem;
}

body.nav-open .nav-toggle__icon {
  background: transparent;
}

body.nav-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 41;
  padding-bottom: 0.4rem;
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: var(--shadow);
}

.nav-list a {
  display: block;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
}

.nav-list a:hover {
  color: var(--copper-deep);
}

.nav-list a[aria-current="page"] {
  color: var(--copper-deep);
  box-shadow: inset 3px 0 0 var(--copper);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
}

.lang-switch a {
  border: 0;
  background: transparent;
  padding: 0.38rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: inherit;
}

.lang-switch a:hover {
  color: var(--copper-deep);
}

.lang-switch a.is-active,
.lang-switch a[aria-current="true"] {
  background: var(--pine);
  color: var(--bone);
}

.lang-switch a.is-active:hover,
.lang-switch a[aria-current="true"]:hover {
  color: var(--bone);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  background: var(--copper);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.btn:hover {
  background: var(--copper-deep);
  color: var(--white);
  transform: translateX(0.2rem);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--bone);
}

.hero .btn--ghost,
.casino-panel .btn--ghost,
.section--pine .btn--ghost,
.cookie-bar .btn--ghost {
  color: var(--bone);
  border-color: color-mix(in srgb, var(--bone) 70%, transparent);
}

.hero .btn--ghost:hover,
.casino-panel .btn--ghost:hover,
.section--pine .btn--ghost:hover,
.cookie-bar .btn--ghost:hover {
  background: var(--bone);
  color: var(--pine);
}

.btn svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero {
  display: grid;
  min-height: min(92vh, 58rem);
  position: relative;
  overflow: hidden;
  background: var(--pine);
  color: var(--bone);
}

.hero--home {
  display: block;
}

.hero--home .hero__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(92vh, 58rem);
}

.hero--home .hero__copy {
  z-index: 1;
  width: min(38rem, 100%);
  max-width: 100%;
  margin-block: clamp(2.4rem, 8vh, 6rem);
  margin-inline: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  background: var(--pine);
  justify-content: center;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.hero--home .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--home .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.hero__media {
  min-height: 22rem;
  position: relative;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) clamp(2.2rem, 5vw, 4rem);
  position: relative;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset-block: 12% 18%;
  inset-inline-start: 0;
  width: 3px;
  background: var(--copper);
}

.hero h1 {
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 5.4rem);
  color: var(--white);
}

.hero .lede {
  color: color-mix(in srgb, var(--bone) 86%, white);
}

.hero .place,
.hero .image-note {
  color: color-mix(in srgb, var(--bone) 72%, white);
}

.hero .image-note {
  margin: 0;
}

.hero .meta-list {
  width: 100%;
}

.hero .meta-list dd {
  color: var(--bone);
}

.hero--page {
  display: block;
  min-height: 48vh;
}

.hero--page .hero__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 48vh;
  padding-block: clamp(1.8rem, 5vh, 3.2rem);
}

.hero--page .hero__copy {
  position: relative;
  inset: auto;
  width: 100%;
  padding-inline: 0;
  background: none;
  justify-content: center;
  padding-left: 20px;
}

.hero--page img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 42vh;
}

.hero--page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, color-mix(in srgb, var(--pine) 78%, transparent), transparent 70%);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--pine {
  background: var(--pine);
  color: var(--bone);
}

.section--pine a {
  color: var(--sand);
}

.section--mist {
  background: var(--mist);
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-head .lede {
  max-width: 46rem;
  margin: 0;
}

.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(3rem, 7vw, 5.5rem) 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block-end: 0.85rem;
}

.footer-brand__head h2 {
  margin: 0;
  line-height: 1.15;
}

.footer-brand .brand__mark {
  width: 2.45rem;
  height: 2.45rem;
}

.footer-brand p {
  color: color-mix(in srgb, var(--bone) 74%, white);
}

.footer-contact {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 0;
  font-style: normal;
}

.footer-contact__item {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
  color: color-mix(in srgb, var(--bone) 82%, white);
}

.footer-contact__icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  color: var(--sand);
  flex-shrink: 0;
}

.footer-contact a {
  color: inherit;
  word-break: break-word;
}

.footer-grid h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-grid a {
  text-decoration: none;
  color: color-mix(in srgb, var(--bone) 82%, white);
}

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid color-mix(in srgb, var(--bone) 16%, transparent);
  display: grid;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--bone) 70%, white);
}

.age-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
}

.badge-18 {
  display: inline-grid;
  place-items: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  border: 1px solid var(--sand);
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.has-cookie-bar {
  padding-bottom: 7.5rem;
}

.cookie-bar,
.form-status {
  position: fixed;
  z-index: 50;
  inset-inline: var(--gutter);
  bottom: 1rem;
  background: var(--ink);
  color: var(--bone);
  padding: 1rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  max-width: 44rem;
  inset-inline-end: var(--gutter);
  inset-inline-start: auto;
}

.form-status {
  position: static;
  margin-top: 1rem;
}

.form-status.is-ok {
  background: var(--ok);
}

.form-status.is-err {
  background: var(--err);
}

@media (min-width: 769px) {
  .site-nav .nav-list {
    width: min(20rem, 100%);
    margin-inline: auto 0;
  }
}

@media (max-width: 768px) {
  .brand__tag {
    display: none;
  }

  .site-nav .nav-list {
    max-height: min(70dvh, 32rem);
    overflow: auto;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 0.45rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .brand {
    gap: 0.35rem 0.5rem;
  }

  .brand__mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .lang-switch a {
    padding: 0.32rem 0.42rem;
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }
}
