/* Mobile lang toggle in header */
.lang-toggle--mobile { display: none !important; }
@media (max-width: 920px) {
  .lang-toggle--mobile {
    display: inline-flex !important;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    margin-left: 4px;
  }
  .main-nav .lang-toggle { display: none !important; }
}

/* WhatsApp side panel */
.wa-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99998;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.wa-tab {
  width: 34px;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  box-shadow: 2px 0 14px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transition: border-radius 0.3s ease;
  padding: 0;
}
.wa-panel.is-open .wa-tab { border-radius: 0; box-shadow: none; }
.wa-tab__top {
  flex: 1;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}
.wa-tab__bottom {
  flex: 1;
  background: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}
.wa-tab__top svg { width: 19px; height: 19px; fill: #fff; flex-shrink: 0; }
.wa-tab-text {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #0d0d0d;
}
.wa-drawer {
  width: 0;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
  background: #111;
  border-radius: 0 12px 12px 0;
  box-shadow: 4px 0 24px rgba(0,0,0,0.5);
}
.wa-panel.is-open .wa-drawer { width: 280px; }
.wa-drawer-inner {
  width: 280px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}
.wa-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 11px;
  border-bottom: 1px solid #222;
}
.wa-drawer-title {
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  margin: 0;
  letter-spacing: 0.03em;
}
.wa-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  line-height: 1;
}
.wa-close:hover { color: #fff; }
.wa-drawer-body {
  flex: 1;
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wa-label {
  color: #777;
  font-family: var(--font-body);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wa-input {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #f0f0f0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 9px 11px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.wa-input:focus { border-color: #25d366; }
.wa-drawer-footer { padding: 10px 14px 14px; }
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
}
.wa-cta:hover { background: #1ebe5d; }
.wa-cta svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }

@media (max-width: 920px) {
  .wa-panel { top: 80%; align-items: flex-start; }
  .wa-tab { width: 28px; border-radius: 0 8px 8px 0; background: #c9a84c; }
  .wa-tab__top { display: none; }
  .wa-tab__bottom { flex: none; padding: 10px 0; background: #c9a84c; }
  .wa-tab-text { font-size: 0.55rem; color: #0d0d0d; }
  .wa-panel.is-open .wa-drawer { width: 240px; }
  .wa-drawer-inner { width: 240px; min-width: 240px; }
}

/* Widget positioning — Emergent left of Crisp */
.ll-launcher {
  right: 90px !important;
}
.ll-panel {
  right: 90px !important;
}

/* Replace LL badge with Lapland Silence logo */
.ll-mono {
  font-size: 0 !important;
  background: url('assets/logo-mark-transparent.png') center/contain no-repeat, #1a1608 !important;
}
.ll-panel .ll-mono {
  background: url('../assets/logo-mark-transparent.png') center/contain no-repeat, #1a1608 !important;
}

/* Theme Tokens */
:root {
  --bg: #0a0a0a;
  --bg-soft: #12110f;
  --gold: #c9a84c;
  --gold-bright: #e1c66b;
  --text: #f5f0e8;
  --muted: #b9b0a3;
  --line: rgba(201, 168, 76, 0.24);
  --ice: #8fb7c6;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

/* Reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

/* Header / Navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  backdrop-filter: blur(6px);
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(10, 10, 10, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-centered {
  justify-self: center;
}

.brand-logo-full {
  width: auto;
  height: 104px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.42));
}

.site-header.is-scrolled .brand-logo-full {
  height: 88px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-text {
  font-family: "Cinzel", "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: #efe4c3;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-mobile-only {
  display: none;
}

.main-nav a {
  color: rgba(245, 240, 232, 0.84);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-bright);
}

.side-contact {
  position: fixed;
  left: 24px;
  top: 50%;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 240, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.side-contact span {
  width: 1px;
  height: 72px;
  background: var(--gold);
  opacity: 0.72;
}

.side-contact a {
  transition: color 0.2s ease;
}

.side-contact a:hover,
.side-contact a:focus-visible {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.4);
  color: var(--text);
  place-items: center;
  align-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-bright);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 96px;
}

.hero-cinematic {
  min-height: 100vh;
  align-items: center;
  justify-items: center;
  padding: 160px clamp(20px, 5vw, 72px) 108px;
  text-align: center;
}

.hero-video,
.mobile-slideshow,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-video.is-active {
  opacity: 1;
}

.mobile-slideshow {
  display: none;
}

.slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 2800ms ease;
}

.slide:nth-child(1) {
  background-image: url("assets/IMG_6921.jpeg");
}

.slide:nth-child(2) {
  background-image: url("assets/IMG_7804.jpeg");
}

.slide:nth-child(3) {
  background-image: url("assets/IMG_8038 (2).jpeg");
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.46), rgba(10, 10, 10, 0.18)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), #0a0a0a 99%);
}

.hero-cinematic .hero-overlay {
  background:
    radial-gradient(circle at center, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.72) 64%, rgba(10, 10, 10, 0.92)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.2) 46%, #0a0a0a 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-cinematic .hero-content {
  max-width: 780px;
  margin: 0 auto;
}

/* Main hero logo */
.hero-logo {
  width: min(720px, 82vw);
  height: auto;
  margin: 100px auto -190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.38));
}

/* Shared small label style */
.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero-cinematic h1 {
  max-width: 100%;
  font-size: clamp(3.2rem, 6.8vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.6rem;
}

/* Hero subtitle under the logo */
.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(245, 240, 232, 0.84);
  font-size: 1.06rem;
}

.hero-cinematic .hero-copy {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 22px;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Hero buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-cinematic .hero-actions {
  justify-content: center;
}

/* Hero scroll hint */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(245, 240, 232, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold-bright), rgba(201, 168, 76, 0));
}

/* Shared buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #17130a;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(245, 240, 232, 0.08);
  color: var(--text);
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* Content sections */
.intro-section,
.section,
.booking-section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.intro-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  background: var(--bg-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid p:last-child,
.apartments-content p,
.site-footer p,
.site-footer address {
  color: var(--muted);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading p:last-child {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--muted);
}

/* Homepage catalog */
.catalog-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(18, 17, 15, 0.96)),
    var(--bg);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.catalog-heading {
  margin-bottom: 26px;
}

.catalog-filters {
  max-width: 1180px;
  margin: 0 auto 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-chip {
  padding: 10px 16px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130a;
}

.catalog-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  grid-column: span 4;
  display: grid;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.catalog-card-wide {
  grid-column: span 6;
}

.catalog-card-feature {
  grid-column: span 6;
  align-content: center;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.02);
  min-height: 100%;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.catalog-card-body {
  padding: 24px;
}

.catalog-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(201, 168, 76, 0.24);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card h3 {
  font-size: 2rem;
}

.catalog-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.catalog-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Activities */
.category-heading {
  margin-bottom: 34px;
  text-align: center;
}

.category-heading p:last-child {
  margin-right: auto;
  margin-left: auto;
  max-width: 680px;
}

.category-rail-shell {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.category-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.08);
  background: rgba(255, 248, 235, 0.94);
  color: #1b1a18;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.category-arrow span {
  font-size: 1.75rem;
  line-height: 1;
}

.category-arrow:hover,
.category-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 76, 0.3);
  background: #fffaf0;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 188px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-card {
  position: relative;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(10, 10, 10, 0.06) 22%, rgba(10, 10, 10, 0.54)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.46));
}

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

