/* @group Photos Page */

/* --------------------------------
   Photos Base
-------------------------------- */

.section-page--photos {
  min-height: 100vh;
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(7rem, 10vw, 10rem);
  color: var(--tr-off-white);
}

.photos-page__inner {
  width: min(var(--page-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}


/* --------------------------------
   Featured Photo Card
-------------------------------- */

.photos-featured-card {
  width: min(100%, 1120px);
  margin: 0 auto clamp(5rem, 8vw, 7rem);
  padding: clamp(1rem, 1.8vw, 1.45rem);

  background: var(--tr-muted);
  color: var(--tr-black);
}

.photos-featured-card__image-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.photos-featured-card__image-link img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1);
}

.photos-featured-card__body {
  padding: clamp(1rem, 1.6vw, 1.5rem) 0 0;
}

.photos-featured-card__title {
  margin: 0 0 0.4rem;

  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing:0;
  text-transform: uppercase;
}

.photos-featured-card__caption,
.photos-featured-card__price {
  margin: 0.3rem 0 0;

  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--tr-black);
}


/* --------------------------------
   Photography Intro
-------------------------------- */

.photos-intro {
  width: min(100%, 980px);
  margin: 0 auto clamp(5rem, 9vw, 8rem);

  display: grid;
  grid-template-columns: clamp(150px, 18vw, 245px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.photos-intro__ball {
    width: clamp(150px, 16vw, 245px)
	
	
	;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--tr-purple);
    color: var(--tr-black);
    font-family: var(--font-swingsnug);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: none;
    transform: rotate(4deg);
}
.photos-intro__content {
  max-width: 640px;
}

.photos-intro__content p {
  margin: 0 0 1.1rem;

  font-family: var(--font-body);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.55;
  color: var(--tr-off-white);
  font-weight: 700;
}

.photos-intro__content p:last-child {
  margin-bottom: 0;
}


/* --------------------------------
   Collections
-------------------------------- */

.photos-collection {
  width: min(100%, 1120px);
  margin: 0 auto clamp(5rem, 8vw, 7rem);
}

.photos-collection__heading {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.photos-collection__placeholder {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--tr-muted);
}


/* --------------------------------
   Product Grid
-------------------------------- */

.photos-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
}

.photos-product-card {
  background: var(--tr-off-white);
  color: var(--tr-black);

  box-shadow: 10px 10px 0 rgba(242, 240, 234, 0.38);
}

.photos-product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.photos-product-card__image {
  padding: clamp(0.8rem, 1.2vw, 1rem) clamp(0.8rem, 1.2vw, 1rem);
}

.photos-product-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  filter: grayscale(1);
}

.photos-product-card__body {
  padding: clamp(0.75rem, 1vw, 1rem);
}

.photos-product-card__title {
  margin: 0 0 0.35rem;

  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.photos-product-card__caption,
.photos-product-card__price {
  margin: 0.25rem 0 0;

  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--tr-black);
}

.photos-product-card__link:hover .photos-product-card__title,
.photos-product-card__link:focus-visible .photos-product-card__title {
  color: var(--tr-purple);
}


/* --------------------------------
   Coming Soon Balls
-------------------------------- */
/* =========================================================
   Photos Coming Soon
========================================================= */

.photos-coming-soon {
  width: min(100%, 1180px);
  margin: clamp(6rem, 10vw, 10rem) auto clamp(4rem, 7vw, 6rem);
  padding: 0;
  text-align: center;
}

.photos-coming-soon__balls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.photos-coming-soon__balls span {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: clamp(145px, 18vw, 235px);
  aspect-ratio: 1;
  border-radius: 50%;

  background: var(--tr-purple);
  color: var(--tr-black);

  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;

  z-index: 1;
}

.photos-coming-soon__balls span + span {
  margin-left: clamp(-4.25rem, -5vw, -2.25rem);
}

.photos-coming-soon__balls span:nth-child(1) {
  transform: rotate(-4deg) translateY(0.35rem);
  z-index: 1;
}

.photos-coming-soon__balls span:nth-child(2) {
  transform: rotate(4deg) translateY(1.25rem);
  z-index: 2;
}

