/* ==========================================================================
   The Acres — Landing Page Styles
   Design system: "Mercury" recolored — forest/moss/teak, per DESIGN.md
   ========================================================================== */

:root {
  --color-forest-canvas: #2c3324;
  --color-moss-card: #363d2c;
  --color-bark-surface: #404738;
  --color-sage-border: #6b7360;
  --color-bone-border: #cfc9bb;
  --color-ash-text: #b7b6a4;
  --color-ivory-text: #dbd5c9;
  --color-teak: #816b5b;
  --color-teak-hover: #93796770;
  --color-pure-white: #ffffff;
  /* Accent text (eyebrows, stat numbers, tags) — brighter gold for legibility */
  --color-accent-text: #f2c567;

  --font-arcadia: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-arcadiadisplay: 'Bodoni Moda', 'Times New Roman', Georgia, serif;

  --page-max-width: 1200px;
  --section-gap: 72px;
  --card-padding: 32px;
  --element-gap: 12px;

  --radius-cards: 12px;
  --radius-inputs: 32px;
  --radius-buttons: 32px;
  --radius-nav: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-forest-canvas);
  color: var(--color-ivory-text);
  font-family: var(--font-arcadia);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-arcadiadisplay);
  font-weight: 480;
  margin: 0;
  color: var(--color-ivory-text);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

p { margin: 0; }

.eyebrow {
  font-family: var(--font-arcadia);
  font-size: 12px;
  font-weight: 480;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  display: block;
  margin-bottom: 16px;
}

.section {
  padding: var(--section-gap) 0;
  background: var(--color-forest-canvas);
}
.section--moss { background: var(--color-bark-surface); }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p {
  margin-top: 16px;
  color: var(--color-ash-text);
  font-size: 18px;
  line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-arcadia);
  font-size: 16px;
  font-weight: 420;
  border-radius: var(--radius-buttons);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--color-teak);
  color: var(--color-pure-white);
}
.btn--primary:hover { background: #92795f; }

.btn--ghost {
  background: transparent;
  color: var(--color-ivory-text);
  border: 1px solid var(--color-ivory-text);
}
.btn--ghost:hover { background: rgba(219,213,201,0.08); }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,25,15,0.65) 0%, rgba(20,25,15,0.35) 55%, transparent 100%);
  opacity: 1;
  transition: opacity 0.35s ease;
}
.nav.is-scrolled::before { opacity: 0; }
.nav.is-scrolled {
  background: rgba(44,51,36,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-color: rgba(207,201,187,0.14);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand img { height: 48px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-nav);
  font-size: 15px;
  color: var(--color-ivory-text);
  transition: background 0.2s ease;
}
.nav__links a:hover { background: rgba(219,213,201,0.1); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-bone-border);
  border-radius: 12px;
  width: 44px; height: 44px;
  color: var(--color-ivory-text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  /* Icon-only mark (assets/mobile-logo-mark.png) swapped in via <picture> —
     it's a tall, roughly upright shape rather than a wide lockup, so it
     needs a taller box than the desktop wordmark to read clearly. */
  .nav__brand img { height: 40px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links.nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 8px;
    background: rgba(30,35,24,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(207,201,187,0.16);
    border-radius: 16px;
    padding: 8px;
    gap: 2px;
  }
  .nav__links.nav__links--open a { padding: 12px 16px; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1c2117;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,33,23,0.55) 0%, rgba(28,33,23,0.35) 35%, rgba(28,33,23,0.75) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__tag {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ivory-text);
  background: rgba(44,51,36,0.55);
  border: 1px solid rgba(207,201,187,0.4);
  padding: 8px 18px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 65px);
  color: #ffffff;
  line-height: 1.08;
}
.hero__logo {
  width: min(72vw, 340px);
  height: auto;
  margin: 4px 0 6px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}
.hero__sub {
  font-size: 18px;
  font-weight: 480;
  color: var(--color-ivory-text);
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Inline hero email capture (Mercury component) */
.hero__capture {
  display: flex;
  width: 100%;
  max-width: 480px;
  margin-top: 12px;
}
.hero__capture input {
  flex: 1;
  background: rgba(44,51,36,0.4);
  border: 1px solid var(--color-bone-border);
  border-right: none;
  color: var(--color-ivory-text);
  font-family: var(--font-arcadia);
  font-size: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-inputs) 0 0 var(--radius-inputs);
  outline: none;
}
.hero__capture input::placeholder { color: var(--color-ash-text); }
.hero__capture button {
  border-radius: 0 var(--radius-inputs) var(--radius-inputs) 0;
  padding: 14px 24px;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-ivory-text);
  opacity: 0.75;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-cue .line { width: 1px; height: 28px; background: currentColor; animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ---------- Intro / two-column split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  border-radius: var(--radius-cards);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
/* Seamless variant: no card frame, no crop — for diagrams/maps that
   already carry their own background rather than photographic tiles */
.split__media--plain img {
  border-radius: 0;
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}
.split__text h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 20px; }
.split__text p { color: var(--color-ash-text); font-size: 17px; margin-bottom: 16px; }
.split__list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.split__list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--color-ivory-text); font-size: 15px;
}
.split__list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-teak);
  margin-top: 8px; flex-shrink: 0;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-moss-card);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
}
.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.card p { color: var(--color-ash-text); font-size: 15px; }
.card .card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-bark-surface);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--color-accent-text);
}

