/* ==========================================================================
   LAZRI — Design System
   Deep emerald + antique gold + warm cream. Editorial luxury jewellery brand.
   ========================================================================== */

:root {
  /* Colour */
  --color-bg: #faf3e4;
  --color-surface: #f2e8d3;
  --color-surface-2: #e9dcc0;
  --color-ink: #12241b;
  --color-ink-soft: #24382c;
  --color-muted: #5b6a5f;

  --color-emerald: #0d2e21;
  --color-emerald-soft: #163f30;
  --color-emerald-line: rgba(250, 243, 228, 0.16);

  --color-gold: #b9924f;
  --color-gold-light: #d8bd82;
  --color-gold-dark: #8f701f;

  --color-line: #ddcda3;
  --color-line-strong: #c7ae7c;

  --color-whatsapp: #25d366;
  --color-error: #a3382e;
  --color-success: #2f6a4a;

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container-max: 1180px;
  --container-narrow: 760px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Shadow */
  --shadow-soft: 0 1px 2px rgba(13, 46, 33, 0.06), 0 12px 32px -16px rgba(13, 46, 33, 0.22);
  --shadow-lift: 0 4px 8px rgba(13, 46, 33, 0.08), 0 24px 48px -20px rgba(13, 46, 33, 0.34);

  /* Motion */
  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 900ms;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, p, figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: var(--space-sm);
  z-index: 200;
  background: var(--color-emerald);
  color: var(--color-bg);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: top var(--dur-fast) var(--ease-editorial);
}

.skip-link:focus {
  top: var(--space-sm);
}

:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  /* Smooth-scroll (a continuous, user-triggered motion) is the one thing
     disabled under reduced motion. The rest of the page's motion is a
     handful of small, one-shot fades (opacity + <=18px) with no looping
     or parallax — not the kind of motion reduced-motion users need
     suppressed, so it's left intact rather than disabling animation
     site-wide. */
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--color-gold-dark);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--color-ink);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  color: var(--color-ink);
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--color-ink);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.muted {
  color: var(--color-muted);
}

.gold-word {
  color: var(--color-gold-dark);
  font-style: italic;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding-block: var(--space-2xl);
}

@media (max-width: 640px) {
  section {
    padding-block: var(--space-xl);
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: 1rem 1.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-editorial),
    color var(--dur-fast) var(--ease-editorial),
    border-color var(--dur-fast) var(--ease-editorial),
    transform var(--dur-fast) var(--ease-editorial);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-emerald);
  color: var(--color-bg);
  border-color: var(--color-emerald);
}

.btn-primary:hover {
  background: var(--color-emerald-soft);
  border-color: var(--color-emerald-soft);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line-strong);
}

.btn-outline:hover {
  border-color: var(--color-gold-dark);
  background: var(--color-surface);
}

.btn-outline--on-dark {
  color: var(--color-bg);
  border-color: var(--color-emerald-line);
}

.btn-outline--on-dark:hover {
  border-color: var(--color-gold-light);
  background: rgba(250, 243, 228, 0.06);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #0b3d1e;
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: #1fbd5a;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 228, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-sm);
}

.logo-img {
  height: 30px;
  width: auto;
}

/* Square real-logo lockup (emblem + wordmark stacked) needs more height
   than the wide SVG wordmark to stay legible. */
.logo-img--mark {
  height: 52px;
  width: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav__links {
  display: flex;
  gap: var(--space-lg);
}

.site-nav__links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-ink-soft);
  position: relative;
  padding-bottom: 2px;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--color-gold-dark);
  transition: right var(--dur-fast) var(--ease-editorial);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
  right: 0;
}

.header-whatsapp {
  padding: 0.65rem 1.15rem;
  font-size: 0.72rem;
}

