:root {
  color-scheme: light;
  --ink: #241820;
  --muted: #66545f;
  --soft: #fff7fb;
  --paper: #ffffff;
  --rose: #e75f9c;
  --rose-dark: #af2d6b;
  --mint: #0f9f91;
  --lemon: #ffe790;
  --plum: #3a2235;
  --line: rgba(58, 34, 53, 0.14);
  --shadow: 0 20px 70px rgba(45, 22, 39, 0.17);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 247, 251, 0.74), rgba(255, 255, 255, 0.96) 34rem),
    #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(231, 95, 156, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 159, 145, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 159, 145, 0.68);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 1rem), 1180px);
  margin: 5.5rem auto 0;
  padding: 0.42rem 0.46rem 0.42rem 0.64rem;
  color: #fff;
  background: rgba(36, 24, 32, 0.67);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 168px;
  min-width: 168px;
  min-height: 60px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  position: absolute;
  left: 0;
  top: -88px;
  z-index: 3;
  width: 168px;
  height: 168px;
  padding: 0.14rem;
  border: 2px solid #d7ad48;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  max-width: 12rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--lemon);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 0.85rem;
  color: #241820;
  background: #fff;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 12, 19, 0.88), rgba(42, 20, 34, 0.63) 54%, rgba(20, 10, 18, 0.26)),
    linear-gradient(180deg, rgba(14, 8, 13, 0.25), rgba(14, 8, 13, 0.78));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 247, 251, 0.98));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-motion span {
  position: absolute;
  width: 28rem;
  height: 0.18rem;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 144, 0.76), transparent);
  transform: rotate(-18deg);
  animation: ribbonSweep 8s linear infinite;
}

.hero-motion span:nth-child(1) {
  top: 24%;
  left: -34rem;
}

.hero-motion span:nth-child(2) {
  top: 56%;
  left: -36rem;
  animation-delay: 2.6s;
}

.hero-motion span:nth-child(3) {
  top: 78%;
  left: -32rem;
  animation-delay: 5.1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin: auto;
  padding: 8.4rem 0 0.75rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lemon);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.05rem;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 42rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
}

.hero-actions {
  display: grid;
  gap: 0.72rem;
  max-width: 26rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  min-height: 52px;
  padding: 0.92rem 1.1rem;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.36), transparent 56%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 16px 42px rgba(231, 95, 156, 0.34);
}

.btn-secondary {
  color: var(--plum);
  background: var(--lemon);
  box-shadow: 0 16px 36px rgba(255, 231, 144, 0.26);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.btn-secondary .btn-icon {
  background: rgba(36, 24, 32, 0.11);
}

.scroll-cue {
  position: absolute;
  right: 1.1rem;
  bottom: 5.8rem;
  z-index: 3;
  display: none;
  place-items: center;
  width: 42px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.intro-band,
.products,
.gallery-section,
.contact-section,
.owner-offer,
.feature-strip {
  position: relative;
  padding: 4.7rem 0;
}

.intro-band {
  background: var(--soft);
}

.about-grid {
  display: grid;
  gap: 1.4rem;
}

.about-copy p:not(.eyebrow),
.section-heading,
.contact-copy p,
.owner-offer p {
  color: var(--muted);
}

.about-panel {
  display: grid;
  gap: 0.72rem;
}

.about-panel div,
.product-card,
.trust-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 56px rgba(58, 34, 53, 0.09);
}

.about-panel div {
  padding: 1rem;
}

.about-panel strong,
.about-panel span {
  display: block;
}

.about-panel strong {
  font-size: 1.2rem;
}

.about-panel span {
  color: var(--muted);
  font-size: 0.95rem;
}

.products {
  background:
    linear-gradient(135deg, rgba(15, 159, 145, 0.09), transparent 33%),
    linear-gradient(315deg, rgba(231, 95, 156, 0.12), transparent 36%),
    #fff;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  gap: 0.9rem;
}

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px) rotateX(1deg);
  border-color: rgba(231, 95, 156, 0.35);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card div {
  padding: 1rem;
}

.product-card p,
.trust-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-strip {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(231, 95, 156, 0.28), transparent 30%),
    linear-gradient(315deg, rgba(15, 159, 145, 0.28), transparent 38%),
    var(--plum);
}

.trust-grid {
  display: grid;
  gap: 0.85rem;
}