/* Garden card with image */
.garden-card {
  border-radius: var(--radius-cards);
  overflow: hidden;
  background: var(--color-moss-card);
  display: flex;
  flex-direction: column;
}
.garden-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.garden-card__img img { width: 100%; height: 100%; object-fit: cover; }
.garden-card__body { padding: 24px; }
.garden-card__body h3 { font-size: 19px; margin-bottom: 8px; }
.garden-card__body p { font-size: 14px; color: var(--color-ash-text); margin-bottom: 10px; }
.garden-card__tags { font-size: 11px; letter-spacing: 0.04em; color: var(--color-accent-text); text-transform: uppercase; line-height: 1.6; }

/* Villa type cards */
.villa-card {
  border-radius: var(--radius-cards);
  overflow: hidden;
  background: var(--color-moss-card);
}
.villa-card__img { aspect-ratio: 16/10; overflow: hidden; }
.villa-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.villa-card:hover .villa-card__img img { transform: scale(1.04); }
.villa-card__body { padding: 24px; }
.villa-card__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin: 12px 0 16px;
  font-size: 13px; color: var(--color-ash-text);
}
.villa-card__meta span { display: flex; align-items: center; gap: 6px; }
.villa-card__collection {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: 10px;
}

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats .stat h3 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-accent-text);
  font-family: var(--font-arcadiadisplay);
}
.stats .stat p { color: var(--color-ash-text); font-size: 14px; margin-top: 8px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Location list */
.location-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.location-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(207,201,187,0.16);
  font-size: 15px;
}
.location-list li span:last-child { color: var(--color-accent-text); font-weight: 480; white-space: nowrap; }

/* Location section: light, map-matched palette (scoped to this section only) */
#location {
  background: #dad5cb;
}
#location .eyebrow { color: #8a6a3a; }
#location .split__text h2 { color: #2c3324; }
#location .split__text p { color: #5c5a4d; }
#location .location-list li {
  border-bottom: 1px solid rgba(44,51,36,0.14);
  color: #45443a;
}
#location .location-list li span:last-child { color: #8a6a3a; }
#location .split__media--plain img {
  border-radius: var(--radius-cards);
}

/* Sustainability chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.chip {
  border: 1px solid var(--color-bone-border);
  color: var(--color-ivory-text);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
}

/* ---------- Sticky CTA band ---------- */
.cta-band {
  background: var(--color-bark-surface);
  border-radius: var(--radius-cards);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px,3vw,32px); margin-bottom: 8px; }
