:root {
  --paper: #f2eee5;
  --paper-2: #e5dccd;
  --ink: #15130f;
  --muted: #6d655b;
  --line: rgba(21, 19, 15, 0.16);
  --accent: #9e2f1c;
  --accent-dark: #5e1b12;
  --white: #fffaf1;
  --shadow: 0 26px 80px rgba(21, 19, 15, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(158,47,28,.12), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(21,19,15,.08), transparent 26rem),
    var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(21,19,15,.06) 1px, transparent 1px),
    linear-gradient(rgba(21,19,15,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.site-header,
main,
.footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(242, 238, 229, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.35rem;
  font-family: Georgia, serif;
}
.brand strong { display: block; line-height: 1; font-size: 1.1rem; }
.brand small { display: block; color: var(--muted); font-size: .64rem; margin-top: 4px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--accent); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 13px 12px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
}

.section-pad { padding: clamp(62px, 9vw, 128px) clamp(18px, 5vw, 72px); }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .76rem;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .94;
}
h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 8vw, 8.8rem);
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5.8rem);
}
h3 { margin-bottom: 10px; font-size: 1.18rem; }
p { color: var(--muted); line-height: 1.75; }
.hero-text { max-width: 760px; font-size: clamp(1rem, 1.4vw, 1.18rem); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .8rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(21,19,15,.14); }
.button.primary { background: var(--ink); color: var(--paper); }
.button.ghost { background: transparent; }

.hero-art {
  position: relative;
  min-height: 650px;
}
.hero-main,
.hero-side {
  position: absolute;
  object-fit: cover;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  filter: saturate(.92) contrast(1.04);
}
.hero-main {
  inset: 38px 8% auto auto;
  width: min(440px, 76%);
  height: 560px;
  border-radius: 36px;
}
.hero-side { border-radius: 28px; }
.side-a {
  width: 230px;
  height: 310px;
  left: 0;
  bottom: 72px;
  transform: rotate(-6deg);
}
.side-b {
  width: 210px;
  height: 270px;
  right: 0;
  bottom: 0;
  transform: rotate(7deg);
}
.stamp {
  position: absolute;
  left: 12%;
  top: 0;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.1;
  text-align: center;
  background: rgba(242,238,229,.72);
  z-index: 3;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, .38);
}
.strip div {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.strip div:last-child { border-right: none; }
.strip span {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 90px minmax(0, .92fr) minmax(330px, .78fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
}
.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
  border-right: 1px solid var(--line);
  min-height: 420px;
  padding-right: 28px;
}
.style-cards {
  display: grid;
  gap: 14px;
}
.style-card {
  padding: 26px;
  background: rgba(255, 250, 241, .52);
  border: 1px solid var(--line);
  border-radius: 26px;
}
.style-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.1rem;
}
.style-card p { margin-bottom: 0; }

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}
.section-heading p:last-child { max-width: 620px; }
.section-heading.compact { max-width: 900px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(21,19,15,.11);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, opacity .45s ease;
}
.gallery-item::after {
  content: "Смотреть";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(242,238,229,.86);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
}
.gallery-item:hover img { transform: scale(1.045); opacity: .86; }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item.tall,
.gallery-item.wide {
  grid-row: auto;
  grid-column: auto;
}