.category-card:hover img {
  transform: scale(1.05);
}

.category-card-body {
  position: relative;
  z-index: 1;
  min-height: 274px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 5px;
  padding: 22px 18px 18px;
  text-align: center;
}

.category-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(255, 249, 238, 0.24);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.category-card h3 {
  font-size: 1.2rem;
  line-height: 1.16;
}

.category-card p {
  margin: 0;
  color: rgba(245, 240, 232, 0.84);
}

.category-count {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.76);
}

.category-card-blue::before,
.category-card-green::before,
.category-card-amber::before,
.category-card-copper::before,
.category-card-violet::before,
.category-card-ice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.74;
}

.category-card-blue::before {
  background: linear-gradient(180deg, rgba(76, 167, 224, 0.7), rgba(61, 87, 188, 0.5));
}

.category-card-green::before {
  background: linear-gradient(180deg, rgba(70, 188, 146, 0.68), rgba(45, 125, 89, 0.48));
}

.category-card-amber::before {
  background: linear-gradient(180deg, rgba(247, 195, 94, 0.7), rgba(221, 136, 52, 0.48));
}

.category-card-copper::before {
  background: linear-gradient(180deg, rgba(255, 191, 67, 0.68), rgba(175, 106, 23, 0.46));
}

.category-card-violet::before {
  background: linear-gradient(180deg, rgba(173, 111, 243, 0.68), rgba(109, 70, 186, 0.5));
}

