@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800&display=swap');

:root {
  --ink: #112a2d;
  --ink-soft: #476064;
  --teal: #0d9488;
  --teal-dark: #08746c;
  --teal-deep: #063f3d;
  --teal-soft: #e5f4f1;
  --cream: #f5f1e8;
  --paper: #fff;
  --line: rgba(17, 42, 45, .11);
  --shadow: 0 24px 70px rgba(15, 64, 64, .13);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.av-contact-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(13, 148, 136, .06), transparent 28%),
    #fbfaf7;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.av-contact-page a {
  color: inherit;
  text-decoration: none;
}

body.av-contact-page img {
  max-width: 100%;
}

body.av-contact-page svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility {
  color: rgba(255,255,255,.78);
  background: var(--teal-deep);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.utility span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility i,
.open-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5de5a5;
  box-shadow: 0 0 0 4px rgba(93,229,165,.13);
}

.utility a {
  transition: color .2s ease;
}

.utility a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(17,42,45,.07);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(145deg, #18a99c, #08766f);
  box-shadow:
    0 9px 24px rgba(13,148,136,.24),
    inset 0 1px 0 rgba(255,255,255,.28);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: #294549;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone span,
.header-phone strong {
  display: block;
  text-align: right;
}

.header-phone span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-phone strong {
  margin-top: 2px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff !important;
  background:
    linear-gradient(145deg, #119c91, #08766f);
  box-shadow: 0 14px 30px rgba(13,148,136,.22);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(13,148,136,.3);
}

.button-compact {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 13px;
}

.button-light {
  border-color: rgba(255,255,255,.55);
  color: #fff !important;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.button-white {
  color: var(--teal-deep) !important;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0,0,0,.13);
}

.button-ghost {
  border-color: rgba(255,255,255,.28);
  color: #fff !important;
  background: rgba(255,255,255,.06);
}

.button-outline {
  border-color: rgba(13,148,136,.22);
  color: var(--teal-dark) !important;
  background: #fff;
}

.button-wide {
  width: 100%;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  padding: 54px 0 76px;
  background:
    linear-gradient(135deg, #f3f7f4 0%, #eaf3ef 54%, #f5f1e8 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 6%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.12), transparent 67%);
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #82e0d7;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(44px, 4.55vw, 72px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .99;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #496266;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero .button-light {
  border-color: rgba(13,148,136,.18);
  color: var(--teal-dark) !important;
  background: rgba(255,255,255,.78);
}

.button-icon {
  font-size: 19px;
}

.hero-facts {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17,42,45,.12);
}

.hero-facts > div {
  padding: 22px 20px 0 0;
}

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

.hero-facts span {
  margin-bottom: 5px;
  color: #708286;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-facts a,
.hero-facts strong {
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #c9dfdb;
  box-shadow: var(--shadow);
}

.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(4,31,31,.48) 100%),
    linear-gradient(100deg, rgba(4,31,31,.12), transparent 45%);
}

.open-card,
.location-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(17px);
  box-shadow: 0 16px 44px rgba(0,0,0,.13);
}

.open-card {
  top: 24px;
  right: 24px;
  min-width: 218px;
  padding: 18px 20px;
  border-radius: 20px;
}

.open-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.open-card strong,
.open-card span {
  display: block;
}

.open-card strong {
  margin-top: 8px;
  font-size: 23px;
}

.open-card span {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: 11px;
}

.location-card {
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px 24px;
  border-radius: 23px;
}

.location-card span,
.location-card strong {
  display: block;
}

.location-card span {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-card strong {
  margin-top: 7px;
  font-size: 19px;
}

.location-card a {
  display: inline-flex;
  margin-top: 12px;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 108px 0;
}

.section-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.messenger-copy h2,
.cta-shell h2 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

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

.contact-card {
  position: relative;
  display: flex;
  min-height: 276px;
  padding: 26px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 46px rgba(15,64,64,.055);
  transition:
    transform .23s ease,
    border-color .23s ease,
    box-shadow .23s ease;
}

.contact-card::after {
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.11), transparent 68%);
  content: "";
}

.contact-card:hover {
  z-index: 2;
  border-color: rgba(13,148,136,.28);
  box-shadow: 0 25px 60px rgba(15,64,64,.12);
  transform: translateY(-7px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 22px;
}

.card-kicker,
.contact-card strong,
.card-note {
  display: block;
}

.card-kicker {
  color: #728489;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-card strong {
  max-width: 240px;
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.28;
}

.card-note {
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink-soft);
  font-size: 12px;
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 23px;
  color: var(--teal-dark);
  font-size: 18px;
  transition: transform .2s ease;
}

.contact-card:hover .card-arrow {
  transform: translate(3px, -3px);
}

.messengers {
  padding: 0;
}

.messenger-shell {
  display: grid;
  padding: 68px;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 70px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(55,210,195,.25), transparent 33%),
    linear-gradient(135deg, #063f3d, #0b5f5a);
  box-shadow: 0 30px 80px rgba(6,63,61,.18);
}

.messenger-copy p {
  max-width: 480px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.75;
}

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

.messenger-grid a {
  display: grid;
  min-height: 96px;
  padding: 18px 20px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  transition:
    background .2s ease,
    transform .2s ease,
    border-color .2s ease;
}

.messenger-grid a:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}

.messenger-grid a > span {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 15px;
  background: #fff;
}

.messenger-grid img {
  width: 27px;
  height: 27px;
}

.messenger-grid strong {
  font-size: 14px;
}

.messenger-grid b {
  color: #81ddd5;
  font-size: 17px;
}

.map-section {
  background:
    linear-gradient(180deg, transparent 0%, rgba(229,244,241,.43) 100%);
}

.map-heading {
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark) !important;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 18px;
}

.map-frame {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #d7e7e4;
  box-shadow: 0 20px 60px rgba(15,64,64,.09);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  filter: saturate(.88) contrast(.98);
}

.route-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 20px 60px rgba(15,64,64,.09);
}

.route-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.route-panel h3 {
  margin: 23px 0 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 30px;
  letter-spacing: -.04em;
}

