:root {
  --ink: #15151d;
  --muted: #63626d;
  --paper: #fffaf4;
  --pearl: #fff2df;
  --rose: #e95835;
  --coral: #ff7048;
  --gold: #ffb341;
  --mint: #38c2a3;
  --aqua: #3e88d5;
  --night: #241f35;
  --line: rgba(21, 21, 29, 0.13);
  --shadow: 0 24px 80px rgba(36, 31, 53, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34);
}

.whatsapp-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.whatsapp-icon::before {
  position: absolute;
  right: 1px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  content: "";
  background: currentColor;
  clip-path: polygon(0 0, 100% 40%, 18% 100%);
}

.whatsapp-icon::after {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 9px;
  height: 11px;
  content: "";
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 2px 2px 5px 2px;
  transform: rotate(-35deg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 244, 0.84);
  border-bottom: 1px solid rgba(21, 21, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-right: 10px;
}

.logo-crop {
  display: block;
  width: clamp(176px, 20vw, 260px);
  height: 72px;
  overflow: visible;
}

.original-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.brand-star {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  background: var(--coral);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 80% 94%, 50% 72%, 20% 94%, 32% 56%, 2% 35%, 39% 34%);
  filter: drop-shadow(0 5px 10px rgba(255, 112, 72, 0.28));
}

.brand-star::after {
  position: absolute;
  inset: 9px;
  content: "";
  background: var(--paper);
  clip-path: inherit;
}

.brand-star.large {
  width: clamp(76px, 10vw, 128px);
  height: clamp(76px, 10vw, 128px);
}

.brand-star.large::after {
  inset: clamp(17px, 2vw, 30px);
}

.brand-name {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}

.reg-mark {
  display: inline-block;
  width: auto;
  height: auto;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark .reg-mark {
  position: absolute;
  top: 18px;
  right: 0;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-action {
  justify-self: end;
  padding: 11px 17px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--night);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(36, 31, 53, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1fr);
  min-height: 92vh;
  padding: 104px clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(255, 250, 244, 0.98) 0 47%, rgba(255, 250, 244, 0.72) 48% 100%),
    radial-gradient(circle at 82% 38%, rgba(255, 112, 72, 0.26), rgba(255, 112, 72, 0) 34%),
    linear-gradient(135deg, #fffaf4 0%, #fff1e4 48%, #ffe0d2 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  content: "";
  background: linear-gradient(0deg, var(--paper), rgba(255, 250, 244, 0));
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 630px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 12vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: #4a4654;
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions,
.signup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 8px 12px;
  color: var(--night);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.button,
button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary,
button {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  box-shadow: 0 14px 34px rgba(216, 111, 131, 0.34);
}

.secondary {
  display: inline-flex;
  align-items: center;
  color: var(--night);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  min-height: 610px;
}

.hero-logo {
  position: absolute;
  right: 4%;
  top: 12%;
  display: inline-flex;
  align-items: center;
  width: min(42vw, 560px);
  padding: 0;
  color: var(--ink);
  filter: drop-shadow(0 18px 34px rgba(36, 31, 53, 0.16));
}

.hero-logo .original-logo {
  width: 100%;
  height: 100%;
}

.hero-crop {
  width: 100%;
  height: clamp(120px, 13vw, 176px);
}

.hero-logo .reg-mark.large {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  font-size: 0.78rem;
}

.glow-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transform: rotate(-18deg);
}

.orbit-one {
  right: 5%;
  bottom: 4%;
  width: min(42vw, 580px);
  aspect-ratio: 1;
}

.orbit-two {
  right: 20%;
  bottom: 18%;
  width: min(28vw, 400px);
  aspect-ratio: 1;
}

.product {
  position: absolute;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.2em;
  box-shadow: var(--shadow);
}

.product-tall {
  right: 25%;
  bottom: 5%;
  width: min(19vw, 210px);
  min-width: 132px;
  aspect-ratio: 0.52;
  border-radius: 34px 34px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 22% 78%, rgba(255, 255, 255, 0.3)),
    linear-gradient(155deg, var(--rose), var(--coral) 46%, var(--night));
}

