/* ─── Venue Section ──────────────────────────────────────────────────────── */

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

.cc-venue::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.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.cc-venue__header {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 88px 24px 56px;
  text-align: center;
}

.cc-venue__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

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

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

.cc-venue__title {
  font-family: var(--cc-font-heading);
  font-size: clamp(68px, 11vw, 138px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--cc-dark, #2C2828);
  margin: 0 0 28px;
}

.cc-venue__rule {
  width: 40px;
  height: 1px;
  background: var(--cc-taupe, #A8957A);
  margin: 0 auto 22px;
}

.cc-venue__subtitle {
  font-family: var(--cc-font-body);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.6;
  color: rgba(44, 40, 40, 0.5);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ── Mosaic ──────────────────────────────────────────────────────────────── */
/* Images use position:absolute to override theme's img { height: auto } */
.cc-venue__mosaic {
  position: relative;
  z-index: 1;
  display: flex;
  height: 520px;
  width: 100%;
}

.cc-venue__mosaic-main {
  position: relative;
  flex: 0 0 58%;
  overflow: hidden;
}

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

.cc-venue__mosaic-main:hover img {
  transform: scale(1.035);
}

.cc-venue__mosaic-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(247, 242, 236, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 9px 18px;
  font-family: var(--cc-font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-dark, #2C2828);
  z-index: 2;
}

.cc-venue__mosaic-pair {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 4px;
  box-sizing: border-box;
}

.cc-venue__mosaic-item {
  position: relative;
  flex: 1;
  overflow: hidden;
}

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

.cc-venue__mosaic-item:hover img {
  transform: scale(1.045);
}

/* ── Content ─────────────────────────────────────────────────────────────── */
.cc-venue__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 40px 80px;
  background: transparent;
}

.cc-venue__col {
  display: flex;
  flex-direction: column;
}

.cc-venue__body {
  font-family: var(--cc-font-body);
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.8;
  color: rgba(44, 40, 40, 0.7);
  margin: 0 0 44px;
}

.cc-venue__sub-title {
  font-family: var(--cc-font-heading);
  font-size: clamp(17px, 1.8vw, 21px);
  font-style: italic;
  font-weight: 400;
  color: var(--cc-dark, #2C2828);
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}

/* Spaces list */
.cc-venue__spaces-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cc-venue__spaces-list li {
  font-family: var(--cc-font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.7;
  color: rgba(44, 40, 40, 0.65);
  padding-left: 22px;
  position: relative;
}

.cc-venue__spaces-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--cc-taupe, #A8957A);
}

/* Address */
.cc-venue__address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--cc-font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(44, 40, 40, 0.5);
  margin: -12px 0 20px;
}

.cc-venue__address svg {
  flex-shrink: 0;
  color: var(--cc-taupe, #A8957A);
}

/* Events list */
.cc-venue__events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-venue__event {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(168, 149, 122, 0.18);
  transition: padding-left 0.25s ease;
}

.cc-venue__event:first-child {
  border-top: 1px solid rgba(168, 149, 122, 0.18);
}

.cc-venue__event:hover {
  padding-left: 5px;
}

.cc-venue__event-icon {
  flex-shrink: 0;
  color: var(--cc-taupe, #A8957A);
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.cc-venue__event-text {
  font-family: var(--cc-font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.55;
  color: rgba(44, 40, 40, 0.75);
}

.cc-venue__event-text em {
  font-style: normal;
  color: var(--cc-taupe, #A8957A);
  font-size: 0.88em;
}

/* ── CTA Button ──────────────────────────────────────────────────────────── */
.cc-venue__cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 52px 24px 64px;
}

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

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

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

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

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cc-venue__content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 28px 64px;
  }
}

@media (max-width: 768px) {
  .cc-venue__mosaic {
    flex-direction: column;
    height: auto;
  }

  .cc-venue__mosaic-main {
    flex: unset;
    height: 260px;
    width: 100%;
  }

  .cc-venue__mosaic-pair {
    flex: unset;
    flex-direction: row;
    height: 160px;
    width: 100%;
    padding-left: 0;
    padding-top: 4px;
  }

  .cc-venue__header {
    padding: 60px 24px 44px;
  }

  .cc-venue__content {
    padding: 48px 20px 56px;
  }
}