.route-panel > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.route-list {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.route-list a {
  display: block;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.route-list span,
.route-list strong {
  display: block;
}

.route-list span {
  color: #7b8c90;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-list strong {
  margin-top: 5px;
  font-size: 15px;
}

.route-panel .button + .button {
  margin-top: 10px;
}

.final-cta {
  padding-top: 0;
}

.cta-shell {
  display: flex;
  padding: 62px 68px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(93,229,165,.18), transparent 27%),
    linear-gradient(135deg, #0a4d49, #052f2e);
  box-shadow: 0 28px 70px rgba(6,63,61,.18);
}

.cta-shell p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255,255,255,.72);
  background: #062d2c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}

.brand-footer strong {
  color: #fff;
}

.brand-footer small {
  color: rgba(255,255,255,.55);
}

.footer-brand p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column > strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 12px;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 56px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  color: #fff !important;
  background: linear-gradient(145deg, #13a397, #08766f);
  box-shadow: 0 16px 36px rgba(13,148,136,.35);
  font-size: 22px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .messenger-shell {
    padding: 56px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .map-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .utility {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 32px));
    padding: 14px;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .mobile-menu nav > a:not(.button) {
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu nav > a:not(.button):hover {
    background: var(--teal-soft);
  }

  .mobile-menu .button {
    margin-top: 7px;
  }

  .hero {
    padding: 42px 0 62px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(42px, 9vw, 62px);
  }

  .hero-visual {
    min-height: 520px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .route-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .route-panel .route-badge,
  .route-panel h3,
  .route-panel > p {
    grid-column: 1 / -1;
  }

  .route-list {
    grid-column: 1 / -1;
  }

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

  .cta-shell {
    align-items: start;
    flex-direction: column;
  }

  .mobile-call {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.2vw, 52px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div {
    padding: 15px 0;
    border-bottom: 1px solid rgba(17,42,45,.08);
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 26px;
  }

  .open-card {
    top: 14px;
    right: 14px;
    min-width: 190px;
    padding: 15px 17px;
  }

  .location-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .messenger-copy h2,
  .cta-shell h2 {
    font-size: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 230px;
  }

  .messenger-shell {
    width: 100%;
    padding: 42px 22px;
    border-radius: 0;
  }

  .messenger-grid {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    height: 430px;
    min-height: 430px;
  }

  .route-panel {
    display: block;
    padding: 26px;
  }

  .cta-shell {
    padding: 44px 24px;
    border-radius: 26px;
  }

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .mobile-call {
    right: 12px;
    bottom: 12px;
  }
}

/* 2026-09 unified conversion pass: messenger pair in the hero. */
body.av-contact-page .contact-hero-v2-actions .av-contact-max {
  border-color: rgba(4, 53, 48, .22);
  background: linear-gradient(135deg, #0d5149, #063b35);
  box-shadow: 0 12px 28px rgba(6, 59, 53, .18);
}

body.av-contact-page .contact-hero-v2-actions .av-contact-max:hover {
  box-shadow: 0 17px 34px rgba(6, 59, 53, .24);
}

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

/* ALFAVET CONTACTS LUXURY V2 — HOME HEADER/FOOTER + NO-PHOTO HERO */

body.av-contact-page {
  background:
    radial-gradient(circle at 8% 2%, rgba(13,148,136,.055), transparent 29%),
    #fbfaf7;
}

body.av-contact-page .utility-home,
body.av-contact-page .utility-home .utility-inner {
  min-height: 38px;
}

body.av-contact-page .site-header-home {
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 35px rgba(15,64,64,.045);
}

body.av-contact-page .site-header-home .header-inner {
  min-height: 88px;
}

body.av-contact-page .site-header-home .brand-mark,
body.av-contact-page .site-footer-home .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  font-size: 22px;
}

body.av-contact-page .site-header-home .brand strong {
  font-size: 19px;
}

body.av-contact-page .site-header-home .desktop-nav {
  gap: 34px;
}

body.av-contact-page .site-header-home .desktop-nav a {
  padding-top: 34px;
  padding-bottom: 31px;
  font-size: 14px;
}

body.av-contact-page .site-header-home .header-actions {
  gap: 21px;
}

.contact-hero-v2 {
  position: relative;
  min-height: 700px;
  padding: 94px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(122deg, #edf5f1 0%, #f7f4ed 58%, #eef5f2 100%);
}

.contact-hero-v2::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,116,108,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,116,108,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 80%);
  pointer-events: none;
}

.contact-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.contact-hero-orb-one {
  top: -180px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(13,148,136,.13), transparent 67%);
}

.contact-hero-orb-two {
  right: -140px;
  bottom: -280px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(200,174,118,.16), transparent 68%);
}

.contact-hero-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, .85fr);
  align-items: center;
  gap: clamp(70px, 9vw, 138px);
}

.contact-hero-v2-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(48px, 5.15vw, 78px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: .98;
}

.contact-hero-v2-lead {
  max-width: 660px;
  margin: 29px 0 0;
  color: #4d6569;
  font-size: 18px;
  line-height: 1.75;
}

.contact-hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.contact-hero-v2-meta {
  display: grid;
  max-width: 650px;
  margin-top: 46px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17,42,45,.13);
}

.contact-hero-v2-meta > div {
  padding: 22px 28px 0 0;
}

.contact-hero-v2-meta span,
.contact-hero-v2-meta a {
  display: block;
}

.contact-hero-v2-meta span {
  margin-bottom: 6px;
  color: #75878a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-hero-v2-meta a {
  font-size: 15px;
  font-weight: 850;
}

.contact-hero-v2-panel {
  position: relative;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(72,210,197,.24), transparent 32%),
    linear-gradient(145deg, #07534f, #063936);
  box-shadow:
    0 34px 90px rgba(6,63,61,.24),
    inset 0 1px 0 rgba(255,255,255,.13);
}

.contact-hero-v2-panel::after {
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 45px rgba(255,255,255,.025),
    0 0 0 90px rgba(255,255,255,.018);
}

.contact-panel-top,
.contact-panel-address,
.contact-panel-links,
.contact-panel-messengers {
  position: relative;
  z-index: 1;
}

.contact-panel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #87e2d9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-panel-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64e5a9;
  box-shadow: 0 0 0 5px rgba(100,229,169,.11);
}

