@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,600;0,700;1,500&display=swap');

:root {
  --ps-ink: #231e21;
  --ps-body: #414241;
  --ps-paper: #f6f3ee;
  --ps-white: #ffffff;
  --ps-copper: #a57039;
  --ps-copper-dark: #74502a;
  --ps-line: rgba(35, 30, 33, 0.14);
  --ps-radius: 26px;
  --ps-shadow: 0 24px 70px rgba(35, 30, 33, 0.14);
}

.pslp,
.pslp * {
  box-sizing: border-box;
}

.pslp {
  margin: 0;
  background: var(--ps-paper);
  color: var(--ps-body);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow: hidden;
}

.pslp h1,
.pslp h2,
.pslp h3,
.pslp p {
  margin-top: 0;
}

.pslp h1,
.pslp h2,
.pslp h3 {
  color: var(--ps-ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.pslp h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.3vw, 88px);
  font-weight: 700;
  line-height: 0.98;
}

.pslp h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.3vw, 62px);
  font-weight: 700;
  line-height: 1.02;
}

.pslp h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.15;
}

.pslp a {
  color: inherit;
  text-decoration: none;
}

.pslp-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.pslp-kicker {
  margin-bottom: 20px;
  color: var(--ps-copper-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pslp-lede {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.pslp-italic {
  color: var(--ps-copper);
  font-style: italic;
  font-weight: 500;
}

.pslp-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--ps-line);
  background: rgba(246, 243, 238, 0.96);
}

.pslp-logo {
  display: block;
  width: 82px;
  height: 72px;
  object-fit: contain;
}

.pslp-topproof {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ps-ink);
  font-size: 14px;
  font-weight: 700;
}

.pslp-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pslp-online::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4d9a65;
  box-shadow: 0 0 0 5px rgba(77, 154, 101, 0.14);
  content: "";
}

.pslp .pslp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--ps-copper);
  border-radius: 12px;
  background: var(--ps-copper);
  color: var(--ps-white) !important;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pslp .pslp-btn:hover,
.pslp .pslp-btn:focus-visible,
.pslp .pslp-btn:active {
  background: var(--ps-copper-dark);
  color: var(--ps-white) !important;
  box-shadow: 0 12px 28px rgba(116, 80, 42, 0.22);
  transform: translateY(-2px);
}

.pslp .pslp-btn--light {
  border-color: var(--ps-white);
  background: var(--ps-white);
  color: var(--ps-ink) !important;
}

.pslp .pslp-btn--ghost {
  border-color: var(--ps-line);
  background: transparent;
  color: var(--ps-ink) !important;
}

.pslp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pslp-service-switch {
  border-block: 1px solid var(--ps-line);
  background: #eee8df;
}

.pslp-service-switch__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 24px;
}

.pslp-service-switch__inner > div {
  display: grid;
  gap: 3px;
}

.pslp-service-switch strong {
  color: var(--ps-ink);
  font-size: 19px;
}

.pslp-service-switch span {
  color: var(--ps-muted);
}

.pslp-service-switch__link {
  flex: 0 0 auto;
  color: var(--ps-copper-dark) !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.pslp-service-switch__link:hover,
.pslp-service-switch__link:focus-visible {
  color: var(--ps-ink) !important;
}

.pslp-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--ps-ink);
  color: var(--ps-white);
}

.pslp-cta-strip h3,
.pslp-cta-strip p {
  margin: 0;
  color: var(--ps-white);
}

.pslp-cta-strip h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.pslp-cta-strip p {
  max-width: 650px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
}

.pslp-cta-strip .pslp-actions {
  flex: 0 0 auto;
}

.pslp-cta-strip--light {
  border: 1px solid var(--ps-line);
  background: var(--ps-white);
  box-shadow: 0 18px 50px rgba(35, 30, 33, 0.07);
  color: var(--ps-ink);
}

.pslp-cta-strip--light h3,
.pslp-cta-strip--light p {
  color: var(--ps-ink);
}

.pslp-hero {
  position: relative;
  min-height: 760px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.pslp-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(246, 243, 238, 0.98) 0%, rgba(246, 243, 238, 0.92) 40%, rgba(246, 243, 238, 0.18) 73%, rgba(35, 30, 33, 0.25) 100%);
  content: "";
}

.pslp-hero--kitchen {
  background-image: url("https://pacificstonesolutions.com/wp-content/uploads/Kitchen-Remodel.jpg");
}

.pslp-hero--countertops {
  background-image: url("https://pacificstonesolutions.com/wp-content/uploads/PFOX9517-HDR.jpg");
}

