:root {
  --ink: #11151d;
  --muted: #67707d;
  --paper: #f6f1e8;
  --paper-strong: #fffaf0;
  --blue: #071d42;
  --blue-bright: #0b64b8;
  --red: #7c0814;
  --copper: #b88354;
  --line: rgba(17, 21, 29, 0.14);
  --shadow: 0 22px 60px rgba(7, 29, 66, 0.22);
  --font-main: "Gotham", "Gotham Book", "Gotham SSm", "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-display: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.5;
}

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

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

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 140px clamp(18px, 5vw, 72px) 82px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(3, 12, 29, 0.92), rgba(3, 12, 29, 0.54) 45%, rgba(3, 12, 29, 0.16) 72%),
    url("assets/extracted/page-01-image-01.jpg") center right / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(0deg, var(--paper), rgba(246, 241, 232, 0));
  pointer-events: none;
}

.topbar {
  position: absolute;
  inset: 24px clamp(18px, 5vw, 72px) auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  width: clamp(136px, 12vw, 184px);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 229, 255, 0.78);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(0, 42, 110, 0.94), rgba(0, 229, 255, 0.44)),
    rgba(5, 16, 38, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 18px rgba(0, 229, 255, 0.34),
    0 0 34px rgba(0, 102, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.58);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(142, 246, 255, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 26px rgba(0, 229, 255, 0.62),
    0 0 48px rgba(0, 102, 255, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-top: 38px;
}

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

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: var(--font-main);
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

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

.button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  padding: 12px 20px;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(135deg, #003b8f, #00dfff);
  color: white;
  border-color: rgba(130, 244, 255, 0.92);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.intro-band,
.section,
.private-label,
.footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.intro-band {
  padding-top: 36px;
  padding-bottom: 42px;
}

.about-summary {
  margin-top: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-grid article {
  min-height: 188px;
  padding: 28px;
  background: var(--paper-strong);
}

.intro-grid span {
  color: var(--copper);
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
}

.intro-grid h2 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.intro-grid p,
.section-heading p,
.product-content p,
.private-copy p,
.brand-lab-copy p,
.footer p {
  color: var(--muted);
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 880px;
}

.section-heading h2,
.private-copy h2 {
  margin-bottom: 12px;
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  gap: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.about-media {
  min-height: 520px;
  background: #0b0d10;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-list {
  display: grid;
  background: var(--paper-strong);
}

.capability-list article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
}

.capability-list article:last-child {
  border-bottom: 0;
}

.capability-list strong {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.capability-list span {
  color: #343b45;
  font-size: 1.02rem;
}

.factory-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 131, 84, 0.28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(0, 229, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.94), rgba(11, 13, 16, 0.98)),
    url("assets/gallery/fabrica-sala-destilacao-web.jpg") center / cover;
  color: white;
}

.factory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.36;
  pointer-events: none;
}

.factory-section > * {
  position: relative;
  z-index: 1;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 24px;
}

.factory-copy {
  max-width: 620px;
}

.factory-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.factory-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.factory-visual {
  overflow: hidden;
  border: 1px solid rgba(184, 131, 84, 0.38);
  border-radius: 8px;
  background: #0b0d10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), 0 0 38px rgba(184, 131, 84, 0.12);
}

.factory-visual img {
  width: 100%;
  aspect-ratio: 1.26 / 1;
  object-fit: cover;
}

.factory-metrics {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.factory-metrics article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.factory-metrics strong {
  color: #00e5ff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.factory-metrics span,
.factory-grid p {
  color: rgba(255, 255, 255, 0.68);
}

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

.factory-grid article {
  overflow: hidden;
  border: 1px solid rgba(184, 131, 84, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.factory-grid img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.factory-grid h3,
.factory-grid p {
  padding-inline: 22px;
}

.factory-grid h3 {
  margin: 20px 0 8px;
  color: white;
  font-size: 1.18rem;
}

.factory-grid p {
  margin-bottom: 24px;
}

.story-section {
  background:
    linear-gradient(90deg, rgba(6, 13, 24, 0.92), rgba(6, 13, 24, 0.78)),
    url("assets/gallery/ambroz-botanicos-flatlay-web.jpg") center / cover;
  color: white;
}

.story-panel {
  max-width: 920px;
  padding: clamp(30px, 5vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.story-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.story-panel p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.values-row span {
  padding: 10px 12px;
  border: 1px solid rgba(0, 229, 255, 0.42);
  border-radius: 4px;
  background: rgba(0, 30, 70, 0.42);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.product-media {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.product-photo {
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 46px);
  background: #fff;
}

.product-photo img {
  width: min(100%, 520px);
  max-height: 620px;
  object-fit: contain;
}

.product-blue .product-media {
  background-image: url("assets/extracted/page-02-image-01.png");
}

.product-red .product-media {
  background-image: url("assets/extracted/page-03-image-01.png");
}

.product-red .product-photo {
  background-image: none;
}

.product-neutral .product-media {
  background-image: url("assets/extracted/page-04-image-01.png");
}

.product-content {
  padding: clamp(28px, 5vw, 58px);
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-content h3 {
  margin-bottom: 16px;
  font-family: var(--font-main);
  font-size: clamp(1.9rem, 3.6vw, 3.6rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.composition-note {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--copper);
  background: rgba(184, 131, 84, 0.1);
  color: #303744;
  font-weight: 700;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

dl div {
  min-height: 92px;
  padding: 16px;
  background: #fffdf8;
}

dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.ingredient-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-list li {
  padding-left: 18px;
  position: relative;
  color: #303744;
}

.ingredient-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

.botanicals-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 20, 43, 0.96), rgba(6, 20, 43, 0.84)),
    url("assets/extracted/page-02-image-01.png") center / cover;
  color: white;
  box-shadow: var(--shadow);
}

.botanicals-copy {
  max-width: 560px;
}

.botanicals-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.04;
  font-weight: 800;
}

.botanicals-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.botanical-grid article {
  min-height: 154px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.botanical-thumb {
  width: 74px;
  height: 74px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: transparent;
  font-size: 0;
  background: rgba(4, 9, 17, 0.22);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 0, 0, 0.24);
}

.botanical-thumb::before,
.botanical-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%) rotate(-10deg);
  transform-origin: bottom center;
}

.botanical-thumb::after {
  top: 24px;
  width: 38px;
  height: 32px;
  background:
    radial-gradient(ellipse at 18% 35%, transparent 0 34%, rgba(255, 255, 255, 0.9) 35% 38%, transparent 39%),
    radial-gradient(ellipse at 82% 48%, transparent 0 34%, rgba(255, 255, 255, 0.9) 35% 38%, transparent 39%),
    radial-gradient(ellipse at 28% 78%, transparent 0 34%, rgba(255, 255, 255, 0.9) 35% 38%, transparent 39%);
  transform: translateX(-50%);
}

.grain::after,
.cinnamon::after {
  width: 30px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, 0.9) 26% 29%, transparent 30% 45%, rgba(255, 255, 255, 0.9) 46% 49%, transparent 50% 66%, rgba(255, 255, 255, 0.9) 67% 70%, transparent 71%),
    linear-gradient(24deg, transparent 47%, rgba(255, 255, 255, 0.7) 48% 51%, transparent 52%);
}

.juniper::after,
.pepper::after,
.coriander::after {
  width: 42px;
  height: 42px;
  background:
    radial-gradient(circle at 30% 38%, transparent 0 16%, rgba(255, 255, 255, 0.9) 17% 20%, transparent 21%),
    radial-gradient(circle at 52% 28%, transparent 0 15%, rgba(255, 255, 255, 0.9) 16% 19%, transparent 20%),
    radial-gradient(circle at 64% 52%, transparent 0 16%, rgba(255, 255, 255, 0.9) 17% 20%, transparent 21%),
    radial-gradient(circle at 42% 64%, transparent 0 15%, rgba(255, 255, 255, 0.9) 16% 19%, transparent 20%);
}

.orange::after,
.lemon::after,
.tangerine::after {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.75) 49% 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.75) 49% 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.75) 49% 51%, transparent 52%),
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.75) 49% 51%, transparent 52%);
}