@media (max-width: 720px) {
  .site-nav__links {
    display: none;
  }
  .header-whatsapp {
    padding: 0.6rem 0.9rem;
  }
  .header-whatsapp .btn-label {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 6vw, var(--space-2xl));
  padding-bottom: clamp(2rem, 6vw, var(--space-2xl));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up var(--dur-slow) var(--ease-editorial) forwards;
  animation-delay: 100ms;
}

.hero__eyebrow {
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  margin-bottom: var(--space-sm);
}

.hero__lede {
  max-width: 46ch;
  margin-bottom: var(--space-lg);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.hero__badge-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
}

.hero__badge-icon svg {
  width: 16px;
  height: 16px;
}

.hero__badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__visual {
  position: relative;
  opacity: 0;
  animation: reveal-fade var(--dur-slow) var(--ease-editorial) forwards;
  animation-delay: 260ms;
}

.hero__visual-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-emerald);
  border: 1px solid var(--color-gold-dark);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}

.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual-caption {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  text-align: right;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
  }
  .hero__visual-frame {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__badges {
    gap: var(--space-sm) var(--space-md);
  }
}

/* ==========================================================================
   Reveal-on-scroll (progressive enhancement)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-editorial),
    transform var(--dur-slow) var(--ease-editorial);
}

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

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Countdown
   ========================================================================== */

.countdown {
  background: var(--color-emerald);
  color: var(--color-bg);
  text-align: center;
}

.countdown__inner {
  max-width: 640px;
  margin-inline: auto;
}

.countdown .eyebrow {
  color: var(--color-gold-light);
  justify-content: center;
}

.countdown .eyebrow::before {
  display: none;
}

.countdown h2 {
  color: var(--color-bg);
  margin-block: var(--space-sm);
}

.countdown h2 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.countdown__date {
  font-size: 1rem;
  color: #c9dccf;
  margin-bottom: var(--space-lg);
}

.countdown__timer {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.countdown__unit {
  min-width: 84px;
  padding: var(--space-sm) var(--space-xs);
  border: 1px solid var(--color-emerald-line);
  border-radius: var(--radius-sm);
  background: rgba(250, 243, 228, 0.04);
}

.countdown__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown__label {
  display: block;
  margin-top: var(--space-2xs);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9dccf;
}

@media (max-width: 480px) {
  .countdown__unit {
    min-width: 68px;
    padding: var(--space-xs) var(--space-3xs);
  }
}

/* ==========================================================================
   Brand Story
   ========================================================================== */

.story {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  color: var(--color-line-strong);
  user-select: none;
}

.story__body p + p {
  margin-top: var(--space-sm);
}

@media (max-width: 820px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .story__mark {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Why Lazri
   ========================================================================== */

.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-line);
}

.why-item {
  padding: var(--space-lg) var(--space-md) var(--space-lg) 0;
  border-bottom: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
}

.why-item:last-child {
  border-right: none;
}

.why-item__index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

.why-item h3 {
  margin-bottom: var(--space-2xs);
}

@media (max-width: 900px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 560px) {
  .why-list {
    grid-template-columns: 1fr;
  }
  .why-item {
    border-right: none;
    padding-right: 0;
  }
}

/* ==========================================================================
   Teaser — "A hint of what's coming"
   ========================================================================== */

.teaser {
  background: var(--color-emerald);
  color: var(--color-bg);
}

.teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: end;
}

.teaser__intro {
  grid-column: 1 / -1;
  max-width: 640px;
  margin-bottom: var(--space-md);
}

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

.teaser .eyebrow::before {
  background: var(--color-gold-light);
}

.teaser__lede {
  color: #d8d1c9;
}

.teaser__figure {
  border: 1px solid var(--color-emerald-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #163f30;
  aspect-ratio: 3 / 4;
  transition: transform var(--dur-med) var(--ease-editorial);
}

.teaser__figure:hover {
  transform: translateY(-4px);
}

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

/* category strip */
.category-strip {
  grid-column: 1 / -1;
  margin-top: var(--space-xl);
  border-top: 1px solid var(--color-emerald-line);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.category-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xs);
  flex: 1;
  min-width: 90px;
}

