:root {
  --forest: #16352a;
  --forest-deep: #0b1f18;
  --forest-mid: #1f4a38;
  --leaf: #2d6a4f;
  --coral: #d86b3a;
  --coral-deep: #b85028;
  --gold: #c4a36a;
  --gold-soft: #e6d3a8;
  --cream: #f4eee4;
  --ivory: #fbf7f0;
  --paper: #fffdf8;
  --ink: #1c1a16;
  --mute: #5c574e;
  --line: rgba(22, 53, 42, 0.12);
  --shadow: 0 30px 80px rgba(11, 31, 24, 0.18);
  --radius: 22px;
  --nav-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  overflow-x: hidden;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  font-family: "Amiri", "Cormorant Garamond", serif;
}

body {
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Amiri", serif;
  font-weight: 600;
  line-height: 1.2;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

html[lang="ar"] .serif {
  font-family: "Amiri", serif;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--forest-deep);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader img {
  width: min(200px, 70vw);
  height: auto;
  animation: rise 0.7s ease both;
}

.preloader p {
  color: var(--cream);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.preloader.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
}

.whatsapp {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: calc(16px + env(safe-area-inset-left, 0px));
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

html[dir="ltr"] .whatsapp {
  left: auto;
  right: calc(16px + env(safe-area-inset-right, 0px));
}

body.menu-open .whatsapp {
  visibility: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top, 0px) max(4vw, env(safe-area-inset-right, 0px)) 0 max(4vw, env(safe-area-inset-left, 0px));
  background: rgba(251, 247, 240, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(16px);
}

.nav.is-scrolled {
  box-shadow: 0 8px 30px rgba(11, 31, 24, 0.06);
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-logo,
.nav-actions {
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang {
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  min-width: 48px;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  touch-action: manipulation;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
  touch-action: manipulation;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--forest);
  margin: 6px 0;
  transition: transform 0.25s ease;
}

.menu-btn.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-coral {
  background: var(--coral);
  color: #fff;
}

.btn-coral:hover {
  background: var(--coral-deep);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--forest);
}

.btn-line {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero {
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(216, 107, 58, 0.22), transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(196, 163, 106, 0.18), transparent 46%),
    url("../images/texture-green.webp") center/cover;
  opacity: 0.55;
}

.hero-copy,
.hero-bottles {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 8vh 6vw 8vh 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 86px);
  color: #fff;
  margin: 8px 0 20px;
}

.hero h1 .script {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-size: 0.72em;
}

.lede {
  max-width: 34em;
  font-size: 18px;
  color: rgba(244, 238, 228, 0.86);
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-agent {
  margin-top: 28px;
  font-size: 14px;
  color: var(--gold-soft);
}

.hero-bottles {
  position: relative;
  min-height: 560px;
}

.bottle {
  position: absolute;
  width: min(38%, 260px);
  filter:
    drop-shadow(0 0 0.8px rgba(11, 31, 24, 0.35))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.22));
  animation: float 6s ease-in-out infinite;
}

.bottle img {
  width: 100%;
  height: auto;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bottle-c {
  width: min(44%, 300px);
  top: 8%;
  left: 28%;
  z-index: 3;
  animation-delay: -1.2s;
}

.bottle-l {
  top: 22%;
  left: 2%;
  z-index: 2;
  transform: rotate(-8deg);
}

.bottle-r {
  top: 26%;
  right: 2%;
  left: auto;
  z-index: 2;
  transform: rotate(8deg);
  animation-delay: -2.4s;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

.marquee {
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

html[dir="rtl"] .marquee-track {
  animation-name: ticker-rtl;
}

@keyframes ticker-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.promise {
  padding: 80px 6vw;
  background: var(--ivory);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.promise article span {
  font-family: "Cormorant Garamond", serif;
  color: var(--coral);
  font-size: 28px;
}

.promise h3 {
  font-size: 28px;
  margin: 8px 0 10px;
}

.promise p {
  color: var(--mute);
}

.collection,
.results,
.ritual,
.how,
.house,
.faq,
.contact {
  padding: 90px 6vw;
}

.collection,
.results,
.ritual,
.how,
.house,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2,
.results-intro h2,
.ritual-copy h2,
.how-copy h2,
.faq h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}

.products {
  display: grid;
  gap: 28px;
}

.product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}

.product.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: transparent;
}

.product.featured .product-tag,
.product.featured li {
  color: var(--gold-soft);
}

.product.featured p {
  color: rgba(244, 238, 228, 0.86);
}

.product-visual {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 80%, rgba(216, 107, 58, 0.16), transparent 55%),
    var(--cream);
}

