:root {
  color-scheme: light;
  --ink: #241718;
  --muted: #746365;
  --line: #ded0d6;
  --paper: #f7f1ee;
  --white: #ffffff;
  --cedar: #806055;
  --cedar-dark: #35242a;
  --navy: #113b63;
  --sage: #477266;
  --sun: #b99a8f;
  --rose: #9f7281;
  --blush: #eadde2;
  --lavender: #8b72c9;
  --mint: #cfece2;
  --shadow: 0 18px 45px rgba(89, 39, 54, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8f2ef 0%, #f0e7e4 42%, #f8fbf7 100%),
    radial-gradient(circle at 14% 8%, rgba(234, 221, 226, 0.58), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(207, 236, 226, 0.52), transparent 26%),
    var(--paper);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, min-height 220ms ease;
}

.site-header.is-solid {
  min-height: 66px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(47, 28, 20, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--sun);
  color: #281d1f;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(128, 96, 85, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-logo {
  width: 184px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(89, 39, 54, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 14px 30px rgba(89, 39, 54, 0.26);
}

.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 14px 30px rgba(128, 96, 85, 0.34);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a,
.puppy-card a,
.text-link,
.contact-lines a {
  position: relative;
}

.site-nav a::after,
.puppy-card a::after,
.text-link::after,
.contact-lines a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.puppy-card a:hover::after,
.text-link:hover::after,
.contact-lines a:hover::after {
  right: 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--cedar-dark), var(--navy));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  animation: heroDrift 15s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 16, 24, 0.82), rgba(82, 39, 48, 0.46) 43%, rgba(42, 16, 24, 0.03)),
    linear-gradient(0deg, rgba(42, 16, 24, 0.18), rgba(42, 16, 24, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(610px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding-top: 76px;
  text-shadow: 0 2px 24px rgba(25, 10, 12, 0.28);
  animation: heroCopyIn 720ms ease-out both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 610px;
  font-size: clamp(2.45rem, 5.8vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(31, 20, 13, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -40%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: rotate(20deg) translateX(-180%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 20, 13, 0.2);
}

.button:hover::before {
  transform: rotate(20deg) translateX(520%);
}

.button.primary {
  background: linear-gradient(135deg, var(--sun), #d4bdb6);
  color: #281d1f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(49, 21, 22, 0.18);
  color: var(--white);
  box-shadow: 0 -12px 34px rgba(49, 21, 22, 0.12);
}

.trust-band div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: linear-gradient(135deg, #73564e, #8c6573);
  transition: background 180ms ease, transform 180ms ease;
}

.trust-band div:hover {
  background: linear-gradient(135deg, #86665d, #9f7281);
  transform: translateY(-2px);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.section-heading,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.puppy-grid {
  display: grid;
  gap: 16px;
}

.puppy-card,
.care-grid article,
.faq-grid article,
.included-grid article,
.contact-form,
.social-grid a,
.certificate-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(89, 39, 54, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.puppy-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  min-height: 292px;
}

.puppy-card:hover,
.care-grid article:hover,
.faq-grid article:hover,
.included-grid article:hover,
.social-grid a:hover,
.certificate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(219, 111, 136, 0.36);
  box-shadow: 0 18px 40px rgba(89, 39, 54, 0.14);
}

.puppy-photo {
  position: relative;
  display: block;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #eaded8, #f3fbf4);
}

.puppy-photo > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 230px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 520ms ease;
}

.puppy-card:hover .puppy-photo > img:first-child {
  transform: scale(1.045);
}

.photo-akc-logo {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 74px;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 8px 12px rgba(10, 35, 78, 0.22));
  pointer-events: none;
}

.puppy-card div {
  padding: 26px;
}

.puppy-card span,
.care-grid span {
  color: var(--sage);
  font-weight: 900;
}

.puppy-card .status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(234, 221, 226, 0.96), rgba(207, 236, 226, 0.86));
  color: #6d4f58;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.puppy-card h3,
.care-grid h3 {
  margin: 10px 0;
}

.puppy-details {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.puppy-details li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(234, 216, 220, 0.72);
  color: var(--ink);
  font-weight: 800;
}

.puppy-details li:last-child {
  border-bottom: 0;
}

.puppy-details span {
  color: var(--muted);
  font-weight: 800;
}

.puppy-card p,
.care-grid p,
.social-grid span,
footer {
  color: var(--muted);
  line-height: 1.65;
}

.puppy-card a {
  color: var(--rose);
  font-weight: 900;
}

.text-link {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rose);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(234, 221, 226, 0.64), rgba(207, 236, 226, 0.72)),
    #f7f1ee;
  border-top: 1px solid rgba(234, 216, 220, 0.76);
  border-bottom: 1px solid rgba(234, 216, 220, 0.76);
}

.section-heading {
  max-width: 680px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid var(--white);
  box-shadow: 0 18px 42px rgba(62, 33, 26, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.015);
  filter: saturate(1.04) contrast(1.03);
  box-shadow: 0 24px 58px rgba(47, 28, 20, 0.22);
}

.akc-section,
.care-section,
.included-section,
.social-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.included-section {
  align-items: center;
}

.included-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.included-grid article,
.faq-grid article {
  padding: 26px;
}

.included-grid strong {
  display: block;
  color: var(--cedar);
  font-size: 1.16rem;
}

.included-grid p,
.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-grid h3 {
  margin-bottom: 8px;
  color: var(--cedar-dark);
}

.akc-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.certificate-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 36px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.92)),
    var(--white);
}