.photos-coming-soon__balls span:nth-child(3) {
  width: clamp(165px, 20vw, 270px);
  transform: rotate(-2deg) translateY(-1.25rem);
  z-index: 3;
}

.photos-coming-soon__balls span:nth-child(4) {
  transform: rotate(5deg) translateY(0.6rem);
  z-index: 2;
}
.photos-hero__letter-muted {
	  color: var(--tr-muted);
}
.photos-coming-soon__title {
  margin: 0 auto;

  color: var(--tr-off-white);
  font-family: var(--font-display);
  font-size: clamp(18px, 3.3vw, 30px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}


/* --------------------------------
   Photos Coming Soon Responsive
-------------------------------- */

@media (max-width: 760px) {
  .photos-coming-soon {
    width: min(100%, 520px);
    margin-top: clamp(4rem, 14vw, 6rem);
  }

  .photos-coming-soon__balls {
    flex-wrap: wrap;
    max-width: 420px;
    row-gap: 0;
  }

  .photos-coming-soon__balls span {
    width: clamp(118px, 38vw, 170px);
    font-size: clamp(34px, 11vw, 54px);
  }

  .photos-coming-soon__balls span + span {
    margin-left: clamp(-2.25rem, -8vw, -1rem);
  }

  .photos-coming-soon__balls span:nth-child(3) {
    width: clamp(132px, 43vw, 190px);
  }

  .photos-coming-soon__title {
    font-size: clamp(18px, 5vw, 30px);
  }
}

.photos-product-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.photos-product-card__cta {
  display: inline-block;
  margin-top: 0.85rem;

  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;

  color: var(--tr-purple);
}

.photos-product-card__link:hover .photos-product-card__title,
.photos-product-card__link:focus-visible .photos-product-card__title,
.photos-product-card__link:hover .photos-product-card__cta,
.photos-product-card__link:focus-visible .photos-product-card__cta {
  color: var(--tr-purple);
}

/* --------------------------------
   Responsive
-------------------------------- */

@media (max-width: 900px) {
  .photos-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .photos-intro__content {
    width: min(100%, 640px);
  }

  .photos-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 767px) {
  .section-page--photos {
    padding-top: 3rem;
  }

  .photos-featured-card {
    padding: 0.8rem;
    margin-bottom: 4rem;
  }

  .photos-intro {
    margin-bottom: 4.5rem;
    gap: 1.5rem;
  }

  .photos-intro__ball {
    width: clamp(145px, 42vw, 190px);
    font-size: clamp(32px, 9vw, 44px);
  }

  .photos-intro__content p {
    font-size: 16px;
  }

  .photos-product-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .photos-product-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .photos-coming-soon {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0;
    width: min(100%, 420px);
  }

  .photos-coming-soon span {
    width: clamp(122px, 38vw, 165px);
    margin-left: clamp(-16px, -3vw, -8px);
    font-size: clamp(34px, 10vw, 48px);
  }

  .photos-coming-soon span:nth-child(odd) {
    margin-left: 0;
  }
}

/* @end */


@media (max-width: 760px) {
  .photos-coming-soon {
    width: min(100%, 520px);
    margin-top: clamp(4rem, 14vw, 6rem);
	display: block;
  }

  .photos-coming-soon__balls {
    flex-wrap: wrap;
    max-width: 420px;
    row-gap: 0;
  }

  .photos-coming-soon__balls span {
    width: clamp(118px, 38vw, 170px);
    font-size: clamp(34px, 11vw, 54px);
  }

  .photos-coming-soon__balls span + span {
    margin-left: clamp(-2.25rem, -8vw, -1rem);
  }

  .photos-coming-soon__balls span:nth-child(3) {
    width: clamp(132px, 43vw, 190px);
  }

  .photos-coming-soon__title {
    font-size: clamp(18px, 5vw, 24px);
  }
}

.photos-featured-card__image-link,
.photos-product-card__button {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.photos-featured-card__image-link:focus-visible,
.photos-product-card__button:focus-visible {
	outline: 3px solid var(--tr-purple);
	outline-offset: 6px;
}

.photos-product-card__button:hover .photos-product-card__title,
.photos-product-card__button:focus-visible .photos-product-card__title {
	color: var(--tr-purple);
}