.category-card-ice::before {
  background: linear-gradient(180deg, rgba(86, 200, 234, 0.68), rgba(39, 127, 190, 0.48));
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.activity-card {
  min-height: 470px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow);
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.82));
}

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

.activity-card:hover img {
  transform: scale(1.05);
}

.activity-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.activity-card p {
  margin: 12px 0 0;
  color: rgba(245, 240, 232, 0.78);
}

/* Apartments */
.apartments-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 32px clamp(20px, 5vw, 72px) 96px;
  max-width: 1320px;
  margin: 0 auto;
}

.apartments-media {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.apartments-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.apartments-content p {
  margin: 22px 0 0;
  max-width: 580px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-list span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  color: var(--text);
  background: rgba(143, 183, 198, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Booking */
.booking-section {
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.92), rgba(10, 10, 10, 1)),
    var(--bg-soft);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.booking-panel {
  border: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.045);
  padding: 30px;
}

.widget-placeholder,
.payment-placeholder {
  margin-top: 24px;
  min-height: 250px;
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px dashed rgba(201, 168, 76, 0.38);
  background: rgba(10, 10, 10, 0.36);
  padding: 24px;
}

.widget-placeholder p {
  margin: 0;
  color: var(--muted);
}

code {
  color: var(--ice);
  white-space: normal;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  padding-bottom: 12px;
}

.payment-row span {
  color: var(--muted);
}

.payment-button {
  width: 100%;
  margin-top: 8px;
}

.booking-cta .section-heading {
  margin-bottom: 26px;
}

.booking-cta .section-heading p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

.booking-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Detail pages */
.page-hero {
  min-height: 86vh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 170px clamp(20px, 5vw, 72px) 96px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.72) 64%, rgba(10, 10, 10, 0.92)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.22) 46%, #0a0a0a 100%),
    url("https://images.unsplash.com/photo-1483347756197-71ef80e95f73?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero-accommodation {
  background:
    radial-gradient(circle at center, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.72) 64%, rgba(10, 10, 10, 0.92)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.22) 46%, #0a0a0a 100%),
    url("https://images.unsplash.com/photo-1771453914339-6736ab7139c6?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero-404 {
  background:
    radial-gradient(circle at center, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.78) 64%, rgba(10, 10, 10, 0.94)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.28) 46%, #0a0a0a 100%),
    url("assets/IMG_8033.jpeg") center / cover;
}

.error-code {
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(201, 168, 76, 0.35);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.page-hero > div {
  max-width: 860px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(245, 240, 232, 0.82);
}

.activity-detail-list,
.apartment-list {
  display: grid;
  gap: 42px;
  padding: 96px clamp(20px, 5vw, 72px);
}

.activity-feature,
.apartment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  padding-top: 42px;
}

.activity-feature.is-reversed {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.activity-feature.is-reversed img {
  order: 2;
}

.activity-feature img,
.apartment-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.activity-feature p:not(.section-kicker),
.apartment-card p:not(.section-kicker) {
  margin: 20px 0 28px;
  color: var(--muted);
}

.apartment-list {
  gap: 58px;
}

.apartment-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

.apartment-card .feature-list {
  margin-bottom: 28px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
}

.booking-modal.is-open {
  display: grid;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(760px, 88vh);
  overflow: auto;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.booking-dialog h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.08);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
  margin-top: 28px;
}

