:root {
  --paper: #f7f8f5;
  --mist: #e8eef1;
  --ink: #526877;
  --deep: #253d49;
  --accent: #9a6f73;
  --accent-strong: #7f5459;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(37, 61, 73, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 248, 245, 0.88);
  border-bottom: 1px solid rgba(82, 104, 119, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--deep);
}

.brand-mark {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
}

.brand-mark svg {
  width: 50px;
  height: 50px;
}

.brand strong {
  display: block;
  font-family: "Cherry Swash", "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.95;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
}

.site-nav a {
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  text-decoration: none;
}

.header-socials a {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(82, 104, 119, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: var(--deep);
}

.header-socials a:hover {
  color: var(--accent-strong);
  border-color: rgba(127, 84, 89, 0.32);
}

.header-socials .brand-icon {
  display: block;
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  fill: currentColor;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--accent-strong);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(127, 84, 89, 0.25);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(37, 61, 73, 0.22);
  color: var(--deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(82, 104, 119, 0.2);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-photo {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  isolation: isolate;
}

.photo-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.section-photo::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(247, 248, 245, 0.92), rgba(247, 248, 245, 0.62) 48%, rgba(247, 248, 245, 0.18));
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1552053831-71594a27632d?auto=format&fit=crop&w=1800&q=80");
}

.walk-bg {
  background-image: url("https://images.unsplash.com/photo-1505628346881-b72b27e84530?auto=format&fit=crop&w=1800&q=80");
}

.cat-bg {
  background-image: url("https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?auto=format&fit=crop&w=1800&q=80");
}

.hero {
  display: grid;
  align-items: center;
  padding-top: 84px;
}

.hero-inner {
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  font-size: clamp(64px, 11vw, 138px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
}

h3 {
  font-size: 30px;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 28px;
  color: var(--deep);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5;
}

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

.prompt-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(82, 104, 119, 0.16);
  border-top: 1px solid rgba(82, 104, 119, 0.16);
  border-bottom: 1px solid rgba(82, 104, 119, 0.16);
}

.prompt-strip p {
  margin: 0;
  padding: 9px 12px 10px;
  background: var(--paper);
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.05vw, 31px);
  line-height: 1.05;
  text-align: center;
}

.content-section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  content: "✓";
  font-weight: 800;
}

.image-card,
.portrait-card {
  margin: 0;
}

.image-card img,
.portrait-card img,
.contact-dog {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card figcaption {
  margin-top: 14px;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
}

.short-photo {
  min-height: 56vh;
}

.floating-note {
  position: absolute;
  left: clamp(20px, 8vw, 110px);
  bottom: clamp(28px, 9vw, 100px);
  width: min(460px, calc(100% - 40px));
  padding: 28px 30px;
  background: rgba(247, 248, 245, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note.right {
  right: clamp(20px, 8vw, 110px);
  left: auto;
}

.floating-note p {
  margin: 0;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.services-section {
  background: var(--mist);
}

.centered {
  text-align: center;
}

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

.service-card,
.details-grid > div,
.testimonial-card,
.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(82, 104, 119, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(37, 61, 73, 0.08);
}

.service-card {
  min-height: 310px;
  padding: 26px 24px;
}

.price {
  margin: 18px 0 14px;
  color: var(--accent-strong);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.details-grid > div {
  padding: 28px;
}

.details-grid ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.cat-photo {
  min-height: 58vh;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 450ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-height: 260px;
  padding: clamp(28px, 5vw, 54px);
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
}

.testimonial-card strong {
  color: var(--accent-strong);
  font-size: 16px;
  text-transform: uppercase;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(82, 104, 119, 0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--deep);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(82, 104, 119, 0.3);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--accent-strong);
}

.contact-section {
  background: #f1f4f1;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: start;
}

.contact-dog {
  aspect-ratio: 16 / 10;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(82, 104, 119, 0.24);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--deep);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.website-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 4vw, 54px);
  background: var(--deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-socials {
  gap: 48px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-socials a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: -2px;
  }

  .site-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(247, 248, 245, 0.98);
    border-bottom: 1px solid rgba(82, 104, 119, 0.16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
  }

  .prompt-strip,
  .service-grid,
  .details-grid,
  .two-column,
  .reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-bg {
    background-attachment: scroll;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 22px;
  }

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

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

  .header-cta {
    font-size: 12px;
  }

  .header-socials a {
    width: 24px;
    height: 24px;
  }

  .hero {
    min-height: 86vh;
  }

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

  .prompt-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section-inner {
    width: min(100% - 30px, 1120px);
  }

  .floating-note {
    padding: 22px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }
}
