/* Base */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #222;
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
}
.logo .heart {
  transform: translateY(-1px);
}

/* Nav: mobile-first */
.nav__list {
  display: none;
  gap: 2rem;
}
.nav__list a {
  color: #fff;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}
.nav-toggle {
  display: none;
}
.burger {
  margin-left: auto;
  width: 32px;
  height: 22px;
  display: grid;
  align-content: space-between;
  cursor: pointer;
}
.burger span {
  display: block;
  background: #fff;
}
.burger span:nth-child(1) {
  height: 1px;
}
.burger span:nth-child(2) {
  height: 2px;
}
.burger span:nth-child(3) {
  height: 3px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #222;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 19;
}
.menu-overlay__list {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
.menu-overlay__list a {
  display: block;
  padding: 1rem 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: 0.1em;
}
/* .menu-overlay .close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
} */
#nav-toggle:checked ~ .burger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#nav-toggle:checked ~ .burger span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .burger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
#nav-toggle:checked ~ .menu-overlay {
  display: flex;
}

@media (min-width: 1440px) {
  .nav__list {
    display: flex !important;
  }
  .burger,
  #nav-toggle,
  .menu-overlay {
    display: none !important;
  }
}

/* .hero {
  background: #222;
  color: #fff;
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
} */
.hero {
  background: #222;
  color: #fff;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.hero > .wrap,
.hero .hero__grid {
  max-width: 1440px;
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.hero__text {
  max-width: 720px;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.stat .num {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  line-height: 1;
  display: block;
}
.stat .cap {
  color: #bfc5cc;
  font-size: 0.9rem;
}
.hero__title {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  line-height: 0.95;
  margin: 0.5rem 0 0.75rem;
}
.hero__tag {
  color: #cfd3d7;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero__note {
  color: #aeb4ba;
  margin-bottom: 2rem;
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #cfd3d7;
}
.hero__scroll::after {
  content: "↓";
}

.hero__imgs {
  position: relative;
}
.hero__imgs .img-main {
  width: min(280px, 78%);
}
.hero__imgs .img-small {
  position: absolute;
  width: min(220px, 48%);
  height: 220px;
  left: 55%;
  top: 45%;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (max-width: 1439.98px) {
  .hero__imgs .img-small {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero__scroll {
    display: none;
  }
}

/* HERO ≥1440*/
@media (min-width: 1440px) {
  .hero {
    height: 862px;
  }

  .hero__stats {
    position: absolute;
    left: 90px;
    top: 160px;
    gap: 96px;
    z-index: 1;
  }
  .hero__stats .num {
    font-size: 48px;
  }
  .hero__stats .cap {
    font-size: 16px;
    line-height: 24px;
    color: #c8cdd2;
  }

  .hero__title {
    position: absolute;
    left: 90px;
    top: 226px;
    margin: 0;
    max-width: 740px;
    font-weight: 400;
    font-size: 116px;
    line-height: 132px;
    z-index: 3;
  }
  .hero__tag {
    position: absolute;
    left: 90px;
    top: 530px;
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
  }
  .hero__scroll {
    position: absolute;
    left: 90px;
    top: 778px;
    height: 24px;
    margin: 0;
  }

  .hero__imgs {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: visible;
  }
  .hero__imgs img {
    position: absolute;
    object-fit: cover;
  }
  .hero__imgs .img-main {
    left: 1060px;
    top: 60px;
    width: 280px;
    height: 324px;
  }
  .hero__imgs .img-small {
    left: 820px;
    top: 321px;
    width: 220px;
    height: 220px;
    display: block;
  }

  .hero__note {
    position: absolute;
    left: 1200px;
    top: 730px;
    width: 220px;
    font-size: 16px;
    line-height: 24px;
    color: #cfd3d7;
    text-align: right;
    margin: 0;
    z-index: 2;
  }
}

.hero__rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
}

.hero__rail-col {
  position: absolute;
  left: 48px;
  top: 60px;
  bottom: 84px;
  width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__label,
.hero__year {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font: 12px/16px Inter, sans-serif;
  letter-spacing: 0.14em;
  color: #d8d8d8;
  white-space: nowrap;
  margin: 0;
}
.hero__sep {
  flex: 1 1 auto;
  width: 2px;
  background: #e0e0e0;
  opacity: 0.9;
}
.hero__rail-col {
  gap: 14px;
}
@media (min-width: 768px) and (max-width: 1439.98px) {
  .hero__rail {
    width: 64px;
  }
  .hero__rail-col {
    left: 40px;
    top: 64px;
    bottom: 84px;
    gap: 12px;
  }
  .hero__sep {
    width: 1px;
  }
  .hero .wrap.hero__grid {
    padding-left: calc(64px + 40px);
  }
}

@media (max-width: 767.98px) {
  .hero__rail {
    display: none !important;
  }
}

@media (max-width: 399.98px) {
  .hero > .wrap {
    width: 94vw;
    margin-left: auto;
    margin-right: 0;
  }
  .hero__grid {
    padding-left: 8vw;
    padding-right: 2vw;
  }
  .hero__imgs .img-main {
    margin-left: auto;
  }
  .hero__note {
    margin-left: auto;
    text-align: right;
    max-width: 90%;
  }
}

/* ABOUT */

.about {
  background: #f6f6f6;
  color: #111;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.about__grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
  grid-template-columns: 1fr;
  grid-template-areas:
    "left"
    "title"
    "p1"
    "p2"
    "midimg"
    "tagline";
  align-items: start;
}

.about__text {
  display: contents;
}

.about__text .section-title {
  grid-area: title;
  margin: 0 0 0.5rem;
}
.about__text p:nth-of-type(1) {
  grid-area: p1;
  margin: 0.75rem 0;
  max-width: 60ch;
}
.about__text p:nth-of-type(2) {
  grid-area: p2;
  margin: 0.75rem 0;
  max-width: 60ch;
}
.about__text p:nth-of-type(3) {
  grid-area: tagline;
  margin: 0.75rem 0;
}

.about__img {
  grid-area: midimg;
}
.about__img img {
  width: 100%;
  height: auto;
  display: block;
}
.about__img--tall {
  grid-area: left;
}
.about__img--tall img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__img:last-of-type {
  display: none;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "left   right"
      "title  right"
      "p1     right"
      "p2     right"
      "midimg right"
      "tagline right";
  }
  .about__img:last-of-type {
    display: block;
    grid-area: right;
  }
}

@media (min-width: 1440px) {
  .about__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "left   p2     right"
      "left   midimg right"
      "about  .      tagline";
  }

  .about__text .section-title {
    grid-area: about;
    margin: 0 0 0.75rem;
  }
  .about__text p:nth-of-type(1) {
    grid-area: about;
    margin: 0 0 1rem;
  }
  .about__text p:nth-of-type(2) {
    grid-area: p2;
  }
  .about__img {
    grid-area: midimg;
  }
  .about__img--tall {
    grid-area: left;
  }
  .about__img:last-of-type {
    grid-area: right;
  }
}

.about .section-title {
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}
.about__text p {
  line-height: 1.7;
}

@media (min-width: 1440px) {
  .about__text .section-title {
    margin-top: -50px;
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .about__grid > .about__img:last-of-type {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__img,
  .about__img--tall {
    grid-column: 1 / -1;
  }

  .about__img img,
  .about__img--tall img {
    width: calc(100vw - 40px);
    max-width: none;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .about__text {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .about .section-title {
    margin-top: -6px;
    margin-bottom: 14px;
  }

  .about__grid > .about__img:last-of-type {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .about .wrap {
    width: min(1040px, calc(100% - 48px));
  }

  .about__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "title"
      "p1"
      "p2"
      "midimg"
      "tagline";
    gap: 28px;
  }

  .about__img,
  .about__img--tall {
    grid-column: 1 / -1;
  }

  .about__img img,
  .about__img--tall img {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    transform: none;
  }

  .about__text .section-title,
  .about__text p {
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .about__grid > .about__img:last-of-type {
    display: none;
  }
}

/* PORTFOLIO */
.portfolio {
  background: #222;
  color: #fff;
}
.portfolio .wrap {
  overflow: hidden;
}
.portfolio .section-title {
  margin: 0 0 12px;
}
.portfolio .section-lead {
  max-width: 760px;
  margin: 0 0 28px;
}

.mosaic {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-inline: 20px;
  scroll-snap-type: x mandatory;
}
.mosaic::-webkit-scrollbar {
  display: none;
}
.mosaic {
  scrollbar-width: none;
}
.mosaic img {
  display: block;
  object-fit: cover;
  border-radius: 0;
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* ≥1440 */
@media (min-width: 1440px) {
  .mosaic {
    padding-inline: 0;
    transform: translateX(-120px);
    width: calc(100% + 240px);
  }
  .mosaic .m1 {
    width: 340px;
    height: 480px;
    margin-top: 120px;
  }
  .mosaic .m2 {
    width: 400px;
    height: 560px;
    margin-top: 12px;
  }
  .mosaic .m3 {
    width: 280px;
    height: 330px;
    margin-top: 200px;
  }
  .mosaic .m4 {
    width: 480px;
    height: 350px;
    margin-top: 60px;
  }
  .mosaic .m5 {
    width: 320px;
    height: 520px;
    margin-top: 0;
  }
  .mosaic .m6 {
    width: 320px;
    height: 380px;
    margin-top: 140px;
  }
}

/* 768–1439*/
@media (min-width: 768px) and (max-width: 1439.98px) {
  .mosaic {
    transform: translateX(-90px);
    width: calc(100% + 180px);
    padding-inline: 0;
  }
  .mosaic .m1 {
    width: 300px;
    height: 420px;
    margin-top: 120px;
  }
  .mosaic .m2 {
    width: 340px;
    height: 480px;
    margin-top: 12px;
  }
  .mosaic .m3 {
    width: 240px;
    height: 300px;
    margin-top: 180px;
  }
  .mosaic .m4 {
    width: 420px;
    height: 320px;
    margin-top: 60px;
  }
  .mosaic .m5 {
    width: 300px;
    height: 480px;
    margin-top: 0;
  }
  .mosaic .m6 {
    width: 280px;
    height: 340px;
    margin-top: 130px;
  }
}

/* ≤767*/
@media (max-width: 767.98px) {
  .mosaic {
    transform: none;
    width: 100%;
    padding-inline: 20px;
  }

  .mosaic .m1 {
    width: 56vw;
    height: 72vw;
    margin-top: 10vw;
  }
  .mosaic .m2 {
    width: 62vw;
    height: 80vw;
    margin-top: 2vw;
  }
  .mosaic .m3 {
    width: 46vw;
    height: 56vw;
    margin-top: 18vw;
  }
  .mosaic .m4 {
    width: 66vw;
    height: 50vw;
    margin-top: 6vw;
  }
  .mosaic .m5 {
    width: 54vw;
    height: 76vw;
    margin-top: 0;
  }
  .mosaic .m6 {
    width: 52vw;
    height: 62vw;
    margin-top: 14vw;
  }
}

.mosaic {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.mosaic::-webkit-scrollbar {
  display: none;
}
.mosaic {
  scrollbar-width: none;
}

@media (max-width: 767.98px) {
  .mosaic {
    padding-inline: 20px;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }
  .mosaic img {
    flex: 0 0 var(--tileW);
    width: var(--tileW);
    height: auto;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: 0;
  }

  .mosaic {
    --tileW: calc((100vw - 60px) / 2);
  }

  .m1 {
    aspect-ratio: 3 / 4;
    margin-top: 10vw;
  }
  .m2 {
    aspect-ratio: 4 / 5;
    margin-top: 2vw;
  }
  .m3 {
    aspect-ratio: 1 / 1;
    margin-top: 18vw;
  }
  .m4 {
    aspect-ratio: 5 / 4;
    margin-top: 6vw;
  }
  .m5 {
    aspect-ratio: 3 / 4;
    margin-top: 0;
  }
  .m6 {
    aspect-ratio: 4 / 3;
    margin-top: 14vw;
  }
}

/* PRICING */
.pricing {
  background: #fff;
  color: #111;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  grid-template-columns: 1fr;
}
.card {
  border: 1px solid #e3e3e3;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card__title {
  font-family: Oswald;
  letter-spacing: 0.06em;
}
.card__list {
  padding-left: 1rem;
}
.card__list li {
  margin: 0.35rem 0;
  list-style: disc;
}
.card__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card__price {
  font-family: Oswald;
  font-size: 1.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 0.6rem 1.1rem;
  font-family: Oswald;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid #111;
}
.btn--dark {
  background: #fff;
  color: #111;
  border-color: #fff;
}
@media (hover: hover) {
  .card:hover {
    border-color: #111;
    transform: translateY(-2px);
  }
  .card:hover .btn {
    background: #fff;
    color: #111;
  }
  .btn--dark:hover {
    background: #111;
    color: #fff;
    border-color: #111;
  }
}
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero {
  position: relative;
  --bg: #222;
  background: var(--bg);
  box-shadow: 0 0 0 100vmax var(--bg);
  clip-path: inset(0 -100vmax);
}

.card .btn {
  width: 100%;
  margin-top: auto;
}

.card {
  display: flex;
  flex-direction: column;
}

.card__bottom {
  display: contents !important;
}

.card__title {
  order: 1;
}
.card__list {
  order: 2;
}
.card__price {
  order: 3;
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}
.card > p {
  order: 4;
}
.card .btn {
  order: 5;
  width: 100%;
  padding: 0.9rem 1.2rem;
  text-align: center;
}

.nav__list a {
  color: #fff;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav__list a:hover {
    color: #ff3c3c;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nav__list a:active,
  .nav__list a:focus-visible {
    color: #ff3c3c;
  }
}

.menu-overlay__list a {
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .menu-overlay__list a:hover {
    color: #ff3c3c;
  }
}

@media (hover: none) and (pointer: coarse) {
  .menu-overlay__list a:active,
  .menu-overlay__list a:focus-visible {
    color: #ff3c3c;
  }
}

.btn {
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hero__scroll {
  transition: color 0.2s ease;
}
.card {
  transition: border-color 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #fff;
  }
  .hero__scroll:hover {
    color: #ff3c3c;
  }
  .card:hover {
    border-color: #ff3c3c;
  }
}

.btn {
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hero__scroll {
  transition: color 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #111;
  }
  .btn.btn--dark:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #111;
  }
  .hero .hero__scroll:hover {
    color: #ff3c3c !important;
  }
  .hero .hero__scroll:hover::after {
    color: #ff3c3c;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn.btn--dark:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #111;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #111;
  }
}

.hero__scroll {
  transition: color 0.2s;
}

@media (min-width: 1440px) {
  .hero__scroll {
    z-index: 4;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero__scroll:hover {
    color: #ff3c3c;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #111;
  }
  .card:hover .btn:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    color: #111;
  }
}

@media (min-width: 1440px) {
  .hero__scroll {
    z-index: 4;
    position: absolute;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero__scroll:hover {
    color: #ff3c3c;
  }
  .hero__scroll:hover::after {
    color: #ff3c3c;
  }
}

/* FAQ */
.faq {
  background: #1f1f1f;
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.faq .section-title {
  margin: 0 0 8px;
}
.faq .section-lead {
  color: #9aa0a6;
  margin: 0 0 1.25rem;
}
.faq__list {
  max-width: 860px;
}
.faq__item {
  border-bottom: 1px solid #343434;
}
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  color: #dfe3e7;
  text-align: left;
  padding: 1rem 0;
  font-family: Oswald;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__q .sign {
  font-size: 1.2rem;
}
.faq__a {
  color: #b9bec3;
  padding: 0 0 1rem;
  max-width: 70ch;
}
.faq__item--open .faq__q {
  color: #fff;
}

@media (min-width: 1440px) {
  .faq .wrap {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "ttl  list"
      "lead list";
    column-gap: 64px;
    row-gap: 8px;
    align-items: start;
  }
  .faq .section-title {
    grid-area: ttl;
    margin: 0 0 8px;
  }
  .faq .section-lead {
    grid-area: lead;
    margin: 0;
    max-width: 36ch;
  }
  .faq__list {
    grid-area: list;
    max-width: none;
    align-self: start;
  }
}
.faq {
  background: #1f1f1f;
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.faq .section-lead {
  color: #9aa0a6;
}

@media (min-width: 1440px) {
  .faq .wrap {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    column-gap: 64px;
    align-items: start;
  }
  .faq__intro {
    align-self: start;
  }
  .faq__intro .section-title {
    margin: 0 0 12px;
  }
  .faq__intro .section-lead {
    margin: 0;
    max-width: 36ch;
  }
  .faq__list {
    align-self: start;
  }
}

@media (max-width: 1439.98px) {
  .faq__intro .section-title {
    margin: 0 0 12px;
  }
  .faq__intro .section-lead {
    margin: 0 0 20px;
  }
}

.faq__q {
  transition: color 0.2s ease;
}
.faq__q .sign {
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .faq__q:hover {
    color: #ff3c3c;
  }
  .faq__q:hover .sign {
    color: #ff3c3c;
  }
}

/* CONTACTS */
.contacts {
  background: #fff;
  color: #111;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.contacts .cta {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0 0 clamp(0.9rem, 2vw, 1.25rem);
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  align-items: center;
}
.contact__form .btn {
  background: #111;
  color: #fff;
}
.contact__form input,
.contact__form .btn {
  height: clamp(44px, 6vw, 64px);
}

.fcontact__form input {
  width: 100%;
  border: 2px solid #222;
  background: #fff;
  color: #111;
  padding: 0 18px;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
}

.contact__form input::placeholder {
  color: #989898;
}

.contact__form .btn {
  padding: 0 28px;
  border: 2px solid #111;
}

@media (max-width: 1439.98px) {
  .contact__form {
    gap: 1rem;
  }
}

@media (max-width: 479.98px) {
  .contact__form {
    grid-template-columns: 1fr;
  }
  .contact__form .btn {
    width: 100%;
  }
  .contact__form input,
  .contact__form .btn {
    height: clamp(64px, 12vw, 84px);
  }
  .contacts .cta {
    font-size: clamp(1.4rem, 7vw, 2.4rem);
  }
}
/* FOOTER */
.footer {
  background: #222222;
  color: #fff;
  padding: 2rem 0;
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer .links a {
  color: #fff;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .footer .links a:hover {
    color: #ff3c3c;
  }
}
@media (max-width: 420px) {
  .footer {
    padding: clamp(2.5rem, 10vw, 4rem) 0;
  }
  .footer .links {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 7vh, 56px);
  }
  .footer .links a {
    font-size: clamp(28px, 8.8vw, 44px);
    line-height: 1.15;
  }
}
@media (max-width: 420px) {
  .footer .links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(24px, 7vh, 56px);
    width: 100%;
  }
  .footer .links a {
    font-size: clamp(28px, 8.8vw, 44px);
    line-height: 1.15;
  }
}

.menu-overlay {
  display: flex;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#nav-toggle:checked ~ .menu-overlay,
.menu-overlay.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}
@media (min-width: 769px) {
  .nav__list {
    display: flex !important;
  }
  .burger,
  #nav-toggle,
  .menu-overlay {
    display: none !important;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #111;
  width: min(560px, 92vw);
  border-radius: 12px;
  padding: 20px 20px 24px;
}
.modal__close {
  position: absolute;
  top: 1px;
  right: 1px;
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.modal__title {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.modal__row {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}
.modal__row input,
.modal__row textarea {
  border: 2px solid #222;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
.modal .btn {
  width: 100%;
  margin-top: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.modal__title {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.modal__row {
  margin: 0;
}
.modal__row input {
  width: 100%;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  padding: 0 18px;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.modal .btn {
  width: 100%;
  border: 2px solid #111;
  background: #111;
  color: #fff;
}
.modal__close {
  position: absolute;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .modal__dialog {
    width: 680px;
    padding: 48px 60px 56px;
  }
  .modal__title {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 28px;
  }
  .modal__row + .modal__row {
    margin-top: 18px;
  }
  .modal__row input {
    height: 84px;
    font-size: 22px;
  }
  .modal .btn {
    height: 104px;
    font-size: 22px;
    letter-spacing: 0.06em;
    margin-top: 18px;
  }
  .modal__close {
    top: 10px;
    right: 30px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}

@media (max-width: 399.98px) {
  .modal__dialog {
    width: calc(100vw - 32px);
    padding: 24px 20px 28px;
  }
  .modal__title {
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 18px;
  }
  .modal__row + .modal__row {
    margin-top: 12px;
  }
  .modal__row input {
    height: 64px;
    font-size: 18px;
  }
  .modal .btn {
    height: 72px;
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-top: 12px;
  }
  .modal__close {
    top: 5px;
    right: 5px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

:root {
  --header-h: 64px;
}

.burger span {
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.menu-overlay {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 19;
}
#nav-toggle:checked ~ .menu-overlay,
.menu-overlay.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

#nav-toggle:checked ~ .burger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#nav-toggle:checked ~ .burger span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .burger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* @media (min-width: 769px){
  .nav__list{ display:flex !important; }
  .burger, #nav-toggle, .menu-overlay{ display:none !important; }
} */

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.menu-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.menu-overlay__list a {
  font-family: Oswald, sans-serif;
  font-size: clamp(20px, 5vw, 32px);
  letter-spacing: 0.1em;
}
.mosaic {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.mosaic::-webkit-scrollbar {
  display: none;
}
.mosaic img {
  flex: 0 0 auto;
  object-fit: cover;
  scroll-snap-align: start;
}

@media (max-width: 767.98px) {
  .mosaic {
    padding-inline: 20px;
    gap: 20px;
  }
  .mosaic {
    --tileW: calc((100vw - 60px) / 2);
  }
  .mosaic img {
    width: var(--tileW);
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .mosaic {
    transform: translateX(-90px);
    width: calc(100% + 180px);
    padding-inline: 0;
  }
}

@media (min-width: 1440px) {
  .mosaic {
    transform: translateX(-120px);
    width: calc(100% + 240px);
    padding-inline: 0;
  }
}
/* .mosaic{
  overflow: hidden !important;
  scroll-snap-type: none !important;
} */

@media (max-width: 1023.98px) {
  .mosaic {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory !important;
  }
  .mosaic img {
    touch-action: pan-x;
  }
}

@media (min-width: 1024px) {
  .mosaic {
    overflow: hidden !important;
    scroll-snap-type: none !important;
  }
}
.faq__a { display: none; }
.faq__item--open .faq__a { display: block; }