.modal-booking-grid-single {
  grid-template-columns: 1fr;
}

body.modal-open {
  overflow: hidden;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 56px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

/* Responsive */
@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 48px 1fr 48px;
  }

  .brand-centered {
    grid-column: 2;
  }

  .brand-logo-full {
    height: 78px;
  }

  .site-header.is-scrolled .brand-logo-full {
    height: 68px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  .nav-left {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 18px;
    left: 18px;
    z-index: 19;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(18, 17, 15, 0.98), rgba(10, 10, 10, 0.98)),
      var(--bg);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
    font-size: 0.9rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav.is-open .nav-mobile-only {
    display: block;
  }

  .hero {
    min-height: 88vh;
    padding-top: 132px;
    padding-bottom: 70px;
  }

  .hero-cinematic {
    min-height: 92vh;
    text-align: center;
    justify-items: center;
  }

  .hero-video {
    display: none;
  }

  .mobile-slideshow {
    display: block;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.92)),
      linear-gradient(90deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.2));
  }

  .hero-cinematic .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.14), rgba(10, 10, 10, 0.9)),
      linear-gradient(90deg, rgba(10, 10, 10, 0.76), rgba(10, 10, 10, 0.2));
  }

  .hero-cinematic .hero-actions {
    justify-content: center;
  }

  .hero-logo {
    width: min(560px, 100%);
    margin: 18px 0 -150px;
  }

  .hero-cinematic .hero-copy {
    margin-left: auto;
    margin-top: 10px;
  }

  .side-contact {
    display: none;
  }

  .intro-grid,
  .catalog-grid,
  .activity-grid,
  .apartments-section,
  .booking-grid,
  .activity-feature,
  .activity-feature.is-reversed,
  .apartment-card,
  .modal-booking-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-rail-shell {
    grid-template-columns: 1fr;
  }

  .category-arrow {
    display: none;
  }

  .category-rail {
    grid-auto-columns: 220px;
  }

  .catalog-card,
  .catalog-card-wide,
  .catalog-card-feature {
    grid-column: span 12;
  }

  .activity-feature.is-reversed img {
    order: 0;
  }

  .page-hero {
    min-height: 68vh;
    padding-top: 150px;
    padding-bottom: 68px;
  }

  .activity-feature img,
  .apartment-card img {
    min-height: 340px;
  }

  .activity-card {
    min-height: 390px;
  }

  .apartments-section {
    padding-top: 0;
  }

  .apartments-media,
  .apartments-media img {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-logo-full {
    height: 64px;
  }

  .site-header.is-scrolled .brand-logo-full {
    height: 58px;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.4rem);
  }

  .hero-cinematic h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
  }

  .hero-logo {
    width: min(100%, 380px);
    margin: 12px 0 -96px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .catalog-card h3 {
    font-size: 1.65rem;
  }

  .intro-section,
  .catalog-section,
  .section,
  .booking-section,
  .activity-detail-list,
  .apartment-list {
    padding: 72px 18px;
  }

  .page-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

  .activity-card div,
  .booking-panel,
  .booking-dialog {
    padding: 22px;
  }

  .booking-modal {
    padding: 12px;
  }

  .payment-row {
    display: grid;
    gap: 4px;
  }
}

/* ============================================
   WELCOME / TERVETULOA SECTION
   ============================================ */
.welcome-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--bg-soft);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.welcome-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.welcome-content h2 {
  margin: 12px 0 22px;
}

.welcome-content > p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.welcome-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}

.welcome-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--bg);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  margin: 12px 0 20px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.78;
  max-width: 440px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-value {
  color: var(--text);
  font-size: 0.95rem;
}

.contact-item-value a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-item-value a:hover {
  color: var(--gold-bright);
}

.contact-form-card {
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: #0e0e0e;
  padding: 36px;
}