.process {
  background: var(--ink);
  color: var(--paper);
}
.process p { color: rgba(242,238,229,.72); }
.process .eyebrow { color: #f0a08e; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(242,238,229,.16);
}
.timeline div {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(242,238,229,.16);
}
.timeline div:last-child { border-right: 0; }
.timeline strong {
  display: block;
  margin-bottom: 72px;
  color: #f0a08e;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
}
.timeline h3 { color: var(--paper); }
.timeline p { margin-bottom: 0; }

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(24px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: 0 26px 80px rgba(21, 19, 15, .10);
}
.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}
.contact-panel a {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.contact-panel a:last-child { border-bottom: 0; }
.contact-panel a:hover { background: var(--paper-2); }
.contact-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.contact-panel strong { line-height: 1.45; overflow-wrap: anywhere; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer a { color: var(--ink); font-weight: 800; }

.lightbox {
  width: min(94vw, 1100px);
  max-height: 92vh;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(0,0,0,.86); }
.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 560px; max-width: 680px; width: 100%; margin: 0 auto; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip div:nth-child(2) { border-right: 0; }
  .strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid { grid-template-columns: 1fr; }
  .vertical-title { writing-mode: horizontal-tb; transform: none; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 18px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline div:nth-child(2) { border-right: 0; }
  .timeline div:nth-child(-n+2) { border-bottom: 1px solid rgba(242,238,229,.16); }
  .booking-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; }
  .menu-button { display: block; }
  .nav {
    position: fixed;
    inset: 70px 12px auto 12px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 241, .96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 16px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .section-pad { padding: 58px 18px; }
  h1 { font-size: clamp(3rem, 17vw, 5.2rem); }
  .hero { min-height: auto; padding-top: 44px; }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .hero-art { min-height: 470px; }
  .hero-main { width: 76%; height: 420px; right: 0; border-width: 7px; border-radius: 28px; }
  .hero-side { border-width: 7px; }
  .side-a { width: 170px; height: 230px; bottom: 48px; }
  .side-b { width: 150px; height: 200px; }
  .stamp { width: 96px; height: 96px; font-size: .8rem; }
  .strip { grid-template-columns: 1fr; }
  .strip div { border-right: 0; border-bottom: 1px solid var(--line); min-height: 86px; }
  .strip div:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 3 / 4; }
  .timeline { grid-template-columns: 1fr; }
  .timeline div { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(242,238,229,.16); }
  .timeline div:last-child { border-bottom: 0; }
  .timeline strong { margin-bottom: 34px; }
  .booking-card { border-radius: 28px; }
  .footer { flex-direction: column; }
  .lightbox-close { right: 0; }
}

/* HERO_TIDY_V1: cleaner, balanced hero image collage */
@media (min-width: 1081px) {
  .hero {
    grid-template-columns: minmax(0, .86fr) minmax(520px, .88fr);
    gap: clamp(26px, 4vw, 70px);
  }

  .hero-art {
    min-height: 610px;
    width: 100%;
    max-width: 760px;
    justify-self: end;
    isolation: isolate;
  }

  .hero-art::before {
    content: "";
    position: absolute;
    inset: 72px 44px 48px 86px;
    z-index: 0;
    border: 1px solid rgba(21, 19, 15, .10);
    border-radius: 46px;
    background:
      radial-gradient(circle at 78% 28%, rgba(255,250,241,.78), transparent 18rem),
      linear-gradient(135deg, rgba(255,250,241,.58), rgba(229,220,205,.34));
    box-shadow: inset 0 1px 0 rgba(255,250,241,.75), 0 30px 90px rgba(21,19,15,.07);
  }

  .hero-main,
  .hero-side,
  .stamp {
    z-index: 2;
  }

  .hero-main {
    top: 104px;
    right: 100px;
    width: 370px;
    height: 470px;
    border-width: 8px;
    border-radius: 32px;
  }

  .side-a {
    top: 276px;
    left: 96px;
    bottom: auto;
    width: 176px;
    height: 238px;
    border-width: 8px;
    border-radius: 24px;
    transform: rotate(-5deg);
    z-index: 3;
  }

  .side-b {
    right: 40px;
    bottom: 86px;
    width: 164px;
    height: 224px;
    border-width: 8px;
    border-radius: 24px;
    transform: rotate(6deg);
    z-index: 4;
  }

  .stamp {
    left: 138px;
    top: 106px;
    width: 98px;
    height: 98px;
    font-size: .78rem;
    background: rgba(255, 250, 241, .80);
    backdrop-filter: blur(10px);
  }
}

@media (min-width: 1081px) and (max-width: 1320px) {
  .hero-art { max-width: 640px; min-height: 560px; }
  .hero-art::before { inset: 68px 24px 44px 64px; }
  .hero-main { right: 64px; width: 330px; height: 430px; }
  .side-a { left: 62px; top: 270px; width: 156px; height: 214px; }
  .side-b { right: 16px; bottom: 74px; width: 146px; height: 202px; }
  .stamp { left: 106px; top: 106px; width: 88px; height: 88px; }
}

@media (max-width: 1080px) {
  .hero-art::before { display: none; }
}

/* MOBILE_HERO_COLLAGE_FIX_V1 */
@media (max-width: 760px) {
  .hero {
    padding-top: 34px !important;
  }

  .hero-art {
    min-height: 520px !important;
    height: 520px !important;
    max-width: 100% !important;
    overflow: visible !important;
    margin-top: 10px !important;
  }

  .hero-main {
    width: 68vw !important;
    height: 390px !important;
    max-width: 430px !important;
    top: 70px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    border-width: 8px !important;
    border-radius: 28px !important;
    z-index: 2 !important;
  }

  .side-a {
    width: 41vw !important;
    height: 275px !important;
    max-width: 250px !important;
    left: 5vw !important;
    top: 250px !important;
    bottom: auto !important;
    transform: rotate(-5deg) !important;
    border-width: 8px !important;
    border-radius: 24px !important;
    z-index: 4 !important;
  }

  .side-b {
    width: 38vw !important;
    height: 260px !important;
    max-width: 230px !important;
    right: 4vw !important;
    top: 305px !important;
    bottom: auto !important;
    transform: rotate(5deg) !important;
    border-width: 8px !important;
    border-radius: 24px !important;
    z-index: 5 !important;
  }

  .stamp {
    width: 105px !important;
    height: 105px !important;
    left: 16vw !important;
    top: 14px !important;
    z-index: 6 !important;
    background: rgba(244, 239, 228, .72) !important;
    backdrop-filter: blur(8px) !important;
  }
}

@media (max-width: 430px) {
  .hero-art {
    min-height: 500px !important;
    height: 500px !important;
  }

  .hero-main {
    width: 70vw !important;
    height: 365px !important;
    top: 72px !important;
  }

  .side-a {
    width: 42vw !important;
    height: 250px !important;
    left: 4vw !important;
    top: 245px !important;
  }

  .side-b {
    width: 39vw !important;
    height: 238px !important;
    right: 3vw !important;
    top: 292px !important;
  }

  .stamp {
    left: 13vw !important;
    top: 16px !important;
    width: 96px !important;
    height: 96px !important;
  }
}

@media (max-width: 380px) {
  .hero-art {
    min-height: 470px !important;
    height: 470px !important;
  }

  .hero-main {
    height: 340px !important;
  }

  .side-a {
    height: 225px !important;
    top: 238px !important;
  }

  .side-b {
    height: 220px !important;
    top: 278px !important;
  }
}

/* MOBILE_HERO_MAIN_IMAGE_UP_V1 */
@media (max-width: 760px) {
  .hero-main {
    top: 42px !important;
  }

  .side-a {
    top: 245px !important;
  }

  .side-b {
    top: 298px !important;
  }
}

@media (max-width: 430px) {
  .hero-main {
    top: 44px !important;
  }

  .side-a {
    top: 235px !important;
  }

  .side-b {
    top: 282px !important;
  }
}

@media (max-width: 380px) {
  .hero-main {
    top: 42px !important;
  }

  .side-a {
    top: 228px !important;
  }

  .side-b {
    top: 268px !important;
  }
}

/* MOBILE_HERO_MAIN_IMAGE_HIGHER_V2 */
@media (max-width: 760px) {
  .hero-main {
    top: 24px !important;
  }

  .side-a {
    top: 228px !important;
  }

  .side-b {
    top: 280px !important;
  }

  .stamp {
    top: 6px !important;
  }
}

@media (max-width: 430px) {
  .hero-main {
    top: 26px !important;
  }

  .side-a {
    top: 218px !important;
  }

  .side-b {
    top: 264px !important;
  }

  .stamp {
    top: 8px !important;
  }
}

@media (max-width: 380px) {
  .hero-main {
    top: 24px !important;
  }

  .side-a {
    top: 210px !important;
  }

  .side-b {
    top: 250px !important;
  }
}



/* MOBILE_HERO_SLIGHTLY_LOWER_AFTER_REVERT_V1 */
@media (max-width: 760px) {
  .hero-main {
    top: 36px !important;
  }

  .side-a {
    top: 230px !important;
  }

  .side-b {
    top: 276px !important;
  }

  .stamp {
    top: 12px !important;
  }
}

@media (max-width: 430px) {
  .hero-main {
    top: 38px !important;
  }

  .side-a {
    top: 222px !important;
  }

  .side-b {
    top: 260px !important;
  }

  .stamp {
    top: 12px !important;
  }
}

@media (max-width: 380px) {
  .hero-main {
    top: 36px !important;
  }

  .side-a {
    top: 214px !important;
  }

  .side-b {
    top: 246px !important;
  }
}

/* MOBILE_HERO_LITTLE_MORE_LOWER_V2 */
@media (max-width: 760px) {
  .hero-main {
    top: 50px !important;
  }

  .side-a {
    top: 244px !important;
  }

  .side-b {
    top: 290px !important;
  }

  .stamp {
    top: 24px !important;
  }
}

@media (max-width: 430px) {
  .hero-main {
    top: 52px !important;
  }

  .side-a {
    top: 236px !important;
  }

  .side-b {
    top: 274px !important;
  }

  .stamp {
    top: 24px !important;
  }
}

@media (max-width: 380px) {
  .hero-main {
    top: 50px !important;
  }

  .side-a {
    top: 228px !important;
  }

  .side-b {
    top: 260px !important;
  }
}

/* MOBILE_HERO_BIT_MORE_LOWER_V3 */
@media (max-width: 760px) {
  .hero-main {
    top: 64px !important;
  }

  .side-a {
    top: 258px !important;
  }

  .side-b {
    top: 304px !important;
  }

  .stamp {
    top: 36px !important;
  }
}

@media (max-width: 430px) {
  .hero-main {
    top: 66px !important;
  }

  .side-a {
    top: 250px !important;
  }

  .side-b {
    top: 288px !important;
  }

  .stamp {
    top: 36px !important;
  }
}

@media (max-width: 380px) {
  .hero-main {
    top: 64px !important;
  }

  .side-a {
    top: 242px !important;
  }

  .side-b {
    top: 274px !important;
  }
}

/* MOBILE_HERO_CIRCLE_UP_SMALL_IMAGES_DOWN_V1 */
@media (max-width: 760px) {
  .stamp {
    top: 12px !important;
  }

  .hero-main {
    top: 64px !important; /* unchanged */
  }

  .side-a {
    top: 276px !important;
  }

  .side-b {
    top: 322px !important;
  }
}

@media (max-width: 430px) {
  .stamp {
    top: 14px !important;
  }

  .hero-main {
    top: 66px !important; /* unchanged */
  }

  .side-a {
    top: 268px !important;
  }

  .side-b {
    top: 306px !important;
  }
}

@media (max-width: 380px) {
  .stamp {
    top: 14px !important;
  }

  .hero-main {
    top: 64px !important; /* unchanged */
  }

  .side-a {
    top: 260px !important;
  }

  .side-b {
    top: 292px !important;
  }
}

/* MOBILE_HERO_SMALL_IMAGES_LOWER_AGAIN_V2 */
@media (max-width: 760px) {
  .stamp {
    top: 12px !important; /* unchanged */
  }

  .hero-main {
    top: 64px !important; /* unchanged */
  }

  .side-a {
    top: 292px !important;
  }

  .side-b {
    top: 338px !important;
  }
}

@media (max-width: 430px) {
  .stamp {
    top: 14px !important; /* unchanged */
  }

  .hero-main {
    top: 66px !important; /* unchanged */
  }

  .side-a {
    top: 284px !important;
  }

  .side-b {
    top: 322px !important;
  }
}

@media (max-width: 380px) {
  .stamp {
    top: 14px !important; /* unchanged */
  }

  .hero-main {
    top: 64px !important; /* unchanged */
  }

  .side-a {
    top: 274px !important;
  }

  .side-b {
    top: 308px !important;
  }
}

/* MOBILE_HERO_SMALL_IMAGES_DOUBLE_LOWER_V3 */
@media (max-width: 760px) {
  .stamp {
    top: 12px !important; /* unchanged */
  }

  .hero-main {
    top: 64px !important; /* unchanged */
  }

  .side-a {
    top: 324px !important;
  }

  .side-b {
    top: 370px !important;
  }
}

@media (max-width: 430px) {
  .stamp {
    top: 14px !important; /* unchanged */
  }

  .hero-main {
    top: 66px !important; /* unchanged */
  }

  .side-a {
    top: 316px !important;
  }

  .side-b {
    top: 354px !important;
  }
}

@media (max-width: 380px) {
  .stamp {
    top: 14px !important; /* unchanged */
  }

  .hero-main {
    top: 64px !important; /* unchanged */
  }

  .side-a {
    top: 306px !important;
  }

  .side-b {
    top: 340px !important;
  }
}

/* MOBILE_HERO_CLEANER_OVERLAP_V4 */
@media (max-width: 760px) {
  .hero-art {
    min-height: 860px !important;
    height: 860px !important;
    margin-bottom: 24px !important;
  }

  .hero-main {
    top: 64px !important; /* keep current big image position */
  }

  .stamp {
    top: 12px !important; /* keep current LAD INK circle position */
  }

  .side-a {
    top: 410px !important;
    left: 34px !important;
  }

  .side-b {
    top: 442px !important;
    right: 22px !important;
  }

  .steps,
  .process,
  .section-process,
  .section-steps {
    margin-top: 28px !important;
  }
}

@media (max-width: 430px) {
  .hero-art {
    min-height: 820px !important;
    height: 820px !important;
    margin-bottom: 22px !important;
  }

  .hero-main {
    top: 66px !important; /* keep current big image position */
  }

  .stamp {
    top: 14px !important; /* keep current LAD INK circle position */
  }

  .side-a {
    top: 398px !important;
    left: 28px !important;
  }

  .side-b {
    top: 430px !important;
    right: 18px !important;
  }

  .steps,
  .process,
  .section-process,
  .section-steps {
    margin-top: 26px !important;
  }
}

@media (max-width: 380px) {
  .hero-art {
    min-height: 790px !important;
    height: 790px !important;
  }

  .hero-main {
    top: 64px !important; /* keep current big image position */
  }

  .stamp {
    top: 14px !important;
  }

  .side-a {
    top: 384px !important;
    left: 20px !important;
  }

  .side-b {
    top: 414px !important;
    right: 12px !important;
  }
}

/* MOBILE_HERO_RIGHT_UP_TEXT_UP_V5 */
@media (max-width: 760px) {
  .hero-art {
    min-height: 740px !important;
    height: 740px !important;
    margin-bottom: 6px !important;
  }

  .hero-main {
    top: 64px !important; /* keep big image where it is */
  }

  .stamp {
    top: 12px !important; /* keep LAD INK circle where it is */
  }

  .side-a {
    top: 410px !important; /* keep left small image as reference */
    left: 34px !important;
  }

  .side-b {
    top: 410px !important; /* move right image up to match left */
    right: 22px !important;
  }

  .steps,
  .process,
  .section-process,
  .section-steps {
    margin-top: 0 !important;
  }
}

@media (max-width: 430px) {
  .hero-art {
    min-height: 700px !important;
    height: 700px !important;
    margin-bottom: 4px !important;
  }

  .hero-main {
    top: 66px !important; /* keep big image where it is */
  }

  .stamp {
    top: 14px !important; /* keep LAD INK circle where it is */
  }

  .side-a {
    top: 398px !important; /* keep left small image as reference */
    left: 28px !important;
  }

  .side-b {
    top: 398px !important; /* move right image up to be symmetrical */
    right: 18px !important;
  }

  .steps,
  .process,
  .section-process,
  .section-steps {
    margin-top: 0 !important;
  }
}

@media (max-width: 380px) {
  .hero-art {
    min-height: 675px !important;
    height: 675px !important;
    margin-bottom: 2px !important;
  }

  .hero-main {
    top: 64px !important;
  }

  .stamp {
    top: 14px !important;
  }

  .side-a {
    top: 384px !important;
    left: 20px !important;
  }

  .side-b {
    top: 384px !important;
    right: 12px !important;
  }

  .steps,
  .process,
  .section-process,
  .section-steps {
    margin-top: 0 !important;
  }
}

/* DESKTOP_HERO_LEFT_BIGGER_SYMMETRICAL_V1 */
@media (min-width: 1081px) {
  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(640px, 1fr) !important;
    gap: clamp(28px, 4vw, 72px) !important;
  }

  .hero-art {
    position: relative !important;
    min-height: 690px !important;
    height: 690px !important;
    max-width: 860px !important;
    width: 100% !important;
    justify-self: start !important;
    margin-left: -55px !important;   /* move whole collage left */
    overflow: visible !important;
  }

  .hero-art::before {
    content: "" !important;
    position: absolute !important;
    inset: 54px 36px 64px 36px !important;
    border-radius: 34px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(0,0,0,.02)) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.06) !important;
    z-index: 0 !important;
  }

  .stamp,
  .hero-main,
  .hero-side {
    position: absolute !important;
  }

  .stamp {
    top: 72px !important;
    left: 150px !important;
    width: 92px !important;
    height: 92px !important;
    z-index: 5 !important;
  }

  .hero-main {
    top: 92px !important;
    left: 250px !important;
    width: 430px !important;
    height: 560px !important;
    border-width: 8px !important;
    border-radius: 28px !important;
    z-index: 2 !important;
  }

  .side-a {
    top: 330px !important;
    left: 94px !important;
    width: 205px !important;
    height: 270px !important;
    transform: rotate(-4deg) !important;
    border-width: 8px !important;
    border-radius: 22px !important;
    z-index: 4 !important;
  }

  .side-b {
    top: 330px !important;
    left: 608px !important;
    width: 205px !important;
    height: 270px !important;
    transform: rotate(4deg) !important;
    border-width: 8px !important;
    border-radius: 22px !important;
    z-index: 4 !important;
  }
}

