:root {
  --bg: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.18);
  --line: rgba(255, 255, 255, 0.72);
  --link: #a6928b;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: #111;
  outline: 2px solid #fff;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  justify-items: center;
  gap: 2.65rem;
  padding: 17px 32px 0;
}

.brand img {
  width: 736px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 3.15rem;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
}

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

.menu-toggle {
  display: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 32px;
}

.hero {
  display: grid;
  grid-template-columns: 611px 636px;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  row-gap: 29px;
  padding-top: 64px;
}

.hero-copy {
  display: contents;
}

.hero h2 {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  color: var(--text);
  font-size: 2.86rem;
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
}

.hero-photo {
  grid-column: 1;
  justify-self: start;
  width: 611px;
  aspect-ratio: 1908 / 1377;
  object-fit: cover;
  opacity: 1;
}

.hero-logo {
  grid-column: 2;
  justify-self: center;
  align-self: start;
  width: 636px;
  height: 441px;
  object-fit: contain;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: 4.15rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.info {
  padding-top: 130px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 62px;
  text-align: center;
}

.info-card,
.site-footer .footer-grid div {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--muted);
}

.info-card strong,
.site-footer strong {
  color: var(--muted);
  font-weight: 700;
}

.info-card a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.info-media {
  display: grid;
  grid-template-columns: 467px 525px;
  gap: 116px;
  align-items: center;
  margin: 16px auto 0;
  max-width: 1108px;
  transform: translateX(29px);
}

.map {
  width: 100%;
  height: 300px;
  border: 0;
  background: #e8e6e3;
}

.sign {
  width: 525px;
  align-self: start;
  margin-top: 36px;
  opacity: 0.76;
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16rem;
  max-width: 870px;
  margin: 52px auto 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--link);
  font-size: 1.38rem;
}

.social-link img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.services {
  display: grid;
  grid-template-columns: 520px 636px;
  column-gap: 185px;
  align-items: start;
  justify-content: center;
  padding-top: 160px;
  padding-inline: 0;
  transform: translateX(29px);
}

.services-image {
  display: grid;
  gap: 96px;
  justify-items: center;
}

.services-image img {
  width: 520px;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.services-heading {
  align-self: end;
  padding-top: 49px;
  grid-column: 1;
  grid-row: 2;
}

.services .section-title {
  color: var(--text);
  text-align: left;
  font-weight: 500;
}

.accordion {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  padding-top: 0;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 60px;
  color: var(--text);
  font-size: 1.21rem;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

.panel {
  padding: 0 2rem 1.6rem 0;
  color: var(--muted);
}

.panel p {
  margin: 0 0 1rem;
}

.about {
  display: grid;
  grid-template-columns: 756px 480px;
  gap: 72px;
  align-items: start;
  justify-content: center;
  max-width: 1400px;
  padding-top: 126px;
  transform: translateX(42px);
}

.engine {
  width: 756px;
  height: 522px;
  object-fit: cover;
  opacity: 1;
}

.about-text {
  padding-top: 46px;
  color: var(--text);
}

.about h2 {
  margin: 0;
  color: var(--text);
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.15;
}

.about h2 + h2 {
  margin-top: 1.5rem;
  white-space: nowrap;
}

.about p {
  margin: 0 0 1.32rem;
  font-size: 1rem;
}

.about p:first-of-type {
  margin-top: 6.35rem;
}

.pet {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 7rem;
  align-items: start;
  padding-top: 210px;
}

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

.pet h2 {
  margin: 0 0 2rem;
  font-size: 2.89rem;
  line-height: 1.18;
  font-weight: 500;
}

.pet p {
  margin: 0 auto;
  max-width: 930px;
  font-size: 1.08rem;
}

.pet img {
  width: 330px;
  aspect-ratio: 782 / 1043;
  object-fit: cover;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 115px 32px 75px;
  text-align: center;
}

.site-footer > img {
  width: 568px;
  margin: 0 auto 110px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 39px;
    padding: 12px 8px 0;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 20px;
    padding: 0;
    margin-right: 8px;
    border: 0;
    background: transparent;
    color: var(--muted);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--muted);
  }

  .site-nav {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1.6rem;
    padding: 3rem 1.25rem;
    background: #000;
    font-size: 1.15rem;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .section {
    padding-inline: 23px;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 18px;
    padding-top: 36px;
  }

  .hero-logo {
    width: 100vw;
    max-width: none;
    height: 339px;
    margin-left: -23px;
    margin-right: -23px;
    object-fit: contain;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .hero h2 {
    font-size: 2.14rem;
    max-width: 340px;
    white-space: normal;
  }

  .hero-photo {
    width: calc(100vw - 17px);
    max-width: none;
    margin-left: -14px;
  }

  .section-title {
    font-size: 2.9rem;
  }

  .info {
    padding-top: 111px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.05rem;
    margin-top: 34px;
  }

  .info-media {
    grid-template-columns: 1fr;
    gap: 88px;
    margin-top: 70px;
    transform: none;
  }

  .map {
    height: 277px;
  }

  .sign {
    display: block;
    width: 100%;
    margin-top: 0;
  }

  .socials {
    display: none;
  }

  .services {
    grid-template-columns: 1fr;
    margin-top: 157px;
    padding-top: 160px;
    padding-bottom: 223px;
    padding-inline: 23px;
    transform: none;
  }

  .services-image img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1.62 / 1;
    object-position: 50% 82%;
  }

  .services-heading {
    padding-top: 32px;
  }

  .services .section-title {
    text-align: left;
  }

  .accordion {
    grid-column: auto;
    grid-row: auto;
    padding-top: 16px;
  }

  summary {
    min-height: 58px;
    font-size: 1.13rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 92px;
    padding-bottom: 91px;
    transform: none;
  }

  .engine {
    width: 100%;
    height: 117px;
    opacity: 1;
  }

  .about-text {
    padding-top: 0;
  }

  .about h2 {
    font-size: 2.14rem;
  }

  .about h2 + h2 {
    white-space: normal;
  }

  .about p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .about p:first-of-type {
    margin-top: 1.25rem;
  }

  .pet {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 114px;
  }

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

  .pet h2 {
    font-size: 2.08rem;
  }

  .pet img {
    width: 150px;
    margin: 0 auto;
  }

  .site-footer {
    padding-top: 175px;
  }

  .site-footer > img {
    width: 330px;
    margin-bottom: 88px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.35rem;
    font-size: 1rem;
  }
}
