/* ==========================================================
   we-and-our-life.css — Cedar Stone Bistro
   O nas (About / Brand Story) page styles.
   ========================================================== */

/* ──────────────────────────────────────────
   BRAND STORY — editorial split with large pull-quote
────────────────────────────────────────── */
.brand-story-section {
  padding-block: 6rem;
}

.brand-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-story-body h2 {
  margin-bottom: 1.25rem;
}

.brand-story-body p {
  font-size: 1.2rem;
  color: var(--cs-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.brand-story-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--cs-gold);
  background: rgba(215, 181, 109, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.brand-story-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--cs-cream);
  font-family: var(--font-display);
  line-height: 1.6;
  margin-bottom: 0;
}

.brand-story-visual {
  position: relative;
}

.brand-story-visual__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-story-visual__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.brand-story-visual__accent {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  background: var(--cs-bg-3);
  border: 1px solid var(--cs-line-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  z-index: 1;
}

.brand-story-visual__accent-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 0.125rem;
}

.brand-story-visual__accent-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cs-white);
  font-style: italic;
  font-family: var(--font-display);
}

@media (max-width: 1023px) {
  .brand-story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brand-story-visual__frame img {
    aspect-ratio: 16/9;
  }
}

/* ──────────────────────────────────────────
   VALUES SECTION
────────────────────────────────────────── */
.values-section {
  padding-block: 6rem;
  background: var(--cs-bg-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  padding: 2.25rem 1.75rem;
  background: var(--cs-bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cs-line);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cs-purple) 0%, var(--cs-gold) 100%);
}

.value-item__number {
  font-size: 4.5rem;
  font-weight: 700;
  font-style: italic;
  font-family: var(--font-display);
  color: rgba(131, 28, 145, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.625rem;
}

.value-item__text {
  font-size: 1.1375rem;
  color: var(--cs-muted);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ──────────────────────────────────────────
   KITCHEN & BAR TEAM
────────────────────────────────────────── */
.team-section {
  padding-block: 6rem;
}

/* ──────────────────────────────────────────
   VENUE ATMOSPHERE GALLERY
────────────────────────────────────────── */
.about-gallery-section {
  padding-block: 5rem;
  background: var(--cs-bg-2);
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
}

.about-mosaic__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-mosaic__item--wide {
  grid-column: span 2;
}

.about-mosaic__item--tall {
  grid-row: span 2;
}

.about-mosaic__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .about-mosaic__item--wide {
    grid-column: span 2;
  }

  .about-mosaic__item--tall {
    grid-row: span 1;
  }
}

/* ──────────────────────────────────────────
   SEASONAL PHILOSOPHY — centered closing statement
────────────────────────────────────────── */
.seasonal-section {
  padding-block: 6rem;
}

.seasonal-inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.seasonal-inner h2 {
  margin-bottom: 1.25rem;
}

.seasonal-inner p {
  font-size: 1.2rem;
  color: var(--cs-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.seasonal-inner p:last-of-type {
  margin-bottom: 2rem;
}
