.photo-proof {
  background: var(--cream, #f7f1e8);
  color: var(--walnut, #2a211b);
  padding: clamp(4.5rem, 8vw, 7rem) 2rem;
}

.photo-proof--warm {
  background: var(--warm-white, #fffdf8);
}

.photo-proof--dark {
  background: var(--deep-ocean, #1f2a24);
  color: var(--cream, #f7f1e8);
}

.photo-proof__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.photo-proof__header {
  display: grid;
  gap: 1rem 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.photo-proof__eyebrow,
.local-intent__eyebrow {
  color: var(--terracotta, #b87952);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.photo-proof--dark .photo-proof__eyebrow {
  color: var(--clay, #d2bfa6);
}

.local-intent--dark .local-intent__eyebrow {
  color: var(--clay, #d2bfa6);
}

.photo-proof__header h2,
.local-intent__header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.04;
}

.photo-proof__header p,
.local-intent__header p {
  color: rgba(42, 33, 27, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

.photo-proof--dark .photo-proof__header p {
  color: rgba(247, 241, 232, 0.78);
}

.photo-proof__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.photo-proof__item {
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(210, 191, 166, 0.28);
  display: grid;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.photo-proof--dark .photo-proof__item {
  background: rgba(247, 241, 232, 0.06);
  border-color: rgba(247, 241, 232, 0.14);
}

.photo-proof__item--wide {
  grid-column: span 6;
}

.photo-proof__item--feature {
  grid-column: span 8;
  min-height: 440px;
}

.photo-proof__item--tall {
  grid-row: span 2;
  min-height: 500px;
}

.photo-proof__item img {
  display: block;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  width: 100%;
}

.photo-proof__item figcaption {
  align-self: end;
  background: linear-gradient(180deg, transparent, rgba(31, 42, 36, 0.78));
  bottom: 0;
  color: var(--cream, #f7f1e8);
  font-size: 0.78rem;
  left: 0;
  letter-spacing: 0.12em;
  line-height: 1.5;
  padding: 4rem 1.25rem 1.1rem;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.local-intent {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(247, 241, 232, 0.94)),
    var(--cream, #f7f1e8);
  color: var(--walnut, #2a211b);
  padding: clamp(4.5rem, 8vw, 6.5rem) 2rem;
}

.local-intent--dark {
  background: var(--deep-ocean, #1f2a24);
  color: var(--cream, #f7f1e8);
}

.local-intent__inner {
  margin: 0 auto;
  max-width: 1120px;
}

.local-intent__header {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 780px;
  text-align: center;
}

.local-intent__header p {
  margin: 1rem auto 0;
}

.local-intent--dark .local-intent__header p {
  color: rgba(247, 241, 232, 0.78);
}

.local-intent__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-intent__item {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(210, 191, 166, 0.32);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.local-intent--dark .local-intent__item {
  background: rgba(247, 241, 232, 0.07);
  border-color: rgba(247, 241, 232, 0.14);
}

.local-intent__item h3 {
  color: var(--terracotta, #b87952);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.local-intent--dark .local-intent__item h3 {
  color: var(--clay, #d2bfa6);
}

.local-intent__item p {
  color: rgba(42, 33, 27, 0.78);
}

.local-intent--dark .local-intent__item p {
  color: rgba(247, 241, 232, 0.78);
}

.local-intent__item a {
  color: inherit;
  font-weight: 500;
  text-decoration-color: var(--terracotta, #b87952);
  text-underline-offset: 0.24em;
}

@media (max-width: 900px) {
  .photo-proof__header {
    grid-template-columns: 1fr;
  }

  .photo-proof__grid,
  .local-intent__grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-proof__item,
  .photo-proof__item--wide,
  .photo-proof__item--feature,
  .photo-proof__item--tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 300px;
  }

  .local-intent__item {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .photo-proof,
  .local-intent {
    padding: 4rem 1.35rem;
  }

  .photo-proof__grid,
  .local-intent__grid {
    grid-template-columns: 1fr;
  }

  .photo-proof__item,
  .photo-proof__item--wide,
  .photo-proof__item--feature,
  .photo-proof__item--tall {
    min-height: min(82vw, 360px);
  }

  .photo-proof__header,
  .local-intent__header {
    text-align: center;
  }

  .photo-proof__header p {
    margin-inline: auto;
  }
}