.contact-form-card h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.contact-form-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text);
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(185, 176, 163, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(201, 168, 76, 0.7);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit {
  margin-top: 6px;
}

.contact-map {
  max-width: 1180px;
  margin: 48px auto 0;
  border: 1px solid rgba(201, 168, 76, 0.22);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  filter: grayscale(20%) contrast(1.05);
}

/* Footer redesign */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding: 64px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-left p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 280px;
  margin: 0;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-contact-item a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--gold-bright);
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-right p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.footer-right a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--gold-bright);
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(185, 176, 163, 0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  margin-top: 8px;
}

.footer-domain {
  font-family: "Cinzel", "Playfair Display", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(201, 168, 76, 0.65);
  transition: color 0.2s ease;
  margin-top: -4px;
}

.footer-domain:hover {
  color: var(--gold-bright);
}

/* ============================================
   ACTIVITY CARDS
   ============================================ */
.act-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--bg);
}

.act-section .section-heading {
  margin-bottom: 48px;
}

.activity-booking-guide {
  max-width: 1180px;
  margin: 0 auto 64px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.04);
}

.activity-booking-guide h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.activity-booking-guide-intro {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--muted);
}

.activity-booking-coming-soon {
  display: inline-block;
  margin: 0 0 28px;
  padding: 10px 14px;
  border: 1px solid rgba(201, 168, 76, 0.34);
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 600;
}

.activity-booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.activity-booking-steps article {
  padding: 22px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.activity-booking-step-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
}

.activity-booking-steps h3 {
  margin: 16px 0 8px;
  font-size: 1.22rem;
}

.activity-booking-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.activity-booking-guide-cta {
  margin-top: 24px;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.act-card {
  display: flex;
  flex-direction: column;
  background: #0e0e0e;
  border: 1px solid rgba(201, 168, 76, 0.22);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.act-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
}

.act-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.act-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.act-card:hover .act-card-img img {
  transform: scale(1.06);
}

.act-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #17130a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.act-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 24px 24px;
}

.act-card-body h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--text);
}

.act-card-body > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin: 0 0 20px;
}

.act-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 20px;
}

.act-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.act-detail-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.act-detail-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.act-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.act-price {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.act-price strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================
   APARTMENT SHOWCASE
   ============================================ */
.apt-showcase {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--bg);
}

.apt-showcase-heading {
  max-width: 1180px;
  margin: 0 auto 48px;
}

.apt-showcase-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.26);
}

.apt-showcase-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.apt-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.apt-bestseller {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #17130a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.apt-showcase-panel {
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  background: #0e0e0e;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

.apt-category {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.apt-showcase-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 14px;
}

.apt-showcase-panel > p {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.7;
}

.apt-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 28px;
}

.apt-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.apt-detail-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.apt-detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.apt-panel-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.apt-price {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.apt-price strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}

.apt-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.apt-thumbs {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-top: none;
}

.apt-thumb {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #0a0a0a;
  border: none;
  border-right: 1px solid rgba(201, 168, 76, 0.14);
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
  color: var(--text);
  font-family: inherit;
}

.apt-thumb:last-child {
  border-right: none;
}

.apt-thumb:hover {
  background: rgba(201, 168, 76, 0.06);
}

.apt-thumb.is-active {
  background: rgba(201, 168, 76, 0.1);
  border-bottom: 2px solid var(--gold);
}

.apt-thumb-img {
  width: 70px;
  height: 52px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.apt-thumb-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.apt-thumb-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.apt-thumb-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: var(--text);
}

/* ============================================
   BOOKING CARD SECTION
   ============================================ */
.booking-card-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--bg-soft);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.booking-card {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: #0a0a0a;
  padding: clamp(36px, 5vw, 64px);
}

.booking-card h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin: 12px 0 18px;
}

.booking-card > p {
  max-width: 640px;
  color: var(--muted);
  margin: 0 0 40px;
}

.booking-inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 20px;
  margin-bottom: 32px;
}

