:root {
  --navy: #123e5c;
  --navy-dark: #082a40;
  --blue: #1d79aa;
  --blue-light: #eaf5fa;
  --orange: #ef9645;
  --orange-dark: #a94f09;
  --cream: #fcfaf6;
  --warm: #f6eee3;
  --white: #fff;
  --ink: #20303a;
  --muted: #53636d;
  --line: #d6e0e4;
  --shadow: 0 18px 48px rgba(26, 62, 82, .12);
  --radius: 20px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

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

a {
  color: var(--navy);
  text-underline-offset: 4px;
}

a:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-dark);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.welcome-bar {
  color: var(--navy-dark);
  background: #f8d8b7;
  font-size: 15px;
  font-weight: 700;
}

.welcome-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.welcome-inner a { color: var(--navy-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, .98);
  border-bottom: 1px solid rgba(18, 62, 92, .12);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 168px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav a,
.client-link {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.client-link:hover { color: var(--blue); text-decoration: underline; }

.header-links { display: flex; align-items: center; gap: 18px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.button-large { min-height: 58px; padding: 15px 28px; font-size: 18px; }

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

.button-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

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

.button-secondary:hover { background: var(--blue-light); }

.hero {
  background:
    radial-gradient(circle at 4% 8%, rgba(239, 150, 69, .16), transparent 30%),
    radial-gradient(circle at 93% 7%, rgba(29, 121, 170, .12), transparent 32%),
    var(--cream);
}

.hero-grid {
  min-height: 625px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 66px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2, h3 {
  margin-top: 0;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(50px, 5.4vw, 70px);
  font-weight: 700;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 55px);
  letter-spacing: -.03em;
}

h3 { margin-bottom: 12px; font-size: 27px; }

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.5;
}

.hero-options {
  max-width: 610px;
  margin: 22px 0 0;
  padding: 17px 20px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
}

.hero-options span { padding: 0 5px; color: var(--orange-dark); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 26px;
  font-size: 16px;
}

.hero-trust > div:first-child { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.stars { color: #d56c10; letter-spacing: .06em; }

.pet-note {
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 72%;
  background: #f5c28c;
  border-radius: 28px;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px 28px 8px 28px;
  box-shadow: var(--shadow);
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: -22px;
  z-index: 2;
  padding: 13px 17px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(26, 62, 82, .12);
  font-size: 15px;
  font-weight: 800;
}

.reassurance { background: var(--white); border-block: 1px solid var(--line); }

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 26px 0;
}

.reassurance-grid > div {
  display: grid;
  gap: 2px;
  padding: 2px 30px;
  border-right: 1px solid var(--line);
}

.reassurance-grid > div:first-child { padding-left: 0; }
.reassurance-grid > div:last-child { border-right: 0; }
.reassurance-grid strong { color: var(--navy-dark); font-size: 18px; }
.reassurance-grid span { color: var(--muted); font-size: 15px; }

.section { padding: 90px 0; }

.section-heading { max-width: 740px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 20px; }

.services { background: var(--white); }

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

.service-card {
  position: relative;
  padding: 34px 34px 32px 84px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card.home-card { background: #f8ede1; border-color: #e7c39d; }

.service-number {
  position: absolute;
  top: 35px;
  left: 28px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-card p { margin-bottom: 0; color: var(--muted); }
.service-options { padding-top: 16px; font-size: 16px; }
.service-options strong { color: var(--navy-dark); }

.extras-panel {
  margin-top: 30px;
  padding: 25px 28px;
  color: #e4edf2;
  background: var(--navy-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.extras-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 30px;
  align-items: end;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.extras-heading .eyebrow { color: #f5b77c; }
.extras-heading h3 { margin: 0; color: var(--white); font-size: 29px; }
.extras-heading > p { margin: 0; color: #d5e1e7; font-size: 16px; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 17px 0 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
}

.extras-grid article { padding: 15px 17px; background: #10364e; }
.extras-grid h4 { margin: 0 0 4px; color: var(--white); font-size: 16px; line-height: 1.35; }
.extras-grid p { margin: 0; color: #cad9e1; font-size: 14px; line-height: 1.45; }

.extras-link { color: var(--white); font-weight: 800; }
.extras-link:hover { color: #ffd4ad; }

.quote-guide { background: var(--warm); }

.quote-guide-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.quote-guide-copy > p:not(.eyebrow, .quote-help) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

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

.quote-help { margin: 18px 0 0; color: var(--muted); font-size: 16px; }
.quote-help a { color: var(--navy-dark); font-weight: 800; }

.quote-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e5d6c4;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(26, 62, 82, .07);
}

.quote-step-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}

.quote-steps h3 { margin: 0 0 5px; font-size: 23px; }
.quote-steps p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }

.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 76px;
}

.about-photos { position: relative; padding: 0 52px 62px 0; }

.about-main-photo {
  width: 100%;
  height: 535px;
  object-fit: cover;
  border-radius: 8px 28px 28px 28px;
  box-shadow: var(--shadow);
}

.about-detail-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 240px;
  object-fit: cover;
  border: 8px solid var(--cream);
  border-radius: 20px 6px 20px 20px;
}

.about-copy > p:not(.eyebrow, .signature) { color: var(--muted); font-size: 20px; }

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.about-values span {
  position: relative;
  padding-left: 22px;
  color: var(--navy-dark);
  font-size: 16px;
  font-weight: 800;
}

.about-values span::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
}

.signature {
  margin: 24px 0 20px;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 700;
}

.simple-link { color: var(--navy); font-weight: 800; }

.work { background: var(--white); }

.work-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.work-heading h2 { margin-bottom: 0; }
.work-heading > p { max-width: 310px; }

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

.gallery figure {
  position: relative;
  grid-column: span 2;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-light);
}

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

.gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 14px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, .94);
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.gallery figure:nth-child(n + 4) { grid-column: span 3; }

.gallery-source {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.gallery-source a { font-weight: 800; }

.reviews { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.large-rating {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.rating-box > div { display: grid; gap: 2px; }
.rating-box strong { color: var(--muted); font-size: 15px; }

.quotes { display: grid; gap: 14px; }

.quotes blockquote {
  margin: 0;
  padding: 25px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 12px;
}

.quotes p { margin: 0 0 8px; color: var(--navy-dark); font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 700; }
.quotes footer { color: var(--muted); font-size: 15px; font-weight: 700; }
.review-label {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.questions { background: var(--white); }

.questions-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.questions-intro { color: var(--muted); font-size: 19px; }
.questions-intro a { font-weight: 800; }

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

.answer-list article {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.answer-list h3 { font-size: 22px; }
.answer-list p { margin: 0; color: var(--muted); font-size: 16px; }

.final-cta { background: #eaf5fa; border-top: 1px solid #cadee8; }

.final-inner {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  padding: 54px 0;
}

.final-inner h2 { margin-bottom: 10px; }
.final-inner p:last-child { margin: 0; color: var(--muted); font-size: 19px; }
.final-buttons { display: grid; gap: 12px; }

.site-footer { color: #dce7ec; background: var(--navy-dark); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .8fr;
  gap: 58px;
  padding: 56px 0 40px;
}

.footer-brand img { width: 210px; padding: 9px; background: var(--white); border-radius: 10px; }
.footer-brand p { max-width: 440px; }

.site-footer h2 { margin-bottom: 12px; color: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 19px; }
.site-footer a { display: block; margin: 8px 0; color: var(--white); }
.site-footer p { margin: 8px 0 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 15px;
}

.footer-bottom a { margin: 0; }
.mobile-actions { display: none; }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .header-links { margin-left: auto; }
  .client-link { display: none; }
  .hero-grid, .about-grid { gap: 42px; }
  .quote-guide-grid { gap: 42px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  body { padding-bottom: 72px; font-size: 17px; }
  .shell { width: min(100% - 28px, 1140px); }
  .welcome-bar { display: none; }
  .header-inner { min-height: 78px; }
  .brand img { width: 142px; }
  .header-links .button { min-height: 46px; padding: 10px 14px; font-size: 14px; }

  .hero-grid,
  .about-grid,
  .quote-guide-grid,
  .reviews-grid,
  .questions-grid,
  .final-inner { grid-template-columns: 1fr; }

  .hero-grid { min-height: 0; gap: 52px; padding: 54px 0 64px; }
  h1 { font-size: clamp(48px, 15vw, 64px); }
  h2 { font-size: clamp(36px, 10vw, 46px); }
  .hero-lead { font-size: 21px; }
  .hero-options { padding: 16px 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-photo img { height: 410px; }
  .hero-photo::before { right: -8px; bottom: -10px; }
  .pet-note { padding-left: 0; border-left: 0; }

  .reassurance-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .reassurance-grid > div { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .reassurance-grid > div:last-child { border-bottom: 0; }

  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 32px; }
  .service-grid, .gallery, .answer-list, .footer-grid { grid-template-columns: 1fr; }
  .gallery figure,
  .gallery figure:nth-child(n + 4) { grid-column: 1 / -1; }
  .service-card { padding: 28px 24px 26px 68px; }
  .service-number { top: 29px; left: 22px; }
  .extras-panel { padding: 24px 20px; }
  .extras-heading { grid-template-columns: 1fr; gap: 12px; }
  .extras-grid { grid-template-columns: 1fr; }
  .quote-guide-grid { gap: 36px; }
  .quote-guide-actions { display: grid; grid-template-columns: 1fr; }
  .quote-steps li { padding: 21px 19px; }

  .about-grid { gap: 42px; }
  .about-photos { padding: 0 34px 48px 0; }
  .about-main-photo { height: 450px; }
  .about-detail-photo { height: 190px; border-width: 6px; }

  .work-heading { align-items: start; flex-direction: column; gap: 8px; }
  .work-heading > p { max-width: none; }
  .gallery figure { min-height: 410px; }

  .reviews-grid, .questions-grid { gap: 34px; }
  .final-inner { gap: 26px; min-height: 0; }
  .footer-grid { gap: 28px; padding-top: 46px; }
  .footer-bottom { flex-direction: column; }
  .about-values { grid-template-columns: 1fr; }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    border-top: 2px solid var(--white);
    box-shadow: 0 -7px 22px rgba(8, 42, 64, .2);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    color: var(--white);
    background: var(--navy-dark);
    font-size: 17px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-actions a:last-child { color: var(--navy-dark); background: #f4ad6b; }
}

@media (max-width: 420px) {
  .brand img { width: 122px; }
  .header-links .button { padding-inline: 11px; }
  .hero-photo img { height: 350px; }
  .about-main-photo { height: 390px; }
  .gallery figure { min-height: 360px; }
  .quote-steps li { grid-template-columns: 44px 1fr; gap: 13px; }
  .quote-step-number { width: 42px; height: 42px; font-size: 18px; }
}

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

@media print {
  .welcome-bar, .site-header, .mobile-actions, .hero-actions, .final-buttons { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
}
