:root {
  --ink: #181318;
  --ink-soft: #2a222a;
  --wine: #4e153f;
  --wine-deep: #30102d;
  --purple: #72195f;
  --gold: #e8b33f;
  --gold-dark: #bd8616;
  --teal: #178f83;
  --teal-dark: #0f6d65;
  --teal-soft: #e5f1ef;
  --paper: #f8f6f2;
  --paper-deep: #eeebe6;
  --white: #ffffff;
  --muted: #696068;
  --line: rgba(24, 19, 24, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 32px rgba(30, 18, 29, 0.08);
  --shadow-lg: 0 24px 70px rgba(30, 18, 29, 0.16);
  --container: 1240px;
  --header-height: 76px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

svg {
  display: block;
  flex: 0 0 auto;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 4.65rem;
  line-height: 0.98;
}

h2 {
  font-size: 3.2rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.22;
}

p {
  margin-bottom: 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(48, 16, 45, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition:
    background 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(48, 16, 45, 0.98);
  box-shadow: 0 10px 34px rgba(20, 10, 19, 0.18);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  height: 100%;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 154px;
  width: 154px;
  height: 52px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 70%
  );
  transform: translateX(-140%);
  transition: transform 560ms var(--ease);
}

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

.button:hover::after {
  transform: translateX(140%);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button--header {
  min-height: 44px;
  padding-inline: 16px;
  color: var(--white);
  background: var(--teal);
  border-color: rgba(255, 255, 255, 0.12);
}

.button--header:hover {
  background: #1aa092;
  box-shadow: 0 12px 26px rgba(10, 76, 70, 0.28);
}

.button--primary {
  color: #241a0b;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(199, 143, 21, 0.24);
}

.button--primary:hover {
  background: #f0bf50;
  border-color: #f0bf50;
  box-shadow: 0 20px 44px rgba(199, 143, 21, 0.32);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.54);
}

.button--large {
  min-height: 58px;
  padding-inline: 26px;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 142px 0 44px;
  color: var(--white);
  background: var(--wine-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(28, 10, 26, 0.98) 0%, rgba(52, 14, 47, 0.94) 38%, rgba(52, 14, 47, 0.58) 64%, rgba(24, 12, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(20, 11, 19, 0.62) 0%, transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  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: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 74%);
}

.hero-content {
  display: grid;
  gap: 52px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.eyebrow-mark {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero-lead {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  color: rgba(255, 255, 255, 0.84);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-kicker {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-kicker--light {
  color: var(--gold);
}

.solutions {
  background: var(--paper);
}

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

.solution-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 4px;
  background: var(--gold);
  transition: width 320ms var(--ease);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.solution-card:hover::after {
  width: 100%;
}

.solution-card--marketing {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine-deep), var(--wine));
  border-color: rgba(255, 255, 255, 0.12);
}

.solution-card--brindes {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-color: rgba(255, 255, 255, 0.14);
}

.solution-card--brindes::after {
  background: var(--gold);
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.solution-number {
  color: rgba(255, 255, 255, 0.34);
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.solution-card--brindes .solution-number {
  color: rgba(255, 255, 255, 0.34);
}

.icon-box,
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 6px;
}

.icon-box {
  color: var(--ink);
  background: var(--gold);
}

.solution-card--brindes .icon-box {
  color: var(--ink);
  background: var(--gold);
}

.icon-box svg,
.service-icon svg {
  width: 25px;
  height: 25px;
}

.card-label {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card--marketing .card-label {
  color: var(--gold);
}

.solution-card--brindes .card-label {
  color: var(--gold);
}

.solution-card h3 {
  max-width: 520px;
  font-size: 2rem;
}

.solution-card > p:not(.card-label) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
}

.solution-card--marketing > p:not(.card-label),
.solution-card--brindes > p:not(.card-label) {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 34px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 600;
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.solution-card--marketing .feature-list svg,
.solution-card--brindes .feature-list svg {
  color: var(--gold);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.solution-card--marketing .text-link,
.solution-card--brindes .text-link {
  color: var(--gold);
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 200ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.problem-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(78, 21, 63, 0.94), rgba(24, 19, 24, 0.98)),
    var(--ink);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
}

.problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 90px;
}

.problem-heading {
  padding-left: 28px;
  border-left: 4px solid var(--gold);
}

.problem-copy {
  display: grid;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.problem-emphasis {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 600;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.outcome-list span {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
}

.outcome-list svg {
  width: 23px;
  height: 23px;
  color: var(--gold);
}

.services {
  background: var(--paper-deep);
}

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

.service-group {
  position: relative;
  min-height: 470px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  border-radius: var(--radius);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.service-group--featured {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  border-top-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.service-group:last-child {
  border-top-color: var(--teal);
}

.service-group:hover {
  z-index: 2;
  transform: scale(1.018);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  margin-bottom: 34px;
  color: var(--white);
  background: var(--wine);
}

.service-group--featured .service-icon {
  color: var(--ink);
  background: var(--gold);
}

.service-group:last-child .service-icon {
  background: var(--teal);
}

.service-group h3 {
  min-height: 70px;
  font-size: 1.65rem;
}

.service-group > p:not(.card-label) {
  min-height: 76px;
  margin-top: 16px;
  color: var(--muted);
}

.service-group--featured > p:not(.card-label) {
  color: var(--muted);
}

.service-group ul {
  display: grid;
  gap: 12px;
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-group--featured ul {
  border-top-color: var(--line);
}

.service-group li {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-group--featured li {
  color: var(--muted);
}

.service-group li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.products {
  color: var(--white);
  background:
    linear-gradient(145deg, #2b1028 0%, #50153f 58%, #30102d 100%);
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.7);
}

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

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(18, 8, 17, 0.2);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(232, 179, 63, 0.7);
  box-shadow: 0 28px 70px rgba(18, 8, 17, 0.34);
}

.product-media {
  position: relative;
  height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 143, 131, 0.08), transparent 58%),
    var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  transition: transform 480ms var(--ease);
}

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

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(48, 16, 45, 0.9);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.product-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-content h3 {
  font-size: 1.3rem;
}

.product-content > p {
  min-height: 54px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  margin-top: auto;
}

.product-controls > label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quantity-stepper {
  width: 148px;
  height: 44px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quantity-stepper button {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--wine);
  background: transparent;
  border: 0;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.quantity-stepper button:hover {
  color: var(--white);
  background: var(--wine);
}

.quantity-stepper button:first-child {
  border-right: 1px solid var(--line);
}

.quantity-stepper button:last-child {
  border-left: 1px solid var(--line);
}

.quantity-stepper svg {
  width: 16px;
  height: 16px;
}

.quantity-stepper input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
}

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

.quantity-stepper:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 143, 131, 0.13);
}

.button--product {
  width: 100%;
  margin-top: 18px;
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button--product:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(15, 109, 101, 0.24);
}

.portfolio {
  background: var(--paper);
}

.client-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.78fr;
  gap: 18px;
}

.client-proof {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.client-proof-number {
  margin-bottom: 48px;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
}

.client-proof h3 {
  font-size: 1.75rem;
}

.client-proof p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
}

.client-proof-place {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 32px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.client-proof-place svg {
  width: 18px;
  height: 18px;
}

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

.client-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.client-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(78, 21, 63, 0.28);
  box-shadow: var(--shadow-sm);
}

.client-card img {
  width: 100%;
  height: 132px;
  padding: 16px;
  object-fit: contain;
}

.client-card figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
}

.about {
  background: var(--teal-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 76px;
}

.about-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(15, 109, 101, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 10px solid rgba(255, 255, 255, 0.12);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: 50% 30%;
}

.about-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 20px 24px;
  color: var(--white);
  background: rgba(48, 16, 45, 0.94);
}

.about-caption strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

.about-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.about-copy h2 {
  max-width: 720px;
}

.about-lead {
  max-width: 720px;
  margin-top: 24px;
  color: #4f5f5c;
  font-size: 1.08rem;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 18px 0 0;
  margin: 34px 0 0;
  border-top: 1px solid rgba(15, 109, 101, 0.2);
  list-style: none;
}

.about-list li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15, 109, 101, 0.2);
  font-size: 0.92rem;
  font-weight: 600;
}

.about-list svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--wine);
}

.about-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 76px;
  padding-top: 56px;
  margin-top: 18px;
  border-top: 1px solid rgba(15, 109, 101, 0.24);
}

