:root {
  --cream: #fff5f7;
  --ink: #f0e6e9;
  --muted: #bfa3a9;
  --paper: #0f0407;
  --surface: #1a0a0f;
  --surface-2: #230e14;
  --rose: #c97b84;
  --rose-soft: rgba(201, 123, 132, 0.18);
  --gold: #f3d7b3;
  --gold-soft: rgba(243, 215, 179, 0.14);
  --champagne: #d4a574;
  --plum: #14070a;
  --line: rgba(243, 215, 179, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 16px 42px rgba(243, 215, 179, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 123, 132, 0.10), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(243, 215, 179, 0.08), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(201, 123, 132, 0.06), transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 245, 247, 0.18);
  border-radius: 999px;
  background: rgba(20, 7, 10, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  color: var(--cream);
  transform: translateX(-50%);
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  box-shadow: var(--shadow-gold);
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: var(--line);
  background: rgba(15, 4, 7, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 72px;
  height: 46px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 12px rgba(243, 215, 179, 0.45));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.72;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 6px;
}

.nav-links a,
.header-action,
.menu-button,
.mobile-menu a {
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.nav-links a {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.88rem;
}

.nav-links a:hover,
.mobile-menu a:hover {
  background: rgba(243, 215, 179, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(243, 215, 179, 0.10);
}

.header-action,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.header-action {
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #1a0a0f;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(243, 215, 179, 0.25);
}

.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(243, 215, 179, 0.35);
}

.site-header.is-scrolled .header-action,
.site-header.menu-visible .header-action {
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #1a0a0f;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255, 245, 247, 0.10);
  color: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 82px 16px auto;
  z-index: 28;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 4, 7, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
}

.mobile-menu a {
  display: block;
  padding: 15px 16px;
  font-weight: 800;
  color: var(--cream);
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 370px);
  align-items: end;
  gap: 32px;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 34px;
  overflow: hidden;
  color: var(--cream);
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.03);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(15, 4, 7, 0.92), rgba(60, 20, 30, 0.15) 52%, rgba(15, 4, 7, 0.82)),
    linear-gradient(0deg, rgba(15, 4, 7, 0.95), rgba(201, 123, 132, 0.03) 48%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 20%, rgba(243, 215, 179, 0.06), transparent 50%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-mark {
  width: min(260px, 52vw);
  margin: 0 0 20px -4px;
  filter: drop-shadow(0 0 36px rgba(243, 215, 179, 0.55));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  background: linear-gradient(135deg, var(--cream) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  color: var(--cream);
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--cream);
}

.hero-copy {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 245, 247, 0.85);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions,
.quick-links,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.btn,
.quick-links a,
.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #1a0a0f;
  box-shadow: 0 16px 34px rgba(243, 215, 179, 0.22), 0 0 32px rgba(243, 215, 179, 0.08);
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.btn.primary:hover::after {
  transform: translateX(120%);
}

.btn.secondary {
  border-color: rgba(255, 245, 247, 0.30);
  background: rgba(255, 245, 247, 0.08);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.btn:hover,
.quick-links a:hover,
.contact-list a:hover,
.gallery-item:hover,
.service-card:hover {
  transform: translateY(-3px);
}

.hero-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-panel div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(26, 10, 15, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 0 28px rgba(243, 215, 179, 0.04), var(--shadow-gold);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.45rem;
  color: var(--gold);
}

.hero-panel span {
  margin-top: 4px;
  color: rgba(255, 245, 247, 0.78);
  line-height: 1.4;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(15, 4, 7, 0.7);
  color: var(--ink);
  box-shadow: 0 0 34px rgba(243, 215, 179, 0.06);
  backdrop-filter: blur(6px);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-weight: 900;
  white-space: nowrap;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 34px;
  color: var(--rose);
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.section {
  padding: 92px max(24px, calc((100vw - 1120px) / 2));
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 8px;
  margin-bottom: 32px;
}

.intro-grid,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.intro-copy p,
.visit-info p,
.planner-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.quick-links {
  margin-top: 24px;
}

.quick-links a,
.contact-list a {
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.quick-links a:hover,
.contact-list a:hover {
  border-color: rgba(243, 215, 179, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), 0 0 18px rgba(243, 215, 179, 0.08);
}

.studio-figure {
  margin: 0;
}

.studio-figure img,
.map-shell,
.planner-section {
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.studio-figure img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 215, 179, 0.30);
}

.chip.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #1a0a0f;
  box-shadow: 0 0 22px rgba(243, 215, 179, 0.18);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
  transition: transform 250ms ease, opacity 220ms ease, box-shadow 250ms ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 600ms ease, opacity 250ms ease;
}

.gallery-item:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 30px rgba(243, 215, 179, 0.10);
}

.gallery-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(20, 7, 10, 0.75);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
}

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