.product-tall::before {
  position: absolute;
  top: -78px;
  width: 44%;
  height: 90px;
  content: "";
  border-radius: 28px 28px 14px 14px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.product-tall span {
  transform: rotate(90deg);
}

.product-round {
  right: 10%;
  bottom: 5%;
  width: min(18vw, 220px);
  min-width: 138px;
  aspect-ratio: 1;
  border: 10px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, #fff8d9 0 13%, var(--gold) 14% 42%, var(--coral) 75%);
}

.spark {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

.spark-a {
  top: 28%;
  right: 22%;
}

.spark-b {
  right: 49%;
  bottom: 27%;
}

.spark-c {
  right: 6%;
  bottom: 42%;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band > div {
  padding: clamp(24px, 4vw, 42px);
  background: #fffdf9;
}

.metric {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
}

.intro-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.category-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-strip a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.category-strip a:last-child {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.section,
.solutions,
.applications,
.ritual,
.contact {
  padding: clamp(58px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.solutions {
  background: #fffdf9;
  border-bottom: 1px solid var(--line);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--rose);
  font-weight: 800;
}

.solution-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.solution-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.applications {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 250, 244, 0.96)),
    radial-gradient(circle at 18% 28%, rgba(255, 112, 72, 0.22), transparent 30%),
    radial-gradient(circle at 86% 64%, rgba(62, 136, 213, 0.16), transparent 30%);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.application-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
  border-radius: 8px;
  isolation: isolate;
}

.application-card::before {
  position: absolute;
  inset: auto -34px -46px auto;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 217, 0.9), rgba(255, 179, 65, 0.48) 28%, transparent 66%);
  z-index: -1;
}

.application-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 90px;
  height: 90px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 80% 94%, 50% 72%, 20% 94%, 32% 56%, 2% 35%, 39% 34%);
}