.trust-item {
  padding: 1.05rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.trust-item span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--lemon);
  font-weight: 900;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.gallery-item {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #eee;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.contact-list a,
.contact-note {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-list span,
.contact-note span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-card {
  padding: 1rem;
}

.order-shop {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 0;
}

.order-shop-head h3 {
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.order-shop-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.order-list {
  display: grid;
  gap: 0.52rem;
  max-height: 520px;
  padding-right: 0.25rem;
  overflow: auto;
  scrollbar-color: rgba(231, 95, 156, 0.55) rgba(58, 34, 53, 0.08);
}

.order-category {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-top: 0.28rem;
  padding: 0.58rem 0.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.72rem;
  border: 1px solid rgba(58, 34, 53, 0.12);
  border-radius: var(--radius);
  background: #fff;
}

.order-item strong,
.order-item span {
  display: block;
}

.order-item strong {
  font-size: 0.96rem;
  line-height: 1.18;
}

.order-item span {
  color: var(--rose-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 40px 48px 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(58, 34, 53, 0.16);
  border-radius: var(--radius);
  background: var(--soft);
}

.qty-btn {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  color: var(--plum);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.qty-btn:hover {
  background: rgba(231, 95, 156, 0.12);
}

.quantity-stepper input {
  min-height: 40px;
  padding: 0.2rem;
  border: 0;
  border-left: 1px solid rgba(58, 34, 53, 0.12);
  border-right: 1px solid rgba(58, 34, 53, 0.12);
  border-radius: 0;
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.order-summary {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 95, 156, 0.2), transparent),
    var(--plum);
}

.order-summary strong {
  font-size: 1.05rem;
}

.order-summary p,
.order-summary small {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.order-summary p {
  white-space: pre-line;
}

.order-total {
  color: var(--lemon);
  font-weight: 900;
}

.order-whatsapp {
  width: 100%;
  margin-top: 0.25rem;
}

form {
  display: grid;
  gap: 0.72rem;
}

label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  border: 1px solid rgba(58, 34, 53, 0.2);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.map-wrap {
  margin-top: 1.25rem;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.owner-offer {
  background:
    linear-gradient(120deg, rgba(255, 231, 144, 0.22), transparent 32%),
    linear-gradient(300deg, rgba(15, 159, 145, 0.16), transparent 42%),
    #2d1d28;
  color: #fff;
}

.offer-inner {
  display: grid;
  gap: 1.3rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.offer-inner h2 {
  max-width: 14ch;
}

.offer-inner p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 2.6rem 0 7.2rem;
  color: rgba(255, 255, 255, 0.76);
  background: #1f151d;
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.footer-inner img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.footer-inner p {
  margin: 0.8rem 0 0.2rem;
  color: #fff;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 0.44rem;
}

.powered {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: end;
  width: 100%;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.9rem;
  text-align: center;
}

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

.powered a:hover {
  color: var(--lemon);
}

.sticky-cta {
  position: fixed;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 24;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.38rem;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(36, 24, 32, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: stickyRise 420ms ease 320ms both;
}

.sticky-logo {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: calc(100% - 14px);
  z-index: 4;
  width: 164px;
  height: 164px;
  padding: 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  pointer-events: none;
  transform: translateX(-50%);
}

.sticky-cta a {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 48px;
  color: #fff;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.sticky-cta a:first-child {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: 4.8rem 1rem 1.2rem;
  color: #fff;
  background: rgba(20, 12, 18, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(74vh, 760px);
  width: min(100%, 920px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(1.5%, -1.2%, 0);
  }
}

@keyframes ribbonSweep {
  from {
    transform: translateX(0) rotate(-18deg);
  }

  to {
    transform: translateX(calc(100vw + 70rem)) rotate(-18deg);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(-12px);
    opacity: 0.35;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

@keyframes stickyRise {
  from {
    transform: translateY(120%);
  }

  to {
    transform: translateY(0);
  }
}

@media (min-width: 620px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 45rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-card {
    padding: 1.25rem;
  }
}

@media (min-width: 820px) {
  h1 {
    font-size: 5.1rem;
  }

  h2 {
    font-size: 4.1rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .site-header {
    margin-top: 5.5rem;
    padding: 0.48rem 0.54rem 0.48rem 0.76rem;
  }

  .nav-links {
    display: flex;
  }

  .scroll-cue {
    display: grid;
  }

  .hero-content {
    padding: 9rem 0 4rem;
  }

  .hero {
    min-height: 94svh;
  }

  .about-grid,
  .contact-grid,
  .offer-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-panel {
    align-content: center;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1.1fr 0.8fr auto;
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  h1 {
    font-size: 6.25rem;
  }

  h2 {
    font-size: 4.9rem;
  }

  .hero-copy {
    font-size: 1.28rem;
  }

  .hero-content {
    margin-left: max(2rem, calc((100vw - var(--max)) / 2));
  }

  .hero-media {
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 18% 100%);
    left: 32%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(22, 12, 19, 0.95), rgba(42, 20, 34, 0.8) 46%, rgba(20, 10, 18, 0.24)),
      linear-gradient(180deg, rgba(14, 8, 13, 0.12), rgba(14, 8, 13, 0.58));
  }
}

@media (max-width: 380px) {
  .brand span {
    max-width: 8.2rem;
  }

  .header-cta {
    padding-inline: 0.62rem;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.86rem;
  }

  h2 {
    font-size: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