@media (min-width: 1081px) and (max-width: 1320px) {
  .hero-art {
    min-height: 620px !important;
    height: 620px !important;
    max-width: 760px !important;
    margin-left: -35px !important;
  }

  .stamp {
    top: 64px !important;
    left: 128px !important;
    width: 84px !important;
    height: 84px !important;
  }

  .hero-main {
    top: 86px !important;
    left: 220px !important;
    width: 370px !important;
    height: 490px !important;
  }

  .side-a {
    top: 300px !important;
    left: 80px !important;
    width: 178px !important;
    height: 238px !important;
  }

  .side-b {
    top: 300px !important;
    left: 530px !important;
    width: 178px !important;
    height: 238px !important;
  }
}

/* DESKTOP_HERO_BIGGER_MOBILE_STYLE_V2 */
@media (min-width: 1081px) {
  .hero {
    grid-template-columns: minmax(0, .88fr) minmax(760px, 1.08fr) !important;
    gap: clamp(24px, 3.2vw, 58px) !important;
  }

  .hero-art {
    position: relative !important;
    min-height: 760px !important;
    height: 760px !important;
    max-width: 980px !important;
    width: 100% !important;
    justify-self: start !important;
    margin-left: -95px !important;
    overflow: visible !important;
  }

  .hero-art::before {
    content: "" !important;
    position: absolute !important;
    inset: 56px 48px 54px 60px !important;
    border-radius: 36px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(0,0,0,.025)) !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 28px 75px rgba(0,0,0,.07) !important;
    z-index: 0 !important;
  }

  .stamp,
  .hero-main,
  .hero-side {
    position: absolute !important;
  }

  .hero-main {
    top: 88px !important;
    left: 330px !important;
    width: 500px !important;
    height: 635px !important;
    border-width: 9px !important;
    border-radius: 32px !important;
    z-index: 2 !important;
  }

  .stamp {
    top: 58px !important;
    left: 270px !important;
    width: 105px !important;
    height: 105px !important;
    z-index: 6 !important;
    background: rgba(244,239,228,.74) !important;
    backdrop-filter: blur(8px) !important;
  }

  .side-a {
    top: 400px !important;
    left: 165px !important;
    width: 230px !important;
    height: 305px !important;
    transform: rotate(-4deg) !important;
    border-width: 9px !important;
    border-radius: 26px !important;
    z-index: 4 !important;
  }

  .side-b {
    top: 400px !important;
    left: 765px !important;
    width: 230px !important;
    height: 305px !important;
    transform: rotate(4deg) !important;
    border-width: 9px !important;
    border-radius: 26px !important;
    z-index: 4 !important;
  }
}

