:root {
  --ink: #10231f;
  --muted: #66756f;
  --bg: #f7efe3;
  --soft: #fffaf1;
  --green: #123f37;
  --green-2: #1d6656;
  --mint: #dbeee3;
  --orange: #d58a3c;
  --orange-dark: #a7652b;
  --line: rgba(16, 35, 31, 0.12);
  --shadow: 0 24px 80px rgba(16, 35, 31, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 76px 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(var(--container), calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 18px 60px rgba(16, 35, 31, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 12px 32px rgba(18, 63, 55, 0.22);
}

.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

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

.brand strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(16, 35, 31, 0.78);
  font-size: 14px;
  font-weight: 820;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(18, 63, 55, 0.08);
}

.site-nav .nav-call {
  color: var(--soft);
  background: var(--green);
}

.site-nav .nav-call:hover {
  color: var(--soft);
  background: var(--green-2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--soft);
  transition: 0.25s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(213, 138, 60, 0.25), transparent 31%),
    radial-gradient(circle at 5% 76%, rgba(29, 102, 86, 0.21), transparent 36%),
    linear-gradient(135deg, #fff8ed 0%, #f2eadc 50%, #dbeee3 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(18, 63, 55, 0.08);
  filter: blur(2px);
}

.hero-bg::before {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: 8%;
}

.hero-bg::after {
  width: 220px;
  height: 220px;
  right: 12%;
  top: 14%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

figure {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.06em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.6vw, 94px);
  line-height: 0.91;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-text,
.lead,
.clinic-copy p,
.story-content p,
.location-card p,
.final-box p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: clamp(18px, 2.1vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 920;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--soft);
  background: var(--green);
  box-shadow: 0 16px 40px rgba(18, 63, 55, 0.22);
}

.btn-primary:hover {
  background: var(--green-2);
  box-shadow: 0 22px 52px rgba(18, 63, 55, 0.27);
}

.btn-ghost {
  color: var(--green);
  border-color: rgba(18, 63, 55, 0.18);
  background: rgba(255, 250, 241, 0.66);
}

.btn-light {
  color: var(--green);
  background: var(--soft);
}

.full {
  width: 100%;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.quick-info article {
  padding: 18px;
  border: 1px solid rgba(18, 63, 55, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 12px 34px rgba(16, 35, 31, 0.06);
}

.quick-info span,
.quick-info strong {
  display: block;
}

.quick-info span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: 15px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 710px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 12px solid rgba(255, 250, 241, 0.78);
  border-radius: 42px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  top: 0;
  right: 0;
  width: min(440px, 74%);
  height: 610px;
}

.hero-card-puppy {
  left: 0;
  bottom: 30px;
  width: min(330px, 54%);
  height: 410px;
  border-radius: 36px;
}

.hero-card-clinic {
  right: 14px;
  bottom: 0;
  width: min(260px, 43%);
  height: 330px;
  border-radius: 34px;
}

.intro {
  background: var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.lead {
  margin-bottom: 0;
}

.services {
  background: #f4eadb;
}

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

.service-card {
  min-height: 284px;
  padding: 28px;
  border: 1px solid rgba(18, 63, 55, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 18px 60px rgba(16, 35, 31, 0.07);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(16, 35, 31, 0.12);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-photo {
  overflow: hidden;
  height: 210px;
  margin: -14px -14px 24px;
  border-radius: 26px;
  background: var(--mint);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--mint);
}

.service-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.72;
}

.service-card.highlight {
  color: var(--soft);
  background: var(--green);
}

.service-card.highlight h3,
.service-card.highlight p {
  color: var(--soft);
}

.service-card.highlight p {
  opacity: 0.78;
}

.service-card.highlight .service-icon {
  background: rgba(255, 255, 255, 0.12);
}

.service-card.highlight .service-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.clinic {
  background: var(--soft);
}

.clinic-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 54px;
  align-items: center;
}

.clinic-copy {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 950;
  border-bottom: 2px solid var(--orange);
}

.clinic-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 255px 255px;
  gap: 16px;
}

.clinic-gallery figure {
  overflow: hidden;
  border-radius: 30px;
  background: var(--mint);
  box-shadow: 0 16px 46px rgba(16, 35, 31, 0.12);
}

.clinic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-gallery .gallery-large {
  grid-row: 1 / 3;
}

.care-story {
  background: linear-gradient(180deg, #fffaf1, #f7efe3);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-photos {
  position: relative;
  min-height: 620px;
}

.story-photos figure {
  overflow: hidden;
  position: absolute;
  border: 10px solid rgba(255, 250, 241, 0.78);
  background: var(--mint);
  box-shadow: var(--shadow);
}

.story-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-main {
  left: 0;
  top: 0;
  width: 72%;
  height: 540px;
  border-radius: 44px;
}

.story-photo-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 310px;
  border-radius: 34px;
}

.story-content p {
  max-width: 650px;
}

.story-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.story-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.story-list strong {
  font-size: 18px;
}

.story-list span {
  color: var(--muted);
  line-height: 1.6;
}

.visit-info {
  color: var(--soft);
  background: var(--green);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 44px;
  align-items: start;
}

.visit-heading h2,
.visit-heading .eyebrow,
.visit-cards h3,
.visit-cards p {
  color: var(--soft);
}

.visit-cards {
  display: grid;
  gap: 12px;
}

.visit-cards article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.visit-cards h3 {
  margin-bottom: 8px;
}

.visit-cards p {
  margin-bottom: 0;
  opacity: 0.78;
  line-height: 1.65;
}

.location {
  background: linear-gradient(180deg, #f7efe3, #fffaf1);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.location-card,
.map-shell {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.location-card {
  padding: 36px;
  background: var(--soft);
}

.location-card h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--green);
  font-weight: 920;
  background: rgba(219, 238, 227, 0.42);
}

.map-shell {
  overflow: hidden;
  min-height: 520px;
  background: var(--mint);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.78) contrast(0.95);
}

.final-cta {
  background: var(--green);
}

.final-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.final-content,
.final-box .btn {
  position: relative;
  z-index: 2;
}

.final-box h2,
.final-box p,
.final-box .eyebrow {
  color: var(--soft);
}

.final-box p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: 0.78;
}

.paw-bg {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

.paw-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.paw-bg-1 { width: 180px; height: 180px; left: 7%; top: -28px; transform: rotate(-18deg); }
.paw-bg-2 { width: 115px; height: 115px; left: 42%; bottom: 10px; transform: rotate(24deg); opacity: 0.06; }
.paw-bg-3 { width: 240px; height: 240px; right: -36px; top: 18px; transform: rotate(11deg); opacity: 0.09; }
.paw-bg-4 { width: 82px; height: 82px; left: 28%; top: 44px; transform: rotate(38deg); opacity: 0.07; }
.paw-bg-5 { width: 140px; height: 140px; right: 28%; bottom: -52px; transform: rotate(-32deg); opacity: 0.055; }

.site-footer {
  padding: 38px 0 96px;
  color: rgba(255, 250, 241, 0.72);
  background: #0b2823;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid strong {
  display: block;
  color: var(--soft);
  font-size: 24px;
  letter-spacing: -0.04em;
}

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

.footer-grid div:last-child {
  display: grid;
  gap: 7px;
  text-align: right;
}

.footer-grid a {
  color: var(--soft);
  font-weight: 920;
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 18px 55px rgba(16, 35, 31, 0.2);
  backdrop-filter: blur(18px);
}

.mobile-contact-bar a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 950;
  color: var(--soft);
  background: var(--orange);
}

.mobile-contact-bar a:last-child {
  color: var(--green);
  background: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .clinic-grid,
  .story-grid,
  .visit-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .intro-grid,
  .clinic-grid,
  .story-grid {
    gap: 52px;
  }

  .hero-visual {
    min-height: 680px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .clinic-copy {
    max-width: 760px;
  }

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

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 28px;
    background: var(--soft);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
    text-align: center;
    background: rgba(18, 63, 55, 0.06);
  }

  .final-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-pad {
    padding: 78px 0;
  }

  .section-pad-sm {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .hero-text,
  .lead,
  .clinic-copy p,
  .story-content p,
  .location-card p,
  .final-box p {
    font-size: 17px;
  }

  .hero-actions,
  .quick-info {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-card {
    border-width: 8px;
  }

  .hero-card-main {
    width: 72%;
    height: 500px;
    right: 0;
  }

  .hero-card-puppy {
    width: 52%;
    height: 290px;
    left: 0;
    bottom: 30px;
  }

  .hero-card-clinic {
    width: 42%;
    height: 230px;
    right: 2px;
    bottom: 0;
  }

  .service-grid,
  .clinic-gallery {
    grid-template-columns: 1fr;
  }

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

  .clinic-gallery {
    grid-template-rows: auto;
  }

  .clinic-gallery .gallery-large {
    grid-row: auto;
  }

  .clinic-gallery figure {
    height: 330px;
  }

  .story-photos {
    min-height: 540px;
  }

  .story-photo-main {
    width: 76%;
    height: 460px;
  }

  .story-photo-small {
    width: 52%;
    height: 260px;
  }

  .story-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visit-grid {
    gap: 24px;
  }

  .location-card,
  .final-box {
    padding: 26px;
    border-radius: 30px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 360px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid div:last-child {
    text-align: left;
  }

  .mobile-contact-bar {
    display: grid;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .hero-card-main {
    width: 76%;
    height: 460px;
  }

  .hero-card-puppy {
    width: 55%;
    height: 260px;
  }

  .hero-card-clinic {
    width: 44%;
    height: 210px;
  }

  .service-photo {
    height: 190px;
  }
}
