:root {
  --cream: #f8f4e9;
  --paper: #fdfaf1;
  --brown: #422919;
  --muted: #776653;
  --yellow: #edb83e;
  --line: #d9ceba;
  --terracotta: #aa5238;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--yellow);
  color: var(--brown);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible,
input:focus-visible + span {
  outline: 3px solid var(--terracotta);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(42px, 4.3vw, 66px);
  line-height: 1.04;
}
h2 em {
  font-weight: 400;
}
h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
p {
  line-height: 1.65;
}
.wrap {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  line-height: 1.5;
}
.header {
  height: 110px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.brand svg {
  width: 37px;
  height: 37px;
  fill: var(--brown);
  transform: rotate(-14deg);
}
.brand-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 2px;
}
.header nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.header nav a {
  padding: 12px 0;
  transition: color 0.2s;
}
.header nav a:hover {
  color: var(--terracotta);
}
.header-contact {
  border: 1px solid var(--brown);
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-contact:hover {
  background: var(--brown);
  color: var(--cream);
}
.header-contact span {
  font-size: 22px;
  line-height: 1;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  position: relative;
  min-height: 680px;
  padding-top: 35px;
  overflow: hidden;
}
.hero-copy {
  z-index: 1;
  padding-top: 23px;
  padding-bottom: 45px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}
.experience-tag {
  display: inline-block;
  background: var(--yellow);
  border-radius: 3px;
  padding: 7px 12px;
  margin-top: 33px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  font-weight: 700;
  transform: rotate(-2deg);
}
h1 {
  font-size: clamp(72px, 7.65vw, 110px);
  line-height: 0.96;
  margin-top: 23px;
  margin-bottom: 24px;
  position: relative;
}
.underlined {
  position: relative;
  display: inline-block;
}
.underlined:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 1%;
  width: 100%;
  height: 7px;
  border-top: 3px solid var(--terracotta);
  border-radius: 50%;
  transform: rotate(-3deg);
}
.hero-description {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 20px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 0.2s,
    background 0.2s;
  min-height: 60px;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button-dark {
  background: var(--brown);
  color: var(--cream);
}
.button-dark:hover {
  background: #613c23;
}
.hero-note {
  font-size: 11px;
  margin-top: 12px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  align-self: end;
  height: 640px;
  min-width: 0;
}
.hero-picture {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
}
.hero-price {
  position: absolute;
  top: 24%;
  left: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--yellow);
  transform: rotate(-9deg);
  box-shadow: 0 5px 18px #42291912;
}
.hero-price strong {
  font-size: 32px;
  letter-spacing: -.06em;
}
.hero-price > span {
  font-size: 10px;
  margin-top: 3px;
}
.hero-photo {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 50% bottom;
}
.photo-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  background: var(--paper);
  padding: 12px 17px;
  font-size: 11px;
  transform: rotate(-3deg);
  box-shadow: 0 3px 14px #42291912;
}
.handwritten {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.15;
  transform: rotate(8deg);
}
.handwritten svg {
  width: 210px;
  margin-left: -95px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.trust-strip {
  background: var(--yellow);
  padding-block: 22px;
  border-block: 1px solid #42291916;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
}
.strip-star {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}
.section-heading .eyebrow {
  margin-bottom: 23px;
}
.section-heading {
  position: relative;
  margin-bottom: 45px;
}
.section-intro {
  position: absolute;
  right: 0;
  bottom: 3px;
  font-size: 14px;
  color: var(--muted);
  max-width: 36%;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.service-card {
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.dog-card {
  background: #eee7d7;
}
.cat-card {
  background: #fdfaf1;
}
.card-index {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.pet-icon {
  position: absolute;
  top: 27px;
  right: 29px;
  width: 62px;
  height: 56px;
  fill: none;
  stroke: var(--brown);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pet-icon circle {
  fill: var(--brown);
  stroke: none;
}
.service-card h3 {
  margin-top: 45px;
  margin-bottom: 14px;
}
.service-card > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 390px;
  flex: 1;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 31px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.price {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.price span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}
.card-bottom > a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--brown);
  border-radius: 50%;
  font-size: 28px;
  transition: background 0.2s;
}
.card-bottom > a:hover {
  background: var(--yellow);
}
.service-note {
  margin-top: 17px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
}
.case-section {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  padding-block: 55px;
}
.case-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 22px;
}
.case-copy h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-block: 12px;
  border-bottom: 1px solid var(--brown);
  font-size: 12px;
  font-weight: 700;
  margin-top: 20px;
}
.text-link:hover {
  color: var(--terracotta);
}
.text-link span {
  font-size: 23px;
}
.case-image {
  position: relative;
  padding-bottom: 32px;
}
.case-image img {
  width: 100%;
  mix-blend-mode: darken;
}
.case-stamp {
  display: block;
  width: max-content;
  border: 1px solid var(--terracotta);
  padding: 10px 17px;
  text-align: center;
  color: var(--terracotta);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  line-height: 1.7;
  transform: rotate(-8deg);
  margin: 0 8% 0 auto;
}
.case-stamp strong {
  font-size: 13px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 85px;
}
.about .eyebrow {
  margin-bottom: 23px;
}
.experience-number {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--serif);
  font-size: 100px;
  letter-spacing: -0.07em;
  line-height: 1;
  margin-top: 36px;
  color: var(--terracotta);
}
.experience-number span {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--muted);
}
.about-copy {
  padding-top: 37px;
}
.about-copy > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-copy .lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--brown);
  letter-spacing: -0.03em;
}
.about-note {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  gap: 16px;
}
.about-note > span {
  font-size: 29px;
  color: var(--terracotta);
}
.about-note h3 {
  font-size: 16px;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
  line-height: 1.4;
}
.about-note p {
  font-size: 13px;
  color: var(--muted);
}
.how-section {
  background: #eee7d7;
}
.how-section .section {
  padding-block: 80px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.step-number {
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #cbbc9f;
  margin-bottom: 22px;
  color: var(--terracotta);
}
.steps h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  max-width: 300px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 65px;
}
.faq .eyebrow {
  margin-bottom: 23px;
}
.faq h2 {
  font-size: 54px;
}
.faq-aside {
  font-size: 13px;
  margin-top: 23px;
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 30px 24px 0;
}
summary:hover {
  color: var(--terracotta);
}
.contact-shell {
  background: var(--brown);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  padding-top: 76px;
  padding-bottom: 65px;
}
.contact-copy .eyebrow {
  font-size: 9px;
  color: #e2b55e;
  letter-spacing: 0.11em;
  margin-bottom: 24px;
}
.contact h2 {
  font-size: clamp(43px, 4.8vw, 67px);
  line-height: 1.07;
  letter-spacing: -0.05em;
}
.contact h2 em {
  color: #e9bf67;
}
.lawyer-image {
  display: block;
  width: 310px;
  max-width: 100%;
  margin: 28px 0 0 65px;
  transform: rotate(-4deg);
}
.lawyer-image img {
  width: 100%;
  border-radius: 8px;
}
.contact-card {
  background: var(--cream);
  color: var(--brown);
  padding: 36px;
  border-radius: 10px;
  align-self: center;
}
.contact-card > .eyebrow {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 13px;
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 35px;
  letter-spacing: -0.05em;
}
.pet-choice {
  border: 0;
  margin: 23px 0 16px;
  padding: 0;
  display: flex;
  gap: 10px;
}
.pet-choice label {
  position: relative;
  flex: 1;
}
.pet-choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.pet-choice span {
  display: block;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 13px;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.pet-choice input:checked + span {
  border-color: var(--brown);
  background: var(--brown);
  color: var(--cream);
}
.message-preview {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 21px;
  min-height: 60px;
}
.button-yellow {
  background: var(--yellow);
  width: 100%;
  padding: 18px 22px;
  font-size: 13px;
}
.button-yellow:hover {
  background: #f4c85a;
}
.contact-other {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.contact-other a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 5px;
  font-size: 11px;
}
.contact-other a:hover {
  border-color: var(--brown);
}
.contact-other a span {
  font-size: 18px;
}
.phone-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.phone-block > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 7px;
}
.phone-block a {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  padding-block: 5px;
}
.contact-note {
  font-size: 9px;
  margin-top: 13px;
  color: var(--muted);
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 30px;
  font-size: 10px;
  color: var(--muted);
}
.footer-brand {
  font-weight: 700;
  color: var(--brown);
}
.footer > a:last-child {
  padding: 12px 0;
}
.mobile-contact {
  display: none;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--brown);
  color: var(--cream);
  padding: 15px;
  border-radius: 4px;
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1600px) {
  .hero-visual {
    height: 690px;
  }
  .hero {
    min-height: 730px;
  }
  h1 {
    font-size: 116px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header {
    height: 95px;
  }
  .hero {
    min-height: 540px;
  }
  .hero-visual {
    height: 520px;
  }
  .hero h1 {
    font-size: clamp(60px, 8vw, 86px);
  }
  .hero-copy {
    padding-top: 12px;
  }
  .experience-tag {
    margin-top: 27px;
    font-size: 9px;
  }
  .hero-description {
    font-size: 16px;
  }
  .handwritten {
    display: none;
  }
  .trust-inner {
    font-size: 10px;
    gap: 12px;
  }
  .section {
    padding-block: 80px;
  }
  .about {
    gap: 45px;
  }
  .contact {
    gap: 35px;
  }
  .contact-card {
    padding: 28px;
  }
  .phone-block a {
    font-size: 25px;
  }
  .section-intro {
    max-width: 34%;
    font-size: 12px;
  }
  .service-card {
    padding: 28px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .faq {
    gap: 35px;
  }
  .faq h2 {
    font-size: 46px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 84px;
    gap: 16px;
  }
  .brand {
    font-size: 28px;
    gap: 7px;
  }
  .brand svg {
    width: 32px;
    height: 32px;
  }
  .brand-sub {
    font-size: 8px;
  }
  .header nav {
    display: none;
  }
  .header-contact {
    padding: 11px 17px;
    gap: 18px;
    font-size: 11px;
    min-height: 44px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 26px;
    overflow: hidden;
  }
  .hero-copy {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.11em;
  }
  .experience-tag {
    font-size: 8px;
    margin-top: 27px;
    padding: 7px 9px;
  }
  .hero h1 {
    font-size: clamp(66px, 13.8vw, 104px);
    line-height: 0.98;
    margin-top: 23px;
    margin-bottom: 25px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero .button {
    min-height: 57px;
    padding: 18px 23px;
    font-size: 13px;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 10px;
  }
  .hero-visual {
    height: auto;
    aspect-ratio: 4 / 5;
    width: min(100%, 460px);
    justify-self: center;
    margin-top: 27px;
  }
  .hero-price {
    width: 88px;
    height: 88px;
    left: 4%;
    top: 20%;
  }
  .hero-price strong {
    font-size: 27px;
  }
  .hero-price > span {
    font-size: 9px;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }
  .photo-caption {
    font-size: 10px;
    top: -8px;
    bottom: auto;
    right: 14px;
    padding: 10px 12px;
  }
  .trust-strip {
    padding-block: 18px;
  }
  .trust-inner {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 12px;
    row-gap: 10px;
    font-size: 10px;
  }
  .trust-inner > span:first-child {
    flex-basis: 100%;
    text-align: center;
    font-size: 12px;
  }
  .trust-inner .strip-star {
    font-size: 17px;
  }
  .trust-inner > span:nth-child(2) {
    display: none;
  }
  .section {
    padding-block: 65px;
  }
  h2 {
    font-size: 43px;
    letter-spacing: -0.055em;
  }
  .eyebrow {
    font-size: 9px;
  }
  .section-heading {
    margin-bottom: 29px;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .section-intro {
    position: static;
    max-width: none;
    font-size: 13px;
    margin-top: 20px;
  }
  .section-intro br {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 28px;
    border-radius: 8px;
  }
  .service-card h3 {
    font-size: 25px;
    margin-top: 42px;
  }
  .service-card > p {
    font-size: 14px;
    max-width: none;
  }
  .pet-icon {
    width: 59px;
  }
  .card-bottom {
    margin-top: 25px;
    padding-top: 20px;
  }
  .price {
    font-size: 37px;
  }
  .service-note {
    text-align: left;
    font-size: 11px;
    line-height: 1.6;
  }
  .case-section {
    grid-template-columns: 1fr;
    padding-block: 38px;
    gap: 28px;
  }
  .case-copy h2 {
    font-size: 44px;
  }
  .case-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.11em;
  }
  .case-image {
    padding-bottom: 0;
  }
  .case-stamp {
    font-size: 8px;
    margin-top: 4px;
  }
  .case-stamp strong {
    font-size: 11px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .about-title {
    position: relative;
  }
  .about-title h2 {
    font-size: 45px;
  }
  .experience-number {
    font-size: 74px;
    gap: 13px;
    margin-top: 24px;
  }
  .experience-number span {
    font-size: 10px;
  }
  .about-copy {
    padding-top: 0;
  }
  .about-copy .lead {
    font-size: 21px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .about-note {
    margin-top: 23px;
    padding-top: 22px;
    gap: 12px;
  }
  .about-note h3 {
    font-size: 15px;
  }
  .how-section .section {
    padding-block: 58px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .steps article {
    position: relative;
    padding-left: 53px;
  }
  .step-number {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    font-size: 26px;
    margin: 0;
    padding: 0;
  }
  .steps h3 {
    font-size: 23px;
    margin-bottom: 9px;
  }
  .steps p {
    font-size: 13px;
    max-width: none;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq h2 {
    font-size: 44px;
  }
  .faq-aside {
    margin-top: 15px;
  }
  .faq .eyebrow {
    margin-bottom: 17px;
  }
  summary {
    font-size: 13px;
    padding-block: 21px;
  }
  details p {
    font-size: 13px;
    padding-right: 12px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .contact h2 {
    font-size: clamp(39px, 8.9vw, 60px);
  }
  .contact-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
    max-width: 250px;
    line-height: 1.7;
    margin-bottom: 21px;
  }
  .lawyer-image {
    width: min(100%, 280px);
    margin: 25px auto 0;
    transform: rotate(-3deg);
  }
  .contact-card {
    padding: 26px;
    border-radius: 8px;
  }
  .contact-card h3 {
    font-size: 34px;
  }
  .pet-choice span {
    min-height: 47px;
  }
  .message-preview {
    min-height: 0;
    margin-bottom: 22px;
    font-size: 12px;
  }
  .button-yellow {
    font-size: 13px;
    padding: 18px;
    gap: 10px;
  }
  .contact-other a {
    font-size: 11px;
    min-height: 48px;
  }
  .phone-block a {
    font-size: 27px;
    min-height: 44px;
  }
  .contact-note {
    font-size: 10px;
  }
  .footer {
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 12px;
    padding-top: 27px;
    padding-bottom: 110px;
    font-size: 10px;
  }
  .footer-brand {
    flex-basis: 100%;
    font-size: 12px;
  }
  .footer > a:last-child {
    margin-left: auto;
  }
  .mobile-contact {
    position: fixed;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 25px #4229190c;
    transition: transform 0.2s;
  }
  .mobile-contact > span {
    font-size: 11px;
  }
  .mobile-contact strong {
    font-size: 21px;
    margin-left: 5px;
    white-space: nowrap;
  }
  .mobile-contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    background: var(--yellow);
    padding: 14px 23px;
    min-height: 46px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-contact > a span {
    font-size: 20px;
    line-height: 1;
  }
  .mobile-contact.is-hidden {
    transform: translateY(110%);
    visibility: hidden;
  }
  body {
    padding-bottom: 0;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand-sub {
    font-size: 7px;
  }
  .header-contact {
    gap: 10px;
    padding-inline: 13px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .experience-tag {
    font-size: 7px;
  }
  .hero-description {
    font-size: 16px;
  }
  .trust-inner {
    font-size: 9px;
    column-gap: 9px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .case-copy h2 {
    font-size: 39px;
  }
  .contact-card {
    padding: 21px;
  }
  .contact-card h3 {
    font-size: 31px;
  }
  .phone-block a {
    font-size: 25px;
  }
  .contact-other a {
    padding: 12px 10px;
  }
  .mobile-contact {
    padding-inline: 16px;
    gap: 10px;
  }
  .mobile-contact > a {
    padding-inline: 17px;
    gap: 18px;
  }
  .mobile-contact strong {
    font-size: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
