:root {
  color-scheme: dark;
  --ink: #eee9df;
  --earth: #8e887b;
  --night: #111210;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: #d4dcdb;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
}

.faq-section {
  order: 1;
}

.pp-real-carousel {
  order: 2;
}

.hero {
  --hero-opacity: 1;
  --mountain-blur: 0px;
  --mountain-x: 0%;
  --mountain-y: 20%;
  --mountain-scale: 1;
  --grass-y: 0%;
  --grass-scale: 1;
  --rock-y: 100%;
  --oros-y: 119.25%;
  --oros-scale: 1;
  --oros-brightness: 1;
  --title-opacity: 1;
  --background-y: 0%;
  --birds-x: 5%;
  --birds-y: 30%;
  position: relative;
  height: 500vh;
  overflow: clip;
  background: #d4dcdb;
}

.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  opacity: var(--hero-opacity);
  background: #8f887b;
}

.hero__canvas,
.hero__layer,
.hero__video,
.hero__sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__canvas {
  overflow: hidden;
}

.hero__sky {
  z-index: 0;
  background: #d4dcdb;
  transform: translateY(var(--background-y));
  will-change: transform;
}

.hero__layer,
.hero__video {
  object-fit: cover;
  pointer-events: none;
}

.hero__mountains {
  z-index: 3;
  transform: translate(var(--mountain-x), var(--mountain-y))
    scale(var(--mountain-scale));
  filter: blur(var(--mountain-blur));
  transform-origin: 50% 72%;
  will-change: transform, filter;
}

.hero__birds {
  z-index: 4;
  transform: translate(var(--birds-x), var(--birds-y));
  will-change: transform;
}

.hero__plains {
  z-index: 5;
  transform: translateY(var(--grass-y)) scale(var(--grass-scale));
  transform-origin: 50% 100%;
  will-change: transform;
}

.hero__rock {
  z-index: 6;
  transform: translateY(var(--rock-y));
  will-change: transform;
}

.hero__rock-bottom {
  z-index: 7;
  transform: translateY(calc(100% - 1px + var(--rock-y)));
  will-change: transform;
}

.hero__oros {
  z-index: 8;
  transform: translateY(var(--oros-y)) scale(var(--oros-scale));
  transform-origin: 50% 52%;
  filter: brightness(var(--oros-brightness));
  will-change: transform, filter;
}

.hero__video {
  z-index: 9;
  opacity: 0;
  object-position: center center;
}

.hero__frame {
  position: absolute;
  z-index: 1;
  inset: 21px;
  width: calc(100% - 42px);
  height: calc(100% - 42px);
  fill: none;
  stroke: rgba(244, 239, 228, 0.72);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
  transform: translateY(var(--background-y));
  will-change: transform;
}

.hero__frame-line {
  opacity: 0.42;
}

.hero__title-wrap {
  position: absolute;
  z-index: 2;
  top: 28%;
  right: 9.5%;
  text-align: right;
  opacity: var(--title-opacity);
}