.akc-logo {
  width: min(100%, 230px);
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 16px 24px rgba(0, 65, 142, 0.18));
}

.certificate-card strong {
  color: var(--cedar);
  font-size: 1.75rem;
  font-weight: 900;
}

.certificate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.care-grid,
.social-grid {
  display: grid;
  gap: 16px;
}

.care-grid article,
.social-grid a,
.contact-form {
  padding: 28px;
}

.social-grid a {
  display: grid;
  gap: 8px;
}

.social-grid strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--cedar-dark);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbf8f6;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(111, 56, 32, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(185, 154, 143, 0.22);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(49, 21, 22, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-actions a,
.floating-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 70px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sun), #d4bdb6);
  color: #281d1f;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100vw - 36px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-widget.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, var(--cedar-dark), var(--navy));
  color: var(--white);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.chat-header button {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chat-body {
  padding: 18px;
}

.chat-body p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.chat-options {
  display: grid;
  gap: 10px;
}

.chat-options a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  background: var(--blush);
  color: var(--cedar-dark);
  font-weight: 900;
}

.chat-options a:first-child {
  background: linear-gradient(135deg, var(--sun), #d4bdb6);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes heroDrift {
  from {
    transform: scale(1.01) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-1.4%);
  }
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand-logo {
    width: 158px;
    height: 51px;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-call {
    display: none;
  }

  .floating-actions {
    display: flex;
  }

  .hero {
    min-height: 82svh;
  }

  .hero img {
    object-position: 78% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(36, 19, 13, 0.88), rgba(36, 19, 13, 0.58) 58%, rgba(36, 19, 13, 0.16));
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 68px;
    width: min(520px, calc(100% - 36px));
  }

  .trust-band,
  .split,
  .gallery-grid,
  .akc-section,
  .care-section,
  .included-section,
  .social-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .included-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .gallery-grid img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  footer {
    display: grid;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 134px;
    height: 46px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.35rem);
    line-height: 1.06;
  }

  .hero-content {
    width: calc(100vw - 52px);
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .puppy-card {
    grid-template-columns: 1fr;
  }

  .puppy-photo,
  .puppy-photo > img:first-child {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .photo-akc-logo {
    width: 68px;
  }

  .trust-band div,
  .puppy-card div,
  .certificate-card,
  .care-grid article,
  .social-grid a,
  .contact-form {
    padding: 22px;
  }

}