.ginger::after,
.licorice::after,
.angelica::after,
.cardamom::after {
  width: 40px;
  height: 38px;
  background:
    radial-gradient(ellipse at 28% 35%, transparent 0 30%, rgba(255, 255, 255, 0.88) 31% 35%, transparent 36%),
    radial-gradient(ellipse at 66% 44%, transparent 0 30%, rgba(255, 255, 255, 0.88) 31% 35%, transparent 36%),
    linear-gradient(110deg, transparent 44%, rgba(255, 255, 255, 0.88) 45% 48%, transparent 49%);
}

.botanical-grid strong {
  color: white;
  font-size: 0.92rem;
  line-height: 1.1;
}

.botanical-grid small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1.25;
}


.private-label {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 15, 31, 0.95), rgba(5, 15, 31, 0.78)),
    url("assets/extracted/page-01-image-01.jpg") center / cover fixed;
}

.private-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.private-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.private-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.private-list strong {
  color: var(--paper-strong);
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 800;
}

.private-list span {
  color: rgba(255, 255, 255, 0.72);
}

.brand-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 74px clamp(18px, 5vw, 72px);
  background: #0a0d12;
  color: white;
}

.process-section {
  background: var(--paper-strong);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 42px rgba(17, 21, 29, 0.12);
}

