/* ============================================================
   Pension Kachlička — Premium CSS
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* Font loaded via <link> in index.html */

/* ---- Tokens ---- */
:root {
  --forest:     #1B4332;
  --forest-mid: #2D6A4F;
  --forest-lt:  #40916C;
  --cream:      #FAF8F5;
  --cream-dk:   #F2EEE8;
  --gold:       #C9A96E;
  --gold-lt:    #E8C98B;
  --sage:       #E8EDE5;
  --sage-dk:    #D4DBCF;
  --charcoal:   #1A1A1A;
  --muted:      #5E6E5C;
  --white:      #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: 120px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.14);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}

.section-pad {
  padding-block: var(--section-pad);
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

.reveal-right.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.site-header.scrolled .logo-name { color: var(--forest); }
.site-header.scrolled .logo-sub  { color: var(--muted); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--gold); }

.site-header.scrolled .main-nav a { color: var(--charcoal); }
.site-header.scrolled .main-nav a:hover { color: var(--forest); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  white-space: nowrap;
}

.site-header.scrolled .header-phone { color: var(--muted); }
.header-phone:hover { color: var(--gold) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
}

.btn-forest:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header.scrolled .hamburger span { background: var(--charcoal); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  pointer-events: all;
}

.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--sage);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav a:hover {
  color: var(--forest);
  padding-left: 8px;
}

.mobile-nav .mobile-phone {
  margin-top: 24px;
  font-weight: 600;
  color: var(--forest);
  font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 20, 0.45) 0%,
    rgba(10, 30, 20, 0.35) 50%,
    rgba(10, 30, 20, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-inline: 20px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInDown 1s ease 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-lt);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.6);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--forest);
  padding: 24px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--white);
}

.proof-score {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}



.proof-meta {
  display: flex;
  flex-direction: column;
}

.proof-platform {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}

.proof-detail {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.proof-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

.proof-award {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white);
}

.proof-award svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--forest);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.intro-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.intro-badge-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 4px;
}

.intro-text p {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
}

.intro-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-section {
  background: var(--sage);
}

.rooms-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.room-capacity {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--forest);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-card-body {
  padding: 28px;
}

.room-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.room-card-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.room-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--sage);
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.room-meta-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
}

.room-price {
  margin-left: auto;
  text-align: right;
}

.room-price-from {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-price-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.room-price-unit {
  font-size: 11px;
  color: var(--muted);
}

/* ============================================================
   POOL BANNER
   ============================================================ */
.pool-banner {
  position: relative;
  height: clamp(320px, 50vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.pool-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
}

.pool-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.82) 0%, rgba(27,67,50,0.55) 100%);
}

.pool-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-inline: 20px;
}

.pool-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pool-banner-content p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-section {
  background: var(--cream);
}

.amenities-header {
  text-align: center;
  margin-bottom: 56px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--sage-dk);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  border-radius: 50%;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--forest);
}

.amenity-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
}

.amenity-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--forest);
  color: var(--white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header .section-title { color: var(--white); }

.reviews-header .section-lead { color: rgba(255,255,255,0.65); margin-inline: auto; }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: background var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.1);
}

.review-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.review-source {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.review-stars {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ============================================================
   OKOLÍ (SURROUNDINGS)
   ============================================================ */
.surroundings-section {
  background: var(--cream-dk);
}

.surroundings-header {
  text-align: center;
  margin-bottom: 56px;
}

.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.surr-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

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

.surr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,15,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.surr-distance {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.surr-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.surr-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--charcoal);
  text-align: center;
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--forest), var(--gold), var(--forest));
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band .cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 480px;
  margin-inline: auto;
}

.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cta-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-contact-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.cta-contact-value:hover {
  color: var(--gold);
}

.cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.footer-nav-list a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  margin-top: 8px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .rooms-grid { grid-template-columns: repeat(2, 1fr); }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid > :first-child { grid-column: 1 / -1; }
}

/* Tablet portrait (max 768px) */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image-wrap img { height: 360px; }
  .intro-badge { bottom: -16px; right: 16px; }

  .intro-features { grid-template-columns: 1fr; }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

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

  .surroundings-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }

  .cta-contacts { gap: 32px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .proof-bar-inner { gap: 24px; }
  .proof-divider { display: none; }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .hero h1 { font-size: 2.4rem; }

  .hero-ctas { gap: 12px; }

  .hero-ctas .btn { padding: 10px 20px; font-size: 12px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .proof-bar-inner { flex-direction: column; gap: 20px; }

  .surroundings-grid { grid-template-rows: repeat(4, 180px); }

  .cta-contacts { flex-direction: column; gap: 24px; }
}