.service-card {
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--rose-soft), transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(243, 215, 179, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(243, 215, 179, 0.08);
  transform: translateY(-4px);
}

.service-card svg {
  color: var(--gold);
  transition: color 250ms ease, transform 250ms ease;
}

.service-card:hover svg {
  color: var(--rose);
  transform: scale(1.1);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-button {
  justify-self: start;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  cursor: pointer;
  font-weight: 900;
  transition: color 200ms ease;
}

.text-button:hover {
  color: var(--rose);
}

.planner-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: end;
  margin-inline: max(24px, calc((100vw - 1120px) / 2));
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(201, 123, 132, 0.10), rgba(243, 215, 179, 0.05)),
    var(--plum);
  color: var(--ink);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.planner-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(243, 215, 179, 0.08), transparent 60%);
  pointer-events: none;
}

.planner-copy p {
  color: rgba(255, 245, 247, 0.76);
}

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

.planner label {
  display: grid;
  gap: 8px;
  color: rgba(255, 245, 247, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.planner select,
.planner input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 245, 247, 0.22);
  border-radius: 10px;
  background: rgba(255, 245, 247, 0.06);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.planner select:focus,
.planner input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(243, 215, 179, 0.12);
}

.planner option {
  color: #1a0a0f;
}

.planner-link {
  grid-column: 1 / -1;
  justify-self: start;
}

.visit-section {
  align-items: stretch;
}

.visit-info {
  display: grid;
  align-content: center;
}

.contact-list {
  margin-top: 20px;
}

.map-shell {
  min-height: 410px;
  overflow: hidden;
  background: var(--surface);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - 1120px) / 2)) 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.site-footer a {
  transition: color 200ms ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 4, 7, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(780px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 76svh;
  border-radius: 14px;
  object-fit: contain;
  background: #080205;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  margin-top: 10px;
}

.lightbox figcaption a {
  color: var(--gold);
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 245, 247, 0.26);
  border-radius: 50%;
  background: rgba(255, 245, 247, 0.08);
  color: var(--ink);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.lightbox-close:hover {
  background: rgba(255, 245, 247, 0.16);
  transform: rotate(90deg);
}

.mobile-booking-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 4, 7, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px) saturate(140%);
}

.mobile-booking-bar a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  color: #1a0a0f;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mobile-booking-bar a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 215, 179, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.25;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

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

  .nav-links, .header-action {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .hero, .intro-grid, .visit-section, .planner-section {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .planner-section {
    margin-inline: 24px;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding-inline: 18px;
    padding-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.75rem);
  }

  .hero-copy {
    margin-top: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-panel div {
    padding: 10px 8px;
  }

  .hero-panel strong {
    font-size: 0.92rem;
  }

  .hero-panel span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .section {
    padding: 68px 18px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: 1fr;
  }

  .gallery-item, .gallery-item.tall, .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .planner-section {
    margin-inline: 18px;
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div {
    flex-wrap: wrap;
  }

  .mobile-booking-bar {
    display: grid;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: wa-pulse 2.8s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
  animation: none;
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 6px;
  background: #1a0a0f;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: 0;
  border-left-color: #1a0a0f;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.10); }
}

@media (max-width: 680px) {
  .whatsapp-float {
    bottom: 86px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

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

  .whatsapp-tooltip {
    display: none;
  }
}