.process-timeline article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: #fffdf8;
}

.process-timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.process-timeline h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.18rem;
}

.process-timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(0, 109, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #02070d 0%, #06162a 48%, #02060b 100%);
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.benefits-section > * {
  position: relative;
  z-index: 1;
}

.benefits-heading {
  color: white;
}

.benefits-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.benefits-copy {
  display: grid;
  gap: 18px;
}

.benefit-lead,
.profit-card,
.benefits-grid article {
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(5, 12, 22, 0.76);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.benefit-lead {
  padding: clamp(24px, 3.4vw, 38px);
}

.benefit-lead span {
  display: block;
  margin-bottom: 18px;
  color: #11e9ff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.benefit-lead strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-main);
  font-size: clamp(2.35rem, 4.8vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.benefit-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.profit-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
}

.profit-row {
  display: grid;
  grid-template-columns: 132px minmax(110px, 1fr) 52px;
  gap: 12px;
  align-items: center;
}

.profit-row span,
.profit-row strong {
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profit-row span {
  color: rgba(255, 255, 255, 0.72);
}

.profit-row strong {
  color: #11e9ff;
  text-align: right;
}

.profit-row i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.profit-row i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #006dff, #00d9ff 62%, #00fff0);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.34);
}

.profit-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefits-grid article {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 30px);
}

.benefits-grid span {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.benefits-grid h3 {
  color: white;
  font-size: 1.15rem;
}

.benefits-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.brand-lab-copy {
  max-width: 560px;
}

.brand-lab-copy h2 {
  margin-bottom: 16px;
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-lab-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.brand-lab-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.partner-showcase {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 48vw, 720px);
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 8px;
  background: #031326;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.5);
}

.partner-showcase::before {
  content: "";
  position: absolute;
  left: clamp(18px, 2.2vw, 34px);
  top: clamp(18px, 2.2vw, 32px);
  z-index: 3;
  color: #00e5ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 10, 22, 0.16), rgba(1, 10, 22, 0.02) 42%, rgba(1, 10, 22, 0.26)),
    radial-gradient(circle at 52% 18%, rgba(0, 229, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.brand-lab-media .partner-showcase > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.case-laut {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(3, 10, 18, 0.98), rgba(4, 34, 42, 0.92) 46%, rgba(12, 8, 8, 0.96)),
    radial-gradient(circle at 78% 20%, rgba(0, 238, 255, 0.2), transparent 34%),
    radial-gradient(circle at 58% 78%, rgba(145, 20, 20, 0.42), transparent 38%),
    #05080d;
}

.case-laut::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 72%);
  pointer-events: none;
}

.case-laut::after {
  content: "JIMMY";
  position: absolute;
  right: clamp(-54px, -3vw, -18px);
  bottom: clamp(-42px, -2vw, -18px);
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(7rem, 16vw, 19rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.78;
  pointer-events: none;
}

.case-laut-copy,
.case-laut-gallery {
  position: relative;
  z-index: 1;
}

.case-laut-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(2.3rem, 5vw, 5.7rem);
  line-height: 0.98;
}

.case-laut-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.case-laut-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.24);
  box-shadow: 0 0 42px rgba(0, 229, 255, 0.12);
}

.case-laut-metrics article {
  padding: 22px 18px;
  background: rgba(5, 14, 24, 0.84);
}

.case-laut-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: #11e9ff;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1;
}

