/* Elgi Stay — premium landing
   Palette: milk, warm white, graphite, deep black, gold */

:root {
  --milk: #f3efe6;
  --warm-white: #fdfcfa;
  --cream: #ebe4d6;
  --graphite: #2a2a2a;
  --black: #0c0c0c;
  --gold: #b8955c;
  --gold-soft: rgba(184, 149, 92, 0.35);
  --muted: rgba(12, 12, 12, 0.55);
  --line: rgba(12, 12, 12, 0.08);
  --glass: rgba(253, 252, 250, 0.72);
  --shadow-soft: 0 24px 80px rgba(12, 12, 12, 0.08);
  --radius-lg: 20px;
  --radius-md: 12px;
  --space-section: clamp(4.5rem, 10vw, 8.5rem);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-distance: 44px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--warm-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body {
    padding-bottom: 2rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 100% - 2.5rem);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), backdrop-filter 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 900px) {
  .header-inner .nav {
    flex: 1;
  }
}

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav a {
  position: relative;
  padding-block: 0.25rem;
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-out);
}

.site-header:not(.is-scrolled) .nav a {
  color: var(--warm-white);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header:not(.is-scrolled) .btn-ghost {
  color: var(--warm-white);
  border-color: rgba(253, 252, 250, 0.35);
}

.site-header:not(.is-scrolled) .btn-ghost:hover {
  background: rgba(253, 252, 250, 0.1);
  border-color: rgba(253, 252, 250, 0.55);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 1px;
  width: 22px;
  background: var(--black);
  transition: background 0.3s, transform 0.35s var(--ease-out);
}

.site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--warm-white);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  text-align: center;
  border-bottom: none;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.6875rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 0.75rem;
}

.btn-primary {
  background: var(--black);
  color: var(--warm-white);
  border-color: var(--black);
  box-shadow: 0 12px 40px rgba(12, 12, 12, 0.2);
}

.btn-primary:hover {
  background: #1a1a1a;
  box-shadow: 0 16px 48px rgba(12, 12, 12, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(253, 252, 250, 0.45);
}

.btn-outline:hover {
  background: rgba(253, 252, 250, 0.08);
  border-color: rgba(253, 252, 250, 0.75);
}

.section .btn-outline {
  color: var(--black);
  border-color: rgba(12, 12, 12, 0.2);
}

.section .btn-outline:hover {
  background: var(--black);
  color: var(--warm-white);
  border-color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(12, 12, 12, 0.18);
}

.btn-ghost:hover {
  border-color: var(--black);
}

.btn-text {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: none;
  padding: 0;
  background: none;
  box-shadow: none;
  position: relative;
}

.property-card:hover .btn-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--warm-white);
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroKen 22s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    transform: scale(1);
  }
}

@keyframes heroKen {
  to {
    transform: scale(1.08);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.35) 0%,
      rgba(12, 12, 12, 0.5) 45%,
      rgba(12, 12, 12, 0.75) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(184, 149, 92, 0.12), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.88;
  max-width: 34em;
  margin: 0 auto 2.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(253, 252, 250, 0.35);
  border-radius: 999px;
  opacity: 0.7;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  translate: -50% 0;
  width: 3px;
  height: 8px;
  background: var(--warm-white);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll span {
    animation: none;
  }
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/* ——— Scroll reveal ——— */
.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.97);
  transform-origin: 50% 80%;
  transition:
    opacity 0.95s var(--ease-reveal),
    transform 1.05s var(--ease-reveal);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal[data-reveal="left"] {
  transform: translate3d(calc(var(--reveal-distance) * -0.85), 0, 0) scale(0.98);
  transform-origin: 0 50%;
}

.reveal[data-reveal="left"].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal[data-reveal="right"] {
  transform: translate3d(calc(var(--reveal-distance) * 0.85), 0, 0) scale(0.98);
  transform-origin: 100% 50%;
}

.reveal[data-reveal="right"].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal[data-reveal="zoom"] {
  transform: translate3d(0, 24px, 0) scale(0.92);
  transform-origin: 50% 50%;
}