.booking-widget-box,
.booking-payment-box {
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(201, 168, 76, 0.03);
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.booking-widget-box p {
  margin: 0;
  color: var(--muted);
}

.booking-payment-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.booking-payment-row span {
  color: var(--muted);
  font-size: 0.85rem;
}

.booking-payment-row strong {
  color: var(--text);
}

.booking-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Booking card split layout */
.booking-card--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking-split-left { display: flex; flex-direction: column; gap: 0; }
.booking-split-left h2 { max-width: 100%; }
.booking-split-left > p { max-width: 100%; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}
.btn-whatsapp:hover { background: #1ebe5d; }

/* FAQ accordion */
.faq-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.faq-accordion { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 860px) {
  .booking-card--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   APARTMENT SUBPAGES
   ============================================ */
.apt-page-banner {
  min-height: 52vh;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 160px clamp(20px, 5vw, 72px) 64px;
  position: relative;
  overflow: hidden;
}

.apt-page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apt-page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.12), rgba(10,10,10,0.88) 90%),
    linear-gradient(90deg, rgba(10,10,10,0.38), rgba(10,10,10,0.18) 50%, rgba(10,10,10,0.38));
}

.apt-page-banner-content {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.apt-page-banner-content .apt-category {
  margin-bottom: 10px;
}

.apt-page-banner-content h1 {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  max-width: none;
  margin-bottom: 14px;
}

.apt-page-banner-content p {
  color: rgba(245, 240, 232, 0.82);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.apt-subpage-gallery {
  padding: 0 clamp(20px, 5vw, 72px) 0;
  max-width: 1320px;
  margin: 0 auto;
}

.apt-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
}

.apt-gallery-main {
  grid-row: span 2;
}

.apt-gallery-main img,
.apt-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apt-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: #0e0e0e;
}

.apt-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.apt-carousel-slide {
  flex: 0 0 100%;
}

.apt-carousel-slide img {
  width: 100%;
  height: clamp(320px, 58vw, 640px);
  object-fit: cover;
}

.apt-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: rgba(10, 10, 10, 0.72);
  color: var(--gold-bright);
  font-size: 1.6rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.apt-carousel-btn:hover,
.apt-carousel-btn:focus-visible {
  background: rgba(201, 168, 76, 0.18);
}

.apt-carousel-prev {
  left: 16px;
}

.apt-carousel-next {
  right: 16px;
}

.apt-carousel-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(10, 10, 10, 0.72);
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.apt-carousel-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
  scrollbar-width: thin;
}

.apt-carousel-thumb {
  border: 1px solid transparent;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
}

.apt-carousel-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.apt-carousel-thumb img {
  width: 100%;
  height: 74px;
  object-fit: cover;
}

.apt-subpage-content {
  padding: 72px clamp(20px, 5vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
}

.apt-subpage-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.apt-subpage-body h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  margin-bottom: 18px;
}

.apt-subpage-body > div > p {
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.75;
}

.apt-amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 0;
}

.apt-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.apt-amenity::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.apt-side-card {
  border: 1px solid rgba(201, 168, 76, 0.26);
  background: #0e0e0e;
  padding: 32px;
  position: sticky;
  top: 110px;
}

.apt-side-card .apt-category {
  margin-bottom: 10px;
}

.apt-side-card h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.apt-side-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.apt-side-card .apt-details-grid {
  margin-bottom: 24px;
}

.apt-side-price {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.apt-side-price strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}

.apt-map {
  margin-top: 72px;
  padding: 0 clamp(20px, 5vw, 72px) 96px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.apt-map h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.apt-map-placeholder {
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: #0e0e0e;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.apt-map-placeholder span {
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.4);
}

.apt-map-frame {
  width: 100%;
  height: 360px;
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: #0e0e0e;
}

.apt-map-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apt-map-link:hover {
  color: var(--text);
}

/* ============================================
   RESPONSIVE – NEW COMPONENTS
   ============================================ */