.product.featured .product-visual {
  background:
    radial-gradient(circle at 50% 80%, rgba(216, 107, 58, 0.18), transparent 55%),
    var(--cream);
}

.product-visual img {
  height: min(52vh, 520px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.12));
  transition: transform 0.5s ease;
}

.product-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.product-tag {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--coral);
}

.product h3 {
  font-size: 36px;
}

.product ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--mute);
  font-size: 14px;
}

.product ul li::before {
  content: "· ";
  color: var(--coral);
}

.product .btn {
  margin-top: 10px;
  align-self: flex-start;
}

.results {
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.results-intro {
  max-width: 720px;
  margin: 0 auto 36px;
}

.results-intro p:last-child {
  color: var(--mute);
}

.glow-strip {
  max-width: 1180px;
  margin: 0 auto;
}

.glow-frame {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(22, 53, 42, 0.1);
}

.glow-frame img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.glow-fade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.glow-captions {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.glow-captions b {
  background: var(--forest);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.glow-days {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  font-size: 13px;
}

.glow-days li {
  position: relative;
  padding-top: 14px;
}

.glow-days li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  transform: translateX(-50%);
}

.results-note {
  max-width: 640px;
  margin: 22px auto 0;
}

.fineprint {
  font-size: 13px;
  color: var(--mute);
}

.ritual {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  background: var(--cream);
}

.timeline {
  list-style: none;
  display: grid;
  gap: 28px;
}

.timeline li {
  padding: 28px;
  background: var(--paper);
  border-radius: 18px;
  border-right: 4px solid var(--coral);
}

html[dir="ltr"] .timeline li {
  border-right: 0;
  border-left: 4px solid var(--coral);
}

.timeline time {
  font-family: "Cormorant Garamond", serif;
  color: var(--coral);
  letter-spacing: 0.16em;
}

.timeline h3 {
  font-size: 26px;
  margin: 6px 0;
}

.how {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.how-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}

.how-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.how-copy ol {
  margin: 20px 0;
  padding-inline-start: 22px;
  display: grid;
  gap: 12px;
  font-size: 18px;
}

.house {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--ivory);
}

.house-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  min-height: 420px;
}

.house-card.origin {
  background:
    linear-gradient(160deg, rgba(11, 31, 24, 0.55), rgba(11, 31, 24, 0.82)),
    url("../images/texture-green.webp") center/cover;
  color: var(--cream);
}

.house-card.agent {
  background: var(--paper);
  border: 1px solid var(--line);
}

.house-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
}

.place {
  color: var(--gold);
  margin: 6px 0 18px;
  letter-spacing: 0.08em;
}

.house-card.agent .place {
  color: var(--coral);
}

.house-card .btn {
  margin-top: 24px;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 8px;
  color: var(--mute);
}

.contact[hidden] {
  display: none !important;
}

