* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: #171922;
  background: #fff;
  font-family: "Manrope", sans-serif;
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

/* Viršutinė juosta */

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 14px 24px 0;
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: 94px;
  margin: 0 auto;
  padding: 0 12px 0 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgb(255 255 255 / 92%);
  border: 1px solid #eee9f5;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgb(47 28 79 / 8%);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo img {
  width: auto;
  height: 60px;
  display: block;
}

.logo span {
  color: #6d27d8;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  color: #383641;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 25px 0 23px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #6d27d8, #e824a7);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #6d27d8;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-button {
  min-width: 177px;
  height: 44px;
  padding: 0 8px 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(50deg, #9046d4, #944ad9);
  border-radius: 13px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 18%);
  border-radius: 9px;
  font-size: 17px;
}

.header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(109 39 216 / 18%);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  place-content: center;
  gap: 4px;
  flex-shrink: 0;
  color: #6d27d8;
  background: #f5f0fc;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Viršutinė puslapio dalis */

.hero {
  width: 100%;
  max-width: 1440px;
  min-height: 430px;
  margin: 0 auto;
  padding: 38px 40px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(400px, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(30.4px, 3.36vw, 45.6px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.76px;
}

.hero-content > p {
  max-width: 660px;
  margin: 0;
  color: #626572;
  font-size: 16px;
  line-height: 1.65;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.button {
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  gap: 18px;
  color: #fff;
  background: linear-gradient(39deg, #7e1bda, #af02ff7d);
}

.button-primary:hover {
  box-shadow: 0 10px 22px rgb(32 36 33 / 10%);
}

.button-primary span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.button-secondary {
  color: #7e1bda;
  background: #fff;
  border: 1px solid #7e1bda;
}

.gallery {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  isolation: isolate;
}

.gallery img {
  width: 100%;
  aspect-ratio: 40 / 27;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.gallery::before {
  top: 30px;
  left: -28px;
  width: 11px;
  height: 21px;
  background: #ff9c7b;
  transform: rotate(-45deg);
  box-shadow:
    -17px 17px 0 #ffb092,
    7px 43px 0 #ffd568,
    -27px 92px 0 #d0c1f5,
    -13px 120px 0 #b6a1ef;
}

.gallery::after {
  right: -18px;
  bottom: 54px;
  width: 11px;
  height: 11px;
  background: #d2bde9;
  box-shadow:
    7px -120px 0 #ffd166,
    -3px -136px 0 #ffb36b;
}

/* Naujų paslaugų slideris */

.new-services {
  width: 100%;
  padding: 22px 44px 50px;
  background: linear-gradient(90deg, #fff, #fbf8ff 48%, #fff);
}

.services-slider {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
}

.featured-service,
.preview-card {
  background: rgb(255 255 255 / 94%);
  border: 1px solid #ede8f2;
  box-shadow: 0 10px 28px rgb(45 30 67 / 8%);
}

.featured-service {
  min-width: 0;
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(225px, 0.65fr);
  overflow: hidden;
  border-radius: 20px;
}

.featured-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.new-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 9px 13px 9px 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, #6d27d8, #d82a9b);
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 13px 13px 13px 5px;
  box-shadow: 0 10px 24px rgb(69 24 139 / 28%);
  font-size: 12px;
  font-weight: 800;
  transform: rotate(-2deg);
}

.new-badge span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 18%);
  border-radius: 8px;
  font-size: 11px;
}

.featured-info {
  min-width: 0;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-info h2 {
  margin: 0 0 10px;
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}

.featured-info p {
  margin: 0;
  color: #5f6069;
  font-size: 13px;
  line-height: 1.5;
}

.featured-info strong {
  margin-top: auto;
  color: #7440bd;
  font-size: 20px;
  font-weight: 600;
}

.service-button {
  width: 100%;
  min-height: 42px;
  margin-top: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7d42c7, #9c54d8);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgb(109 39 216 / 20%);
}

.service-previews {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-card {
  width: 100%;
  min-width: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  text-align: left;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.preview-card:hover {
  border-color: #cab2e8;
  transform: translateY(-2px);
}

.preview-card img {
  width: 100%;
  height: 100%;
  min-height: 105px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.preview-card span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-card strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.preview-card small {
  color: #7440bd;
  font-size: 12px;
  font-weight: 600;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #1e1e25;
  background: #fff;
  border: 1px solid #ede8f2;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgb(38 24 57 / 11%);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  color: #6d27d8;
  transform: translateY(-50%) scale(1.06);
}

.slider-prev {
  left: -21px;
}

.slider-next {
  right: -21px;
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #d3cfd6;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.is-active {
  width: 22px;
  background: #7e49c6;
  border-radius: 999px;
}


/* Renginių kategorijos */

.categories {
  width: 100%;
  padding: 22px 44px 58px;
}

.categories-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.categories h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* Veikia ir su senuoju categories-row HTML, ir su nauju categories-grid HTML. */
.categories-row,
.categories-grid {
  display: contents;
}

.category-card {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-radius: 15px;
  isolation: isolate;
  box-shadow: 0 8px 22px rgb(28 20 40 / 8%);
}


.category-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgb(8 8 12 / 82%));
}

.category-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 2px 8px rgb(0 0 0 / 35%);
}

.category-label i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  color: #fff;
  background: var(--accent);
  border: 2px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  font-size: 24px;
  font-style: normal;
  text-shadow: none;
}

.category-card:hover img {
  transform: scale(1.045);
}



/* Renginių vedėjai */

.hosts {
  width: 100%;
  padding: 0 44px 58px;
}

.hosts-card {
  position: relative;
  width: 100%;
  max-width: 1360px;
  min-height: 148px;
  margin: 0 auto;
  padding: 14px 26px 10px 56px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgb(255 255 255 / 70%), transparent 25%),
    linear-gradient(105deg, #fff2f1, #faf7ff 55%, #f9f4ff);
  border: 1px solid #eadfeb;
  border-radius: 54px;
}

.hosts-card::before,
.hosts-card::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #7b4bc4;
  border-radius: 50%;
  pointer-events: none;
}

.hosts-card::before {
  top: 27px;
  left: 315px;
  box-shadow: -277px 55px 0 #f2a500;
}

.hosts-card::after {
  top: 63px;
  left: 486px;
  width: 7px;
  height: 7px;
  background: transparent;
  border: 2px solid #ff8d4a;
  border-radius: 1px;
  transform: rotate(45deg);
}

.hosts-intro {
  position: relative;
  z-index: 1;
}

.hosts-intro h2 {
  margin: 0 0 6px;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hosts-intro p {
  max-width: 230px;
  margin: 0 0 11px;
  color: #4f4e58;
  font-size: 12.5px;
  line-height: 1.45;
}

.hosts-button {
  min-height: 39px;
  padding: 0 10px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7f49bf, #9864d6);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgb(107 63 167 / 20%);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hosts-button span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 17%);
  border-radius: 50%;
  font-size: 17px;
}

.hosts-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgb(107 63 167 / 26%);
}

.hosts-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(78px, 1fr));
  align-items: end;
  gap: clamp(16px, 2vw, 34px);
}