@media (max-width: 920px) {
  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-image,
  .welcome-image img {
    min-height: 360px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-right {
    align-items: flex-start;
  }

  .act-grid {
    grid-template-columns: 1fr 1fr;
  }

  .activity-booking-steps {
    grid-template-columns: 1fr;
  }

  .apt-showcase-main {
    grid-template-columns: 1fr;
  }

  .apt-showcase-panel {
    border-left: none;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
  }

  .apt-showcase-image,
  .apt-showcase-image img {
    min-height: 380px;
  }

  .apt-thumbs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .apt-thumbs::-webkit-scrollbar {
    display: none;
  }

  .booking-inner-grid {
    grid-template-columns: 1fr;
  }

  .apt-subpage-body {
    grid-template-columns: 1fr;
  }

  .apt-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 220px 220px;
  }

  .apt-gallery-main {
    grid-row: span 1;
  }

  .apt-panel-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .apt-panel-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .welcome-stats {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-center {
    order: -1;
  }

  .footer-right {
    align-items: flex-start;
  }

  .act-grid {
    grid-template-columns: 1fr;
  }

  .apt-thumb {
    min-width: 190px;
  }

  .apt-gallery-grid {
    grid-template-rows: 260px 180px 180px;
  }

  .apt-amenities-list {
    grid-template-columns: 1fr;
  }

  .apt-subpage-body h2 {
    font-size: 2rem;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Language toggle ─────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  padding: 4px 11px;
  cursor: pointer;
  background: transparent;
  color: rgba(245, 240, 232, 0.55);
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
}

.lang-btn.is-active {
  background: var(--gold);
  color: #0a0a0a;
}

/* Hide/show language sections */
html:not([data-lang="fi"]) .lang-fi { display: none !important; }
html[data-lang="fi"] .lang-en { display: none !important; }

/* ── Catalog rows (compact service list) ───────────── */
.catalog-rows {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-row:first-child {
  border-top: 1px solid var(--line);
}

.catalog-row-badge {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.catalog-row-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.catalog-row-link {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  flex-shrink: 0;
}

.catalog-row-link:hover {
  color: var(--gold-bright);
}

@media (max-width: 680px) {
  .catalog-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
}

/* ── Recommendation Quiz ────────────────────────────── */
.quiz-section {
  padding: 80px 24px;
  background: var(--bg);
}

.quiz-heading {
  margin-bottom: 48px;
}

.quiz-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 40px;
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.quiz-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.22);
  transition: background 0.3s, transform 0.3s;
}

.quiz-progress-dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
  animation: quiz-fade-in 0.32s ease;
}

@keyframes quiz-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--text);
  margin: 0 0 28px;
  text-align: center;
  line-height: 1.4;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.quiz-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: center;
  line-height: 1.3;
}

.quiz-opt:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.quiz-opt-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.quiz-results[hidden] { display: none; }

.quiz-results {
  animation: quiz-fade-in 0.4s ease;
}

.quiz-result-label {
  text-align: center;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.quiz-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.quiz-result-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.quiz-result-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.quiz-result-card-body {
  padding: 16px;
}

.quiz-result-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.quiz-result-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.quiz-result-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.quiz-result-link:hover {
  opacity: 0.72;
}

.quiz-restart {
  display: block;
  margin: 0 auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 10px 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.quiz-restart:hover {
  color: var(--text);
  border-color: var(--gold);
}

@media (max-width: 580px) {
  .quiz-card {
    padding: 28px 20px;
  }
  .quiz-result-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Accommodation reviews section ──────────────────── */
.apt-reviews-section {
  background: var(--bg-soft);
  padding: 64px 24px;
}

.apt-reviews-inner {
  max-width: 960px;
  margin: 0 auto;
}

.apt-reviews-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.apt-rating-score {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.apt-rating-label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.apt-rating-count {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.apt-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.apt-review {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.apt-review-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 12px;
  font-style: italic;
}

.apt-review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.04em;
}

.apt-reviews-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.apt-reviews-cta:hover {
  opacity: 0.7;
}

@media (max-width: 680px) {
  .apt-reviews-grid {
    grid-template-columns: 1fr;
  }
}
