:root {
  --ink: #1a1614;
  --ink-soft: #3a322c;
  --cream: #f2ebe0;
  --cream-deep: #e6dccb;
  --gold: #b8944a;
  --gold-bright: #d4b06a;
  --charcoal: #221e1b;
  --smoke: #6b6158;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, calc(100% - 2.5rem)); margin: 0 auto; }
.font-display, h1, h2, h3, .logo span { font-family: "Cormorant Garamond", Georgia, serif; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled, .site-header.open {
  background: rgba(242,235,224,.94);
  backdrop-filter: blur(10px);
  border-color: rgba(26,22,20,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.logo span { display: block; letter-spacing: .18em; text-transform: uppercase; font-size: 1.35rem; color: #fff; }
.logo small { display: block; letter-spacing: .32em; text-transform: uppercase; font-size: .62rem; color: var(--gold-bright); margin-top: .2rem; }
.site-header.scrolled .logo span, .site-header.open .logo span { color: var(--ink); }
.site-header.scrolled .logo small, .site-header.open .logo small { color: var(--gold); }
.nav { display: none; gap: 1.6rem; }
.nav a, .lang-switch, .header-cta {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.site-header.scrolled .nav a,
.site-header.scrolled .lang-switch,
.site-header.scrolled .header-cta,
.site-header.open .nav a,
.site-header.open .lang-switch,
.site-header.open .header-cta { color: var(--ink-soft); }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.6rem; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid transparent; transition: .25s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-ghost { border-color: rgba(26,22,20,.2); }
.menu-btn { width: 40px; height: 40px; border: 0; background: transparent; display: grid; place-items: center; }
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: ""; display: block; width: 18px; height: 1px; background: #fff;
}
.site-header.scrolled .menu-btn span,
.site-header.scrolled .menu-btn span:before,
.site-header.scrolled .menu-btn span:after,
.site-header.open .menu-btn span,
.site-header.open .menu-btn span:before,
.site-header.open .menu-btn span:after { background: var(--ink); }
.menu-btn span { position: relative; }
.menu-btn span:before { position: absolute; top: -6px; }
.menu-btn span:after { position: absolute; top: 6px; }
.mobile-nav {
  display: none; flex-direction: column; gap: 1rem; padding: 1rem 1.25rem 1.5rem;
  background: var(--cream); border-top: 1px solid rgba(26,22,20,.08);
}
.site-header.open .mobile-nav { display: flex; }
.mobile-nav a { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; }

.hero { position: relative; min-height: 100vh; background: var(--charcoal); overflow: hidden; color: #fff; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s ease; }
.hero-slide.active img { transform: scale(1.16); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(34,30,27,.93), rgba(34,30,27,.55), rgba(34,30,27,.25)),
    linear-gradient(0deg, rgba(34,30,27,.9), transparent 45%);
}
.hero-content {
  position: relative; z-index: 3; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem 0 7rem;
}
.eyebrow { font-size: .7rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-bright); }
.hero h1 { font-size: clamp(2.5rem, 7vw, 5rem); line-height: .95; margin: .8rem 0 0; max-width: 12ch; }
.hero p { max-width: 34rem; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-meta { display: none; gap: 1.4rem; align-items: center; margin-top: 2.5rem; font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.hero-controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; justify-content: space-between; gap: 1rem; align-items: end;
  padding: 0 0 1.4rem;
}
.hero-dots { display: flex; flex: 1; gap: .7rem; }
.hero-dot { flex: 1; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; color: rgba(255,255,255,.4); }
.hero-dot span { display: block; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .4rem; }
.hero-dot i { display: block; height: 2px; background: rgba(255,255,255,.2); position: relative; overflow: hidden; }
.hero-dot.active { color: var(--gold-bright); }
.hero-dot.active i:after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 0; background: var(--gold-bright);
  animation: progress 6.5s linear forwards;
}
@keyframes progress { to { width: 100%; } }
.hero-arrows { display: flex; gap: .45rem; align-items: center; }
.hero-arrows button {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; cursor: pointer;
}
.hero-arrows button:hover { border-color: var(--gold); color: var(--gold-bright); }

.section { padding: 5.5rem 0; }
.section.cream-deep { background: rgba(230,220,203,.6); }
.section.dark { background: var(--charcoal); color: #fff; }
.section-label { font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: .8rem 0 0; max-width: 16ch; }
.lead { max-width: 36rem; color: var(--smoke); margin-top: 1rem; }

.brand-grid, .cat-grid, .product-grid { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
.brand-card, .product-card { position: relative; min-height: 420px; overflow: hidden; color: #fff; display: block; }
.brand-card img, .product-card img, .story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.brand-card:hover img, .product-card:hover img { transform: scale(1.05); }
.brand-card .shade, .product-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(34,30,27,.9), rgba(34,30,27,.2));
}
.brand-card .body, .product-card .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem; }
.cat-grid { grid-template-columns: 1fr; gap: 1px; background: rgba(26,22,20,.1); }
.cat-item {
  background: var(--cream); min-height: 240px; padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden;
}
.cat-item:hover { background: var(--charcoal); color: #fff; }
.cat-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: .4s; }
.cat-item:hover img { opacity: .35; }
.cat-item > * { position: relative; z-index: 1; }

.values { display: grid; gap: 1.8rem; margin-top: 2.5rem; }
.value { border-top: 1px solid rgba(184,148,74,.35); padding-top: 1.4rem; }
.story-grid { display: grid; gap: 2rem; align-items: center; }
.story-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.cta-box { text-align: center; max-width: 42rem; margin: 0 auto; }
.cta-box .actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.page-hero {
  padding: 9rem 0 4rem; background: var(--charcoal); color: #fff;
  background-size: cover; background-position: center; position: relative;
}
.page-hero:after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(34,30,27,.88), rgba(34,30,27,.55));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: .6rem 0 0; }

.form-grid { display: grid; gap: 1.2rem; }
.field span { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--smoke); }
.field input, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(26,22,20,.2);
  background: transparent; padding: .8rem 0; font: inherit; outline: none;
  color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(107,97,88,.55); }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.contact-grid { display: grid; gap: 2.2rem; align-items: start; }