@media (min-width: 1081px) and (max-width: 1450px) {
  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(680px, 1fr) !important;
  }

  .hero-art {
    min-height: 680px !important;
    height: 680px !important;
    max-width: 850px !important;
    margin-left: -65px !important;
  }

  .hero-art::before {
    inset: 50px 36px 50px 52px !important;
  }

  .hero-main {
    top: 82px !important;
    left: 280px !important;
    width: 430px !important;
    height: 560px !important;
  }

  .stamp {
    top: 52px !important;
    left: 224px !important;
    width: 96px !important;
    height: 96px !important;
  }

  .side-a {
    top: 350px !important;
    left: 120px !important;
    width: 205px !important;
    height: 275px !important;
  }

  .side-b {
    top: 350px !important;
    left: 650px !important;
    width: 205px !important;
    height: 275px !important;
  }
}

/* DESKTOP_HERO_BIGGER_V3 */
@media (min-width: 1081px) {
  .hero-art {
    min-height: 820px !important;
    height: 820px !important;
    max-width: 1080px !important;
    margin-left: -125px !important;
  }

  .hero-art::before {
    inset: 54px 38px 50px 48px !important;
    border-radius: 38px !important;
  }

  .hero-main {
    top: 82px !important;
    left: 350px !important;
    width: 555px !important;
    height: 700px !important;
    border-width: 10px !important;
    border-radius: 34px !important;
  }

  .stamp {
    top: 48px !important;
    left: 285px !important;
    width: 112px !important;
    height: 112px !important;
  }

  .side-a {
    top: 430px !important;
    left: 165px !important;
    width: 260px !important;
    height: 345px !important;
    border-width: 10px !important;
    border-radius: 28px !important;
  }

  .side-b {
    top: 430px !important;
    left: 840px !important;
    width: 260px !important;
    height: 345px !important;
    border-width: 10px !important;
    border-radius: 28px !important;
  }
}