.about-story-heading h3 {
  max-width: 420px;
  font-size: 2rem;
}

.about-story-body {
  color: #4f5f5c;
  column-count: 2;
  column-gap: 42px;
}

.about-story-body p {
  margin-bottom: 20px;
  break-inside: avoid;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(110deg, var(--wine-deep), var(--wine) 66%, var(--teal-dark));
  border-top: 4px solid var(--gold);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
}

.final-cta-copy {
  max-width: 870px;
}

.final-cta-copy h2 {
  font-size: 2.9rem;
}

.final-cta-copy > p:last-child {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  color: var(--white);
  background: #141014;
}

.footer-main {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  width: 168px;
  height: 64px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a,
.footer-links > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--teal);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(15, 109, 101, 0.34);
  transition:
    background 200ms ease,
    transform 220ms var(--ease);
}

.whatsapp-float:hover {
  background: var(--teal-dark);
  transform: translateY(-4px);
}

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

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms var(--ease) var(--reveal-delay, 0ms);
}

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

@media (max-width: 1120px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .main-nav a {
    padding-inline: 8px;
  }

  .button--header {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(28, 10, 26, 0.98) 0%, rgba(52, 14, 47, 0.9) 48%, rgba(52, 14, 47, 0.42) 76%, rgba(24, 12, 23, 0.12) 100%),
      linear-gradient(0deg, rgba(20, 11, 19, 0.66) 0%, transparent 46%);
  }

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

  .client-showcase {
    grid-template-columns: 1fr;
  }

  .client-proof {
    min-height: 270px;
    display: grid;
    grid-template-columns: auto minmax(220px, 0.8fr) minmax(280px, 1fr);
    align-items: center;
    gap: 26px;
  }

  .client-proof-number {
    margin-bottom: 0;
  }

  .client-proof p {
    margin-top: 0;
  }

  .client-proof-place {
    grid-column: 2 / -1;
    margin-top: -14px;
    padding-top: 0;
  }

  .about-layout {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .section {
    padding: 86px 0;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
  }

  .site-header.menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid transparent;
    border-radius: 4px;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--wine);
    border-color: rgba(78, 21, 63, 0.16);
  }

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

  .hero {
    min-height: 86svh;
    padding-top: 124px;
  }

  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(28, 10, 26, 0.97) 0%, rgba(52, 14, 47, 0.85) 62%, rgba(52, 14, 47, 0.38) 100%),
      linear-gradient(0deg, rgba(20, 11, 19, 0.72) 0%, transparent 50%);
  }

  .section-heading--split,
  .problem-layout,
  .about-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 22px;
  }

  .section-heading--split > p {
    max-width: 720px;
  }

  .solution-card {
    min-height: 520px;
    padding: 32px;
  }

  .problem-layout {
    gap: 44px;
  }

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

  .service-group {
    min-height: auto;
  }

  .service-group h3,
  .service-group > p:not(.card-label) {
    min-height: 0;
  }

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

  .about-media {
    width: min(520px, 100%);
    min-height: 600px;
  }

  .about-media img {
    min-height: 600px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 44px;
  }

  .about-story-body {
    column-count: 1;
  }

  .final-cta-inner {
    gap: 34px;
  }

  .final-cta-inner .button {
    width: fit-content;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 2.85rem;
    line-height: 1.02;
  }

  h2,
  .final-cta-copy h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .brand {
    flex-basis: 138px;
    width: 138px;
  }

  .hero {
    min-height: 88svh;
    padding: 112px 0 30px;
  }

  .hero-media img {
    object-position: 54% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(35, 11, 32, 0.95), rgba(52, 14, 47, 0.72)),
      linear-gradient(0deg, rgba(20, 11, 19, 0.84) 0%, rgba(20, 11, 19, 0.16) 62%);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-content {
    gap: 34px;
  }

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

  .trust-item {
    min-height: 60px;
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-item:first-child {
    padding-left: 10px;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

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

  .section-heading--center {
    text-align: left;
  }

  .section-heading--center .section-kicker {
    justify-content: flex-start;
  }

  .section-heading--center > p:last-child {
    margin-left: 0;
  }

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

  .solution-card {
    min-height: 0;
    padding: 26px;
  }

  .solution-top {
    margin-bottom: 40px;
  }

  .solution-card h3 {
    font-size: 1.6rem;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-list span {
    grid-template-columns: 24px 1fr;
    align-items: center;
  }

  .service-group {
    padding: 26px;
  }

  .product-media {
    height: 300px;
  }

  .client-proof {
    min-height: 0;
    display: flex;
    align-items: flex-start;
  }

  .client-proof-number {
    margin-bottom: 22px;
  }

  .client-proof p {
    margin-top: 16px;
  }

  .client-proof-place {
    margin-top: 24px;
  }

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

  .client-card img {
    height: 150px;
  }

  .about-media,
  .about-media img {
    min-height: 520px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-list li {
    min-height: 0;
  }

  .about-story-heading h3 {
    font-size: 1.6rem;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 0;
  }

  .footer-links {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

}

@media (max-width: 420px) {
  h1 {
    font-size: 2.4rem;
  }

  h2,
  .final-cta-copy h2 {
    font-size: 1.9rem;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 102px;
  }

  .product-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-stepper {
    width: 100%;
    grid-template-columns: 48px 1fr 48px;
  }

  .client-card img {
    height: 126px;
    padding: 12px;
  }

  .client-card figcaption {
    font-size: 0.66rem;
  }

  .about-media,
  .about-media img {
    min-height: 460px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