.info-panel { background: rgba(230,220,203,.55); padding: 1.8rem; }
.page-hero-lead { max-width: 36rem; color: rgba(255,255,255,.72); margin: 1rem 0 0; font-size: 1.05rem; }

/* Contact page */
.contact-section { padding-top: 3.5rem; }
.contact-channels {
  display: grid;
  gap: .8rem;
  margin-bottom: 2.5rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(26,22,20,.08);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.contact-channel:hover {
  border-color: rgba(184,148,74,.45);
  background: #fff;
  transform: translateY(-2px);
}
.contact-channel-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-bright);
}
.contact-channel-wa .contact-channel-icon { background: #25d366; color: #fff; }
.contact-channel-icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-channel-body { min-width: 0; display: grid; gap: .15rem; }
.contact-channel-body small {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--smoke);
}
.contact-channel-body strong {
  font-weight: 560;
  font-size: .98rem;
  color: var(--ink);
  word-break: break-word;
}
.contact-form-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.28)),
    rgba(230,220,203,.35);
  border: 1px solid rgba(26,22,20,.07);
  padding: 1.8rem 1.5rem 2rem;
}
.contact-form-panel h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3.5vw, 2.45rem);
}
.contact-form-lead { margin-top: .85rem; max-width: 40rem; }
.contact-form { margin-top: 1.6rem; }
.form-alert {
  margin-top: 1.1rem;
  padding: .9rem 1rem;
  font-size: .92rem;
  border: 1px solid transparent;
}
.form-alert-ok {
  background: rgba(184,148,74,.1);
  border-color: rgba(184,148,74,.45);
  color: var(--ink);
}
.form-alert-err {
  background: rgba(138,31,31,.06);
  border-color: rgba(138,31,31,.28);
  color: #8a1f1f;
}
.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: .4rem;
}
.contact-form-note {
  margin: 0;
  font-size: .78rem;
  color: var(--smoke);
}
.contact-aside { display: grid; gap: 1rem; }
.contact-aside-card {
  background: rgba(230,220,203,.55);
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(26,22,20,.06);
}
.contact-aside-soft { background: var(--charcoal); color: rgba(255,255,255,.78); }
.contact-aside-soft .section-label { color: var(--gold-bright); }
.contact-aside-card h3 {
  margin: .55rem 0 0;
  font-size: 1.55rem;
  color: var(--ink);
}
.contact-aside-soft h3 { color: #fff; }
.contact-meta {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.15rem;
}
.contact-meta dt {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .35rem;
}
.contact-meta dd { margin: 0; color: var(--ink-soft); line-height: 1.55; }
.contact-meta a { border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.contact-meta a:hover { color: var(--gold); border-color: rgba(184,148,74,.45); }
.contact-aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}
.contact-aside-soft .contact-aside-note,
.contact-aside-note {
  margin: 1.2rem 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.contact-socials {
  display: flex;
  gap: .55rem;
  margin-top: 1.2rem;
}
.contact-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.8);
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.contact-social svg { width: 17px; height: 17px; fill: currentColor; }
.contact-social:hover {
  border-color: rgba(184,148,74,.65);
  color: var(--gold-bright);
  background: rgba(184,148,74,.1);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .contact-channels { grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 3rem; }
  .contact-form-panel { padding: 2.2rem 2rem 2.4rem; }
  .contact-aside-card { padding: 2rem 1.7rem; }
}
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.chip { border: 1px solid rgba(26,22,20,.15); padding: .45rem .8rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* About page */
.about-intro .story-grid { align-items: start; }
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}
.about-side { display: grid; gap: 1rem; }
.about-mission h3 {
  margin: .55rem 0 0;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  max-width: none;
  color: var(--ink);
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem .9rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(26,22,20,.1);
}
.about-facts span {
  display: block;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.about-facts strong {
  display: block;
  font-weight: 560;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.35;
}
.about-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-brand-cta {
  display: inline-block;
  margin-top: 1rem;
}
.section.dark .value h3 {
  font-size: 1.3rem;
  margin: 0 0 .55rem;
}
.section.dark .value p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
}
.brand-card h3 {
  font-size: 2.6rem;
  margin: .5rem 0;
}

/* Product image gallery */
.product-gallery-wrap { margin-top: 3rem; }
.product-gallery-wrap h2 { margin: 0 0 1.2rem; }
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.product-gallery-item {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(26,22,20,.08);
  overflow: hidden;
}
.product-gallery-item a { display: block; }
.product-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.product-gallery-item:hover img { transform: scale(1.03); }
.product-gallery-item figcaption {
  padding: .75rem 1rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--smoke);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(184,148,74,.06) 0%, transparent 18%),
    linear-gradient(155deg, #141110 0%, #1c1815 42%, #12100e 100%);
  color: rgba(255,255,255,.72);
  padding: 0 0 1.5rem;
  margin-top: 0;
}
.footer-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 8% 0%, rgba(184,148,74,.16), transparent 60%),
    radial-gradient(ellipse 45% 35% at 92% 100%, rgba(184,148,74,.08), transparent 55%);
}
.footer-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 2.6rem 0 2.2rem;
  border-bottom: 1px solid rgba(184,148,74,.18);
}
.footer-cta-label {
  margin: 0 0 .45rem;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.footer-cta-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  color: #fff;
  max-width: 22ch;
}
.footer-cta-btn { flex-shrink: 0; }
.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.6rem;
  padding: 3rem 0 0;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo span {
  font-size: 1.55rem;
  letter-spacing: .2em;
}
.footer-legal {
  margin: 0 0 1.1rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.42);
  max-width: 18rem;
  line-height: 1.5;
}
.footer-tagline {
  margin: 0;
  max-width: 18rem;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 0;
}
.footer-badges span {
  border: 1px solid rgba(184,148,74,.32);
  color: var(--gold-bright);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .38rem .65rem;
  background: rgba(184,148,74,.06);
}
.footer-col h4 {
  position: relative;
  color: var(--gold-bright);
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  padding-bottom: .7rem;
}
.footer-col h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin: 0 0 .65rem; }
.footer-links a {
  position: relative;
  display: inline-block;
  font-size: .92rem;
  color: rgba(255,255,255,.68);
  transition: color .22s ease, transform .22s ease;
}
.footer-links a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}
.footer-meta {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-meta li {
  margin: 0 0 1.15rem;
  padding-left: 0;
}
.footer-meta span {
  display: block;
  margin-bottom: .32rem;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(184,148,74,.9);
}
.footer-meta a,
.footer-meta p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.footer-meta a {
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer-meta a:hover {
  color: var(--gold-bright);
  border-color: rgba(184,148,74,.4);
}
.logo.light span { color: #fff; }
.footer-brand .socials { margin-top: 1.4rem; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.03);
  transition: border-color .22s, color .22s, background .22s, transform .22s, box-shadow .22s;
}
.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.social-icon:hover {
  border-color: rgba(184,148,74,.7);
  color: var(--gold-bright);
  background: rgba(184,148,74,.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .74rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom > p { margin: 0; max-width: 42rem; line-height: 1.5; }
@media (min-width: 720px) {
  .footer-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0 2.4rem;
  }
  .footer-cta-title { max-width: 28ch; }
}

/* —— Axo Digital signature —— */
.axo-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  align-self: flex-end;
}
.axo-label {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(252,251,249,.4);
  transition: color .25s;
}
.axo-link:hover .axo-label { color: rgba(252,251,249,.7); }
.axo-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
}
@property --axo-shift {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}
.axo-word {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
  --axo-shift: 0px;
  animation: axoShine 3s linear infinite;
}
.axo-letter {
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    #3ec8ff 0%,
    #5b6cff 16%,
    #8b3dff 32%,
    #d42d88 50%,
    #ff8c28 68%,
    #ffd24a 84%,
    #3ec8ff 100%
  );
  background-size: 12.5em 100%;
  background-repeat: repeat-x;
  background-position: calc(var(--i) * -0.62em + var(--axo-shift)) 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform-origin: bottom center;
}
.axo-link:hover .axo-word { animation: axoShine 1.15s linear infinite; }
.axo-link:hover .axo-letter {
  animation: axoBounce .62s cubic-bezier(.22, 1, .36, 1) calc(var(--i) * 42ms);
}
.axo-sign-dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  background: #d42d88;
  box-shadow: 0 0 0 0 rgba(212,45,136,.55);
  animation: axoPulse 2.2s ease-out infinite;
}
.axo-link:hover .axo-sign-dot {
  animation: axoPulse .7s ease-out infinite;
  background: #ffd24a;
}
.axo-sparks {
  pointer-events: none;
  position: absolute;
  inset: -8px -10px;
}
.axo-sparks i {
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 999px;
  background: #3ec8ff;
  opacity: 0;
}
.axo-sparks i:nth-child(1) { left: 8%; top: 0; }
.axo-sparks i:nth-child(2) { right: 12%; top: -2px; background: #d42d88; }
.axo-sparks i:nth-child(3) { right: 38%; bottom: -4px; background: #ffd24a; }
.axo-link:hover .axo-sparks i { animation: axoSpark .85s ease-out infinite; }
.axo-link:hover .axo-sparks i:nth-child(2) { animation-delay: .12s; }
.axo-link:hover .axo-sparks i:nth-child(3) { animation-delay: .24s; }
@keyframes axoShine {
  from { --axo-shift: 0em; }
  to { --axo-shift: 12.5em; }
}
@keyframes axoPulse {
  0% { transform: scale(.85); box-shadow: 0 0 0 0 rgba(212,45,136,.55); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212,45,136,0); }
  100% { transform: scale(.85); box-shadow: 0 0 0 0 rgba(212,45,136,0); }
}
@keyframes axoBounce {
  0% { transform: translateY(0) rotate(0); }
  35% { transform: translateY(-7px) rotate(-8deg); }
  65% { transform: translateY(1px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0); }
}
@keyframes axoSpark {
  0% { opacity: 0; transform: scale(.4) translateY(4px); }
  35% { opacity: 1; transform: scale(1) translateY(-6px) rotate(18deg); }
  100% { opacity: 0; transform: scale(.3) translateY(-14px); }
}

/* Floating WhatsApp + Call — left side, expand details on desktop hover */
.float-contact {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.32);
  transition: width .28s ease, padding .28s ease, gap .28s ease, transform .2s, box-shadow .2s;
  overflow: hidden;
  justify-content: flex-start;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.38);
}
.float-btn svg {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  fill: currentColor;
  background: transparent;
  border-radius: 50%;
  padding: 14px;
  box-sizing: border-box;
}
.float-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 0;
  transition: max-width .28s ease, opacity .22s ease, padding .28s ease;
}
.float-label small {
  font-size: 8px;
  letter-spacing: 1.2px;
  opacity: .85;
  text-transform: uppercase;
}
.float-label b {
  font-size: 12px;
  letter-spacing: .2px;
  white-space: nowrap;
  font-weight: 600;
}
.float-call { background: #17191b; }
.float-whatsapp { background: #25d366; }
.float-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b 40%, #8134af 70%, #515bd4);
}
.float-btn:nth-child(2) .float-ripple { animation-delay: .5s; }
.float-btn:nth-child(3) .float-ripple { animation-delay: 1s; }
.float-btn:last-child .float-ripple { animation-delay: 1s; }
.float-ripple {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: .35;
  animation: floatPulse 2s infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0% { transform: scale(.92); opacity: .45; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { opacity: 0; }
}

@media (min-width: 561px) {
  .float-btn:hover,
  .float-btn:focus-visible {
    width: auto;
    min-width: 56px;
    padding: 0 16px 0 0;
    gap: 10px;
    overflow: visible;
  }
  .float-btn:hover .float-label,
  .float-btn:focus-visible .float-label {
    max-width: 220px;
    opacity: 1;
    padding-right: 8px;
  }
  .float-btn:hover svg,
  .float-btn:focus-visible svg {
    background: rgba(255,255,255,.2);
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    padding: 11px;
    margin-left: 4px;
  }
}

@media (max-width: 560px) {
  .float-contact { left: 14px; bottom: 14px; }
  .float-label { display: none; }
  .float-btn {
    width: 56px;
    height: 56px;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .menu-btn, .mobile-nav { display: none !important; }
  .hero-content { justify-content: center; padding-top: 6rem; }
  .hero-meta { display: flex; }
  .brand-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(4, 1fr); }
  .story-grid, .contact-grid, .form-grid.two { grid-template-columns: 1.1fr .9fr; }
  .footer-main { grid-template-columns: 1.4fr .7fr .7fr 1.15fr; gap: 2.2rem 1.8rem; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .axo-link { align-self: auto; }
  .product-gallery { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .product-grid.three { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .product-gallery { grid-template-columns: repeat(3, 1fr); }
}
