/* ─── BASE ─── */
body { background: #f9f9f9; }

/* ─── FOOTER LAYOUT ─── */
.footer-grid { grid-template-columns: 2fr 1fr 1fr; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 50px 40px 30px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.breadcrumb {
  font-size: 13px;
  color: #7c7b7b;
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a { color: #7c7b7b; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #487657; }
.breadcrumb span { margin: 0 8px; }

.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #487657;
}

/* ─── INTRO BLOCK ─── */
.emb-intro {
  background: #fff;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.emb-quote {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #487657;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.emb-quote-attr {
  font-size: 13px;
  color: #7c7b7b;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.emb-intro p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* ─── TECHNIQUE SECTIONS ─── */
.emb-technique {
  padding: 60px 40px;
  border-top: 1px solid #e8e8e8;
}

.emb-technique:nth-child(odd) { background: #f9f9f9; }
.emb-technique:nth-child(even) { background: #fff; }

.emb-technique-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.emb-technique-inner.photos-left {
  direction: rtl;
}

.emb-technique-inner.photos-left > * {
  direction: ltr;
}

.emb-technique-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #487657;
  margin-bottom: 6px;
}

.emb-technique-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7c7b7b;
  margin-bottom: 28px;
}

.emb-technique-text p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

/* ─── PHOTO GRIDS ─── */
.emb-photos-single img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.2s;
}

.emb-photos-single img:hover { transform: scale(1.02); opacity: 0.9; }

.emb-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.emb-photos-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.emb-photos-grid-3 .emb-photo-main {
  grid-column: 1 / -1;
}

.emb-photo-item {
  overflow: hidden;
  cursor: pointer;
  background: #e8e8e8;
}

.emb-photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s;
}

.emb-photo-item.portrait img { aspect-ratio: 3/4; }
.emb-photo-item:hover img { transform: scale(1.05); opacity: 0.9; }

/* ─── CTA BLOCK ─── */
.emb-cta {
  background: #1b1f23;
  color: #d9d9d9;
  padding: 70px 40px;
  text-align: center;
}

.emb-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f4f4f4;
  margin-bottom: 20px;
}

.emb-cta p {
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.9;
  color: #a0a0a0;
  font-size: 15px;
}

.emb-cta .btn {
  margin: 0 auto;
  display: inline-block;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #f4f4f4;
  font-size: 36px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1001;
}

.lightbox-close:hover { color: #487657; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #f4f4f4;
  font-size: 42px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s;
  padding: 10px 20px;
  z-index: 1001;
  user-select: none;
}

.lightbox-nav:hover { color: #487657; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #a0a0a0;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .emb-technique-inner,
  .emb-technique-inner.photos-left {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .emb-intro,
  .emb-technique { padding: 40px 20px; }
  .emb-cta { padding: 50px 20px; }
  .page-header { padding: 30px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .lightbox-nav { font-size: 28px; padding: 8px 12px; }
}
