:root {
  --navy: #071a5f;
  --blue: #217bbb;
  --sky: #e8f5ff;
  --green: #82c63a;
  --mint: #ecf8df;
  --ink: #152033;
  --muted: #5b6678;
  --line: #dce6ef;
  --white: #ffffff;
  --paper: #fbfdf9;
  --coral: #f26c5b;
  --shadow: 0 18px 48px rgba(7, 26, 95, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 239, 0.8);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand img,
.site-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 8px 18px rgba(7, 26, 95, 0.14);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 6px;
  background: var(--green);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(130, 198, 58, 0.28);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 24px);
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/july-vet-logo.png");
  background-repeat: no-repeat;
  background-position: 58% 50%;
  background-size: min(84vw, 660px);
  opacity: 0.08;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 44%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #eef8ff 70%);
}

.hero-media {
  position: absolute;
  inset: 11% -24% auto auto;
  z-index: -1;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 45% 38%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12) 46%, transparent 47%),
    url("assets/july-vet-icon.jpg") center / 76% no-repeat,
    var(--sky);
  border-radius: 50%;
  opacity: 0.94;
  box-shadow: var(--shadow);
}

.hero-inner {
  width: min(100% - 2rem, var(--max));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  display: grid;
  align-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(3.6rem, 13vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: #253550;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.nav-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 26, 95, 0.22);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.button-quiet {
  background: var(--mint);
  color: var(--navy);
  border-color: rgba(130, 198, 58, 0.36);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 820px;
  margin: 2rem 0 0;
}

.trust-strip div {
  padding: 1rem;
  border: 1px solid rgba(33, 123, 187, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(7, 26, 95, 0.08);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 0.25rem 0 0;
  color: var(--navy);
  font-weight: 850;
}

section {
  scroll-margin-top: 92px;
}

.section-band,
.benefits,
.confidence,
.site-footer {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-band {
  background: var(--white);
}

.section-grid,
.promo-inner,
.section-heading,
.service-grid,
.benefit-list,
.process-steps,
.confidence,
.location,
.site-footer {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  gap: 1.5rem;
}

.body-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.body-copy p:last-child,
.section-heading p:last-child,
.confidence-text p:last-of-type {
  margin-bottom: 0;
}

.promo-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy);
  color: var(--white);
}

.promo-inner {
  display: grid;
  gap: 1.5rem;
}

.promo-section .section-kicker,
.promo-section h2 {
  color: var(--white);
}

.promo-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promo-list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.promo-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(130, 198, 58, 0.18);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
  text-align: left;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.benefit-list article,
.process-steps li,
.credential-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 26, 95, 0.06);
}

.service-card {
  min-height: 242px;
  padding: 1.25rem;
}

.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.benefit-list p,
.process-steps p,
.confidence-text p,
.location-copy p {
  color: var(--muted);
}

.benefits {
  background:
    linear-gradient(90deg, rgba(232, 245, 255, 0.72), rgba(236, 248, 223, 0.78)),
    var(--paper);
}

.benefit-list {
  display: grid;
  gap: 0.85rem;
}

.benefit-list article {
  min-height: 150px;
  padding: 1.2rem;
  border-left: 5px solid var(--green);
}

.process-steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 205px;
  padding: 1.25rem;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.confidence {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.confidence-text {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--navy);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.credential-card {
  overflow: hidden;
  margin: 0;
  background: var(--blue);
}

.credential-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.credential-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.location {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.location-copy address {
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.placeholder-line {
  margin-bottom: 0.4rem;
}

.location-actions {
  margin-top: 1.4rem;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sky);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding-top: 2.2rem;
  padding-bottom: 6.25rem;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  grid-template-columns: 44px auto;
  gap: 0.1rem 0.75rem;
  align-items: center;
}

.site-footer img {
  grid-row: span 2;
}

.site-footer strong {
  color: var(--navy);
}

.site-footer span {
  color: var(--muted);
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(7, 26, 95, 0.22);
}

@media (min-width: 560px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 780px) {
  .nav-links {
    display: flex;
  }

  .nav-shell {
    min-height: 78px;
  }

  .hero::before {
    background-position: 82% 58%;
    background-size: min(42vw, 620px);
    opacity: 0.12;
  }

  .hero-media {
    inset: 15% 2% auto auto;
    width: min(45vw, 620px);
  }

  .hero-inner {
    min-height: calc(100svh - 104px);
  }

  .hero-copy {
    width: min(58vw, 680px);
  }

  .section-grid,
  .promo-inner,
  .location,
  .confidence {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .promo-list {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    padding: 1.2rem;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 3rem;
  }
}

@media (max-width: 430px) {
  .nav-shell {
    width: min(100% - 1rem, var(--max));
  }

  .brand span {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 0.75rem;
  }

  .hero-inner,
  .section-grid,
  .promo-inner,
  .section-heading,
  .service-grid,
  .benefit-list,
  .process-steps,
  .confidence,
  .location,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .button {
    width: 100%;
  }

  .hero-actions .button-secondary {
    background: rgba(255, 255, 255, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