.hero__eyebrow {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.62rem, 0.72vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #fff;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.25vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero__title span {
  display: block;
  transition:
    letter-spacing 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero__title span:first-child {
  padding-right: 120px;
}

@media (hover: hover) and (pointer: fine) {
  .hero__title:hover span:first-child {
    letter-spacing: -0.015em;
    transform: translate3d(-18px, -3px, 0);
  }

  .hero__title:hover span:last-child {
    letter-spacing: 0.015em;
    transform: translate3d(14px, 3px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title span {
    transition: none;
  }
}

.hero__scroll-cue {
  position: absolute;
  z-index: 11;
  bottom: 46px;
  left: 51px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: var(--title-opacity);
}

.hero__scroll-cue i {
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero__scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: cue 2.2s ease-in-out infinite;
}

.home-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  min-height: 268.5px;
  margin-top: -40px;
  padding: 0 48px 160px;
  color: #fff;
  background: #d4dcdb;
}

.home-caption__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: 100%;
  text-align: center;
}

.home-caption__title {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.home-caption__title span {
  display: block;
}

.home-caption__subtitle {
  margin: 25px 0 0;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.home-collection {
  --collection-clip-top: 28.89vh;
  --collection-clip-side: 6.88vw;
  --collection-clip-bottom: 22.78vh;
  --collection-image-y: -16vh;
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #c4c5bf;
}

.home-collection__stage,
.home-collection__image-wrap,
.home-collection__image {
  width: 100%;
  height: 100%;
}

.home-collection__stage {
  position: relative;
  clip-path: inset(
    var(--collection-clip-top)
    var(--collection-clip-side)
    var(--collection-clip-bottom)
  );
  will-change: clip-path;
}

.home-collection__image-wrap {
  position: relative;
  overflow: hidden;
}

.home-collection__image {
  display: block;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--collection-image-y));
  will-change: transform;
}

.home-collection__caption {
  position: absolute;
  z-index: 2;
  top: 35%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-collection__caption span {
  color: #fff;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-collection__caption svg {
  width: 60px;
  height: auto;
  fill: #fff;
}

.product-showcase {
  --product-ink: #86706d;
  --product-green: #799f80;
  position: relative;
  z-index: 2;
  padding: 64px 5vw 72px;
  color: var(--product-ink);
  background: #d4dcdb;
}

.product-showcase__inner {
  display: grid;
  grid-template-columns: minmax(320px, 422px) minmax(460px, 562px);
  justify-content: space-between;
  gap: clamp(48px, 10vw, 120px);
  width: min(100%, 1312px);
  margin: 0 auto;
}

.product-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-showcase__mark {
  width: 52px;
  height: 48px;
  overflow: visible;
  fill: var(--product-green);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 56px;
}

.product-showcase__header {
  padding-left: 48px;
}

.product-showcase__eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-showcase__title {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(3.2rem, 4.3vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.product-showcase__description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.product-showcase__description p {
  margin: 0;
}

.product-showcase__description a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-underline-offset: 4px;
}

.product-showcase__description a span {
  font-size: 16px;
}

.product-showcase__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(134, 112, 109, 0.35);
  border-bottom: 1px solid rgba(134, 112, 109, 0.35);
}

.product-showcase__specs div {
  padding: 0 15px;
  border-left: 1px solid rgba(134, 112, 109, 0.3);
}

.product-showcase__specs div:first-child {
  padding-left: 0;
  border-left: 0;
}

.product-showcase__specs dt,
.product-showcase__specs dd {
  margin: 0;
}

.product-showcase__specs dt {
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-showcase__specs dd {
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 16px;
  white-space: nowrap;
}

.product-showcase__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.product-showcase__origin {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.product-showcase__origin-text {
  color: var(--product-ink);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(.75rem, 1vw, .9rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-showcase__origin-line {
  display: block;
  flex: 1;
  height: 1.5px;
}

.product-showcase__origin-line--left {
  background: #525445;
}

.product-showcase__origin-line--right {
  background: #87706d;
}

.product-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 48px;
  padding: 13px 32px;
  color: #eef0e8;
  background: var(--product-green);
  border: 1.5px solid var(--product-green);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 260ms cubic-bezier(.22,.61,.36,1),
    box-shadow 260ms ease;
}

/* shimmer sweep */
.product-showcase__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 520ms ease;
}

.product-showcase__button:hover::after,
.product-showcase__button:focus-visible::after {
  transform: translateX(100%);
}

.product-showcase__button:hover,
.product-showcase__button:focus-visible {
  color: var(--product-green);
  background: transparent;
  box-shadow: 0 0 0 1.5px var(--product-green), 0 6px 22px rgba(121,159,128,.22);
  transform: translateY(-2px);
}

.product-showcase__button:active {
  transform: translateY(0) scale(.97);
}

.product-showcase__actions span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.product-gallery {
  align-self: start;
  min-width: 0;
}

.product-gallery__viewport {
  position: relative;
  aspect-ratio: 1.303 / 1;
  overflow: hidden;
  background: #b6b9b5;
  border-radius: 21px;
}

.product-gallery__main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-gallery__viewport:hover .product-gallery__main {
  transform: scale(1.025);
}

.product-gallery__main.is-changing {
  opacity: 0;
  transform: scale(1.04);
}

.product-gallery__counter {
  position: absolute;
  top: 24px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.product-gallery__counter i {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #fff;
  background: rgba(63, 54, 50, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    background-color 180ms ease;
}

.product-gallery__arrow--previous {
  left: 18px;
}

.product-gallery__arrow--next {
  right: 18px;
}

.product-gallery__viewport:hover .product-gallery__arrow,
.product-gallery__arrow:focus-visible {
  opacity: 1;
}

.product-gallery__arrow:hover {
  background: rgba(63, 54, 50, 0.55);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 19px;
  margin-top: 56px;
}

.product-gallery__thumb {
  position: relative;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.product-gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease;
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  opacity: 0.58;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 400ms ease;
}

.product-gallery__thumb:hover img,
.product-gallery__thumb:focus-visible img,
.product-gallery__thumb.is-active img {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.04);
}

.product-gallery__thumb.is-active::after {
  border-color: rgba(134, 112, 109, 0.78);
}

.inspiration {
  --inspiration-progress: 0;
  position: relative;
  z-index: 2;
  padding: 80px 6.25vw;
  overflow: hidden;
  color: #d4dcdb;
  background: #525445;
}

.inspiration__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 64px 10vw;
  background: #799f80;
  border-radius: 20px;
  transform: translateY(calc((1 - var(--inspiration-progress)) * 42px));
  opacity: calc(0.35 + var(--inspiration-progress) * 0.65);
  will-change: transform, opacity;
}

.inspiration__corner { display: none; }

.inspiration__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 736px);
  text-align: center;
  transform: translateY(calc((1 - var(--inspiration-progress)) * 24px));
  will-change: transform;
}

.inspiration__symbol {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: .85;
}

.inspiration__symbol path:first-child {
  fill: currentColor;
  stroke: none;
  opacity: 0.9;
}

.inspiration__eyebrow {
  margin: 0 0 20px;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: .8;
}

.inspiration__title {
  max-width: 700px;
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.inspiration__copy {
  margin-top: 28px;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  opacity: .92;
}

.inspiration__copy p {
  margin: 0 auto 16px;
}

.inspiration__copy p:first-child {
  margin-bottom: 20px;
  font-size: 15.5px;
  font-style: italic;
  opacity: .85;
}

.inspiration__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 48px;
  padding: 13px 32px;
  color: #d4dcdb;
  background: transparent;
  border: 1.5px solid rgba(212, 220, 219, .55);
  border-radius: 999px;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 260ms cubic-bezier(.22,.61,.36,1),
    box-shadow 260ms ease;
}

.inspiration__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.14) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 520ms ease;
}