.application-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.application-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.application-card.warm {
  background: linear-gradient(145deg, #342238, var(--coral));
}

.application-card.retail {
  background: linear-gradient(145deg, #1d2c4f, var(--aqua));
}

.application-card.industrial {
  background: linear-gradient(145deg, #26232c, #5b5668);
}

.application-card.outdoor {
  background: linear-gradient(145deg, #173d35, var(--mint));
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

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

.product-card {
  padding: 18px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(36, 31, 53, 0.08);
}

.card-visual {
  display: grid;
  place-items: end center;
  min-height: 250px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 6px;
}

.real-product {
  grid-column: span 2;
}

.product-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 250px;
  margin-bottom: 22px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-photos.single-photo {
  grid-template-columns: 1fr;
}

.product-photos img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 6px;
}

.card-visual::before {
  display: block;
  content: "";
  box-shadow: 0 20px 44px rgba(36, 31, 53, 0.18);
}

.bulb {
  background: linear-gradient(135deg, rgba(255, 112, 72, 0.24), rgba(255, 179, 65, 0.28));
}

.bulb::before {
  width: 112px;
  height: 156px;
  border-radius: 58px 58px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 50% 34%, #fff8d9 0 22%, var(--gold) 23% 58%, var(--coral) 100%);
}

.panel {
  background: linear-gradient(135deg, rgba(36, 31, 53, 0.1), rgba(255, 112, 72, 0.2));
}

.panel::before {
  width: 180px;
  height: 128px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.06)),
    linear-gradient(155deg, #fff8d9, var(--gold));
  transform: perspective(220px) rotateX(14deg) rotateZ(-5deg);
}

.strip {
  background: linear-gradient(135deg, rgba(62, 136, 213, 0.18), rgba(56, 194, 163, 0.18));
}

.strip::before {
  width: 198px;
  height: 82px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 22px),
    linear-gradient(135deg, var(--aqua), var(--mint), var(--gold), var(--coral));
  transform: rotate(-12deg);
}

.pendant {
  background: linear-gradient(135deg, rgba(36, 31, 53, 0.08), rgba(255, 179, 65, 0.22));
}

.pendant::before {
  width: 132px;
  height: 172px;
  border-radius: 0 0 70px 70px;
  background:
    linear-gradient(180deg, var(--night) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 78%, #fff8d9 0 18%, var(--gold) 19% 34%, transparent 35%),
    linear-gradient(180deg, var(--coral) 24%, var(--rose));
}

.chandelier {
  background: linear-gradient(135deg, rgba(255, 112, 72, 0.16), rgba(255, 179, 65, 0.26));
}

.chandelier::before {
  width: 190px;
  height: 150px;
  border-radius: 50% 50% 18px 18px;
  background:
    radial-gradient(circle at 20% 72%, #fff8d9 0 8%, transparent 9%),
    radial-gradient(circle at 40% 82%, #fff8d9 0 8%, transparent 9%),
    radial-gradient(circle at 60% 82%, #fff8d9 0 8%, transparent 9%),
    radial-gradient(circle at 80% 72%, #fff8d9 0 8%, transparent 9%),
    linear-gradient(180deg, transparent 0 30%, var(--gold) 31% 38%, transparent 39%),
    linear-gradient(145deg, var(--coral), var(--night));
}

.wall {
  background: linear-gradient(135deg, rgba(62, 136, 213, 0.14), rgba(255, 112, 72, 0.18));
}

.wall::before {
  width: 144px;
  height: 170px;
  border-radius: 10px 64px 64px 10px;
  background:
    radial-gradient(circle at 72% 50%, #fff8d9 0 18%, var(--gold) 19% 38%, transparent 39%),
    linear-gradient(90deg, var(--night) 0 32%, var(--coral) 33% 100%);
}

.downlight {
  background: linear-gradient(135deg, rgba(255, 179, 65, 0.18), rgba(255, 112, 72, 0.2));
}

.downlight::before {
  width: 164px;
  height: 126px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff8d9 0 22%, var(--gold) 23% 42%, rgba(255, 255, 255, 0.9) 43% 58%, var(--night) 59% 100%);
}

.flood {
  background: linear-gradient(135deg, rgba(36, 31, 53, 0.1), rgba(62, 136, 213, 0.16));
}

.flood::before {
  width: 178px;
  height: 138px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 48% 46%, #fff8d9 0 18%, var(--gold) 19% 34%, transparent 35%),
    linear-gradient(145deg, var(--night), var(--aqua));
  transform: rotate(7deg);
}

.garden {
  background: linear-gradient(135deg, rgba(56, 194, 163, 0.22), rgba(255, 179, 65, 0.18));
}

.garden::before {
  width: 116px;
  height: 184px;
  border-radius: 58px 58px 12px 12px;
  background:
    linear-gradient(180deg, transparent 0 62%, var(--night) 63% 100%),
    radial-gradient(circle at 50% 34%, #fff8d9 0 20%, var(--gold) 21% 42%, var(--mint) 43% 100%);
}

.tube {
  background: linear-gradient(135deg, rgba(255, 112, 72, 0.14), rgba(255, 179, 65, 0.24));
}

.tube::before {
  width: 210px;
  height: 62px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 50%),
    linear-gradient(90deg, var(--gold), #fff8d9, var(--gold));
}

.track {
  background: linear-gradient(135deg, rgba(36, 31, 53, 0.1), rgba(255, 112, 72, 0.16));
}

.track::before {
  width: 204px;
  height: 132px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 68%, #fff8d9 0 11%, var(--gold) 12% 22%, transparent 23%),
    radial-gradient(circle at 52% 68%, #fff8d9 0 11%, var(--gold) 12% 22%, transparent 23%),
    radial-gradient(circle at 80% 68%, #fff8d9 0 11%, var(--gold) 12% 22%, transparent 23%),
    linear-gradient(180deg, var(--night) 0 18%, transparent 19%),
    linear-gradient(145deg, transparent, rgba(255, 112, 72, 0.55));
}

.festive {
  background: linear-gradient(135deg, rgba(62, 136, 213, 0.15), rgba(255, 112, 72, 0.22));
}

.festive::before {
  width: 210px;
  height: 150px;
  border-radius: 999px 999px 20px 20px;
  background:
    radial-gradient(circle at 12% 64%, var(--coral) 0 7%, transparent 8%),
    radial-gradient(circle at 28% 78%, var(--gold) 0 7%, transparent 8%),
    radial-gradient(circle at 46% 70%, var(--mint) 0 7%, transparent 8%),
    radial-gradient(circle at 64% 78%, var(--aqua) 0 7%, transparent 8%),
    radial-gradient(circle at 82% 64%, var(--coral) 0 7%, transparent 8%),
    linear-gradient(170deg, transparent 0 47%, var(--night) 48% 52%, transparent 53%);
}

.tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--night);
  font-size: 0.76rem;
  font-weight: 800;
  background: var(--pearl);
  border-radius: 999px;
}

.product-card h3,
.steps h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
}

.product-card p:not(.tag),
.ritual-copy p,
.steps p,
.contact p {
  color: var(--muted);
  line-height: 1.6;
}

.product-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--rose);
  font-weight: 800;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 10px;
}

.specs span {
  padding: 6px 9px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  background: rgba(21, 21, 29, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.price-note {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip > div {
  min-height: 150px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--night);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.1rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.catalogue-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 34px);
  color: #fff;
  background: linear-gradient(135deg, var(--night), #3a304f);
  border-radius: 8px;
}

.catalogue-cta h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.catalogue-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.ritual {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--night);
  color: #fff;
}

.ritual-copy {
  position: sticky;
  top: 112px;
}

.ritual-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps > div {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: 28px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96), rgba(255, 250, 244, 0.82)),
    radial-gradient(circle at 18% 20%, rgba(255, 112, 72, 0.18), transparent 34%),
    radial-gradient(circle at 78% 70%, rgba(62, 136, 213, 0.14), transparent 32%);
}

form {
  display: grid;
  gap: 11px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.domain-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--rose);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-list p {
  margin: 0;
}

.whatsapp-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

label {
  display: block;
  margin-top: 4px;
  font-weight: 800;
}

input,
select,
textarea {
  flex: 1 1 210px;
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  min-height: 118px;
  padding-top: 13px;
  resize: vertical;
}

form button {
  width: fit-content;
  margin-top: 6px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-right: 10px;
  color: #fff;
  overflow: visible;
}

.footer-brand .original-logo {
  width: 160px;
  height: 48px;
  mix-blend-mode: normal;
  padding: 3px 6px;
  background: #fff;
  border-radius: 6px;
}

.footer-brand .reg-mark {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 2;
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

  nav {
    display: none;
  }

  .hero,
  .ritual,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.97) 0 42%, rgba(255, 250, 244, 0.74) 100%),
      radial-gradient(circle at 66% 28%, rgba(255, 112, 72, 0.22), transparent 34%),
      linear-gradient(135deg, #fffaf4 0%, #fff1e4 58%, #ffe0d2 100%);
  }

  .hero-media {
    order: -1;
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-logo {
    right: 8%;
    width: min(74vw, 430px);
  }

  .product-tall {
    right: 45%;
    width: 150px;
  }

  .product-round {
    right: 9%;
    width: 158px;
  }

  .intro-band,
  .solution-grid,
  .application-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .ritual-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .logo-crop {
    width: 148px;
    height: 58px;
  }

  .original-logo {
    width: 100%;
    height: 100%;
  }

  .header-action {
    padding-inline: 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding-inline: 14px;
  }

  .whatsapp-float span:last-child {
    display: none;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(4.1rem, 21vw, 6.3rem);
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-logo {
    right: 16px;
    left: 16px;
    width: auto;
    justify-content: center;
  }

  .hero-logo .reg-mark.large {
    top: 4px;
    right: 0;
    width: auto;
    height: auto;
    font-size: 0.66rem;
  }

  .product-tall {
    right: 42%;
    bottom: 0;
    width: 118px;
  }

  .product-round {
    right: 2%;
    bottom: 0;
    width: 128px;
  }

  .orbit-one {
    right: -18%;
    width: 360px;
  }

  .orbit-two {
    right: 9%;
    width: 240px;
  }

  .section,
  .solutions,
  .applications,
  .ritual,
  .contact {
    padding-inline: 16px;
  }

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

  .real-product {
    grid-column: auto;
  }

  .product-photos {
    grid-template-columns: 1fr;
  }

  .catalogue-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .catalogue-cta {
    align-items: flex-start;
  }

  .site-footer {
    text-align: left;
  }

  .signup-row,
  .signup-row button,
  form button {
    width: 100%;
  }
}