@media (min-width: 1081px) and (max-width: 1450px) {
  .hero-art {
    min-height: 730px !important;
    height: 730px !important;
    max-width: 940px !important;
    margin-left: -85px !important;
  }

  .hero-main {
    top: 80px !important;
    left: 300px !important;
    width: 475px !important;
    height: 615px !important;
  }

  .stamp {
    top: 48px !important;
    left: 244px !important;
    width: 102px !important;
    height: 102px !important;
  }

  .side-a {
    top: 388px !important;
    left: 128px !important;
    width: 225px !important;
    height: 305px !important;
  }

  .side-b {
    top: 388px !important;
    left: 700px !important;
    width: 225px !important;
    height: 305px !important;
  }
}

/* DESKTOP_HERO_BIGGER_V4 */
@media (min-width: 1081px) {
  .hero-art {
    min-height: 880px !important;
    height: 880px !important;
    max-width: 1160px !important;
    margin-left: -155px !important;
  }

  .hero-art::before {
    inset: 50px 26px 46px 38px !important;
    border-radius: 40px !important;
  }

  .hero-main {
    top: 74px !important;
    left: 370px !important;
    width: 615px !important;
    height: 760px !important;
    border-width: 10px !important;
    border-radius: 36px !important;
  }

  .stamp {
    top: 38px !important;
    left: 300px !important;
    width: 120px !important;
    height: 120px !important;
  }

  .side-a {
    top: 465px !important;
    left: 155px !important;
    width: 285px !important;
    height: 375px !important;
    border-width: 10px !important;
    border-radius: 30px !important;
  }

  .side-b {
    top: 465px !important;
    left: 920px !important;
    width: 285px !important;
    height: 375px !important;
    border-width: 10px !important;
    border-radius: 30px !important;
  }
}