.host-profile {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.host-profile img {
  width: clamp(72px, 7vw, 94px);
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgb(45 30 67 / 10%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.host-profile strong {
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.1;
}

.host-profile:hover img {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 9px 20px rgb(45 30 67 / 15%);
}



/* Puslapio apačia */

.site-footer {
  width: 100%;
  padding: 0 24px 24px;
}

.footer-shell {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 26px 34px 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #24112f, #47205e 58%, #6d27d8);
  border-radius: 34px;
  isolation: isolate;
}

.footer-shell::before,
.footer-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.footer-shell::before {
  top: -120px;
  right: -90px;
  width: 340px;
  height: 340px;
  background: rgb(255 255 255 / 8%);
}

.footer-shell::after {
  bottom: -170px;
  left: 32%;
  width: 300px;
  height: 300px;
  background: #e824a71a;
}

.footer-cta {
  padding: 23px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.footer-cta > div > span {
  color: #f3c8ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-cta h2 {
  margin: 5px 0 0;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.1px;
}

.footer-cta-button {
  min-height: 48px;
  padding: 0 9px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  color: #55207a;
  background: #fff;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-button span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7d42c7, #e824a7);
  border-radius: 10px;
  font-size: 17px;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
}

.footer-main {
  padding: 36px 10px 31px;
  display: grid;
  grid-template-columns: minmax(240px, 1.55fr) repeat(3, minmax(135px, 0.75fr));
  gap: clamp(28px, 4vw, 65px);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-logo img {
  width: auto;
  height: 50px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.footer-brand p {
  max-width: 360px;
  margin: 17px 0 20px;
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: rgb(255 255 255 / 68%);
  font-size: 12.5px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-column a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}

.footer-contact i {
  color: #e9b6ff;
  font-size: 18px;
}

.footer-bottom {
  min-height: 43px;
  padding: 14px 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgb(255 255 255 / 53%);
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Planšetės */

@media (max-width: 1120px) {
  .hosts-card {
    grid-template-columns: 225px minmax(0, 1fr);
    gap: 22px;
    padding-left: 40px;
  }

  .hosts-list {
    gap: 14px;
  }

  .header-inner {
    gap: 22px;
  }

  .nav {
    gap: 20px;
  }

  .hero {
    padding-inline: 28px;
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.9fr);
    gap: 38px;
  }

  .services-slider {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .preview-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(140px, 0.7fr));
  }

  .footer-contact {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: repeat(3, auto);
    align-items: center;
    justify-content: start;
    column-gap: 24px;
  }

  .footer-contact strong {
    grid-column: 1 / -1;
  }

  .hosts-card {
    grid-template-columns: 210px minmax(0, 1fr);
    padding-right: 20px;
    border-radius: 42px;
  }

  .host-profile img {
    width: 72px;
  }

  .categories-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    margin-left: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    color: #383641;
    background: rgb(255 255 255 / 98%);
    border: 1px solid #eee9f5;
    border-radius: 15px;
    box-shadow: 0 18px 40px rgb(47 28 79 / 14%);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.is-active {
    color: #6d27d8;
    background: #f5f0fc;
  }

  .header-button {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .new-services {
    padding-inline: 34px;
  }

  .services-slider {
    grid-template-columns: 1fr;
  }

  .service-previews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .preview-card {
    min-height: 120px;
  }
}

@media (max-width: 850px) {
  .hosts {
    padding-inline: 24px;
  }

  .hosts-card {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 32px;
  }

  .hosts-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
  }

  .hosts-intro h2,
  .hosts-intro p {
    grid-column: 1;
  }

  .hosts-intro p {
    max-width: 460px;
    margin-bottom: 0;
  }

  .hosts-button {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .hosts-list {
    overflow-x: auto;
    grid-template-columns: repeat(6, 92px);
    justify-content: start;
    padding: 2px 2px 8px;
    scrollbar-width: thin;
  }

  .host-profile img {
    width: 82px;
  }

  .site-header {
    padding: 10px 16px 0;
  }

  .header-inner {
    height: 94px;
  }

  .hero {
    padding: 42px 24px 44px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-content {
    max-width: 680px;
  }

  .gallery {
    width: 80%;
    max-width: 540px;
    margin: 0 auto;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-inline: 18px;
  }

  .footer-shell {
    padding: 18px 20px 14px;
    border-radius: 27px;
  }

  .footer-cta {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 30px 4px 26px;
    gap: 28px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: flex;
  }

  .footer-bottom {
    padding-inline: 4px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .categories {
    padding-inline: 24px;
  }

  .categories-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    height: 155px;
  }

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

  .featured-media {
    aspect-ratio: 16 / 9;
  }

  .featured-info strong {
    margin-top: 24px;
  }
}

/* Mobilūs įrenginiai */

@media (max-width: 560px) {
  .hosts {
    padding: 0 18px 44px;
  }

  .hosts-card {
    padding: 22px 18px 18px;
    border-radius: 26px;
  }

  .hosts-intro {
    display: block;
  }

  .hosts-intro p {
    margin-bottom: 13px;
  }

  .hosts-list {
    grid-template-columns: repeat(6, 84px);
    gap: 12px;
  }

  .host-profile img {
    width: 76px;
  }

  .categories {
    padding: 18px 18px 44px;
  }

  .categories h2 {
    margin-bottom: 12px;
  }

  .categories-inner {
    gap: 10px;
  }

  .category-label {
    right: 9px;
    bottom: 9px;
    left: 9px;
    gap: 8px;
    font-size: 13px;
  }

  .category-label i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 21px;
  }

  .site-header {
    padding-inline: 10px;
  }

  .header-inner {
    height: 60px;
    padding: 0 9px 0 14px;
    gap: 10px;
    border-radius: 15px;
  }

  .logo img {
    height: 29px;
  }

  .logo span {
    font-size: 22px;
    letter-spacing: -0.7px;
  }

  .header-button {
    min-width: auto;
    height: 40px;
    padding: 0 12px;
    border-radius: 11px;
    font-size: 11px;
  }

  .header-button span {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 34px 18px 38px;
  }

  .hero h1 {
    font-size: 29.6px;
    letter-spacing: -1.2px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery {
    width: 100%;
    gap: 8px;
  }

  .gallery img {
    border-radius: 10px;
  }

  .new-services {
    padding: 16px 18px 42px;
  }

  .featured-service {
    border-radius: 16px;
  }

  .featured-info {
    padding: 20px 18px 18px;
  }

  .new-badge {
    top: 13px;
    left: 13px;
  }

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

  .preview-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 430px) {
  .footer-cta-button {
    width: 100%;
    justify-content: space-between;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .categories-inner {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 165px;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 26px;
  }

  .preview-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

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