.inspiration__button:hover::after,
.inspiration__button:focus-visible::after {
  transform: translateX(100%);
}

.inspiration__button:hover,
.inspiration__button:focus-visible {
  color: #525445;
  background: #d4dcdb;
  border-color: #d4dcdb;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  transform: translateY(-2px);
}

.inspiration__button:active {
  transform: translateY(0) scale(.97);
}

.stone-parallax {
  --stone-parallax-y: 0px;
  --stone-title-y: 0px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  min-height: 50svh;
  overflow: hidden;
  background: #292922;
}

.stone-parallax__image,
.stone-parallax__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stone-parallax__image {
  top: -18%;
  height: 136%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: translate3d(0, var(--stone-parallax-y), 0) scale(1.02);
  will-change: transform;
}

.stone-parallax__shade {
  background: transparent;
}

.stone-parallax__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95em;
  width: 100%;
  margin: 0;
  padding: 0 2vw;
  color: #fff;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(1.25rem, 3.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
  transform: translate3d(0, var(--stone-title-y), 0);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
  will-change: transform;
}

.stone-parallax__title span {
  display: inline-block;
  white-space: nowrap;
}

@keyframes cue {
  0% {
    transform: translateX(-105%);
  }
  45%,
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}

@media (max-width: 1023px), (prefers-reduced-motion: reduce) {
  .hero {
    height: min(100svh, 880px);
    min-height: 680px;
  }

  .hero__stage {
    position: relative;
    height: 100%;
  }

  .hero__mountains {
    transform: translate(-7%, 3%) scale(1.24);
  }

  .hero__birds {
    transform: translate(-12%, 12%);
  }

  .hero__plains {
    transform: translateY(-8%) scale(1.2);
    transform-origin: bottom;
  }

  .hero__rock,
  .hero__rock-bottom,
  .hero__oros,
  .hero__video {
    display: none;
  }

  .hero__title-wrap {
    top: auto;
    right: 8vw;
    bottom: 17%;
    left: 8vw;
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 6.6rem);
  }

  .hero__title span:first-child {
    padding-right: 8vw;
  }

  .hero__scroll-cue {
    display: none;
  }

  .home-collection {
    height: min(82svh, 760px);
    min-height: 520px;
  }

  .home-collection__stage {
    clip-path: inset(5vw);
  }

  .home-collection__image {
    transform: scale(1.04);
  }

  .product-showcase {
    padding: 72px 5vw 90px;
  }

  .product-showcase__inner {
    grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
    gap: 7vw;
  }

  .product-showcase__header {
    padding-left: 0;
  }

  .product-gallery__thumbs {
    gap: 12px;
    margin-top: 24px;
  }

  .inspiration {
    min-height: 920px;
    padding: 210px 5vw;
  }

  .inspiration__panel {
    padding-right: 8vw;
    padding-left: 8vw;
  }

  .stone-parallax {
    min-height: 42vh;
    min-height: 42svh;
  }

  .stone-parallax__title {
    flex-direction: column;
    gap: 0.04em;
    font-size: clamp(4rem, 15vw, 7rem);
    line-height: 0.9;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 600px;
  }

  .hero__frame {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .hero__mountains {
    transform: translate(-27%, 2%) scale(1.56);
  }

  .hero__plains {
    transform: translate(-11%, -2%) scale(1.42);
  }

  .hero__birds {
    transform: translate(-25%, 13%) scale(1.25);
  }

  .hero__eyebrow {
    margin-bottom: 0.8rem;
  }

  .hero__title {
    line-height: 0.96;
  }

  .home-caption {
    min-height: 245px;
    margin-top: 0;
    padding: 52px 24px 90px;
  }

  .home-caption__title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .home-caption__subtitle {
    max-width: 290px;
    margin-top: 20px;
    font-size: 15px;
  }

  .home-collection {
    min-height: 460px;
  }

  .home-collection__stage {
    clip-path: inset(12px);
  }

  .home-collection__image {
    object-position: 50% center;
  }

  .home-collection__caption {
    top: 34%;
    gap: 10px;
  }

  .home-collection__caption span {
    font-size: 15px;
    letter-spacing: 0.13em;
  }

  .home-collection__caption svg {
    width: 44px;
  }

  .product-showcase {
    padding: 28px 20px 72px;
  }

  .product-showcase__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 48px;
  }

  .product-showcase__content {
    display: contents;
  }

  .product-gallery {
    order: -1;
  }

  .product-gallery__viewport {
    aspect-ratio: 0.92 / 1;
    border-radius: 14px;
  }

  .product-gallery__main {
    object-position: center;
  }

  .product-gallery__arrow {
    opacity: 1;
  }

  .product-gallery__thumbs {
    gap: 7px;
    margin-top: 14px;
  }

  .product-gallery__thumb {
    border-radius: 5px;
  }

  .product-showcase__mark {
    width: 44px;
    height: auto;
    margin-top: 8px;
  }

  .product-showcase__header {
    margin-top: -82px;
    padding-left: 65px;
  }

  .product-showcase__title {
    font-size: 3.5rem;
  }

  .product-showcase__description {
    font-size: 14px;
  }

  .product-showcase__specs {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .product-showcase__specs div,
  .product-showcase__specs div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 15px 0;
    border: 0;
    border-top: 1px solid rgba(134, 112, 109, 0.3);
  }

  .product-showcase__specs div:first-child {
    border-top: 0;
  }

  .product-showcase__specs dt {
    margin: 0;
  }

  .product-showcase__actions {
    align-items: flex-end;
  }

  .product-showcase__button {
    min-width: 156px;
  }

  .inspiration {
    min-height: 860px;
    padding: 135px 20px;
  }

  .inspiration__panel {
    min-height: 590px;
    padding: 70px 25px 44px;
  }

  .inspiration__corner {
    width: 118px;
    height: 58px;
  }

  .inspiration__corner i {
    width: 42px;
    height: 88px;
  }

  .inspiration__corner--top-left,
  .inspiration__corner--top-right {
    top: -50px;
  }

  .inspiration__corner--bottom-left,
  .inspiration__corner--bottom-right {
    bottom: -50px;
  }

  .inspiration__symbol {
    width: 34px;
    height: 34px;
  }

  .inspiration__eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .inspiration__title {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .inspiration__copy {
    font-size: 13px;
    line-height: 1.38;
  }

  .inspiration__copy p:first-child {
    font-size: 15px;
  }

  .stone-parallax {
    min-height: 38vh;
    min-height: 38svh;
  }

  .stone-parallax__image {
    top: -10%;
    height: 120%;
    object-position: 50% center;
  }

  .stone-parallax__title {
    font-size: clamp(3.8rem, 18vw, 6.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Installation Section ─── */
.pp-install-block {
  --pp-video-radius: 25px;
  --pp-bg: #d4dcdb;
  background: var(--pp-bg);
  padding: 64px 0 72px;
  width: 100%;
}

.pp-install-inner {
  width: min(1400px, calc(100% - 136px));
  margin: 0 auto;
  text-align: center;
}

.pp-install-top-ornament {
  display: flex;
  justify-content: center;
  margin: 0 0 14px;
}

.pp-install-top-ornament svg {
  height: clamp(28px, 3vw, 46px);
  width: auto;
  fill: #78a07f;
}

.pp-install-title {
  margin: 0 0 34px;
  color: #87706d;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "reimbrandt", "Reimbrandt", serif;
}

.pp-install-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 280px));
  justify-content: center;
  gap: 180px;
  margin-bottom: 30px;
  align-items: start;
}