.pslp-hero__inner {
  display: grid;
  align-items: center;
  min-height: 668px;
  padding-block: 74px;
}

.pslp-hero__copy {
  max-width: 770px;
}

.pslp-proofbar {
  border-block: 1px solid var(--ps-line);
  background: var(--ps-white);
}

.pslp-proofgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pslp-proof {
  min-height: 112px;
  padding: 28px 22px;
  border-right: 1px solid var(--ps-line);
  color: var(--ps-ink);
  text-align: center;
}

.pslp-proof:last-child {
  border-right: 0;
}

.pslp-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ps-copper-dark);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 22px;
}

.pslp-section {
  padding-block: 110px;
}

.pslp-section--white {
  background: var(--ps-white);
}

.pslp-section--dark {
  background: var(--ps-ink);
  color: rgba(255, 255, 255, 0.76);
}

.pslp-section--dark h2,
.pslp-section--dark h3 {
  color: var(--ps-white);
}

.pslp-section--dark .pslp-kicker {
  color: #d8ab7c;
}

.pslp-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.pslp-panelgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pslp-panel {
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius);
  background: rgba(255, 255, 255, 0.68);
}

.pslp-panel--accent {
  border-color: transparent;
  background: var(--ps-copper);
  color: rgba(255, 255, 255, 0.86);
}

.pslp-panel--accent h3 {
  color: var(--ps-white);
}

.pslp-checks {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pslp-checks li {
  position: relative;
  padding-left: 31px;
}

.pslp-checks li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(165, 112, 57, 0.15);
  color: var(--ps-copper-dark);
  content: "✓";
  font-size: 13px;
  font-weight: 700;
}

.pslp-panel--accent .pslp-checks li::before {
  background: rgba(255, 255, 255, 0.18);
  color: var(--ps-white);
}

.pslp-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.pslp-plumbing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  margin-top: 38px;
}

.pslp-plumbing .pslp-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.pslp-plumbing h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.pslp-service {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--ps-line);
  border-radius: 22px;
  background: var(--ps-white);
}

.pslp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--ps-paper);
  color: var(--ps-copper-dark);
  font-weight: 700;
}

.pslp-imageband {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.pslp-imageband::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(35, 30, 33, 0.05), rgba(35, 30, 33, 0.9));
  content: "";
}

.pslp-imageband--showroom {
  background-image: url("https://pacificstonesolutions.com/wp-content/uploads/PFOX2942-HDR.jpg");
}

.pslp-imageband--fabrication {
  background-image: url("https://pacificstonesolutions.com/wp-content/uploads/dr-demo-72.jpg");
}

.pslp-imageband__copy {
  max-width: 800px;
  padding-block: 72px;
  color: rgba(255, 255, 255, 0.86);
}

.pslp-imageband__copy h2 {
  color: var(--ps-white);
}

.pslp-imageband .pslp-kicker {
  color: var(--ps-white);
}

.pslp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.pslp-step {
  padding: 28px 24px;
  border-top: 2px solid var(--ps-copper);
}

.pslp-statgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.pslp-stat {
  padding: 42px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
}

.pslp-stat strong {
  display: block;
  color: var(--ps-white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.pslp-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 48px;
}

.pslp-gallery img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: var(--ps-radius);
  object-fit: cover;
}

.pslp-gallery__stack {
  display: grid;
  gap: 20px;
}

.pslp-gallery__stack img {
  min-height: 205px;
}

.pslp-project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.pslp-project-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e3dc;
}

.pslp-project-photo--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.pslp-project-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 400ms ease;
}

.pslp-project-photo:hover img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.025);
}

.pslp-showroom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.pslp-showroom-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e3dc;
}

.pslp-showroom-photo--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.pslp-showroom-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.pslp-showroom-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(35, 30, 33, 0.32));
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.pslp-showroom-photo:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.pslp-showroom-photo:hover::after {
  opacity: 1;
}

.pslp-gallery-more {
  margin-top: 24px;
}

.pslp-gallery-more summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  margin-inline: auto;
  padding: 13px 22px;
  border: 1px solid var(--ps-line);
  border-radius: 12px;
  color: var(--ps-ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.pslp-gallery-more summary::-webkit-details-marker {
  display: none;
}

.pslp-gallery-more summary::after {
  margin-left: 10px;
  color: var(--ps-copper-dark);
  content: "+";
  font-size: 20px;
}

.pslp-gallery-more[open] summary::after {
  content: "−";
}

.pslp-gallery-more[open] > summary {
  display: none;
}

.pslp-showroom-grid--more {
  margin-top: 24px;
}

.pslp-location-intro {
  max-width: 720px;
  margin-top: 96px;
}

.pslp-location-intro h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.pslp-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.pslp-location {
  padding: 34px;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius);
  background: var(--ps-paper);
}

