@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ink: #121410;
  --ink-soft: #1d201b;
  --paper: #f4f2ec;
  --paper-deep: #e8e4da;
  --lime: #b6d82c;
  --lime-light: #d6ef5b;
  --muted: #777d72;
  --line: rgba(18, 20, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  background: rgba(18, 20, 16, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font: 500 0.62rem/1 "Inter", Arial, sans-serif;
  letter-spacing: 0.17em;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 1.7rem;
  border-radius: 50%;
  transform: rotate(-7deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b0d0a;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/original/hero-dog.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  animation: hero-drift 16s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.86) 0%, rgba(7, 9, 7, 0.47) 54%, rgba(7, 9, 7, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  animation: hero-rise 850ms 120ms ease-out both;
}

.wordmark {
  width: min(720px, 72vw);
  height: auto;
  margin-bottom: 22px;
}

.hero-copy {
  display: flex;
  align-items: center;
  gap: 42px;
}

.hero h1,
.section h2,
.legal-page h1 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5rem, 10vw, 9rem);
}

.eyebrow {
  margin: 0 0 20px;
  color: #647033;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  margin-bottom: 8px;
  color: var(--lime-light);
  font-size: 1rem;
}

.puppy-card {
  width: 175px;
  flex: 0 0 auto;
  transform: rotate(-5deg);
}

.puppy-card img {
  width: 100%;
  border: 7px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.puppy-card span {
  display: block;
  margin-top: 6px;
  color: var(--lime-light);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
}

.hero-subline {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 14px 0 0;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 400;
}

.hero-subline i {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--lime);
  border-radius: 50%;
}

.hero-name {
  width: fit-content;
  margin: 40px 0 0 220px;
  padding: 11px 18px;
  background: rgba(0, 0, 0, 0.56);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  right: 0;
  bottom: -112px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.scroll-hint:hover span,
.scroll-hint:focus-visible span {
  background: var(--lime-light);
  transform: translateY(4px);
}

.service-ribbon {
  position: relative;
  z-index: 4;
  padding: 21px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
}

.service-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-ribbon i {
  color: rgba(18, 20, 16, 0.45);
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section h2 {
  max-width: 780px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
}

.intro {
  background:
    linear-gradient(rgba(244, 242, 236, 0.96), rgba(244, 242, 236, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(18, 20, 16, 0.05) 120px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;
  align-items: end;
}

.intro-text {
  font-size: 1.04rem;
}

.trust-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid > div {
  min-height: 118px;
  padding: 27px 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: #7b8b31;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.trust-grid span {
  max-width: 145px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.quote {
  margin-top: 34px;
  padding-top: 24px;
  color: #59632c;
  border-top: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 1.22rem;
  font-style: italic;
}

.photo-strip {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 0.78fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.photo-strip img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: filter 350ms ease, transform 350ms ease;
}

.photo-strip img:hover {
  filter: saturate(1) contrast(1.03);
  transform: translateY(-6px);
}

.photo-strip img:nth-child(2) {
  padding: 35px;
  background: var(--lime);
  object-fit: contain;
}

.prices {
  color: #fff;
  background: var(--ink);
}

.prices .eyebrow {
  color: var(--lime);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.section-heading p {
  max-width: 340px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  min-height: 355px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  background: #20231e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.price-card:not(.featured):hover {
  background: #272b24;
  border-color: rgba(182, 216, 44, 0.5);
  transform: translateY(-8px);
}

.price-card.featured {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-18px);
}

.badge {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 7px 11px;
  color: #fff;
  background: var(--ink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.price-card p {
  margin: 14px 0 32px;
  color: rgba(255, 255, 255, 0.58);
}

.price-card.featured p {
  color: rgba(18, 20, 16, 0.67);
}

.price-card strong {
  margin: auto 0 28px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.price-card a {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card.featured a {
  border-color: rgba(18, 20, 16, 0.25);
}

.contact {
  background: var(--paper-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.contact-image {
  position: relative;
}

.contact-image::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  background: var(--lime);
  content: "";
}

.contact-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.contact-copy > p:not(.eyebrow, .signature) {
  max-width: 600px;
  margin: 30px 0;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 1.06rem;
  font-weight: 500;
  transition: color 180ms ease, padding 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-left: 10px;
  color: #59632c;
}

.contact-links span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature {
  margin: 34px 0 0;
  color: #59632c;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
}

.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  min-height: 54px;
  padding: 7px 19px 7px 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(18, 20, 16, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(11, 13, 10, 0.28);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.floating-contact span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 1rem;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background: var(--lime-light);
  transform: translateY(-4px);
}

.site-footer {
  padding: 72px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  background: #0c0e0b;
  font-size: 0.84rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-grid p {
  margin: 4px 0;
}

.footer-brand {
  color: #fff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 70vh;
  padding: 170px 0 120px;
}

.legal-page .page-lead {
  max-width: 800px;
  margin-bottom: 70px;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 8vw, 7rem);
}

.legal-page .page-lead > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 80px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy section {
  margin-bottom: 70px;
}

.legal-copy h2 {
  margin: 0 0 30px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.legal-copy h3 {
  margin: 38px 0 10px;
  font-size: 1rem;
}

.legal-copy p,
.legal-copy li {
  color: #44483f;
  font-size: 0.94rem;
}

.legal-copy a {
  color: #59632c;
  text-decoration: underline;
}

.event-card {
  padding: 56px;
  color: #fff;
  background: var(--ink);
  border-top: 8px solid var(--lime);
}

.event-card strong {
  color: var(--lime);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.01);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
    background: var(--lime);
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
  }

  .mobile-nav nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: 260px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  }

  .mobile-nav nav a {
    padding: 11px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 780px;
  }

  .hero-copy {
    align-items: end;
    gap: 24px;
  }

  .puppy-card {
    width: 120px;
  }

  .hero-name {
    margin-left: 145px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .photo-strip img {
    height: 330px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1160px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 36px;
  }

  .hero {
    min-height: 720px;
  }

  .service-ribbon {
    padding: 16px 0;
  }

  .service-ribbon-inner {
    width: max-content;
    padding-inline: 15px;
    justify-content: flex-start;
    font-size: 0.93rem;
  }

  .service-ribbon-inner span:nth-of-type(n + 4),
  .service-ribbon-inner i:nth-of-type(n + 3) {
    display: none;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 9, 7, 0.88), rgba(7, 9, 7, 0.42));
  }

  .hero-content {
    padding-top: 90px;
  }

  .wordmark {
    width: 100%;
  }

  .hero-copy {
    display: block;
  }

  .puppy-card {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 4.8rem);
  }

  .hero-subline {
    flex-wrap: wrap;
  }

  .hero-name {
    margin: 34px 0 0;
  }

  .scroll-hint {
    right: auto;
    bottom: -115px;
    left: 0;
  }

  .section {
    padding: 84px 0;
  }

  .section h2 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 20px;
  }

  .photo-strip {
    margin-top: 58px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .photo-strip img {
    height: 290px;
  }

  .photo-strip img:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 230px;
  }

  .price-card {
    min-height: 310px;
    padding: 32px;
  }

  .contact-copy {
    overflow-wrap: anywhere;
  }

  .contact-links a {
    display: block;
  }

  .contact-links span {
    display: block;
    margin-bottom: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    text-align: left;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }

  .legal-page {
    padding: 130px 0 80px;
  }

  .legal-page h1 {
    font-size: 4rem;
  }

  .event-card {
    padding: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keep the fixed site navigation below the WordPress admin toolbar. */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
