/* ─── Gastronómia Szekció ────────────────────────────────────────────────── */

.cc-gastro {
  background: var(--cc-dark, #2C2828);
  position: relative;
  overflow: hidden;
}

/* subtle warm grain */
.cc-gastro::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.75' 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;
}

/* ── Split layout ────────────────────────────────────────────────────────── */
.cc-gastro__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 580px;
}

.cc-gastro__split--no-img {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}

/* ── Left: text column ───────────────────────────────────────────────────── */
.cc-gastro__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
}

/* Eyebrow */
.cc-gastro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cc-font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cc-taupe, #A8957A);
  margin: 0 0 28px;
}

/* Title */
.cc-gastro__title {
  font-family: var(--cc-font-heading);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cc-cream, #F7F2EC);
  margin: 0 0 32px;
}

/* Rule */
.cc-gastro__rule {
  width: 48px;
  height: 1px;
  background: var(--cc-taupe, #A8957A);
  opacity: 0.55;
  margin: 0 0 36px;
  flex-shrink: 0;
}

/* Body paragraphs */
.cc-gastro__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.cc-gastro__body p {
  font-family: var(--cc-font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.82;
  color: rgba(247, 242, 236, 0.6);
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(168, 149, 122, 0.22);
}

/* CTA button — filled taupe */
.cc-gastro__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 14px;
  background: var(--cc-taupe, #A8957A);
  color: var(--cc-dark, #2C2828);
  font-family: var(--cc-font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  margin-bottom: 24px;
  transition: background 0.3s ease, gap 0.3s ease;
}

.cc-gastro__btn:hover {
  background: #C0AB93;
  gap: 20px;
}

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

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

/* Italic caption */
.cc-gastro__caption {
  font-family: var(--cc-font-heading);
  font-size: clamp(13px, 1.2vw, 15px);
  font-style: italic;
  font-weight: 300;
  color: rgba(247, 242, 236, 0.35);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* ── Right: image column ─────────────────────────────────────────────────── */
.cc-gastro__right {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cc-gastro__img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Portrait (overhead) — top image, taller */
.cc-gastro__img--a {
  flex: 0 0 58%;
}

/* Landscape (side angle) — bottom image */
.cc-gastro__img--b {
  flex: 1;
  margin-top: 3px;
}

.cc-gastro__img 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-gastro__img:hover img {
  transform: scale(1.04);
}

/* ── CTA Strip ───────────────────────────────────────────────────────────── */
.cc-gastro__cta-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(168, 149, 122, 0.12);
  padding: 52px 24px;
  text-align: center;
}

.cc-gastro__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--cc-font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.7);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s, gap 0.3s;
}

.cc-gastro__cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--cc-taupe, #A8957A);
  transition: width 0.4s ease;
}

.cc-gastro__cta:hover {
  color: var(--cc-taupe, #A8957A);
  gap: 22px;
}

.cc-gastro__cta:hover::after {
  width: 100%;
}

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

.cc-gastro__cta:hover svg {
  transform: translateX(5px);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cc-gastro__split {
    grid-template-columns: 1fr 1fr;
  }

  .cc-gastro__left {
    padding: 64px 40px 64px 48px;
  }
}

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

  .cc-gastro__left {
    padding: 60px 28px 48px;
  }

  .cc-gastro__right {
    flex-direction: row;
    height: 260px;
  }

  .cc-gastro__img--a {
    flex: 0 0 50%;
  }

  .cc-gastro__img--b {
    flex: 1;
    margin-top: 0;
    margin-left: 3px;
  }
}