@media (min-width: 1081px) and (max-width: 1450px) {
  .hero-art {
    min-height: 790px !important;
    height: 790px !important;
    max-width: 1020px !important;
    margin-left: -115px !important;
  }

  .hero-main {
    top: 72px !important;
    left: 320px !important;
    width: 535px !important;
    height: 685px !important;
  }

  .stamp {
    top: 38px !important;
    left: 260px !important;
    width: 108px !important;
    height: 108px !important;
  }

  .side-a {
    top: 430px !important;
    left: 120px !important;
    width: 250px !important;
    height: 335px !important;
  }

  .side-b {
    top: 430px !important;
    left: 790px !important;
    width: 250px !important;
    height: 335px !important;
  }
}

/* DESKTOP_HERO_BIGGER_V5 */
@media (min-width: 1081px) {
  .hero-art {
    min-height: 940px !important;
    height: 940px !important;
    max-width: 1250px !important;
    margin-left: -190px !important;
  }

  .hero-art::before {
    inset: 48px 18px 42px 30px !important;
    border-radius: 42px !important;
  }

  .hero-main {
    top: 68px !important;
    left: 390px !important;
    width: 675px !important;
    height: 830px !important;
    border-width: 11px !important;
    border-radius: 38px !important;
  }

  .stamp {
    top: 28px !important;
    left: 312px !important;
    width: 130px !important;
    height: 130px !important;
  }

  .side-a {
    top: 515px !important;
    left: 145px !important;
    width: 315px !important;
    height: 415px !important;
    border-width: 11px !important;
    border-radius: 32px !important;
  }

  .side-b {
    top: 515px !important;
    left: 1000px !important;
    width: 315px !important;
    height: 415px !important;
    border-width: 11px !important;
    border-radius: 32px !important;
  }
}