.case-laut-metrics span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-laut-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: stretch;
}

.case-laut-gallery figure {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #080c12;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.56);
}

.case-laut-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 229, 255, 0.16), transparent 32%),
    linear-gradient(145deg, #091420, #05070a);
}

.case-laut-feature img {
  object-position: center;
}

.case-laut-gallery figure:not(.case-laut-feature) {
  transform: translateY(42px);
}

.case-laut-gallery figure:not(.case-laut-feature) img {
  object-position: center 42%;
}

.case-laut-gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 9, 14, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.case-laut-gallery figcaption span {
  color: #11e9ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-laut-gallery figcaption strong {
  color: white;
  font-size: 0.95rem;
  line-height: 1.25;
}

.serve-section {
  background: var(--paper-strong);
}

.serve-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.serve-grid figure {
  background: #0b0d10;
  color: white;
}

.serve-grid figure img {
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}

.serve-grid .serve-feature img {
  object-fit: contain;
  background: white;
}

.serve-grid figcaption {
  color: rgba(255, 255, 255, 0.86);
}

.studio-section {
  background:
    radial-gradient(circle at 22% 16%, rgba(0, 229, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ebe2d3 0%, #f6f1e8 100%);
}

.studio-hero {
  position: relative;
  overflow: hidden;
  width: min(1240px, 100%);
  margin: 0 auto 22px;
  border: 1px solid rgba(7, 10, 16, 0.18);
  border-radius: 8px;
  background: #080a0f;
  box-shadow: 0 30px 80px rgba(17, 21, 29, 0.24);
}

.studio-hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(0, 229, 255, 0.22);
  pointer-events: none;
}

.studio-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1.74 / 1;
  object-fit: cover;
}

.studio-seal {
  position: absolute;
  right: clamp(16px, 2.4vw, 26px);
  top: clamp(16px, 2.4vw, 26px);
  z-index: 2;
  max-width: 164px;
  padding: 11px 13px;
  border: 1px solid rgba(0, 229, 255, 0.78);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 42, 110, 0.94), rgba(0, 229, 255, 0.24));
  color: white;
  font-family: "Gotham", "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.studio-grid figure {
  background: #fffaf0;
}

.studio-grid figure img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.sensory-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.18), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(11, 100, 184, 0.2), transparent 32%),
    #030509;
  color: white;
}

.sensory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 0, transparent 72%);
  pointer-events: none;
}

.sensory-heading {
  position: relative;
  z-index: 1;
}

.sensory-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.sensory-heading h2 {
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.94;
}

.sensory-formula {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.22);
}

.sensory-formula div {
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  background: rgba(7, 12, 20, 0.86);
}

.sensory-formula strong {
  color: #00e5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sensory-formula span {
  color: rgba(255, 255, 255, 0.78);
}

.sensory-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.sensory-chart,
.botanical-board article {
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 12, 20, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.sensory-chart {
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: clamp(24px, 4vw, 42px);
}

.chart-title {
  display: grid;
  gap: 8px;
}

.chart-title span {
  color: #00e5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-title strong {
  max-width: 340px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.chart-title em {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-bars {
  display: grid;
  gap: 18px;
  margin-block: 28px;
}

.profile-row {
  display: grid;
  grid-template-columns: 138px 1fr 42px;
  gap: 14px;
  align-items: center;
}

.profile-row span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.profile-row i {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.profile-row i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #006dff, #00e5ff);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.78);
}

.profile-row strong {
  color: #00e5ff;
  font-family: var(--font-display);
  font-size: 1rem;
}

.sensory-axis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.18);
}

.sensory-axis span {
  padding: 14px 10px;
  background: rgba(3, 5, 9, 0.72);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

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

.botanical-board article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.botanical-board svg {
  width: 100%;
  height: 120px;
  overflow: visible;
  fill: none;
  stroke: #dffcff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(0, 229, 255, 0.78));
}

.botanical-board circle {
  fill: rgba(0, 229, 255, 0.08);
}

.botanical-board h3 {
  margin: 6px 0 0;
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}

.botanical-board small {
  color: #00e5ff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1.15;
}

.botanical-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.rtd-section {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.96), rgba(18, 7, 8, 0.9)),
    url("assets/gallery/ambroz-fitzgerald-rtd-web.jpg") center / cover;
  color: white;
}

