:root {
  --ivory: #efece5;
  --sand: #d7c8b5;
  --clay: #ae8567;
  --walnut: #75553c;
  --olive: #676d51;
  --cream: #faf8f3;
  --white: #ffffff;
  --ink: #322e2a;
  --muted: #6f6861;
  --line: rgba(117, 85, 60, 0.16);
  --shadow: 0 22px 60px rgba(72, 56, 42, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

svg {
  display: block;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
}

.brand-mark svg {
  width: 26px;
  fill: var(--olive);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  color: var(--white);
  background: var(--olive);
}

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

.hero {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 680px;
  padding: 76px clamp(30px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.88), transparent 34%),
    linear-gradient(135deg, #f5f1e9 0%, var(--ivory) 58%, #e6ddd1 100%);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  margin: 22px 0 24px;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button-primary {
  color: var(--white);
  background: var(--walnut);
  box-shadow: 0 12px 26px rgba(117, 85, 60, 0.18);
}

.text-link {
  font-weight: 700;
}

.text-link span,
.service-card a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.text-link:hover span,
.service-card a:hover span {
  transform: translateX(4px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-row span::first-letter {
  color: var(--olive);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.arch-card {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 0.82;
  border-radius: 230px 230px 30px 30px;
  background: linear-gradient(160deg, #d9c9b7 0%, #cfb49b 100%);
  box-shadow: var(--shadow);
  overflow: visible;
}

.arch-card::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 210px 210px 20px 20px;
}


.hero-dog-photo {
  position: absolute;
  z-index: 2;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: cover;
  object-position: 50% 58%;
  border-radius: 206px 206px 18px 18px;
}
.dog-illustration {
  position: absolute;
  z-index: 2;
  left: 7%;
  bottom: 0;
  width: 86%;
  height: 88%;
  fill: rgba(250, 248, 243, 0.34);
  stroke: var(--walnut);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leaf {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  background: var(--olive);
  opacity: 0.9;
}

.leaf-one { top: 40px; right: -10px; transform: rotate(-20deg); }
.leaf-two { top: 85px; right: 24px; transform: rotate(40deg) scale(.8); }
.leaf-three { bottom: 120px; left: -20px; transform: rotate(210deg) scale(.9); }

.rating-card {
  position: absolute;
  z-index: 4;
  right: -28px;
  bottom: 30px;
  min-width: 180px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 32px rgba(60, 45, 33, 0.13);
  backdrop-filter: blur(10px);
}

.rating-card span,
.rating-card strong,
.rating-card small {
  display: block;
}

.stars {
  color: var(--clay);
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.rating-card strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.rating-card small {
  color: var(--muted);
}

.intro-strip {
  width: min(1050px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-strip div {
  min-height: 102px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-strip div + div {
  border-left: 1px solid var(--line);
}

.intro-strip strong {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.intro-strip span {
  font-weight: 700;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 44px;
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  letter-spacing: -0.045em;
}

.section-heading p {
  margin-bottom: 8px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--olive);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--walnut);
  background: var(--ivory);
  font-size: 1.45rem;
}

.featured .service-icon {
  color: var(--olive);
  background: var(--white);
}

.service-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
}

.featured .service-number {
  color: var(--sand);
}

.service-card h3 {
  margin: 68px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.service-card p {
  color: var(--muted);
}

.featured p {
  color: rgba(255,255,255,0.76);
}

.service-card a {
  margin-top: auto;
  font-weight: 700;
}

.process {
  padding-top: 20px;
}

.process-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ivory);
}

.process-copy {
  padding: clamp(42px, 6vw, 78px);
}

.process-copy h2 {
  max-width: 670px;
  margin-bottom: 40px;
}

.process-copy ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.process-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.process-copy li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-weight: 700;
}

.process-copy li strong {
  display: block;
  margin-bottom: 4px;
}

.process-copy li p {
  margin: 0;
  color: var(--muted);
}

.process-quote {
  padding: clamp(42px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--walnut);
}

.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--sand);
}

blockquote {
  margin: 28px 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.35;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-author > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--walnut);
  background: var(--sand);
  font-weight: 800;
}

.quote-author strong,
.quote-author small {
  display: block;
}

.quote-author small {
  color: rgba(255,255,255,0.65);
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.about-art svg {
  position: relative;
  z-index: 2;
  width: 76%;
  fill: rgba(255,255,255,0.45);
  stroke: var(--walnut);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-large {
  width: 420px;
  height: 420px;
  background: var(--sand);
}

.circle-small {
  right: 5%;
  top: 10%;
  width: 120px;
  height: 120px;
  background: var(--ivory);
}

.about-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-stats {
  margin-top: 38px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 44px;
  padding: clamp(46px, 7vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--olive);
}

.cta-section .eyebrow {
  color: var(--sand);
}

.cta-section h2 {
  max-width: 700px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.cta-actions {
  min-width: max-content;
  display: grid;
  gap: 12px;
}

.button-light {
  color: var(--olive);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.48);
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
}

@media (max-width: 980px) {
  .main-nav a:not(.nav-cta) { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p,
  .hero-actions,
  .trust-row {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-visual {
    padding: 10px 40px 0;
  }

  .section-heading,
  .process-card,
  .about {
    grid-template-columns: 1fr;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .about-art {
    min-height: 430px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    min-height: 80px;
  }

  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: 0.61rem; }
  .brand-mark { width: 40px; height: 40px; }
  .nav-cta { min-height: 42px; padding: 0 15px; font-size: 0.82rem; }

  .hero {
    width: calc(100% - 18px);
    min-height: auto;
    padding: 48px 22px 66px;
    border-radius: 24px;
  }

  h1 { font-size: clamp(3rem, 15vw, 4.35rem); }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }
  .trust-row { align-items: center; flex-direction: column; gap: 8px; }
  .hero-visual { padding: 10px 4px 0; }
  .rating-card { right: -4px; bottom: 20px; }
  .leaf-one { right: -4px; }

  .intro-strip {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .intro-strip div { min-height: 74px; }
  .intro-strip div + div { border-left: 0; border-top: 1px solid var(--line); }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 90px 0;
  }

  .section-heading { gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 330px; }

  .process-copy,
  .process-quote { padding: 38px 26px; }

  .about-art { min-height: 340px; }
  .circle-large { width: min(330px, 90vw); height: min(330px, 90vw); }
  .circle-small { width: 90px; height: 90px; }
  .about-stats { grid-template-columns: 1fr; }

  .cta-section {
    width: calc(100% - 18px);
    margin-bottom: 28px;
    padding: 44px 24px;
    border-radius: 24px;
  }

  .cta-actions { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-details { justify-content: flex-start; }
}

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