/* PawReset home page — rebuilt to match the approved comp (clean photo assets + real HTML text). */

.home .site-content > .ast-container,
.home .site-content,
.home .content-area,
.home .site-main {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home .entry-header,
.home .entry-content > * {
  max-width: none;
}

.pr-home,
.pr-home * {
  box-sizing: border-box;
}

.pr-home {
  --pr-hero-teal: #1f4f48;
  overflow: clip;
  background: var(--pawreset-cream);
  color: var(--pawreset-ink);
}

.pr-shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.pr-section {
  padding-block: clamp(72px, 9vw, 132px);
}

.pr-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-180%);
  background: var(--pawreset-aubergine);
  color: #ffffff;
  font-weight: 750;
}

.pr-skip-link:focus {
  transform: translateY(0);
}

/* ---- typography ---- */
.pr-eyebrow {
  margin: 0 0 16px;
  color: var(--pawreset-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.pr-home h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.pr-home h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 1.03;
  text-wrap: balance;
}

.pr-home h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.14;
}

.pr-home p {
  color: var(--pawreset-muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
}

/* ---- buttons / links ---- */
.pr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
}

.pr-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 2px solid var(--pawreset-coral);
  border-radius: 12px;
  background: var(--pawreset-coral);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.pr-button:hover {
  transform: translateY(-3px);
  background: #c95e4e;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(226, 112, 95, 0.28);
}

.pr-text-link {
  color: var(--pawreset-aubergine);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(72, 33, 54, 0.32);
  text-underline-offset: 0.28em;
}

.pr-text-link:hover {
  color: var(--pawreset-coral);
}

/* ---- hero ---- */
.pr-hero {
  display: grid;
  align-items: center;
  padding-block: clamp(48px, 6vw, 88px);
  background: var(--pawreset-paper);
}

.pr-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.pr-hero__copy h1 {
  color: var(--pr-hero-teal);
}

.pr-lead {
  max-width: 44ch;
  margin-bottom: 34px;
}

.pr-hero__visual {
  margin: 0;
}

.pr-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* ---- section heading ---- */
.pr-section-heading {
  width: min(100%, 720px);
  margin: 0 auto clamp(40px, 5vw, 68px);
  text-align: center;
}

.pr-section-heading > p:last-child {
  margin-bottom: 0;
}

.pr-section-heading--left {
  margin-left: 0;
  text-align: left;
}

/* ---- collections: three equal cards ---- */
.pr-collections {
  background: var(--pawreset-cream);
}

.pr-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.pr-collection {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pawreset-line);
  border-radius: var(--pawreset-radius);
  background: var(--pawreset-paper);
  box-shadow: 0 18px 44px rgba(72, 33, 54, 0.08);
  color: var(--pawreset-ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pr-collection:hover {
  transform: translateY(-5px);
  box-shadow: var(--pawreset-shadow);
  color: var(--pawreset-ink);
}

.pr-collection__media {
  display: block;
  aspect-ratio: 6 / 5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pr-collection__media--pawsonalised {
  background-image: url("../images/col-pawsonalised.webp");
}

.pr-collection__media--care {
  background-image: url("../images/col-care.webp");
}

.pr-collection__media--studio {
  background-image: url("../images/col-studio.webp");
}

.pr-collection__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.4vw, 34px);
}

.pr-collection__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border: 1.5px solid var(--pawreset-teal);
  border-radius: 50%;
  color: var(--pawreset-teal);
}

.pr-collection__icon svg {
  width: 22px;
  height: 22px;
}

.pr-collection__label {
  margin-bottom: 8px;
  color: var(--pawreset-aubergine);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pr-collection__copy {
  margin-bottom: 18px;
  color: var(--pawreset-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pr-collection__link {
  margin-top: auto;
  color: var(--pawreset-coral);
  font-size: 0.95rem;
  font-weight: 800;
}

/* ---- studio (light panel, photo left) ---- */
.pr-studio {
  background: var(--pawreset-paper);
  color: var(--pawreset-ink);
}

.pr-studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.pr-studio__visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--pawreset-radius);
  box-shadow: var(--pawreset-shadow);
}

.pr-studio__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.pr-studio__copy h2 {
  color: var(--pawreset-aubergine);
}

.pr-studio__details {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.pr-studio__details li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--pawreset-line);
  color: var(--pawreset-ink);
  font-weight: 700;
}

.pr-studio__details li::before {
  position: absolute;
  left: 0;
  color: var(--pawreset-gold);
  content: "+";
  font-size: 1.2rem;
  font-weight: 900;
}

/* ---- process ---- */
.pr-process {
  background: var(--pawreset-cream);
}

.pr-process__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--pawreset-line);
  list-style: none;
}

.pr-process__list li {
  display: grid;
  min-height: 250px;
  grid-template-rows: auto 1fr;
  padding: 34px clamp(20px, 3vw, 44px) 28px;
  border-right: 1px solid var(--pawreset-line);
}

.pr-process__list li:first-child {
  padding-left: 0;
}

.pr-process__list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.pr-process__number {
  margin-bottom: 46px;
  color: var(--pawreset-coral);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pr-process__list p {
  max-width: 30ch;
  margin-bottom: 0;
}

/* ---- family / every pet ---- */
.pr-family {
  background: #fddfd4;
}

.pr-family__copy {
  width: min(100%, 760px);
  margin: 0 auto 40px;
  text-align: center;
}

.pr-family__copy .pr-eyebrow {
  color: var(--pawreset-aubergine);
}

.pr-family__copy p {
  color: #6a4a52;
}

.pr-family__visual {
  margin: 0;
}

.pr-family__visual img {
  display: block;
  width: 100%;
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
}

/* ---- closing ---- */
.pr-closing {
  background: var(--pawreset-aubergine);
}

.pr-closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.pr-closing h2,
.pr-closing .pr-eyebrow {
  color: #ffffff;
}

.pr-closing h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.pr-closing__action {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.pr-closing__action p {
  max-width: 38ch;
  color: #eadde4;
}

.pr-button--cream {
  border-color: var(--pawreset-cream);
  background: var(--pawreset-cream);
  color: var(--pawreset-aubergine);
}

.pr-button--cream:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--pawreset-aubergine);
}

/* ---- responsive ---- */
@media (max-width: 980px) {
  .pr-hero__grid,
  .pr-studio__grid {
    grid-template-columns: 1fr;
  }

  .pr-hero__copy {
    max-width: 640px;
  }

  .pr-hero__visual {
    max-width: 560px;
  }

  .pr-studio__visual {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .pr-shell {
    width: min(100% - 28px, 1240px);
  }

  .pr-section {
    padding-block: 70px;
  }

  .pr-home h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .pr-home h2 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .pr-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pr-actions .pr-button,
  .pr-actions .pr-text-link {
    width: 100%;
    text-align: center;
  }

  .pr-text-link {
    padding-block: 11px;
  }

  .pr-process__list {
    grid-template-columns: 1fr;
  }

  .pr-process__list li,
  .pr-process__list li:first-child,
  .pr-process__list li:last-child {
    min-height: 0;
    grid-template-columns: 64px 1fr;
    grid-template-rows: 1fr;
    gap: 14px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--pawreset-line);
  }

  .pr-process__list li:last-child {
    border-bottom: 0;
  }

  .pr-process__number {
    margin-bottom: 0;
    font-size: 2.1rem;
  }

  .pr-closing__grid {
    grid-template-columns: 1fr;
  }

  .pr-closing__action {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .pr-closing__action .pr-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-button,
  .pr-collection {
    transition: none;
  }

  .pr-button:hover,
  .pr-collection:hover {
    transform: none;
  }
}
