/* ── index.css — Homepage styles ── */

/* HERO */
.hero {
  padding: 72px var(--page-pad) 88px;
  background: var(--beige-light);
}
.hero__headline {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.98;
  color: var(--dark-brown);
  letter-spacing: -0.02em;
  max-width: 1100px;
}
.hero__headline--upright { font-style: normal; }

/* STRIP */
.strip {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.strip__img { width: 100%; height: 100%; }
.strip__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: none;
  font-size: 28px;
  color: rgba(245,240,232,0.5);
  cursor: pointer; padding: 16px; z-index: 2;
  transition: color 0.2s;
}
.strip__btn:hover { color: rgba(245,240,232,0.9); }
.strip__btn--left  { left: 20px; }
.strip__btn--right { right: 20px; }

/* ABOUT TEASER */
.about-teaser {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  padding-top: 64px;
  padding-left: 20px;
}
.about-teaser__img {
  overflow: hidden;
  padding: 0 40px 64px 0;
}
.about-teaser__text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-teaser__text h2 {
  font-family: var(--display);
  font-style: italic; font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--dark-brown); line-height: 1.06; margin-bottom: 20px;
}
.about-teaser__text p {
  font-size: 13px; color: var(--brown-mid);
  line-height: 1.85; margin-bottom: 36px; max-width: 380px;
}

/* SERVICES */
.services {
  background: var(--dark-brown);
  padding: 0 var(--page-pad) 64px;
}
.services__headline {
  font-family: var(--display);
  font-weight: 700; font-style: italic;
  font-size: clamp(40px, 6.5vw, 92px);
  color: var(--beige-light); line-height: 1.02;
  padding: 48px 0 52px; letter-spacing: -0.01em;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 52px;
}
.svc-card {
  aspect-ratio: 3/4;
  position: relative; overflow: hidden; cursor: pointer;
}
.svc-card__img { width: 100%; height: 100%; }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: rgba(24,14,6,0.55);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; transition: opacity 0.3s;
  padding: 24px; text-align: center;
}
.svc-card:hover .svc-card__overlay,
.svc-card--active .svc-card__overlay { opacity: 1; }
.svc-card__title {
  color: var(--beige-light);
  font-family: var(--heading); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px;
}
.svc-card__sub {
  color: rgba(245,240,232,0.7);
  font-family: var(--serif); font-size: 14px; font-style: italic;
}
.services__cta { display: flex; justify-content: center; }

/* PORTFOLIO TEASER */
.portfolio-teaser {
  background: var(--beige);
  display: grid; grid-template-columns: 1fr 1.2fr;
  padding: 80px var(--page-pad); gap: 64px; align-items: start;
}
.portfolio-teaser__left h2 {
  font-family: var(--display);
  font-style: italic; font-weight: 600;
  font-size: clamp(44px, 5.5vw, 80px);
  color: var(--dark-brown); line-height: 1.04; margin-bottom: 28px;
}
.portfolio-teaser__left p {
  font-size: 13px; color: var(--brown-mid);
  line-height: 1.85; margin-bottom: 36px; max-width: 320px;
}
.portfolio-teaser__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.p-photo { aspect-ratio: 3/4; overflow: hidden; }

/* CONTACT TEASER */
.contact-teaser {
  background: var(--dark-brown);
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
}
.contact-teaser__img { overflow: hidden; }
.contact-teaser__text {
  padding: 72px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-teaser__text h2 {
  font-family: var(--display);
  font-style: italic; font-weight: 600;
  font-size: clamp(40px, 5.5vw, 70px);
  color: var(--beige-light); line-height: 1.05; margin-bottom: 28px;
}
.contact-teaser__text p {
  font-size: 13px; color: rgba(245,240,232,0.7);
  line-height: 1.85; margin-bottom: 36px; max-width: 340px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-teaser { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-teaser,
  .contact-teaser { grid-template-columns: 1fr; }
  .about-teaser__img,
  .contact-teaser__img { height: 320px; }
  .about-teaser__text,
  .contact-teaser__text { padding: 48px var(--page-pad); }
  .portfolio-teaser__grid { grid-template-columns: repeat(2, 1fr); }
}
