/* Pohjola Kasino Hotel — Northland destination branding */

:root {
  --ink: #0f1a24;
  --ink-soft: #1e2d3d;
  --slate: #2a3f54;
  --frost: #e8edf2;
  --snow: #f4f6f8;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --gold-dark: #a8841a;
  --pine: #1a3d2e;
  --accent: #2d5a7b;
  --text: #1a2530;
  --text-muted: #5a6b7a;
  --band-dark: #0f1a24;
  --band-mid: #1e2d3d;
  --shadow: 0 24px 64px rgba(15, 26, 36, 0.18);
  --shadow-sm: 0 8px 24px rgba(15, 26, 36, 0.1);
  --radius: 4px;
  --max: 1320px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 62ch;
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow--light { color: var(--gold-light); }

/* ── Layout ── */

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

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

.section--band {
  background: var(--band-dark);
  color: var(--frost);
}

.section--band h2,
.section--band h3,
.section--band h4 {
  color: var(--white);
}

.section--band .lead {
  color: rgba(232, 237, 242, 0.78);
}

.section--mid {
  background: var(--band-mid);
  color: var(--frost);
}

.section--mid h2,
.section--mid h3 {
  color: var(--white);
}

.section--mid .lead {
  color: rgba(232, 237, 242, 0.75);
}

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

/* ── Header / Nav ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15, 26, 36, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.logo__tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 700 !important;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 26, 36, 0.35) 0%,
    rgba(15, 26, 36, 0.55) 45%,
    rgba(15, 26, 36, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.hero .lead {
  color: rgba(232, 237, 242, 0.88);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}

.hero__stat {
  padding: 1.75rem 1.5rem 0 0;
}

.hero__stat strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero__stat span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 237, 242, 0.65);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn--dark:hover {
  background: var(--slate);
  border-color: var(--slate);
}

/* ── Section headers ── */

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-header--center {
  text-align: center;
}

.section-header--center .lead {
  margin-inline: auto;
}

/* ── Feature grid ── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 26, 36, 0.95) 100%);
}

.feature-card__body {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}

.feature-card__body h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card__body p {
  color: rgba(232, 237, 242, 0.8);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.feature-card__link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.feature-card__link:hover {
  color: var(--white);
}

/* ── Split blocks ── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.split--reverse .split__media { order: 2; }
.split--reverse .split__content { order: 1; }

.split__media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
}

.split__content--dark {
  background: var(--band-mid);
  color: var(--frost);
}

.split__content--dark h2,
.split__content--dark h3 {
  color: var(--white);
}

.split__content--dark .lead {
  color: rgba(232, 237, 242, 0.78);
}

.split__content--light {
  background: var(--white);
}

/* ── Info bands ── */

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.info-band__item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.info-band__item:last-child {
  border-right: none;
}

.info-band__item h4 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.info-band__item p {
  font-size: 0.95rem;
  color: rgba(232, 237, 242, 0.72);
  line-height: 1.6;
}

/* ── Pill list ── */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
}

.pill--dark {
  background: rgba(15, 26, 36, 0.06);
  color: var(--slate);
  border-color: rgba(15, 26, 36, 0.12);
}

/* ── Room cards ── */

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.room-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__body {
  padding: 1.75rem;
}

.room-card__body h3 {
  margin-bottom: 0.5rem;
}

.room-card__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.room-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--frost);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-card__price {
  color: var(--gold-dark);
}

/* ── Casino highlight ── */

.casino-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.casino-banner__bg {
  position: absolute;
  inset: 0;
}

.casino-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 26, 36, 0.95) 0%, rgba(15, 26, 36, 0.7) 55%, rgba(15, 26, 36, 0.4) 100%);
}

.casino-banner__content {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  max-width: 640px;
}

.casino-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.casino-banner .lead {
  color: rgba(232, 237, 242, 0.85);
  margin-bottom: 2rem;
}

/* ── Page hero (subpages) ── */

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--band-dark);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 36, 0.6) 0%, var(--band-dark) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: rgba(232, 237, 242, 0.82);
}

/* ── Casino page specifics ── */

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.game-block {
  background: var(--white);
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.game-block h3 {
  margin-bottom: 0.75rem;
}

.game-block p {
  color: var(--text-muted);
  font-size: 1rem;
}

.game-block ul {
  margin-top: 1rem;
}

.game-block li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.game-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hours-table th,
.hours-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}

.hours-table th {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  width: 40%;
}

.hours-table td {
  color: rgba(232, 237, 242, 0.85);
}

/* ── Contact page ── */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--snow);
  border: 1px solid rgba(15, 26, 36, 0.15);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--band-mid);
  color: var(--frost);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-info-card dl {
  display: grid;
  gap: 1rem;
}

.contact-info-card dt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.contact-info-card dd {
  font-size: 1rem;
  color: rgba(232, 237, 242, 0.88);
  margin-left: 0;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.travel-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.travel-card h4 {
  margin-bottom: 0.75rem;
}

.travel-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── Footer ── */

.site-footer {
  background: var(--ink);
  color: rgba(232, 237, 242, 0.72);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo__name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.75rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: span 2; }
  .info-band { grid-template-columns: repeat(2, 1fr); }
  .info-band__item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { gap: 1.5rem; }
  .nav a:not(.nav-cta) { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media,
  .split--reverse .split__content { order: unset; }
  .room-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: span 1; }
  .feature-card { min-height: 380px; }
  .info-band { grid-template-columns: 1fr; }
  .info-band__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
}