.rtd-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.rtd-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.rtd-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(11, 13, 16, 0.82);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.rtd-card img {
  width: 100%;
  height: clamp(460px, 58vw, 680px);
  object-fit: cover;
}

.rtd-negroni img {
  object-position: center;
}

.rtd-fitzgerald img {
  object-position: center 42%;
}

.rtd-card div {
  padding: clamp(24px, 4vw, 42px);
}

.rtd-card h3 {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.rtd-card p:not(.product-kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.product-reference {
  background: #0b0d10;
  color: white;
}

.product-reference .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.reference-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #11151d;
}

.reference-grid img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  background: #0b0d10;
}

.reference-grid h3,
.reference-grid p {
  padding-inline: 22px;
}

.reference-grid h3 {
  margin: 20px 0 8px;
  color: white;
  font-size: 1.3rem;
}

.reference-grid p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.faq-grid article {
  min-height: 0;
  padding: clamp(20px, 2.5vw, 30px);
  background: var(--paper-strong);
}

.faq-grid h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.12rem;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-showcase {
  background: #0b0d10;
  color: white;
}

.project-showcase .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.showcase-grid figure {
  background: #11151d;
  border-color: rgba(255, 255, 255, 0.12);
}

.showcase-grid figcaption {
  color: rgba(255, 255, 255, 0.84);
}

.image-slot {
  min-height: 620px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(10, 13, 18, 0.2), rgba(10, 13, 18, 0.78)),
    radial-gradient(circle at 34% 24%, rgba(184, 131, 84, 0.38), transparent 32%),
    linear-gradient(135deg, #30343b, #0a0d12);
}

.image-slot-red {
  background:
    linear-gradient(135deg, rgba(10, 13, 18, 0.16), rgba(10, 13, 18, 0.82)),
    radial-gradient(circle at 42% 32%, rgba(124, 8, 20, 0.72), transparent 34%),
    linear-gradient(135deg, #2d0a0f, #0a0d12);
}

.image-slot span {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
}

.image-slot small {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.bottle-section {
  background: #f2eadf;
}

.bottle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(17, 21, 29, 0.12);
}

figure img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
}

figcaption {
  padding: 16px 18px;
  color: #333a44;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  color: white;
  background:
    linear-gradient(115deg, rgba(2, 10, 22, 0.98), rgba(4, 26, 49, 0.94) 52%, rgba(1, 8, 18, 0.98)),
    radial-gradient(circle at 28% 18%, rgba(0, 229, 255, 0.22), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(11, 100, 184, 0.3), transparent 34%),
    #030912;
}

.contact-copy h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(2.5rem, 5.4vw, 6.2rem);
  line-height: 0.96;
}

.contact-copy p:not(.eyebrow),
.contact-info span,
.contact-info a {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  margin: 34px 0;
}

.whatsapp-button {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 320px);
  padding: 18px 22px;
  color: white;
  border: 1px solid rgba(0, 229, 255, 0.62);
  border-radius: 6px;
  background:
    linear-gradient(110deg, #006dff, #00d9ff 56%, #00fff0),
    #006dff;
  box-shadow:
    0 0 34px rgba(0, 229, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.whatsapp-button span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.whatsapp-button strong {
  font-size: 1.22rem;
  line-height: 1;
}

.contact-info {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-info article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(6, 14, 27, 0.8);
}

.contact-info strong {
  color: #11e9ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3.2vw, 36px);
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(6, 12, 22, 0.84);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.44),
    0 0 58px rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(16px);
}

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

.quick-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.16);
}

.quick-brief legend {
  padding: 0 10px;
  color: #11e9ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brief-question {
  display: grid;
  gap: 10px;
}

.brief-question-wide {
  grid-column: 1 / -1;
}

