/* Editorial Quiet Luxury Styles for Home Page */
/* Inspired by Aesop aesthetic */

/* Typography - Serif for headlines, clean sans-serif for body */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;600&family=Inter:wght@300;400;500&display=swap');

body.home-editorial {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3632;
  background: #f5f3ef;
  margin: 0;
  padding: 0;
}

body.home-editorial h1,
body.home-editorial h2,
body.home-editorial h3 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* Header - minimal */
body.home-editorial .site-header {
  background: transparent;
  border-bottom: 1px solid rgba(58, 54, 50, 0.1);
  padding: 24px 0;
}

body.home-editorial .site-header .container {
  max-width: 1400px;
  padding: 0 80px;
}

body.home-editorial .site-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3a3632;
}

body.home-editorial .site-nav a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #3a3632;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

body.home-editorial .site-nav a:hover {
  opacity: 0.5;
}

/* Hero - Full viewport */
.editorial-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #e8e4de;
  position: relative;
  overflow: hidden;
}

.editorial-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(20%);
}

.editorial-hero > * {
  position: relative;
  z-index: 1;
}

.editorial-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  margin: 0 0 32px;
  font-weight: 300;
  color: #3a3632;
}

.editorial-hero .subheading {
  font-size: clamp(18px, 2vw, 24px);
  margin: 0 0 48px;
  color: #6b6762;
  max-width: 600px;
}

.editorial-hero .text-button {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a3632;
  text-decoration: none;
  border-bottom: 1px solid #3a3632;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.editorial-hero .text-button:hover {
  opacity: 0.5;
}

/* Transition section - minimal text */
.editorial-transition {
  padding: 160px 80px;
  text-align: center;
  background: #f5f3ef;
}

.editorial-transition p {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #3a3632;
  font-weight: 300;
}

/* Split sections */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: #f5f3ef;
}

.editorial-split.reverse {
  direction: rtl;
}

.editorial-split.reverse > * {
  direction: ltr;
}

.editorial-split-image {
  background-size: cover;
  background-position: center;
  background-color: #d5cfc5;
}

.editorial-split-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-split-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 32px;
  color: #3a3632;
}

.editorial-split-text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 24px;
  color: #6b6762;
}

.editorial-split-text a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #3a3632;
  text-decoration: none;
  border-bottom: 1px solid #3a3632;
  display: inline-block;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.editorial-split-text a:hover {
  opacity: 0.5;
}

/* Philosophy section */
.editorial-philosophy {
  padding: 200px 80px;
  text-align: center;
  background: #e8e4de;
}

.editorial-philosophy p {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  color: #3a3632;
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 300;
}

/* Video section - full width atmospheric */
.editorial-video-section {
  position: relative;
  height: 100vh;
  background: #3a3632;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.editorial-video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.editorial-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 54, 50, 0.2);
  z-index: 1;
}

.editorial-video-text {
  position: relative;
  z-index: 2;
  color: #f5f3ef;
  text-align: center;
  padding: 80px;
}

.editorial-video-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 24px;
  color: #f5f3ef;
}

.editorial-video-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(245, 243, 239, 0.9);
}

/* Testimonials Section */
.editorial-testimonials {
  background: #f5f3ef;
  padding: 120px 80px;
}

.editorial-testimonials h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 24px;
  text-align: center;
  color: #3a3632;
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 300;
}

.testimonials-intro {
  text-align: center;
  font-size: 18px;
  color: #6b6560;
  margin: 0 auto 80px;
  max-width: 700px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background-size: cover;
  background-position: center;
  border: 3px solid #e8e4de;
}

.testimonial-card h3 {
  font-size: 20px;
  font-weight: 400;
  color: #3a3632;
  margin: 0 0 16px;
  font-family: 'Crimson Pro', Georgia, serif;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b6560;
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-meta {
  font-size: 14px;
  color: #9b9590;
  font-weight: 300;
}

@media (max-width: 900px) {
  .editorial-testimonials {
    padding: 80px 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-avatar {
    width: 100px;
    height: 100px;
  }
}

/* FAQ Section */
.editorial-faq {
  background: #f5f3ef;
  padding: 120px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.editorial-faq h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 60px;
  text-align: center;
  color: #3a3632;
}

.faq-item {
  border-bottom: 1px solid rgba(58, 54, 50, 0.15);
  padding: 32px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 20px;
  font-weight: 400;
  color: #3a3632;
  margin: 0 0 16px;
  font-family: 'Crimson Pro', Georgia, serif;
  letter-spacing: -0.01em;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6762;
  margin: 0;
}

@media (max-width: 900px) {
  .editorial-faq {
    padding: 80px 32px;
  }
  
  .faq-item {
    padding: 24px 0;
  }
}

/* Podcast Section */
.editorial-podcast {
  background: #e8e4de;
  padding: 120px 80px;
  text-align: center;
}

.editorial-podcast h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 24px;
  color: #3a3632;
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 300;
}

.editorial-podcast p {
  font-size: 18px;
  line-height: 1.8;
  color: #6b6560;
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-player {
  display: flex;
  justify-content: center;
  align-items: center;
}

.podcast-player audio {
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  outline: none;
}

.podcast-player audio::-webkit-media-controls-panel {
  background-color: #f5f3ef;
}

.podcast-player audio::-webkit-media-controls-play-button {
  background-color: #3a3632;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .editorial-podcast {
    padding: 80px 40px;
  }

  .podcast-link {
    padding: 16px 32px;
    font-size: 16px;
  }

  .podcast-link svg {
    width: 24px;
    height: 24px;
  }
}

/* Location section */
.editorial-location {
  background: #f5f3ef;
  padding: 0;
}

.editorial-location-image {
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-color: #d5cfc5;
}

.editorial-location-text {
  padding: 80px;
  text-align: center;
}

.editorial-location-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 24px;
  color: #3a3632;
}

.editorial-location-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #6b6762;
}

/* Footer - ultra minimal */
.editorial-footer {
  background: #f5f3ef;
  border-top: 1px solid rgba(58, 54, 50, 0.1);
  padding: 60px 80px;
  text-align: center;
}

.editorial-footer-title {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #3a3632;
}

.editorial-footer-tagline {
  font-size: 13px;
  color: #6b6762;
  margin: 0 0 32px;
}

.editorial-footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
}

.editorial-footer-nav a {
  color: #3a3632;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.editorial-footer-nav a:hover {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  body.home-editorial .site-header .container {
    padding: 0 32px;
  }

  .editorial-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-split-image {
    min-height: 50vh;
  }

  .editorial-split-text {
    padding: 60px 32px;
  }

  .editorial-transition {
    padding: 100px 32px;
  }

  .editorial-philosophy {
    padding: 120px 32px;
  }

  .editorial-location-text {
    padding: 60px 32px;
  }

  .editorial-footer {
    padding: 60px 32px;
  }

  .editorial-footer-nav {
    flex-direction: column;
    gap: 16px;
  }
}

/* Hide default containers on editorial home */
body.home-editorial .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

body.home-editorial .hero,
body.home-editorial .cards,
body.home-editorial .card {
  display: none;
}