.contact-meta {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.contact-meta a {
  color: var(--forest-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--ivory);
  outline: none;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
}

.form-ok {
  color: var(--leaf);
  font-size: 14px;
}

.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 56px 6vw 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-soft);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.footer h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-size: 13px;
  color: rgba(244, 238, 228, 0.55);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 980px) {
  :root {
    --nav-h: 72px;
  }

  .nav {
    z-index: 90;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    width: 100%;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px max(6vw, env(safe-area-inset-right, 0px)) max(32px, env(safe-area-inset-bottom, 0px)) max(6vw, env(safe-area-inset-left, 0px));
    border-bottom: 1px solid var(--line);
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    font-size: 22px;
    padding: 14px 0;
  }

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

  .menu-btn {
    display: block;
  }

  .nav-logo img {
    height: 40px;
  }

  .hero,
  .product,
  .ritual,
  .how,
  .house,
  .faq,
  .contact,
  .promise-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 48px 6vw 12px;
  }

  .hero-bottles {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 4vw 28px;
    gap: 0;
  }

  .bottle {
    position: relative;
    width: 30%;
    top: auto;
    left: auto;
    right: auto;
  }

  .bottle-c {
    width: 36%;
    order: 2;
    z-index: 3;
  }

  .bottle-l {
    order: 1;
    transform: rotate(-6deg);
  }

  .bottle-r {
    order: 3;
    transform: rotate(6deg);
  }

  .product {
    min-height: 0;
  }

  .product-visual {
    padding: 20px 20px 0;
  }

  .product-visual img {
    height: min(42vh, 320px);
  }

  .product-body {
    padding: 28px 24px 32px;
  }

  .house-card {
    min-height: 0;
    padding: 36px 28px;
  }

  .how-visual,
  .how-visual img {
    min-height: 280px;
  }

  .glow-captions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 10px;
  }

  .glow-days {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .ritual,
  .how,
  .faq {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 64px;
  }

  .preloader p {
    letter-spacing: 0.14em;
    text-align: center;
    padding: 0 24px;
    font-size: 12px;
  }

  .hero-copy {
    padding: 36px 5vw 8px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 40px);
    margin: 6px 0 16px;
  }

  .lede {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn,
  .product .btn,
  .house-card .btn,
  .contact-form .btn {
    width: 100%;
    align-self: stretch;
  }

  .hero-agent {
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-bottles {
    padding: 0 2vw 20px;
  }

  .marquee {
    font-size: 15px;
    padding: 12px 0;
  }

  .marquee-track {
    gap: 28px;
  }

  .promise {
    padding: 48px 5vw;
  }

  .promise h3 {
    font-size: 24px;
  }

  .collection,
  .results,
  .ritual,
  .how,
  .house,
  .faq,
  .contact {
    padding: 56px 5vw;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .product-visual img {
    height: min(38vh, 260px);
  }

  .product-body {
    padding: 22px 18px 26px;
    gap: 10px;
  }

  .product h3 {
    font-size: 28px;
  }

  .product ul {
    font-size: 13px;
  }

  .glow-frame {
    border-radius: 18px;
  }

  .glow-captions {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 8px;
  }

  .glow-captions b {
    padding: 6px 10px;
    letter-spacing: 0.08em;
    font-size: 10px;
  }

  .glow-days {
    font-size: 10px;
    letter-spacing: 0.04em;
    gap: 4px;
  }

  .timeline li {
    padding: 20px;
  }

  .timeline h3 {
    font-size: 22px;
  }

  .how-visual,
  .how-visual img {
    min-height: 220px;
  }

  .how-copy ol {
    font-size: 16px;
    padding-inline-start: 18px;
  }

  .house-card {
    padding: 28px 20px;
  }

  .house-card h2 {
    font-size: 32px;
  }

  .faq-list summary {
    font-size: 16px;
    padding: 4px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding: 40px 5vw calc(28px + 52px);
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .copyright {
    overflow-wrap: anywhere;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 30px;
  }

  .eyebrow {
    letter-spacing: 0.14em;
    font-size: 11px;
  }

  .glow-days {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .product:hover .product-visual img {
    transform: translateY(-8px) rotate(-2deg);
  }
}