.contact-panel-top > strong,
.contact-panel-top > span {
  display: block;
}

.contact-panel-top > strong {
  margin-top: 12px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 38px;
  letter-spacing: -.04em;
}

.contact-panel-top > span {
  margin-top: 2px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.contact-panel-address {
  display: grid;
  margin-top: 34px;
  padding: 25px 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-panel-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 16px;
  color: #8ce4db;
  background: rgba(255,255,255,.09);
  font-size: 22px;
}

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

.contact-panel-address div > span {
  color: rgba(255,255,255,.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-panel-address strong {
  margin-top: 5px;
  font-size: 17px;
}

.contact-panel-links {
  display: grid;
  margin-top: 20px;
  gap: 8px;
}

.contact-panel-links a {
  display: flex;
  min-height: 52px;
  padding: 0 17px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.contact-panel-links a:hover {
  background: rgba(255,255,255,.11);
  transform: translateX(3px);
}

.contact-panel-links b {
  color: #84e0d7;
  font-size: 16px;
}

.contact-panel-messengers {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-panel-messengers > span {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-panel-messengers > div {
  display: flex;
  gap: 8px;
}

.contact-panel-messengers a {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  transition: transform .2s ease;
}

.contact-panel-messengers a:hover {
  transform: translateY(-3px);
}

.contact-panel-messengers img {
  width: 23px;
  height: 23px;
}

body.av-contact-page .quick-contact {
  background: #fbfaf7;
}

body.av-contact-page .site-footer-home {
  padding-top: 82px;
  background:
    radial-gradient(circle at 10% 0%, rgba(34,173,161,.12), transparent 25%),
    #052f2e;
}

body.av-contact-page .site-footer-home .footer-grid {
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 68px;
}

body.av-contact-page .site-footer-home .footer-column span {
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

body.av-contact-page .site-footer-home .footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
}

@media (max-width: 1120px) {
  .contact-hero-v2-grid {
    grid-template-columns: 1fr minmax(390px, .78fr);
    gap: 54px;
  }

  .contact-hero-v2-copy h1 {
    font-size: clamp(46px, 5.7vw, 68px);
  }
}

@media (max-width: 860px) {
  body.av-contact-page .site-header-home .header-inner {
    min-height: 74px;
  }

  .contact-hero-v2 {
    min-height: auto;
    padding: 60px 0 76px;
  }

  .contact-hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-hero-v2-copy h1 {
    max-width: 720px;
    font-size: clamp(44px, 9vw, 65px);
  }

  .contact-hero-v2-panel {
    max-width: 620px;
  }

  body.av-contact-page .site-footer-home .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .contact-hero-v2 {
    padding: 43px 0 62px;
  }

  .contact-hero-v2-copy h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .contact-hero-v2-lead {
    font-size: 16px;
  }

  .contact-hero-v2-actions,
  .contact-hero-v2-actions .button {
    width: 100%;
  }

  .contact-hero-v2-meta {
    grid-template-columns: 1fr;
  }

  .contact-hero-v2-meta > div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(17,42,45,.08);
  }

  .contact-hero-v2-panel {
    padding: 27px 22px;
    border-radius: 25px;
  }

  .contact-panel-top > strong {
    font-size: 32px;
  }

  .contact-panel-messengers {
    align-items: flex-start;
    flex-direction: column;
  }

  body.av-contact-page .site-footer-home .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

/* ALFAVET CONTACTS LUXURY V3 — EXACT HOME LOGO + STRONG CTA + DENSER RHYTHM */

body.av-contact-page .brand-home-logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

body.av-contact-page .brand-home-logo img {
  display: block;
  width: 148px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

body.av-contact-page .site-footer-home .brand-home-logo img {
  width: 170px;
  max-height: 70px;
  filter: brightness(0) invert(1);
  opacity: .98;
}

body.av-contact-page .site-header-home .header-inner {
  min-height: 82px;
}

body.av-contact-page .site-header-home .desktop-nav a {
  padding-top: 31px;
  padding-bottom: 28px;
}

body.av-contact-page .site-header-home .button-compact {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow:
    0 14px 34px rgba(13,148,136,.28),
    inset 0 1px 0 rgba(255,255,255,.18);
}

body.av-contact-page .site-header-home .button-compact:hover {
  box-shadow:
    0 19px 42px rgba(13,148,136,.36),
    inset 0 1px 0 rgba(255,255,255,.2);
}

.contact-hero-v2 {
  min-height: 610px;
  padding: 68px 0 76px;
}

.contact-hero-v2-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(410px, .82fr);
  gap: clamp(52px, 6.7vw, 96px);
}

.contact-hero-v2-copy h1 {
  max-width: 780px;
  font-size: clamp(46px, 4.75vw, 72px);
  line-height: .985;
}

.contact-hero-v2-lead {
  margin-top: 23px;
  font-size: 17px;
  line-height: 1.68;
}

.contact-hero-v2-actions {
  margin-top: 28px;
}

.contact-hero-v2-actions .button {
  min-height: 52px;
}

.contact-hero-v2-meta {
  margin-top: 32px;
}

.contact-hero-v2-meta > div {
  padding-top: 17px;
}

.contact-hero-v2-panel {
  padding: 31px;
  border-radius: 29px;
}

.contact-panel-top > strong {
  margin-top: 9px;
  font-size: 35px;
}

.contact-panel-address {
  margin-top: 26px;
  padding: 20px 0;
}

.contact-panel-links {
  margin-top: 16px;
  gap: 7px;
}

.contact-panel-links a {
  min-height: 48px;
}

.contact-panel-messengers {
  margin-top: 21px;
}

body.av-contact-page .section {
  padding-top: 84px;
  padding-bottom: 84px;
}

body.av-contact-page .section-heading {
  margin-bottom: 34px;
}

body.av-contact-page .quick-contact {
  padding-top: 76px;
}

body.av-contact-page .contact-card {
  min-height: 250px;
}

body.av-contact-page .messenger-shell {
  padding-top: 56px;
  padding-bottom: 56px;
}

body.av-contact-page .map-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

body.av-contact-page .final-cta {
  padding-top: 0;
  padding-bottom: 86px;
}

body.av-contact-page .cta-shell {
  padding-top: 52px;
  padding-bottom: 52px;
}

body.av-contact-page .site-footer-home {
  padding-top: 68px;
}

body.av-contact-page .site-footer-home .footer-bottom {
  margin-top: 50px;
}

@media (max-width: 1120px) {
  .contact-hero-v2 {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .contact-hero-v2-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .72fr);
    gap: 44px;
  }

  .contact-hero-v2-copy h1 {
    font-size: clamp(43px, 5.2vw, 62px);
  }
}

@media (max-width: 860px) {
  body.av-contact-page .site-header-home .header-inner {
    min-height: 70px;
  }

  body.av-contact-page .brand-home-logo img {
    width: 133px;
    max-height: 52px;
  }

  .contact-hero-v2 {
    padding: 42px 0 54px;
  }

  .contact-hero-v2-grid {
    gap: 29px;
  }

  .contact-hero-v2-copy h1 {
    font-size: clamp(41px, 8.3vw, 58px);
  }

  .contact-hero-v2-lead {
    margin-top: 19px;
  }

  .contact-hero-v2-actions {
    margin-top: 23px;
  }

  .contact-hero-v2-meta {
    margin-top: 25px;
  }

  .contact-hero-v2-panel {
    max-width: none;
  }

  body.av-contact-page .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  body.av-contact-page .quick-contact {
    padding-top: 60px;
  }

  body.av-contact-page .map-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  body.av-contact-page .final-cta {
    padding-bottom: 68px;
  }
}

@media (max-width: 560px) {
  body.av-contact-page .brand-home-logo img {
    width: 126px;
    max-height: 48px;
  }

  .contact-hero-v2 {
    padding: 31px 0 44px;
  }

  .contact-hero-v2-grid {
    gap: 24px;
  }

  .contact-hero-v2-copy h1 {
    font-size: clamp(36px, 10.7vw, 47px);
    line-height: 1;
  }

  .contact-hero-v2-lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.62;
  }

  .contact-hero-v2-actions {
    gap: 9px;
    margin-top: 20px;
  }

  .contact-hero-v2-actions .button {
    min-height: 49px;
  }

  .contact-hero-v2-meta {
    margin-top: 22px;
  }

  .contact-hero-v2-meta > div {
    padding: 13px 0;
  }

  .contact-hero-v2-panel {
    padding: 23px 19px;
    border-radius: 23px;
  }

  .contact-panel-top > strong {
    font-size: 30px;
  }

  .contact-panel-address {
    margin-top: 21px;
    padding: 17px 0;
  }

  .contact-panel-links a {
    min-height: 46px;
  }

  .contact-panel-messengers {
    margin-top: 18px;
  }

  body.av-contact-page .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  body.av-contact-page .quick-contact {
    padding-top: 49px;
  }

  body.av-contact-page .section-heading {
    margin-bottom: 26px;
  }

  body.av-contact-page .contact-card {
    min-height: 208px;
  }

  body.av-contact-page .messenger-shell {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  body.av-contact-page .map-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  body.av-contact-page .final-cta {
    padding-bottom: 54px;
  }

  body.av-contact-page .cta-shell {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  body.av-contact-page .site-footer-home {
    padding-top: 52px;
  }

  body.av-contact-page .site-footer-home .footer-bottom {
    margin-top: 38px;
  }

  body.av-contact-page .mobile-menu .button-primary {
    min-height: 50px;
    color: #fff !important;
    background: linear-gradient(145deg, #119c91, #076b65);
    box-shadow: 0 12px 28px rgba(13,148,136,.26);
    font-size: 13px;
    font-weight: 850;
  }
}

/* ALFAVET CONTACTS LUXURY V4 — RESTORE HOME BRAND + MOBILE GRID FIX */

body.av-contact-page .site-header-home .brand-mark,
body.av-contact-page .site-footer-home .brand-mark {
  display: grid;
}

body.av-contact-page .site-header-home .brand-copy,
body.av-contact-page .site-footer-home .brand-copy {
  display: block;
}

body.av-contact-page .site-header-home .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 21px;
}

body.av-contact-page .site-header-home .brand strong {
  font-size: 18px;
}

body.av-contact-page .site-footer-home .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 21px;
}

body.av-contact-page .site-footer-home .brand strong {
  color: #fff;
  font-size: 18px;
}

body.av-contact-page .site-footer-home .brand small {
  color: rgba(255,255,255,.55);
}

@media (max-width: 860px) {
  body.av-contact-page .contact-hero-v2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 30px;
  }

  body.av-contact-page .contact-hero-v2-copy,
  body.av-contact-page .contact-hero-v2-panel {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  body.av-contact-page .contact-hero-v2-panel {
    position: relative;
    margin: 0;
  }

  body.av-contact-page .contact-hero-v2-copy h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 560px) {
  body.av-contact-page .site-header-home .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 19px;
  }

  body.av-contact-page .site-header-home .brand strong {
    font-size: 17px;
  }

  body.av-contact-page .site-header-home .brand small {
    margin-top: 3px;
    font-size: 9px;
  }

  body.av-contact-page .contact-hero-v2 {
    padding: 30px 0 42px;
  }

  body.av-contact-page .contact-hero-v2-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }

  body.av-contact-page .contact-hero-v2-copy h1 {
    font-size: clamp(35px, 10.4vw, 46px);
    line-height: 1.01;
    letter-spacing: -.052em;
  }

  body.av-contact-page .contact-hero-v2-panel {
    padding: 22px 18px;
    overflow: hidden;
    border-radius: 22px;
  }

  body.av-contact-page .contact-panel-address {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  body.av-contact-page .contact-panel-address strong {
    overflow-wrap: anywhere;
  }

  body.av-contact-page .contact-panel-links a {
    gap: 12px;
  }

  body.av-contact-page .contact-panel-messengers > div {
    flex-wrap: wrap;
  }

  body.av-contact-page .contact-hero-v2-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.av-contact-page .contact-hero-v2-actions .button {
    width: 100%;
  }
}

/* ALFAVET CONTACTS LUXURY V8 — COMPLETE NAVIGATION AND LEGAL FOOTER */

body.av-contact-page .utility-home .utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

body.av-contact-page .utility-home .utility-links a {
  color: rgba(255,255,255,.82);
}

body.av-contact-page .site-header-home .header-inner {
  min-height: 82px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
}

body.av-contact-page .site-header-home .desktop-nav {
  gap: 20px;
}

body.av-contact-page .site-header-home .desktop-nav a {
  font-size: 12.5px;
}

body.av-contact-page .site-header-home .button-compact {
  min-height: 50px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 850;
}

body.av-contact-page .site-footer-home .footer-grid {
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: 64px;
}

body.av-contact-page .site-footer-home .footer-column span {
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

@media (max-width: 1200px) {
  body.av-contact-page .site-header-home .desktop-nav {
    gap: 15px;
  }

  body.av-contact-page .site-header-home .desktop-nav a {
    font-size: 12px;
  }

  body.av-contact-page .site-header-home .header-phone {
    display: none;
  }
}

@media (max-width: 1040px) {
  body.av-contact-page .site-header-home .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.av-contact-page .site-header-home .desktop-nav,
  body.av-contact-page .site-header-home .header-actions {
    display: none;
  }

  body.av-contact-page .site-header-home .mobile-menu {
    display: block;
  }
}

@media (max-width: 860px) {
  body.av-contact-page .utility-home {
    display: none;
  }

  body.av-contact-page .site-footer-home .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.av-contact-page .site-header-home .mobile-menu nav {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  body.av-contact-page .site-header-home .mobile-menu nav > a:not(.button) {
    display: flex;
    min-height: 43px;
    align-items: center;
  }

  body.av-contact-page .site-header-home .mobile-menu .button-primary {
    min-height: 50px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 850;
  }

  body.av-contact-page .site-footer-home .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ALFAVET CONTACTS LUXURY V9 — DENSER RHYTHM + REAL SOCIAL ICONS */

body.av-contact-page .contact-hero-v2 {
  min-height: auto;
  padding-top: 50px;
  padding-bottom: 56px;
}

body.av-contact-page .contact-hero-v2-grid {
  gap: clamp(46px, 5.6vw, 78px);
}

body.av-contact-page .contact-hero-v2-copy h1 {
  max-width: 750px;
  font-size: clamp(44px, 4.45vw, 68px);
}

body.av-contact-page .contact-hero-v2-lead {
  margin-top: 19px;
}

body.av-contact-page .contact-hero-v2-actions {
  margin-top: 23px;
}

body.av-contact-page .contact-hero-v2-meta {
  margin-top: 25px;
}

body.av-contact-page .contact-hero-v2-meta > div {
  padding-top: 14px;
}

body.av-contact-page .contact-hero-v2-panel {
  padding: 27px;
}

body.av-contact-page .contact-panel-top > strong {
  margin-top: 7px;
  font-size: 33px;
}

body.av-contact-page .contact-panel-address {
  margin-top: 21px;
  padding-top: 17px;
  padding-bottom: 17px;
}

body.av-contact-page .contact-panel-links {
  margin-top: 13px;
}

body.av-contact-page .contact-panel-links a {
  min-height: 44px;
}

body.av-contact-page .contact-panel-messengers {
  margin-top: 16px;
}

body.av-contact-page .contact-panel-messengers a {
  width: 42px;
  height: 42px;
  padding: 7px;
  overflow: hidden;
  background: #fff;
}

body.av-contact-page .contact-panel-messengers img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

body.av-contact-page .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

body.av-contact-page .quick-contact {
  padding-top: 56px;
  padding-bottom: 60px;
}

body.av-contact-page .section-heading {
  margin-bottom: 27px;
}

body.av-contact-page .section-heading h2,
body.av-contact-page .messenger-copy h2,
body.av-contact-page .cta-shell h2 {
  font-size: clamp(32px, 3vw, 46px);
}

body.av-contact-page .contact-card {
  min-height: 210px;
  padding: 22px;
}

body.av-contact-page .contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}

body.av-contact-page .card-note {
  padding-top: 14px;
}

body.av-contact-page .messenger-shell {
  padding: 46px 54px;
  gap: 52px;
}

body.av-contact-page .messenger-grid a {
  min-height: 84px;
  padding: 14px 17px;
}

body.av-contact-page .messenger-grid a > span {
  width: 46px;
  height: 46px;
  padding: 7px;
  overflow: hidden;
  background: #fff;
}

body.av-contact-page .messenger-grid img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

body.av-contact-page .map-section {
  padding-top: 66px;
  padding-bottom: 66px;
}

body.av-contact-page .map-layout {
  gap: 15px;
}

body.av-contact-page .map-frame,
body.av-contact-page .map-frame iframe {
  min-height: 500px;
  height: 500px;
}

body.av-contact-page .route-panel {
  padding: 29px;
}

body.av-contact-page .route-panel h3 {
  margin-top: 18px;
}

body.av-contact-page .route-list {
  margin-top: 23px;
  margin-bottom: 23px;
}

body.av-contact-page .route-list a {
  padding-top: 15px;
  padding-bottom: 15px;
}

body.av-contact-page .final-cta {
  padding-top: 0;
  padding-bottom: 64px;
}

body.av-contact-page .cta-shell {
  padding: 45px 54px;
}

body.av-contact-page .site-footer-home {
  padding-top: 56px;
}

body.av-contact-page .site-footer-home .footer-grid {
  gap: 48px;
}

body.av-contact-page .site-footer-home .footer-bottom {
  margin-top: 40px;
}

@media (max-width: 1120px) {
  body.av-contact-page .contact-hero-v2 {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  body.av-contact-page .contact-hero-v2-grid {
    gap: 38px;
  }

  body.av-contact-page .messenger-shell {
    padding: 42px;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  body.av-contact-page .contact-hero-v2 {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  body.av-contact-page .contact-hero-v2-grid {
    gap: 23px;
  }

  body.av-contact-page .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  body.av-contact-page .quick-contact {
    padding-top: 47px;
    padding-bottom: 50px;
  }

  body.av-contact-page .map-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  body.av-contact-page .final-cta {
    padding-bottom: 54px;
  }

  body.av-contact-page .site-footer-home {
    padding-top: 50px;
  }
}

@media (max-width: 560px) {
  body.av-contact-page .contact-hero-v2 {
    padding-top: 25px;
    padding-bottom: 34px;
  }

  body.av-contact-page .contact-hero-v2-copy h1 {
    font-size: clamp(34px, 10.1vw, 44px);
  }

  body.av-contact-page .contact-hero-v2-lead {
    margin-top: 14px;
  }

  body.av-contact-page .contact-hero-v2-actions {
    margin-top: 17px;
  }

  body.av-contact-page .contact-hero-v2-meta {
    margin-top: 17px;
  }

  body.av-contact-page .contact-hero-v2-panel {
    padding: 20px 17px;
  }

  body.av-contact-page .section {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  body.av-contact-page .quick-contact {
    padding-top: 39px;
    padding-bottom: 42px;
  }

  body.av-contact-page .section-heading {
    margin-bottom: 22px;
  }

  body.av-contact-page .contact-card {
    min-height: 188px;
    padding: 20px;
  }

  body.av-contact-page .messenger-shell {
    padding-top: 31px;
    padding-bottom: 31px;
  }

  body.av-contact-page .map-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  body.av-contact-page .map-frame,
  body.av-contact-page .map-frame iframe {
    min-height: 390px;
    height: 390px;
  }

  body.av-contact-page .route-panel {
    padding: 23px;
  }

  body.av-contact-page .final-cta {
    padding-bottom: 45px;
  }

  body.av-contact-page .cta-shell {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  body.av-contact-page .site-footer-home {
    padding-top: 44px;
  }

  body.av-contact-page .site-footer-home .footer-bottom {
    margin-top: 31px;
  }
}

/* ALFAVET CONTACTS LUXURY V10 — ICON CENTER + MAX CROP */

body.av-contact-page .contact-panel-messengers a,
body.av-contact-page .messenger-grid a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.av-contact-page .contact-panel-messengers img,
body.av-contact-page .messenger-grid img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

body.av-contact-page .contact-panel-messengers img[src="https://alfavet-33.ru/wp-content/uploads/2026/08/sbABcxJBVqHoHhDcri6l_YwZfX5tR_XcjoTK7_iY211c0IHLPA45_MttmSssrblcUvn5fRglsYrx7wqfEySWpYxr.jpg"],
body.av-contact-page .messenger-grid img[src="https://alfavet-33.ru/wp-content/uploads/2026/08/sbABcxJBVqHoHhDcri6l_YwZfX5tR_XcjoTK7_iY211c0IHLPA45_MttmSssrblcUvn5fRglsYrx7wqfEySWpYxr.jpg"] {
  object-fit: cover;
  object-position: center;
  transform: scale(1.16);
  transform-origin: center center;
}

/* ALFAVET CONTACTS LUXURY V11 — ICON NORMALIZE */

body.av-contact-page .contact-panel-messengers a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.av-contact-page .contact-panel-messengers img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

body.av-contact-page .messenger-grid a > span {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.av-contact-page .messenger-grid img {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

body.av-contact-page .contact-panel-messengers img[src="https://alfavet-33.ru/wp-content/uploads/2026/08/sbABcxJBVqHoHhDcri6l_YwZfX5tR_XcjoTK7_iY211c0IHLPA45_MttmSssrblcUvn5fRglsYrx7wqfEySWpYxr.jpg"],
body.av-contact-page .messenger-grid img[src="https://alfavet-33.ru/wp-content/uploads/2026/08/sbABcxJBVqHoHhDcri6l_YwZfX5tR_XcjoTK7_iY211c0IHLPA45_MttmSssrblcUvn5fRglsYrx7wqfEySWpYxr.jpg"] {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

/* ALFAVET CONTACTS LUXURY V12 — WHATSAPP VISUAL SIZE */

body.av-contact-page .contact-panel-messengers a[href*="wa.me"],
body.av-contact-page .messenger-grid a[href*="wa.me"] > span {
  overflow: hidden;
}

body.av-contact-page .contact-panel-messengers a[href*="wa.me"] img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1.18) !important;
  transform-origin: center center !important;
}

body.av-contact-page .messenger-grid a[href*="wa.me"] img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1.18) !important;
  transform-origin: center center !important;
}

/* ALFAVET CONTACTS MOBILE HEADER FIX V1 — START */
/*
 * Только мобильная шапка отдельного шаблона /kontakty/.
 * Не затрагивает контент страницы, нижнюю мобильную панель и другие URL.
 */
@media (max-width: 1040px) {
  body.av-contact-page .site-header-home {
    position: relative !important;
    z-index: 100 !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(8, 91, 82, .10) !important;
    box-shadow: 0 5px 18px rgba(6, 52, 48, .055) !important;
  }

  body.av-contact-page .site-header-home .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 66px !important;
    padding: 7px 14px !important;
    box-sizing: border-box !important;
  }

  body.av-contact-page .site-header-home .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    text-decoration: none !important;
  }

  body.av-contact-page .site-header-home .brand-home-logo {
    display: block !important;
    width: 154px !important;
    max-width: calc(100vw - 92px) !important;
    min-width: 0 !important;
    height: auto !important;
    line-height: 0 !important;
  }

  body.av-contact-page .site-header-home .brand-home-logo img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 52px !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.av-contact-page .site-header-home .mobile-menu {
    position: relative !important;
    display: block !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: end !important;
    box-sizing: border-box !important;
  }

  body.av-contact-page .site-header-home .mobile-menu > summary {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(8, 112, 100, .20) !important;
    border-radius: 12px !important;
    background: #f7fbfa !important;
    color: #073f3a !important;
    box-shadow: none !important;
    cursor: pointer !important;
  }

  body.av-contact-page .site-header-home .mobile-menu > summary::-webkit-details-marker {
    display: none !important;
  }

  body.av-contact-page .site-header-home .mobile-menu > summary::marker {
    content: "" !important;
  }

  body.av-contact-page .site-header-home .mobile-menu > summary > span {
    display: block !important;
    flex: 0 0 2px !important;
    width: 19px !important;
    min-width: 19px !important;
    max-width: 19px !important;
    height: 2px !important;
    min-height: 2px !important;
    max-height: 2px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    opacity: 1 !important;
    transform-origin: center !important;
    transition: transform .18s ease, opacity .18s ease !important;
  }

  body.av-contact-page .site-header-home .mobile-menu[open] > summary > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  body.av-contact-page .site-header-home .mobile-menu[open] > summary > span:nth-child(2) {
    opacity: 0 !important;
  }

  body.av-contact-page .site-header-home .mobile-menu[open] > summary > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }
}

@media (max-width: 380px) {
  body.av-contact-page .site-header-home .header-inner {
    padding-right: 11px !important;
    padding-left: 11px !important;
  }

  body.av-contact-page .site-header-home .brand-home-logo {
    width: 145px !important;
    max-width: calc(100vw - 84px) !important;
  }
}
/* ALFAVET CONTACTS MOBILE HEADER FIX V1 — END */


/* ==========================================================
   ALFAVET CONTACTS CLEAN PRODUCTION
   Approved preview: 2026-08-10
   ========================================================== */

/*
 * ALFAVET CONTACTS CLEAN LUXURY PREVIEW
 *
 * Goal:
 * one clear booking CTA,
 * one secondary call action,
 * one compact clinic-information panel.
 */


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

body.av-contact-page .contact-hero-v2 {
  padding-top: 58px;
  padding-bottom: 64px;
}

body.av-contact-page .contact-hero-v2-grid {
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}


/* Slightly calmer title proportions, aligned with other pages. */

body.av-contact-page .contact-hero-v2-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.35vw, 67px);
  line-height: .96;
  letter-spacing: -.048em;
}


/* Cleaner paragraph. */

body.av-contact-page .contact-hero-v2-lead {
  max-width: 650px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
}


/* ----------------------------------------------------------
   ONLY TWO HERO ACTIONS
   ---------------------------------------------------------- */

body.av-contact-page .contact-hero-v2-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}


/* Main action uses AlfaVet's regular turquoise language. */

body.av-contact-page .av-clean-booking {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #0d9488 0%,
      #0b8177 55%,
      #086c64 100%
    );

  color: #fff !important;
  text-decoration: none;

  font-weight: 800;
  font-size: 14px;

  box-shadow:
    0 12px 28px rgba(13,148,136,.22),
    inset 0 1px 0 rgba(255,255,255,.14);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

body.av-contact-page .av-clean-booking:hover {
  transform: translateY(-2px);

  box-shadow:
    0 17px 34px rgba(13,148,136,.27),
    inset 0 1px 0 rgba(255,255,255,.17);
}

body.av-contact-page .av-clean-booking svg {
  width: 18px;
  height: 18px;
}


/*
 * Existing phone stays secondary.
 */

body.av-contact-page
.contact-hero-v2-actions
a[href^="tel:"] {
  min-height: 54px;
  padding-left: 22px;
  padding-right: 22px;

  background: #fff;
  color: #0b645d;

  border:
    1px solid rgba(11,100,93,.16);

  box-shadow:
    0 5px 15px rgba(20,69,64,.055);
}


/*
 * Route doesn't need to compete in the first CTA row.
 * The route is available in the right card + map section.
 */

body.av-contact-page
.contact-hero-v2-actions
a:not([href^="tel:"]):not(.av-clean-booking) {
  display: none !important;
}


/*
 * Phone numbers below the buttons duplicated both the
 * header and the following contact section.
 */

body.av-contact-page .contact-hero-v2-meta {
  display: none !important;
}


/* ----------------------------------------------------------
   RIGHT INFORMATION PANEL
   ---------------------------------------------------------- */

body.av-contact-page .contact-hero-v2-panel {
  padding: 31px;

  border:
    1px solid rgba(255,255,255,.10);

  border-radius: 25px;

  background:
    radial-gradient(
      circle at 105% 20%,
      rgba(27,172,157,.15),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      #075c55 0%,
      #084f4a 100%
    );

  box-shadow:
    0 28px 64px rgba(5,63,58,.18);

  overflow: hidden;
}


/* Give the hours breathing room. */

body.av-contact-page .contact-panel-top > strong {
  margin-top: 8px;
  font-size: 37px;
  line-height: 1;
}


/* Address as the second main item. */

body.av-contact-page .contact-panel-address {
  margin-top: 25px;
  padding-top: 21px;
  padding-bottom: 21px;
}


/*
 * Booking already exists prominently on the left.
 * No second booking button inside this card.
 */

body.av-contact-page
.contact-panel-links
a[href*="/online-zapis/"] {
  display: none !important;
}


/*
 * Keep only the useful map action.
 */

body.av-contact-page .contact-panel-links {
  margin-top: 17px;
}

body.av-contact-page .contact-panel-links a {
  min-height: 47px;

  border:
    1px solid rgba(255,255,255,.10);

  background:
    rgba(255,255,255,.055);

  box-shadow: none;
}


/*
 * Messengers already have their own proper section below.
 */

body.av-contact-page .contact-panel-messengers {
  display: none !important;
}


/* ----------------------------------------------------------
   REMOVE THE DUPLICATED "CHOOSE A METHOD" SECTION
   ---------------------------------------------------------- */

/*
 * This entire block repeats:
 * phone,
 * mobile,
 * booking,
 * address.
 *
 * All four pieces already exist elsewhere in a clearer
 * hierarchy, so it is intentionally removed.
 */

body.av-contact-page .quick-contact {
  display: none !important;
}


/* ----------------------------------------------------------
   MESSENGERS NOW BECOME THE NATURAL SECOND SECTION
   ---------------------------------------------------------- */

body.av-contact-page .messenger-section,
body.av-contact-page .messenger-wrap {
  padding-top: 72px;
}

body.av-contact-page .messenger-shell {
  border-radius: 27px;
}


/* ----------------------------------------------------------
   SMALL POLISH
   ---------------------------------------------------------- */

body.av-contact-page .map-section {
  padding-top: 70px;
}

body.av-contact-page .final-cta {
  padding-top: 0;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 860px) {

  body.av-contact-page .contact-hero-v2 {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  body.av-contact-page .contact-hero-v2-grid {
    gap: 27px;
  }

  body.av-contact-page .contact-hero-v2-copy h1 {
    font-size: clamp(40px, 8vw, 56px);
  }

  body.av-contact-page .contact-hero-v2-panel {
    padding: 25px;
  }

  body.av-contact-page .messenger-section,
  body.av-contact-page .messenger-wrap {
    padding-top: 54px;
  }
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 560px) {

  body.av-contact-page .contact-hero-v2 {
    padding-top: 26px;
    padding-bottom: 38px;
  }

  body.av-contact-page .contact-hero-v2-copy h1 {
    font-size: clamp(35px, 10vw, 43px);
    line-height: .99;
  }

  body.av-contact-page .contact-hero-v2-lead {
    margin-top: 16px;
    font-size: 15px;
  }

  body.av-contact-page .contact-hero-v2-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }

  body.av-contact-page .av-clean-booking,
  body.av-contact-page
  .contact-hero-v2-actions
  a[href^="tel:"] {
    width: 100%;
    min-height: 54px;
  }

  body.av-contact-page .contact-hero-v2-panel {
    padding: 21px 18px;
    border-radius: 21px;
  }

  body.av-contact-page .contact-panel-top > strong {
    font-size: 32px;
  }

  body.av-contact-page .contact-panel-address {
    margin-top: 20px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  body.av-contact-page .messenger-section,
  body.av-contact-page .messenger-wrap {
    padding-top: 43px;
  }

  body.av-contact-page .map-section {
    padding-top: 48px;
  }
}


/* ==========================================================
   ALFAVET CONTACTS CLEAN V2
   Balance + visible phone CTA + tighter rhythm
   ========================================================== */


/* ----------------------------------------------------------
   HERO BALANCE
   ---------------------------------------------------------- */

body.av-contact-page .contact-hero-v2-grid {
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, .85fr);

  gap: clamp(62px, 7vw, 108px);
}


/*
 * The information card was visually too small compared
 * with the large headline.
 */

body.av-contact-page .contact-hero-v2-panel {
  width: min(100%, 430px);
  justify-self: end;

  padding: 34px;

  border-radius: 28px;

  box-shadow:
    0 30px 72px rgba(5,63,58,.19),
    0 8px 20px rgba(5,63,58,.08),
    inset 0 1px 0 rgba(255,255,255,.07);
}


body.av-contact-page .contact-panel-top > strong {
  font-size: 39px;
  letter-spacing: -.035em;
}


body.av-contact-page .contact-panel-address {
  margin-top: 27px;
  padding-top: 22px;
  padding-bottom: 22px;
}


body.av-contact-page .contact-panel-links {
  margin-top: 18px;
}


body.av-contact-page .contact-panel-links a {
  min-height: 49px;
}


/* ----------------------------------------------------------
   HERO BUTTONS
   ---------------------------------------------------------- */

body.av-contact-page .contact-hero-v2-actions {
  width: min(100%, 475px);

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;
}


/* Main online booking */

body.av-contact-page .av-clean-booking {
  width: 100%;
  min-height: 55px;
  padding-left: 18px;
  padding-right: 18px;

  border-radius: 14px;

  font-size: 13px;
}


/*
 * FIX:
 * original button styles contained a stronger white text rule.
 * Force the phone action back into the secondary light style.
 */

body.av-contact-page
.contact-hero-v2-actions
a[href^="tel:"] {
  width: 100%;
  min-height: 55px;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding-left: 18px;
  padding-right: 18px;

  border-radius: 14px !important;

  background: rgba(255,255,255,.88) !important;

  border:
    1px solid rgba(10,101,93,.18) !important;

  color: #0b645d !important;

  box-shadow:
    0 5px 16px rgba(17,73,67,.06) !important;

  font-size: 13px;
  font-weight: 800;

  opacity: 1 !important;
}


body.av-contact-page
.contact-hero-v2-actions
a[href^="tel:"] * {
  color: #0b645d !important;
  opacity: 1 !important;
}


body.av-contact-page
.contact-hero-v2-actions
a[href^="tel:"] svg {
  color: #0b645d !important;
  stroke: #0b645d !important;
  opacity: 1 !important;
}


body.av-contact-page
.contact-hero-v2-actions
a[href^="tel:"]:hover {
  color: #084c47 !important;

  background: #fff !important;

  border-color:
    rgba(10,101,93,.32) !important;

  transform: translateY(-2px);
}


/* ----------------------------------------------------------
   HERO RHYTHM
   ---------------------------------------------------------- */

body.av-contact-page .contact-hero-v2 {
  padding-top: 55px;
  padding-bottom: 56px;
}


body.av-contact-page .contact-hero-v2-lead {
  max-width: 620px;
  margin-top: 20px;
}


body.av-contact-page .contact-hero-v2-actions {
  margin-top: 24px;
}


/* ----------------------------------------------------------
   MESSENGERS — CLOSER TO HERO
   ---------------------------------------------------------- */

body.av-contact-page .messenger-section,
body.av-contact-page .messenger-wrap {
  padding-top: 52px;
}


body.av-contact-page .messenger-shell {
  border-radius: 28px;

  box-shadow:
    0 23px 58px rgba(6,69,63,.12);
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1000px) {

  body.av-contact-page .contact-hero-v2-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, .72fr);

    gap: 42px;
  }

  body.av-contact-page .contact-hero-v2-panel {
    width: 100%;
    padding: 28px;
  }
}


@media (max-width: 860px) {

  body.av-contact-page .contact-hero-v2-grid {
    grid-template-columns: 1fr;
  }

  body.av-contact-page .contact-hero-v2-panel {
    max-width: none;
    justify-self: stretch;
  }

  body.av-contact-page .contact-hero-v2-actions {
    width: min(100%, 520px);
  }
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 560px) {

  body.av-contact-page .contact-hero-v2 {
    padding-bottom: 35px;
  }

  body.av-contact-page .contact-hero-v2-actions {
    width: 100%;

    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.av-contact-page .av-clean-booking,
  body.av-contact-page
  .contact-hero-v2-actions
  a[href^="tel:"] {
    min-height: 55px;
  }

  body.av-contact-page .contact-hero-v2-panel {
    padding: 21px 18px;
    border-radius: 21px;
  }

  body.av-contact-page .contact-panel-top > strong {
    font-size: 33px;
  }

  body.av-contact-page .messenger-section,
  body.av-contact-page .messenger-wrap {
    padding-top: 38px;
  }
}