.pp-install-item {
  width: 100%;
}

.pp-install-step-label {
  margin: 0 0 12px;
  color: #87706d;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
}

.pp-video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #c8cfce;
  overflow: hidden;
  border-radius: var(--pp-video-radius);
  position: relative;
  isolation: isolate;
}

.pp-video-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  background: #c8cfce;
}

.pp-video-player > div {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: inherit !important;
}

.pp-video-player iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 104% !important;
  height: 104% !important;
  min-width: 104% !important;
  min-height: 104% !important;
  border: 0 !important;
  display: block !important;
  transform: translate(-50%, -50%) scale(1.4) !important;
  transform-origin: center center !important;
  pointer-events: none !important;
  border-radius: inherit !important;
}

.pp-video-frame::before,
.pp-video-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: var(--pp-bg);
}
.pp-video-frame::before { top: 0; left: 0; width: 100%; height: 2px; }
.pp-video-frame::after  { bottom: 0; left: 0; width: 100%; height: 2px; }

.pp-video-player::before,
.pp-video-player::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--pp-bg);
  z-index: 3;
  pointer-events: none;
}
.pp-video-player::before { left: 0; }
.pp-video-player::after  { right: 0; }

.pp-video-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease;
  background: var(--pp-bg);
}

.pp-video-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.pp-video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,.07) 100%);
  z-index: 1;
}