.category-strip__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
}

.category-strip__icon svg {
  width: 22px;
  height: 22px;
}

.category-strip__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d8d1c9;
}

.teaser__cta {
  grid-column: 1 / -1;
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .teaser__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .teaser__grid {
    grid-template-columns: 1fr;
  }
  .category-strip {
    justify-content: center;
  }
  .category-strip__item {
    min-width: 72px;
    flex: 0 0 30%;
  }
}

/* ==========================================================================
   Anti-tarnish philosophy
   ========================================================================== */

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.philosophy__list {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.philosophy__list li {
  padding-left: var(--space-md);
  position: relative;
  color: var(--color-ink-soft);
}

.philosophy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--color-gold-dark);
}

@media (max-width: 820px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ==========================================================================
   WhatsApp CTA band
   ========================================================================== */

.cta-band {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  text-align: center;
}

.cta-band__inner {
  max-width: 560px;
  margin-inline: auto;
}

.cta-band .eyebrow {
  justify-content: center;
}

.cta-band .eyebrow::before {
  display: none;
}

.cta-band h2 {
  margin-block: var(--space-sm);
}

.cta-band__actions {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Email signup
   ========================================================================== */

.signup__inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.signup-form {
  margin-top: var(--space-lg);
  text-align: left;
}

.signup-form__row {
  display: flex;
  gap: var(--space-2xs);
  align-items: flex-start;
}

.signup-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.signup-form label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
  color: var(--color-ink-soft);
}

.signup-form input[type="email"] {
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-line-strong);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  transition: border-color var(--dur-fast) var(--ease-editorial);
}

.signup-form input[type="email"]:focus {
  border-color: var(--color-gold-dark);
}

.signup-form input[aria-invalid="true"] {
  border-color: var(--color-error);
}

.signup-form__submit {
  margin-top: 0;
}

.signup-form__status {
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  min-height: 1.4em;
}

.signup-form__status[data-state="error"] {
  color: var(--color-error);
}

.signup-form__status[data-state="success"] {
  color: var(--color-success);
}

.signup-form__hint {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: var(--space-2xs);
}

.signup-form[data-loading="true"] .btn {
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 560px) {
  .signup-form__row {
    flex-direction: column;
  }
  .signup-form__submit {
    width: 100%;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--color-gold-dark);
  background: var(--color-emerald);
  color: var(--color-bg);
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-block: var(--space-xl);
}

.site-footer__brand .logo-link {
  margin-bottom: var(--space-sm);
}

.site-footer__tagline {
  max-width: 32ch;
  color: #c9dccf;
  font-size: 0.92rem;
}

.site-footer__links {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.site-footer__group h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.site-footer__group ul {
  display: grid;
  gap: var(--space-2xs);
}

.site-footer__group a {
  text-decoration: none;
  color: #e7e0d3;
  font-size: 0.92rem;
}

.site-footer__group a:hover {
  color: var(--color-gold-light);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-emerald-line);
  padding-block: var(--space-md);
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #a9c0b3;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.float-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  background: var(--color-whatsapp);
  color: #0b3d1e;
  padding: 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-lift);
  transition: transform var(--dur-fast) var(--ease-editorial),
    box-shadow var(--dur-fast) var(--ease-editorial);
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(13, 46, 33, 0.5);
}

.float-whatsapp svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.float-whatsapp__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  transition: max-width var(--dur-med) var(--ease-editorial), padding var(--dur-med) var(--ease-editorial);
}

.float-whatsapp:hover .float-whatsapp__label,
.float-whatsapp:focus-visible .float-whatsapp__label {
  max-width: 160px;
  padding-right: var(--space-2xs);
}

@media (max-width: 560px) {
  .float-whatsapp {
    padding: 0.8rem;
  }
  .float-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}