.pslp .pslp-location__title {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
}

.pslp-location__address {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.6;
}

.pslp-location__hours {
  margin: 24px 0 28px;
}

.pslp-location .pslp-btn {
  width: 100%;
}

.pslp-formwrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.pslp-formcard {
  padding: 38px;
  border-radius: var(--ps-radius);
  background: var(--ps-white);
  box-shadow: var(--ps-shadow);
}

.pslp-formcard .gform_wrapper,
.pslp-formcard .gform_wrapper.gravity-theme {
  margin: 0;
}

.pslp-formcard .gfield_label,
.pslp-formcard label {
  color: var(--ps-ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.pslp-formcard input:not([type="submit"]),
.pslp-formcard textarea,
.pslp-formcard select {
  min-height: 50px;
  border: 1px solid var(--ps-line) !important;
  border-radius: 10px !important;
  background: var(--ps-paper) !important;
  color: var(--ps-ink) !important;
}

.pslp-formcard textarea {
  min-height: 120px;
}

.pslp-formcard input[type="submit"],
.pslp-formcard .gform_button {
  width: 100% !important;
  min-height: 56px;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--ps-copper) !important;
  color: var(--ps-white) !important;
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.pslp p.pslp-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ps-line);
  font-size: 13px;
}

.pslp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 32px;
  background: #181517;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
}

.pslp-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pslp-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--ps-white) !important;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pslp-social a:hover,
.pslp-social a:focus-visible {
  border-color: var(--ps-copper);
  background: var(--ps-copper);
  color: var(--ps-white) !important;
  transform: translateY(-1px);
}

.pslp-social svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pslp-social .pslp-social__fill {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 980px) {
  .pslp-topproof > span:not(.pslp-online) {
    display: none;
  }

  .pslp-proofgrid,
  .pslp-services,
  .pslp-steps,
  .pslp-statgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pslp-intro,
  .pslp-formwrap,
  .pslp-plumbing,
  .pslp-locations {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pslp-gallery {
    grid-template-columns: 1fr;
  }

  .pslp-gallery > img,
  .pslp-gallery__stack img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .pslp-project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pslp-shell {
    width: min(100% - 32px, 1180px);
  }

  .pslp-topbar {
    min-height: 74px;
    padding: 10px 16px;
  }

  .pslp-logo {
    width: 62px;
    height: 54px;
  }

  .pslp-topproof .pslp-online {
    display: none;
  }

  .pslp-topproof .pslp-btn {
    min-height: 46px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .pslp-service-switch__inner {
    display: grid;
    gap: 14px;
    padding-block: 22px;
  }

  .pslp-service-switch__link {
    justify-self: start;
  }

  .pslp-hero {
    min-height: 690px;
    background-position: 64% center;
  }

  .pslp-hero::before {
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.97) 0%, rgba(246, 243, 238, 0.9) 60%, rgba(246, 243, 238, 0.28) 100%);
  }

  .pslp-hero__inner {
    align-items: start;
    min-height: 616px;
    padding-block: 56px;
  }

  .pslp-proofgrid,
  .pslp-panelgrid,
  .pslp-services,
  .pslp-steps,
  .pslp-statgrid {
    grid-template-columns: 1fr;
  }

  .pslp-proof {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ps-line);
  }

  .pslp-proof:last-child {
    border-bottom: 0;
  }

  .pslp-section {
    padding-block: 74px;
  }

  .pslp-panel,
  .pslp-service,
  .pslp-formcard,
  .pslp-location {
    padding: 26px;
  }

  .pslp-imageband {
    min-height: 570px;
  }

  .pslp-showroom-grid {
    grid-template-columns: 1fr;
  }

  .pslp-project-gallery {
    gap: 10px;
  }

  .pslp-kitchen .pslp-project-photo--wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .pslp-kitchen .pslp-project-gallery .pslp-project-photo:nth-child(n + 9) {
    display: none;
  }

  .pslp-cta-strip {
    display: grid;
    gap: 20px;
    margin-top: 36px;
    padding: 24px;
  }

  .pslp-cta-strip .pslp-actions {
    width: 100%;
  }

  .pslp-showroom-photo--wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .pslp-showroom-grid:not(.pslp-showroom-grid--more) .pslp-showroom-photo:nth-child(n + 5) {
    display: none;
  }

  .pslp-showroom-grid--more .pslp-showroom-photo:nth-child(n + 5) {
    display: none;
  }

  .pslp-actions {
    display: grid;
  }

  .pslp-btn {
    width: 100%;
  }
}