.brief-question > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-row label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row label:has(input:checked) {
  color: white;
  border-color: rgba(0, 229, 255, 0.72);
  background: linear-gradient(110deg, rgba(0, 109, 255, 0.66), rgba(0, 217, 255, 0.54));
  box-shadow:
    0 0 22px rgba(0, 229, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lot-row label {
  min-width: 78px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: none;
  background: rgba(0, 0, 0, 0.22);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 229, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}

.contact-form .button {
  justify-self: start;
  border-color: rgba(0, 229, 255, 0.64);
  background: linear-gradient(110deg, #006dff, #00d9ff 58%, #00fff0);
  box-shadow: 0 0 34px rgba(0, 229, 255, 0.3);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  color: white;
  border: 1px solid rgba(0, 229, 255, 0.66);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(0, 109, 255, 0.94), rgba(0, 217, 255, 0.96) 58%, rgba(0, 255, 240, 0.94)),
    #0077ff;
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(0, 229, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: translateZ(0);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(0, 229, 255, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.floating-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(108, 154, 255, 0.98), rgba(0, 74, 211, 0.98)),
    #0758df;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -4px 10px rgba(0, 15, 70, 0.28),
    0 0 20px rgba(0, 153, 255, 0.48);
}

.floating-whatsapp-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.floating-whatsapp-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.floating-whatsapp-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-whatsapp-copy strong {
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.footer img {
  width: min(240px, 44vw);
}

.footer p {
  max-width: 560px;
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-links a {
    min-height: 34px;
    padding: 9px 12px;
  }

  .hero {
    align-items: end;
    padding-top: 156px;
    background-position: 58% center;
  }

  .hero-content {
    margin-top: 0;
  }

  .intro-grid,
  .about-grid,
  .factory-layout,
  .factory-grid,
  .benefits-layout,
  .benefits-grid,
  .case-laut,
  .case-laut-gallery,
  .case-laut-metrics,
  .contact-section,
  .sensory-layout,
  .process-timeline,
  .rtd-grid,
  .reference-grid,
  .faq-grid,
  .product-card,
  .botanicals-panel,
  .private-label,
  .brand-lab,
  .serve-grid,
  .studio-grid,
  .showcase-grid,
  .bottle-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-card {
    min-height: 0;
  }

  .factory-copy {
    max-width: none;
  }

  .partner-showcase {
    min-height: 520px;
  }

  .case-laut-gallery figure,
  .case-laut-gallery figure:not(.case-laut-feature) {
    min-height: 520px;
    transform: none;
  }

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

  .quick-brief {
    grid-template-columns: 1fr;
  }

  .profit-row {
    grid-template-columns: 1fr;
  }

  .profit-row strong {
    text-align: left;
  }

  .product-media {
    min-height: 320px;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: 88svh;
    align-items: end;
    padding-top: 150px;
    padding-bottom: 54px;
    background-position: 60% center;
  }

  .topbar {
    gap: 16px;
  }

  .nav-links {
    font-size: 0.68rem;
    gap: 8px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  dl,
  .private-list div,
  .capability-list article {
    grid-template-columns: 1fr;
  }

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

  .partner-showcase {
    min-height: 560px;
  }

  .case-laut-gallery figure,
  .case-laut-gallery figure:not(.case-laut-feature) {
    min-height: 460px;
  }

  .botanical-board,
  .sensory-formula,
  .profile-row {
    grid-template-columns: 1fr;
  }

  .sensory-chart {
    min-height: 0;
  }

  .image-slot {
    min-height: 460px;
  }

  .studio-hero img {
    aspect-ratio: 1.05 / 1;
  }

  .studio-seal {
    right: 14px;
    top: 14px;
    max-width: 150px;
    padding: 11px 12px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 8px 12px 8px 8px;
  }

  .floating-whatsapp-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .floating-whatsapp-icon svg {
    width: 27px;
    height: 27px;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  body {
    background: white;
  }

  .topbar {
    position: relative;
    inset: auto;
    padding-bottom: 64px;
  }

  .hero {
    min-height: 260mm;
    align-items: end;
    padding-top: 24mm;
    page-break-after: always;
  }

  .button,
  .nav-links,
  .floating-whatsapp {
    display: none;
  }

  .product-card,
  .intro-grid,
  figure {
    box-shadow: none;
    break-inside: avoid;
  }

  .product-card {
    min-height: 0;
    page-break-inside: avoid;
  }

  .private-label {
    background: var(--blue);
    break-inside: avoid;
  }
}