.reveal[data-reveal="zoom"].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Sections ——— */
.section {
  padding-block: var(--space-section);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--black);
  margin: 0 0 1rem;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 36rem;
  margin-inline: auto;
}

/* ——— Benefits ——— */
.benefits {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--milk) 55%, var(--cream) 100%);
}

.benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.benefit-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 2px 0 rgba(184, 149, 92, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(184, 149, 92, 0.25);
}

.benefit-icon {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--black);
}

.benefit-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 300;
}

/* ——— Gallery ——— */
.gallery {
  background: var(--warm-white);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.property-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--milk);
  border: 1px solid var(--line);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.property-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.property-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.property-card:hover .property-photo img {
  transform: scale(1.05);
}

.property-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.property-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.property-city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
}

.property-rating {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm-white);
}

.property-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}

.property-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.property-price {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--black);
}

/* ——— Experience ——— */
.experience {
  background: var(--black);
  color: var(--warm-white);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.experience .section-eyebrow {
  color: var(--gold);
}

.experience .section-title {
  color: var(--warm-white);
}

.experience .section-lead {
  color: rgba(253, 252, 250, 0.65);
}

.experience-intro {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.experience-panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .experience-panels {
    flex-direction: row;
    gap: 0.75rem;
    padding-inline: clamp(0.5rem, 3vw, 2rem);
  }
}

.exp-panel {
  margin: 0;
  position: relative;
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
}

@media (min-width: 900px) {
  .exp-panel {
    min-height: 420px;
  }
}

.exp-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.exp-panel:hover img {
  transform: scale(1.04);
}

.exp-panel figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 12, 0.85));
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.exp-label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.exp-copy {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

/* ——— Reviews ——— */
.reviews {
  background: var(--milk);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  transition: border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.review-card:hover {
  border-color: rgba(184, 149, 92, 0.35);
  box-shadow: 0 20px 60px rgba(12, 12, 12, 0.06);
}

.review-card p {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--graphite);
}

.review-card footer {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 0.35rem;
}

/* ——— FAQ ——— */
.faq {
  background: var(--warm-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 1.25rem;
  background: var(--warm-white);
  transition: border-color 0.35s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(12, 12, 12, 0.14);
}

.faq-item[open] {
  border-color: rgba(184, 149, 92, 0.4);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 1.15rem 0;
  color: var(--black);
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.4s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ——— Final CTA ——— */
.final-cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--milk) 40%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse, var(--gold-soft), transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  text-align: center;
}

.final-cta-copy .section-title {
  max-width: 14ch;
  margin-inline: auto;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.final-cta .btn-primary {
  background: var(--black);
}

.final-cta .btn-outline {
  color: var(--black);
  border-color: rgba(12, 12, 12, 0.25);
}

.final-cta .btn-outline:hover {
  background: var(--black);
  color: var(--warm-white);
}

/* ——— Footer ——— */
.site-footer {
  padding: 3rem 1.5rem;
  background: var(--black);
  color: rgba(253, 252, 250, 0.55);
  text-align: center;
  font-size: 0.8125rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.footer-copy {
  margin: 0;
  opacity: 0.65;
}

/* ——— Sticky bar ——— */
.sticky-bar {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(12, 12, 12, 0.06);
}

.sticky-cta {
  flex: 1;
  max-width: 280px;
}

.sticky-social {
  display: flex;
  gap: 0.5rem;
}

.icon-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--graphite);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), background 0.3s;
}

.icon-link:hover {
  color: var(--black);
  border-color: rgba(184, 149, 92, 0.5);
  background: rgba(184, 149, 92, 0.08);
  transform: translateY(-2px);
}

.icon-link.wa:hover {
  color: #128c7e;
}

.icon-link.tg:hover {
  color: #229ed9;
}

@media (min-width: 768px) {
  .sticky-bar {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: auto;
    border-radius: 999px;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border: 1px solid var(--line);
  }

  .sticky-cta {
    max-width: none;
  }
}
