:root {
  --bg: #15171b;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f8f9fb;
  --muted: rgba(248, 249, 251, 0.64);
  --orange: #ff6a00;
  --red: #ef233c;
  --ice: rgba(255, 255, 255, 0.86);
  --lovely: #ff5c9a;
  --cyan: #20d8e8;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #111318;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.08) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(255, 255, 255, 0.08) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent 0, transparent calc(75% - 1px), rgba(255, 255, 255, 0.08) 75%, transparent calc(75% + 1px));
  content: "";
  pointer-events: none;
}

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

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

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 18px;
  display: grid;
  width: min(1180px, calc(100% - 28px));
  height: 68px;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 9, 12, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.42);
  color: #fff;
  backdrop-filter: blur(24px) saturate(1.45);
}

.glass-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.52), transparent 26%, transparent 68%, rgba(255, 106, 0, 0.28));
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.brand {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.brand img {
  width: 132px;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-cta {
  display: grid;
  height: 100%;
  min-width: 150px;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.section-number,
.lovely-number {
  color: #fff;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: 0;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 34px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px) saturate(1.32);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 86px);
  margin-top: -86px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 13, 17, 0.28), rgba(11, 13, 17, 0.68)),
    radial-gradient(circle at 50% 52%, rgba(255, 106, 0, 0.16), transparent 28rem),
    url("assets/hotdrako-hero.png") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  content: "";
  opacity: 0.38;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 17, 0.72), rgba(11, 13, 17, 0.18), rgba(11, 13, 17, 0.72)),
    linear-gradient(180deg, rgba(11, 13, 17, 0.58), transparent 36%, rgba(11, 13, 17, 0.82));
}

.hero-center {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(900px, calc(100% - 32px));
  justify-items: center;
  padding: 180px 0 88px;
  text-align: center;
}

.micro {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.86;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

h2 {
  font-size: clamp(2.7rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
}

.section-copy h2,
.wx-copy h2,
.trio-copy h2,
.colors-copy h2,
.lovely-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 0.94;
}

p {
  margin: 0;
}

.hero-center p,
.section-copy p,
.wx-copy p,
.colors-copy p,
.lovely-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.hero-center p {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 106, 0, 0.32);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.split-section,
.wx-section,
.colors-section,
.lovely-section,
.trio-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.split-section {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: center;
  padding: 86px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #15171b;
  background-size: 120px 120px;
}

.section-number {
  color: rgba(255, 255, 255, 0.96);
}

.section-copy {
  display: grid;
  max-width: 620px;
  gap: 22px;
}

.portrait-card {
  height: 620px;
  margin: 0;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.wx-section {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(380px, 0.82fr) minmax(460px, 1.18fr);
  gap: 42px;
  align-items: center;
  padding: 86px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #101217;
  background-size: 120px 120px;
  color: #fff;
}

.wx-copy {
  display: grid;
  gap: 22px;
}

.wx-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.wx-card {
  min-height: 620px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.winca-logo {
  position: absolute;
  top: 30px;
  left: 32px;
  z-index: 3;
  width: 190px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.64);
}

.wx-product {
  position: absolute;
  inset: 72px 0 96px;
  z-index: 2;
  width: 100%;
  height: calc(100% - 168px);
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.2));
}

.wx-stats {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wx-stats span {
  min-height: 56px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(23, 26, 32, 0.9);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.trio-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1.18fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
  padding: 54px max(24px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #111318;
}

.trio-copy {
  display: grid;
  max-width: 760px;
  gap: 24px;
}

.trio-copy h2 {
  color: #fff;
}

.trio-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.trio-section img {
  width: 100%;
  max-height: 620px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 34px 26px rgba(0, 0, 0, 0.35));
}

.colors-section {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(360px, 0.72fr) minmax(460px, 1.28fr);
  gap: 42px;
  align-items: center;
  padding: 84px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #15171b;
  background-size: 120px 120px;
  color: #fff;
}

.colors-section .section-number {
  color: #fff;
}

.colors-copy {
  display: grid;
  max-width: 560px;
  gap: 22px;
}

.colors-copy .micro {
  color: var(--orange);
}

.colors-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.colors-product {
  min-height: 600px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.34);
}

.colors-product img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.lovely-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: #2a2229;
}

.lovely-section::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 92, 154, 0.26), transparent 25rem),
    radial-gradient(circle at 88% 30%, rgba(32, 216, 232, 0.18), transparent 24rem),
    #fff8f6;
  content: "";
}

.lovely-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.lovely-number {
  color: rgba(42, 34, 41, 0.92);
}

.lovely-hero img {
  width: min(340px, 100%);
  margin-top: 28px;
}

.lovely-copy {
  display: grid;
  gap: 22px;
}

.lovely-copy .micro {
  color: var(--lovely);
}

.lovely-copy p {
  color: rgba(42, 34, 41, 0.64);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.catalog-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 28px 60px rgba(54, 30, 45, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 36px 76px rgba(54, 30, 45, 0.26);
  transform: translateY(-5px);
}

.catalog-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 34%, rgba(255, 255, 255, 0.16));
  content: "";
}

.catalog-card span,
.catalog-card strong,
.catalog-card small {
  position: relative;
  z-index: 1;
}