.pp-video-cover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.pp-video-cover-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid rgba(135,112,109,.95);
}

.pp-install-item.pp-is-active .pp-video-cover {
  opacity: 0;
  visibility: hidden;
}

.pp-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: auto;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.pp-install-item:hover .pp-video-frame {
  box-shadow: 0 0 0 2px rgba(119,160,127,.24) inset;
}

/* CTA Button */
.pp-install-cta-wrap {
  text-align: center;
  display: flex;
  justify-content: center;
}

.pp-install-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 32px;
  color: #eee9df;
  background: #525445;
  border: 1.5px solid #525445;
  border-radius: 999px;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 260ms cubic-bezier(.22,.61,.36,1),
    box-shadow 260ms ease;
}

.pp-install-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.pp-install-cta-btn:hover::after,
.pp-install-cta-btn:focus-visible::after {
  transform: translateX(100%);
}

.pp-install-cta-btn:hover,
.pp-install-cta-btn:focus-visible {
  color: #525445;
  background: transparent;
  box-shadow: 0 0 0 1.5px #525445, 0 6px 22px rgba(82,84,69,.22);
  transform: translateY(-2px);
}

.pp-install-cta-btn:active {
  transform: translateY(0) scale(.97);
}

/* Full video modal */
.pp-full-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.pp-full-video-modal.pp-is-open { display: block; }

.pp-full-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,10,.45);
  backdrop-filter: blur(10px);
}

.pp-full-video-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 20px));
  margin: max(12px, 3vh) auto;
  padding-top: 10px;
}

.pp-full-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 22px 60px rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.08);
}

.pp-full-video-stage {
  position: absolute;
  inset: 0;
  padding: 10px;
  background: #000;
  box-sizing: border-box;
}

.pp-full-video-iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.pp-full-video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pp-full-video-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.78);
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.35);
  z-index: 3;
  pointer-events: none;
}

.pp-full-video-loading.pp-is-hidden { display: none; }

.pp-full-video-close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(20,20,22,.92);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.pp-full-video-close:hover { opacity: .92; }

@media (max-width: 1280px) {
  .pp-install-grid {
    gap: 42px;
    grid-template-columns: repeat(3, minmax(220px, 260px));
  }
}