@media (min-width: 1081px) and (max-width: 1450px) {
  .hero-art {
    min-height: 850px !important;
    height: 850px !important;
    max-width: 1100px !important;
    margin-left: -150px !important;
  }

  .hero-main {
    top: 66px !important;
    left: 340px !important;
    width: 590px !important;
    height: 755px !important;
  }

  .stamp {
    top: 28px !important;
    left: 272px !important;
    width: 116px !important;
    height: 116px !important;
  }

  .side-a {
    top: 475px !important;
    left: 110px !important;
    width: 280px !important;
    height: 375px !important;
  }

  .side-b {
    top: 475px !important;
    left: 860px !important;
    width: 280px !important;
    height: 375px !important;
  }
}


/* FINAL_GIRL_LOGO_HEADER_V1 */
.brand-logo {
  width: 54px !important;
  height: 54px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.08) !important;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 56px !important;
    height: 56px !important;
  }
}

/* RESPONSIVE_DESKTOP_HERO_FINAL_V1 */
/* Makes hero collage scale properly on laptops, desktops and large screens */
@media (min-width: 1081px) {
  .hero {
    grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr) !important;
    gap: clamp(24px, 3.5vw, 72px) !important;
    overflow: hidden !important;
  }

  .hero-art {
    position: relative !important;
    width: clamp(620px, 54vw, 980px) !important;
    max-width: 100% !important;
    height: clamp(500px, 48vw, 760px) !important;
    min-height: clamp(500px, 48vw, 760px) !important;
    justify-self: start !important;
    margin-left: clamp(-125px, -5vw, -45px) !important;
    overflow: visible !important;
  }

  .hero-art::before {
    content: "" !important;
    position: absolute !important;
    inset:
      clamp(32px, 4vw, 54px)
      clamp(18px, 3vw, 42px)
      clamp(28px, 3vw, 46px)
      clamp(24px, 3vw, 42px) !important;
    border-radius: clamp(28px, 2.5vw, 42px) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.32), rgba(0,0,0,.025)) !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.07) !important;
    z-index: 0 !important;
  }

  .stamp,
  .hero-main,
  .hero-side {
    position: absolute !important;
  }

  .hero-main {
    top: clamp(48px, 5vw, 72px) !important;
    left: clamp(250px, 25vw, 390px) !important;
    width: clamp(390px, 34vw, 560px) !important;
    height: clamp(500px, 43vw, 700px) !important;
    border-width: clamp(8px, .65vw, 10px) !important;
    border-radius: clamp(28px, 2vw, 36px) !important;
    z-index: 2 !important;
  }

  .stamp {
    top: clamp(18px, 3vw, 38px) !important;
    left: clamp(205px, 20.5vw, 315px) !important;
    width: clamp(88px, 7vw, 116px) !important;
    height: clamp(88px, 7vw, 116px) !important;
    z-index: 6 !important;
    background: rgba(244,239,228,.74) !important;
    backdrop-filter: blur(8px) !important;
  }

  .side-a {
    top: clamp(315px, 31vw, 450px) !important;
    left: clamp(70px, 8vw, 145px) !important;
    width: clamp(190px, 16vw, 265px) !important;
    height: clamp(255px, 21.5vw, 355px) !important;
    transform: rotate(-4deg) !important;
    border-width: clamp(8px, .65vw, 10px) !important;
    border-radius: clamp(24px, 2vw, 30px) !important;
    z-index: 4 !important;
  }

  .side-b {
    top: clamp(315px, 31vw, 450px) !important;
    left: clamp(590px, 51vw, 835px) !important;
    width: clamp(190px, 16vw, 265px) !important;
    height: clamp(255px, 21.5vw, 355px) !important;
    transform: rotate(4deg) !important;
    border-width: clamp(8px, .65vw, 10px) !important;
    border-radius: clamp(24px, 2vw, 30px) !important;
    z-index: 4 !important;
  }
}

/* Laptop-specific safety: prevents the right image from spilling off-screen */
@media (min-width: 1081px) and (max-width: 1366px) {
  .hero {
    grid-template-columns: minmax(390px, .9fr) minmax(560px, 1fr) !important;
    gap: 24px !important;
  }

  .hero-art {
    width: 700px !important;
    height: 560px !important;
    min-height: 560px !important;
    margin-left: -45px !important;
  }

  .hero-main {
    top: 54px !important;
    left: 250px !important;
    width: 390px !important;
    height: 505px !important;
  }

  .stamp {
    top: 22px !important;
    left: 205px !important;
    width: 88px !important;
    height: 88px !important;
  }

  .side-a {
    top: 322px !important;
    left: 75px !important;
    width: 190px !important;
    height: 255px !important;
  }

  .side-b {
    top: 322px !important;
    left: 585px !important;
    width: 190px !important;
    height: 255px !important;
  }
}