.cta-band p { color: var(--color-ash-text); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Gated download tiles ---------- */
.download-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 860px) { .download-tiles { grid-template-columns: 1fr; } }
.download-tile {
  background: var(--color-moss-card);
  border-radius: var(--radius-cards);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-tile .card__icon { margin-bottom: 0; }
.download-tile h3 { font-size: 20px; }
.download-tile p { font-size: 14px; color: var(--color-ash-text); flex: 1; }

/* ---------- Footer ---------- */
.footer {
  background: #232919;
  padding: 56px 0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand img { height: 56px; }
.footer__brand p { color: var(--color-ash-text); font-size: 14px; max-width: 320px; }
.footer__links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-ash-text); margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; font-size: 14px; margin-bottom: 10px; color: var(--color-ivory-text); }
.disclaimer {
  padding: 24px 0 32px;
  font-size: 12px;
  color: var(--color-ash-text);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* ---------- Modal (Lead form) ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,24,16,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--color-moss-card);
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: var(--color-ash-text);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.modal__close:hover { color: var(--color-ivory-text); }
.modal h3 { font-size: 24px; margin-bottom: 6px; }
.modal__sub { color: var(--color-ash-text); font-size: 14px; margin-bottom: 24px; }

/* HubSpot embed wrapper. Once the form's own theme (Style & preview tab in
   HubSpot) is set to a dark background matching the site, this stays
   transparent so the iframe blends straight into the modal with no visible
   seam. If you ever revert the form to a light theme, add
   "background:#fff;" back here so it doesn't look like a hole in the card. */
#hubspot-form-wrap {
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
}
#hubspot-form-wrap iframe { display: block; width: 100%; border: none; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  color: var(--color-ash-text);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  background: var(--color-bark-surface);
  border: 1px solid var(--color-sage-border);
  color: var(--color-ivory-text);
  font-family: var(--font-arcadia);
  font-size: 15px;
  padding: 13px 18px;
  border-radius: var(--radius-inputs);
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus { border-color: var(--color-teak); }
.field input::placeholder { color: var(--color-ash-text); }
.field-error {
  color: #e8a06a;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.field.has-error input { border-color: #c96a4c; }
.field.has-error .field-error { display: block; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--color-ash-text);
  margin: 18px 0;
  line-height: 1.5;
}
.consent input { margin-top: 3px; }
.consent a { color: var(--color-ivory-text); text-decoration: underline; }

.recaptcha-wrap { margin: 18px 0; display: flex; justify-content: center; }

.form-status {
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
  display: none;
}
.form-status.is-error { color: #e8a06a; display: block; }
.form-status.is-loading { color: var(--color-ash-text); display: block; }

/* Utility */
.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;
}
[data-lazy-video] { background: var(--color-bark-surface); }

/* ---------- Thank you page ---------- */
.thankyou {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  position: relative;
}
.thankyou::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--ty-bg, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.thankyou::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,51,36,0.85), rgba(44,51,36,0.96));
  z-index: 0;
}
.thankyou__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.thankyou__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-teak);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.thankyou h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.thankyou p { color: var(--color-ash-text); font-size: 17px; margin-bottom: 12px; }
.thankyou__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.thankyou__logo { margin-bottom: 32px; }
.thankyou__logo img { height: 48px; margin: 0 auto; }

@media (max-width: 640px) {
  .hero__content { padding-top: 130px; }
  .hero__capture { flex-direction: column; }
  .hero__capture input { border-radius: var(--radius-inputs); border-right: 1px solid var(--color-bone-border); margin-bottom: 10px; }
  .hero__capture button { border-radius: var(--radius-inputs); width: 100%; }
  .cta-band { flex-direction: column; text-align: center; padding: 32px; }
  .cta-band__actions { justify-content: center; }
}

/* ---------- Scroll-entrance animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Subtle stagger for cards inside a grid */
.grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.grid .reveal:nth-child(7) { transition-delay: 0.48s; }
.grid .reveal:nth-child(8) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================= STICKY CONTACT (WhatsApp / Call) ============================= */
.sticky-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sticky-contact__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
}
.sticky-contact__btn:hover,
.sticky-contact__btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}
.sticky-contact__btn svg { width: 26px; height: 26px; display: block; }
.sticky-contact__btn--whatsapp { background: #25d366; }
.sticky-contact__btn--call { background: var(--color-teak); }

@media (max-width: 760px) {
  .sticky-contact { right: 14px; bottom: 14px; gap: 10px; }
  .sticky-contact__btn { width: 46px; height: 46px; }
  .sticky-contact__btn svg { width: 21px; height: 21px; }
}