@media (max-width: 980px) {
  .pp-install-inner { width: min(680px, calc(100% - 28px)); }
  .pp-install-title { font-size: clamp(28px, 7vw, 38px); margin-bottom: 24px; }
  .pp-install-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 26px;
  }
  .pp-install-item { max-width: 280px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .pp-install-inner { width: calc(100% - 20px); }
  .pp-install-item { max-width: 260px; }
}

/* ─── Carousel de Realizações ─── */
:root {
  --pp-avis-bg: #fff;
  --pp-avis-txt: #b8bfb4;
}

.pp-real-carousel.pp-fullbleed {
  background: var(--pp-avis-bg);
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
  color: var(--pp-avis-txt);
}

.pp-real-carousel__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.pp-real-carousel__media {
  flex: 0 0 clamp(280px, 42vw, 520px);
  display: flex;
  align-items: stretch;
  min-height: 340px;
}

.pp-real-carousel__imgWrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.pp-real-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity .45s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
}

.pp-real-carousel__img.is-fading {
  opacity: 0;
  transform: scale(1.03);
}

.pp-real-carousel__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  color: var(--pp-avis-txt);
  padding-left: 16px;
}

.pp-real-carousel__ornament {
  width: 56px;
  height: auto;
  display: block;
  margin: 0 0 14px;
  color: #d5dddc;
}

.pp-real-carousel__title {
  margin: 0 0 24px;
  line-height: 1.05;
  color: var(--pp-avis-txt);
}

.pp-real-carousel__titleTop {
  display: block;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .75;
}

.pp-real-carousel__titleBottom {
  display: block;
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-top: 8px;
  text-transform: uppercase;
  font-family: "reimbrandt", "Reimbrandt", serif;
}

.pp-real-carousel__textZone {
  color: var(--pp-avis-txt);
  padding: 20px 0 0;
  border-top: 1px solid rgba(184,191,180,.22);
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1);
}

.pp-real-carousel__textZone.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.pp-real-carousel__who {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #d5dddc;
  text-align: left;
  opacity: .8;
}

.pp-real-carousel__quote {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 14px;
  color: #d5dddc;
  text-align: left;
}

.pp-real-carousel__meta {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
  color: var(--pp-avis-txt);
  justify-content: flex-start;
  text-align: left;
  opacity: .7;
}

.pp-real-carousel__dots {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding-top: 0;
}

.pp-real-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(184,191,180,.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  transition: background .2s;
}

.pp-real-carousel__dot[aria-selected="true"] {
  background: rgba(184,191,180,.95);
}

.pp-real-carousel__dot:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.pp-real-carousel__edgeNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--pp-avis-txt);
  font-size: 52px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  user-select: none;
  z-index: 5;
}

.pp-real-carousel__edgeNav--prev { left: -56px; }
.pp-real-carousel__edgeNav--next { right: -56px; }

@media (max-width: 1400px) {
  .pp-real-carousel__edgeNav--prev { left: 8px; }
  .pp-real-carousel__edgeNav--next { right: 8px; }
}

@media (max-width: 768px) {
  .pp-real-carousel__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "ornament ornament"
      "title title"
      "media media"
      "nav nav"
      "text text";
    gap: 14px;
    padding: 28px 16px;
  }
  .pp-real-carousel__content { display: contents; }
  .pp-real-carousel__ornament { grid-area: ornament; justify-self: center; width: 56px; margin: 0; }
  .pp-real-carousel__title { grid-area: title; justify-self: center; text-align: center; margin: 0; }
  .pp-real-carousel__titleBottom { font-size: 2.2rem; margin-top: 8px; }
  .pp-real-carousel__media { grid-area: media; min-height: auto; }
  .pp-real-carousel__imgWrap { border-radius: 18px; }
  .pp-real-carousel__edgeNav { position: static; transform: none; grid-area: nav; font-size: 44px; align-self: center; padding: 0 6px; }
  .pp-real-carousel__edgeNav--prev { justify-self: start; }
  .pp-real-carousel__edgeNav--next { justify-self: end; }
  .pp-real-carousel__textZone { grid-area: text; margin-top: 0; padding-top: 18px; border-top: 1px solid rgba(184,191,180,.22); }
  .pp-real-carousel__dots { margin-top: 18px; padding-top: 0; }
}

/* ─── FAQ ─── */
.faq-section {
  background: #d4dcdb;
  padding: 80px 0;
}