.catalog-card span {
  margin-bottom: auto;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card strong {
  max-width: 260px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.catalog-card small {
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card.casa {
  background: linear-gradient(145deg, #ff8b21, #ef3c72);
}

.catalog-card.pet {
  background: linear-gradient(145deg, #21cad8, #325ce8);
}

.catalog-card.festa {
  background: linear-gradient(145deg, #7d54ff, #ff5c9a);
}

.footer {
  display: grid;
  width: 100%;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 54px max(24px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #090a0d;
  color: #fff;
}

.footer img {
  width: 172px;
}

.footer div {
  display: grid;
  gap: 8px;
}

.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.68);
}

.lovely-page {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 92, 154, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(32, 216, 232, 0.12), transparent 24rem),
    #fffaf8;
  color: #29242b;
}

.lovely-page::before {
  display: none;
}

.lovely-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 18px auto 0;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(41, 36, 43, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(84, 50, 71, 0.1);
  backdrop-filter: blur(20px) saturate(1.3);
}

.lovely-brand img {
  width: 156px;
}

.lovely-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lovely-nav a {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #4e4650;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lovely-nav a:hover {
  background: rgba(255, 92, 154, 0.1);
  color: #29242b;
}

.lovely-clean-hero {
  display: grid;
  width: min(1120px, calc(100% - 28px));
  min-height: 680px;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 52px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 86px;
}

.lovely-clean-copy {
  display: grid;
  gap: 22px;
}

.lovely-clean-copy span,
.lovely-section-title span {
  color: var(--lovely);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lovely-clean-copy h1,
.lovely-section-title h2 {
  margin: 0;
  color: #29242b;
  font-size: clamp(2.9rem, 6vw, 6.4rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: none;
}

.lovely-clean-copy p {
  max-width: 560px;
  color: rgba(41, 36, 43, 0.66);
  font-size: 1.08rem;
  line-height: 1.8;
}

.lovely-button {
  display: inline-flex;
  width: fit-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  background: #29242b;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.lovely-clean-mark {
  display: grid;
  min-height: 440px;
  place-items: center;
  border: 1px solid rgba(41, 36, 43, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 70% 20%, rgba(32, 216, 232, 0.14), transparent 18rem);
  box-shadow: 0 32px 78px rgba(84, 50, 71, 0.12);
}

.lovely-clean-mark img {
  width: min(430px, 76%);
}

.lovely-catalogs {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 36px 0 94px;
}

.lovely-section-title {
  display: grid;
  max-width: 620px;
  gap: 14px;
  margin-bottom: 34px;
}

.lovely-section-title h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}

.lovely-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lovely-clean-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(41, 36, 43, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 60px rgba(84, 50, 71, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lovely-clean-card:hover {
  box-shadow: 0 30px 72px rgba(84, 50, 71, 0.18);
  transform: translateY(-4px);
}

.lovely-clean-card span {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lovely-clean-card strong {
  color: #29242b;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.lovely-clean-card small {
  color: rgba(41, 36, 43, 0.56);
  font-weight: 900;
  text-transform: uppercase;
}

.lovely-clean-card.casa span {
  background: #ff7c3b;
}

.lovely-clean-card.pet span {
  background: #2bbfd2;
}

.lovely-clean-card.festa span {
  background: #ff5c9a;
}

.lovely-footer {
  display: flex;
  width: min(1120px, calc(100% - 28px));
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(41, 36, 43, 0.1);
}

.lovely-footer img {
  width: 142px;
}

.lovely-footer a {
  color: rgba(41, 36, 43, 0.62);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 160px 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    display: none;
    width: min(310px, 100%);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(8, 9, 12, 0.94);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 64px;
    height: 100%;
    place-items: center;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--orange);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .hero-top,
  .split-section,
  .wx-section,
  .colors-section,
  .trio-section,
  .lovely-hero,
  .footer {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    height: 520px;
  }

  .wx-copy {
    padding-bottom: 0;
  }

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

  .lovely-clean-hero,
  .lovely-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    background: #111318;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    grid-template-columns: 132px 1fr 58px;
    margin-top: 10px;
  }

  .brand img {
    width: 106px;
  }

  .split-section,
  .wx-section,
  .colors-section,
  .lovely-section,
  .trio-section,
  .footer {
    width: calc(100% - 20px);
  }

  .hero {
    min-height: 820px;
    margin-top: -72px;
  }

  .hero-center {
    padding-top: 150px;
    padding-bottom: 72px;
  }

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

  .split-section,
  .wx-section,
  .colors-section,
  .lovely-section {
    padding: 68px 0;
  }

  .portrait-card {
    height: 430px;
  }

  .wx-card,
  .colors-product {
    min-height: 460px;
  }

  .wx-product {
    inset: 76px 0 104px;
    height: calc(100% - 180px);
  }

  .wx-stats {
    grid-template-columns: 1fr;
  }

  .colors-product img {
    min-height: 460px;
  }

  .catalog-card {
    min-height: 260px;
  }

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

  .lovely-header,
  .lovely-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .lovely-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .lovely-nav a {
    padding: 10px 8px;
    text-align: center;
  }

  .lovely-clean-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .lovely-clean-mark {
    min-height: 280px;
  }
}
