/* =======================================================================
   ABOUT US - MOBILE FIRST STYLES
   These styles are for mobile devices only (max-width: 1023px)
   Desktop remains unchanged
======================================================================= */

/* === HOMEPAGE EDITORIAL BLOCK (Reference Design Match) === */
.editorial-block {
  background: #5d4d3d; /* Warm brown - earthy premium tone */
  padding: 0;
  margin: 0;
}

.editorial-block__inner {
  display: flex;
  flex-direction: column;
  padding: 56px 28px 48px;
  max-width: 480px;
  margin: 0 auto;
}

.editorial-block__content {
  text-align: left;
  margin-bottom: 20px;
  margin-top: 40px;
}

.editorial-block__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.3;
}

.editorial-block__text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}

.editorial-block__btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: all 0.3s ease;
}

.editorial-block__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.editorial-block__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.editorial-block__image img,
.editorial-block__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide on desktop */
@media (min-width: 1024px) {
  .editorial-block {
    display: none;
  }
}

/* Legacy class - keep for backward compatibility but hidden */
.about-preview-mobile {
  display: none;
}

/* === ABOUT PAGE (MOBILE FIRST) === */
.about-page {
  padding-top: 70px; /* Header offset */
  background: var(--bg);
  min-height: 100vh;
}

.about-page__header {
  padding: 40px 20px 32px;
  text-align: center;
  background: #fff;
}

.about-page__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.02em;
}

/* About Sections - Mobile First */
.about-section {
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* Dynamic dark text class - applied when background is dark */
.about-section--dark-text .about-section__title,
.about-section--dark-text .about-section__text,
.about-section--dark-text .about-section__text p {
  color: #fff;
}

.about-section--dark-text .about-section__cta {
  color: #fff;
  border-color: #fff;
}

.about-section--dark-text .about-section__cta:hover {
  background: #fff;
  color: #2a2a2a;
}

/* Section Content */
.about-section__content {
  padding: 36px 24px;
  order: 1;
}

.about-section__content--centered {
  /* text-align: center; */
  padding: 48px 24px;
}

.about-section__content--cta {
  text-align: center;
  padding: 56px 24px;
}

.about-section__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 16px;
  line-height: 1.3;
}

.about-section__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.about-section__text p {
  margin: 0 0 16px;
  color: inherit;
}

.about-section__text p:last-child {
  margin-bottom: 0;
}

/* Section CTA */
.about-section__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  margin-top: 20px;
  transition: all 0.25s ease;
}

.about-section__cta:hover {
  background: var(--accent);
  color: #fff;
}

.about-section__cta--large {
  padding: 14px 32px;
  font-size: 0.85rem;
}

/* Section Images */
.about-section__image {
  width: 100%;
  order: 2;
}

.about-section__image img,
.about-section__image video {
  width: 100%;
  height: auto;
  display: block;
}

.about-section__image--full img,
.about-section__image--full video {
  min-height: 280px;
  object-fit: cover;
}

/* Section Type: text_image - image below text on mobile */
.about-section--text_image .about-section__content {
  order: 1;
}
.about-section--text_image .about-section__image {
  order: 2;
}

/* Section Type: image_text - image above text on mobile */
.about-section--image_text .about-section__image {
  order: 1;
}
.about-section--image_text .about-section__content {
  order: 2;
}

/* Empty state */
.about-section--empty {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === ABOUT PAGE DESKTOP - NO CHANGES === */
/* The desktop layout intentionally left unchanged per requirements */
@media (min-width: 1024px) {
  /* About page uses default desktop styles - no mobile-specific overrides */
  /* This ensures desktop experience remains exactly as before */
}