.faq-inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}

/* Two-column card */
.faq-card {
  background: rgb(120, 160, 127);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0 56px;
  padding: 56px 64px;
  align-items: center;
}

/* Left column */
.faq-header {
  color: #d4dcdb;
  text-align: center;
}

.faq-header__ornament {
  width: 64px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  color: #d4dcdb;
  opacity: .75;
}

.faq-header__eyebrow {
  margin: 0 0 6px;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .75;
}

.faq-header__title {
  margin: 0 0 24px;
  font-family: "reimbrandt", "Reimbrandt", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
}

.faq-header__link {
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-underline-offset: 3px;
  opacity: .85;
  transition: opacity 200ms ease;
}

.faq-header__link:hover { opacity: 1; }

/* Right column — list */
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-top: 1px solid rgba(212, 220, 219, .28);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(212, 220, 219, .28);
}

/* Question button */
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: clamp(.85rem, 1.1vw, .95rem);
  font-weight: 300;
  text-align: left;
  transition: opacity 200ms ease;
}

.faq-item__question:hover { opacity: .75; }

/* Icon — chevron (v shape) */
.faq-item__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  opacity: .7;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), opacity 200ms ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: #d4dcdb;
  border-radius: 2px;
  width: 10px;
  height: 1.5px;
  top: 50%;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}

/* left arm of chevron */
.faq-item__icon::before {
  left: 0;
  transform: translateY(-50%) rotate(40deg);
  transform-origin: right center;
}

/* right arm of chevron */
.faq-item__icon::after {
  right: 0;
  transform: translateY(-50%) rotate(-40deg);
  transform-origin: left center;
}

/* open state: flip chevron */
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* Answer */
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms cubic-bezier(.22,.61,.36,1);
  margin: 0;
}

.faq-item__answer.is-open {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  opacity: .88;
  padding-bottom: 18px;
}

@media (max-width: 800px) {
  .faq-card {
    grid-template-columns: 1fr;
    gap: 36px 0;
    padding: 48px 36px;
  }
  .faq-header { text-align: center; }
}

@media (max-width: 500px) {
  .faq-section { padding: 48px 0; }
  .faq-inner { width: calc(100% - 40px); }
  .faq-card { padding: 40px 24px; border-radius: 14px; }
}

/* ─── Footer ─── */
.pp-footer {
  background: #525445;
  padding: 72px 0 48px;
}

.pp-footer__inner {
  width: min(640px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* Logo */
.pp-footer__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(212, 220, 219, .1);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  justify-content: center;
}

.pp-footer__logo-ornament {
  width: 42px;
  height: auto;
  color: #d4dcdb;
  opacity: .85;
}

.pp-footer__logo-text {
  display: none; /* ornament is enough */
}

/* Nav */
.pp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}

.pp-footer__nav a {
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .75;
  transition: opacity 200ms ease;
}

.pp-footer__nav a:hover { opacity: 1; }

/* Social buttons */
.pp-footer__social {
  display: flex;
  gap: 12px;
}

.pp-footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 220, 219, .35);
  color: #d4dcdb;
  text-decoration: none;
  opacity: .75;
  transition: opacity 200ms ease, border-color 200ms ease;
}

.pp-footer__social-btn:hover {
  opacity: 1;
  border-color: rgba(212, 220, 219, .7);
}

/* Newsletter form */
.pp-footer__newsletter {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 420px;
}

.pp-footer__email-input {
  flex: 1;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 220, 219, .3);
  background: rgba(212, 220, 219, .07);
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .5px;
  outline: none;
  transition: border-color 200ms ease;
}

.pp-footer__email-input::placeholder { color: rgba(212, 220, 219, .45); }
.pp-footer__email-input:focus { border-color: rgba(212, 220, 219, .6); }

.pp-footer__subscribe-btn {
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  background: rgb(120, 160, 127);
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, opacity 200ms ease;
}

.pp-footer__subscribe-btn:hover { transform: translateY(-1px); opacity: .9; }
.pp-footer__subscribe-btn:active { transform: scale(.97); }

/* Copyright */
.pp-footer__copy {
  margin: 0;
  color: #d4dcdb;
  font-family: "Geologica", "Helvetica Neue", sans-serif;
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .5px;
  opacity: .45;
  text-align: center;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .pp-footer__newsletter { flex-direction: column; }
  .pp-footer__subscribe-btn { width: 100%; }
}