/* Medium desktop */
@media (min-width: 1367px) and (max-width: 1650px) {
  .hero-art {
    width: 820px !important;
    height: 650px !important;
    min-height: 650px !important;
    margin-left: -80px !important;
  }

  .hero-main {
    top: 60px !important;
    left: 300px !important;
    width: 465px !important;
    height: 600px !important;
  }

  .stamp {
    top: 28px !important;
    left: 245px !important;
    width: 98px !important;
    height: 98px !important;
  }

  .side-a {
    top: 385px !important;
    left: 100px !important;
    width: 225px !important;
    height: 300px !important;
  }

  .side-b {
    top: 385px !important;
    left: 700px !important;
    width: 225px !important;
    height: 300px !important;
  }
}

/* Large desktop */
@media (min-width: 1651px) {
  .hero-art {
    width: 960px !important;
    height: 740px !important;
    min-height: 740px !important;
    margin-left: -115px !important;
  }

  .hero-main {
    top: 66px !important;
    left: 360px !important;
    width: 555px !important;
    height: 700px !important;
  }

  .stamp {
    top: 32px !important;
    left: 292px !important;
    width: 112px !important;
    height: 112px !important;
  }

  .side-a {
    top: 440px !important;
    left: 130px !important;
    width: 265px !important;
    height: 355px !important;
  }

  .side-b {
    top: 440px !important;
    left: 835px !important;
    width: 265px !important;
    height: 355px !important;
  }
}

/* HEADER_LOGO_BIGGER_V1 */
.site-header {
  min-height: 76px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.brand {
  gap: 14px !important;
}

.brand-logo {
  width: 68px !important;
  height: 68px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  box-shadow: 0 5px 16px rgba(0,0,0,.10) !important;
}

.brand strong {
  font-size: 1.22rem !important;
  letter-spacing: .09em !important;
}

.brand small {
  font-size: .68rem !important;
  letter-spacing: .16em !important;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 82px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .brand-logo {
    width: 62px !important;
    height: 62px !important;
  }

  .brand strong {
    font-size: 1.18rem !important;
  }

  .brand small {
    font-size: .66rem !important;
  }
}


/* REMOVE_LAD_INK_STAMP_V1 */
.stamp {
  display: none !important;
}

/* HERO_HEADLINE_SMALLER_V1 */
.hero-copy h1 {
  font-size: clamp(3.1rem, 5.1vw, 6.2rem) !important;
  line-height: .95 !important;
  max-width: 720px !important;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem) !important;
    line-height: .98 !important;
  }
}

/* MOBILE_TEXT_CLOSER_TO_IMAGES_V1 */
@media (max-width: 760px) {
  .hero-art {
    min-height: 660px !important;
    height: 660px !important;
    margin-bottom: -20px !important;
  }

  .strip {
    margin-top: -18px !important;
  }
}

@media (max-width: 430px) {
  .hero-art {
    min-height: 635px !important;
    height: 635px !important;
    margin-bottom: -22px !important;
  }

  .strip {
    margin-top: -22px !important;
  }
}

@media (max-width: 380px) {
  .hero-art {
    min-height: 615px !important;
    height: 615px !important;
    margin-bottom: -20px !important;
  }

  .strip {
    margin-top: -20px !important;
  }
}

/* MOBILE_TEXT_MIDDLE_POSITION_V2 */
@media (max-width: 760px) {
  .hero-art {
    min-height: 700px !important;
    height: 700px !important;
    margin-bottom: -6px !important;
  }

  .strip {
    margin-top: -6px !important;
  }
}

@media (max-width: 430px) {
  .hero-art {
    min-height: 675px !important;
    height: 675px !important;
    margin-bottom: -8px !important;
  }

  .strip {
    margin-top: -8px !important;
  }
}

@media (max-width: 380px) {
  .hero-art {
    min-height: 650px !important;
    height: 650px !important;
    margin-bottom: -6px !important;
  }

  .strip {
    margin-top: -6px !important;
  }
}

/* HEADER_LOGO_BIGGER_LINE_LOWER_V2 */
.site-header {
  min-height: 92px !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  align-items: center !important;
}

.brand {
  gap: 16px !important;
}

.brand-logo {
  width: 78px !important;
  height: 78px !important;
  min-width: 78px !important;
  min-height: 78px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  box-shadow: 0 5px 16px rgba(0,0,0,.10) !important;
}

.brand strong {
  font-size: 1.28rem !important;
}

.brand small {
  font-size: .72rem !important;
  margin-top: 5px !important;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 102px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .brand-logo {
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    min-height: 78px !important;
  }

  .brand strong {
    font-size: 1.24rem !important;
  }

  .brand small {
    font-size: .7rem !important;
  }
}
