/* ─── Szállás szekció ─────────────────────────────────────────────────────── */

.cc-accom {
  background: var(--cc-cream, #F7F2EC);
  position: relative;
  overflow: hidden;
}

.cc-accom::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Intro eyebrow ───────────────────────────────────────────────────────── */
.cc-accom__intro {
  position: relative;
  z-index: 1;
  padding: 72px 24px 0;
}

.cc-accom__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.cc-accom__line {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--cc-taupe, #A8957A);
  opacity: 0.45;
}

.cc-accom__eyebrow {
  font-family: var(--cc-font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-taupe, #A8957A);
}

/* ── Row ─────────────────────────────────────────────────────────────────── */
.cc-accom__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* ── Image wrap ──────────────────────────────────────────────────────────── */
.cc-accom__img-wrap {
  position: relative;
  overflow: hidden;
}

.cc-accom__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cc-accom__img-wrap:hover img {
  transform: scale(1.04);
}

/* ── Text wrap ───────────────────────────────────────────────────────────── */
.cc-accom__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 72px 80px;
}

.cc-accom__row--img-right .cc-accom__text-wrap {
  padding: 72px 80px 72px 72px;
}

/* Label */
.cc-accom__label {
  font-family: var(--cc-font-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cc-taupe, #A8957A);
  margin: 0 0 16px;
}

/* Title */
.cc-accom__title {
  font-family: var(--cc-font-heading);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cc-dark, #2C2828);
  margin: 0 0 24px;
}

/* Rule */
.cc-accom__rule {
  width: 40px;
  height: 1px;
  background: var(--cc-taupe, #A8957A);
  opacity: 0.5;
  margin: 0 0 28px;
}

/* Body */
.cc-accom__body {
  font-family: var(--cc-font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.82;
  color: rgba(44, 40, 40, 0.65);
  margin: 0 0 14px;
}

.cc-accom__body:last-of-type {
  margin-bottom: 0;
}

/* Stats */
.cc-accom__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(168, 149, 122, 0.2);
  border-bottom: 1px solid rgba(168, 149, 122, 0.2);
}

.cc-accom__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cc-accom__stat-num {
  font-family: var(--cc-font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--cc-dark, #2C2828);
  line-height: 1;
}

.cc-accom__stat-label {
  font-family: var(--cc-font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 40, 40, 0.45);
}

.cc-accom__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(168, 149, 122, 0.25);
  flex-shrink: 0;
}

/* CTA button */
.cc-accom__btn {
  display: inline-flex !important;
  align-items: center;
  align-self: flex-start;
  gap: 14px;
  background: var(--cc-dark, #2C2828) !important;
  color: var(--cc-cream, #F7F2EC) !important;
  font-family: var(--cc-font-body);
  font-size: 16px !important;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  padding: 18px 36px;
  border-radius: 100px;
  transition: background 0.3s ease, gap 0.3s ease;
}

.cc-accom__btn:hover {
  background: #3d3838 !important;
  color: var(--cc-cream, #F7F2EC) !important;
  gap: 20px;
  text-decoration: none !important;
}

.cc-accom__btn svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.cc-accom__btn:hover svg {
  transform: translateX(4px);
}

/* ── Divider between rows ────────────────────────────────────────────────── */
.cc-accom__divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(168, 149, 122, 0.18);
  margin: 0 80px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cc-accom__text-wrap,
  .cc-accom__row--img-right .cc-accom__text-wrap {
    padding: 56px 40px;
  }
}

@media (max-width: 720px) {
  .cc-accom__row {
    grid-template-columns: 1fr;
  }

  .cc-accom__row--img-left .cc-accom__img-wrap {
    height: 280px;
    order: -1;
  }

  .cc-accom__row--img-right .cc-accom__img-wrap {
    height: 280px;
    order: 1;
  }

  .cc-accom__text-wrap,
  .cc-accom__row--img-right .cc-accom__text-wrap {
    padding: 48px 24px;
  }

  .cc-accom__divider {
    margin: 0 24px;
  }
}
