/* Akademi Vize Destek — main theme styles */

:root {
  --av-ink: #131722;
  --av-ink-soft: #2a3140;
  --av-muted: #5a6478;
  --av-gold: #b88a3c;
  --av-gold-dark: #9a7130;
  --av-gold-soft: #f7f1e6;
  --av-gold-mid: #e8d3ae;
  --av-white: #ffffff;
  --av-wa: #25d366;
  --av-wa-dark: #1ebe57;
  --av-footer: #0f141d;
  --av-radius: 16px;
  --av-font: "Manrope", system-ui, sans-serif;
  --av-display: "Fraunces", Georgia, serif;
  --av-container: 1200px;
  --av-header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--av-header-h);
}

body {
  margin: 0;
  font-family: var(--av-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--av-ink);
  background: var(--av-white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.av-page {
  min-height: 100vh;
  overflow-x: clip;
  background: var(--av-white);
}

.av-main {
  display: block;
}

.av-container {
  width: min(var(--av-container), 100%);
  margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

.av-prose {
  padding-top: 64px;
  padding-bottom: 80px;
  max-width: 720px;
}

.av-prose h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

/* Buttons */
.av-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--av-font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

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

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

.av-btn--gold {
  background: var(--av-gold);
  color: var(--av-ink);
  box-shadow: 0 8px 24px rgba(184, 138, 60, 0.35);
}

.av-btn--gold:hover {
  background: var(--av-gold-dark);
  color: #fff;
}

.av-btn--ink {
  background: var(--av-ink);
  color: #fff;
}

.av-btn--ink:hover {
  box-shadow: 0 10px 24px rgba(19, 23, 34, 0.22);
}

.av-btn--wa {
  background: var(--av-wa);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.av-btn--wa:hover {
  background: var(--av-wa-dark);
}

.av-btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.av-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(184, 138, 60, 0.12);
  color: var(--av-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.av-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 138, 60, 0.28);
  color: var(--av-gold);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(19, 23, 34, 0.06);
}

/* ---------- Header ---------- */
.av-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(19, 23, 34, 0.08);
}

.av-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--av-header-h);
  padding-top: 12px;
  padding-bottom: 12px;
}

.av-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.av-brand img {
  height: 40px;
  width: auto;
}

.av-brand span {
  font-family: var(--av-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--av-gold);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.av-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.av-nav__list a {
  position: relative;
  color: var(--av-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
}

.av-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--av-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.av-nav__list a:hover::after {
  transform: scaleX(1);
}

.av-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.av-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(19, 23, 34, 0.12);
  background: #fff;
  place-content: center;
  cursor: pointer;
  padding: 0;
}

.av-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--av-ink);
  transition: 0.2s ease;
}

.av-burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.av-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.av-burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.av-header .av-btn--wa {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

/* ---------- Hero ---------- */
.av-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #dce8f2;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center right;
}

.av-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 42%,
    rgba(255, 255, 255, 0.18) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.av-hero__inner {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(72px, 10vh, 120px) 0 clamp(56px, 8vh, 96px);
  animation: av-fade-up 0.7s ease both;
}

.av-hero__brand {
  margin: 0 0 14px;
  font-family: var(--av-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--av-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.av-hero .av-badge {
  margin-bottom: 20px;
}

.av-hero__title {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--av-ink);
  overflow-wrap: anywhere;
}

.av-hero__title span {
  color: var(--av-gold);
}

.av-hero__text {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  font-weight: 500;
  color: var(--av-ink-soft);
}

.av-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.av-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(540px 260px at 22% 18%, rgba(184, 138, 60, 0.16), transparent 68%);
}

.av-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
}

.av-hero__trust li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 138, 60, 0.28);
  color: var(--av-ink-soft);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.av-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.av-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.av-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes av-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Why ---------- */
.av-why {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(232, 211, 174, 0.92) 0%, rgba(247, 241, 230, 0.96) 42%, #ffffff 100%),
    url("../images/texture-grain.png") center / 420px repeat;
}

.av-why__title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.av-why__lead {
  margin: 0 auto 48px;
  max-width: 36em;
  color: var(--av-muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  font-weight: 500;
}

.av-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.av-card {
  background: #fff;
  border: 1px solid rgba(19, 23, 34, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(19, 23, 34, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 100%;
}

.av-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(19, 23, 34, 0.1);
}

.av-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(184, 138, 60, 0.12);
  color: var(--av-gold);
  margin-bottom: 18px;
}

.av-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.av-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.av-card p {
  margin: 0;
  color: var(--av-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Countries ---------- */
.av-countries {
  padding: clamp(72px, 9vw, 112px) 0;
  text-align: center;
  background: #fff;
}

.av-countries__title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.av-countries__lead {
  margin: 0 auto 40px;
  max-width: 34em;
  color: var(--av-muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  font-weight: 500;
}

.av-countries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.av-country--photo {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(19, 23, 34, 0.08);
  box-shadow: 0 16px 40px rgba(19, 23, 34, 0.1);
  text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.av-country--photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(19, 23, 34, 0.16);
}

.av-country__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.5s ease;
}

.av-country--photo:hover .av-country__bg {
  transform: scale(1.1);
}

.av-country__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 23, 34, 0.15) 0%, rgba(19, 23, 34, 0.78) 100%);
}

.av-country__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  color: #fff;
}

.av-country__flag {
  width: 56px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.av-country__name {
  font-family: var(--av-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.av-country__blurb {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

/* legacy simple country tile fallback */
.av-country:not(.av-country--photo) {
  background: #fff;
  border: 1px solid rgba(19, 23, 34, 0.08);
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 10px 28px rgba(19, 23, 34, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ---------- CTA ---------- */
.av-cta {
  padding: clamp(72px, 9vw, 112px) 0;
  text-align: center;
  color: var(--av-ink);
  background:
    radial-gradient(900px 420px at 70% -10%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(160deg, #f0dfa8 0%, #d4b36a 48%, #b88a3c 100%);
}

.av-cta__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.av-cta__lead {
  margin: 0 auto 32px;
  max-width: 34em;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  font-weight: 500;
  opacity: 0.92;
}

.av-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.av-cta__meta {
  display: grid;
  gap: 8px;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: rgba(19, 23, 34, 0.85);
}

.av-cta__meta-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.av-cta__meta-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.85;
}

/* ---------- Shared section intro ---------- */
.av-section-intro {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.av-section-intro--light .av-label--light {
  background: rgba(255, 255, 255, 0.14);
  color: #f3dfb6;
}

.av-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.av-section-title--left {
  text-align: left;
}

.av-section-title--light {
  color: #fff;
}

.av-section-lead {
  margin: 0 auto;
  max-width: 36em;
  color: var(--av-muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  font-weight: 500;
}

.av-section-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Page hero ---------- */
.av-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 9vw, 100px) 0 clamp(56px, 7vw, 84px);
  background:
    linear-gradient(135deg, rgba(19, 23, 34, 0.88) 0%, rgba(19, 23, 34, 0.72) 55%, rgba(184, 138, 60, 0.55) 100%),
    url("../images/hero.png") center / cover no-repeat;
  color: #fff;
}

.av-page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 220px at 80% 20%, rgba(184, 138, 60, 0.35), transparent 70%),
    url("../images/texture-grain.png") center / 360px repeat;
  opacity: 0.45;
  mix-blend-mode: soft-light;
}

.av-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.av-page-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3dfb6;
}

.av-page-hero__title {
  margin: 0 0 14px;
  font-family: var(--av-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.av-page-hero__lead {
  margin: 0;
  max-width: 38em;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* ---------- Services ---------- */
.av-services {
  padding: clamp(72px, 9vw, 112px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 241, 230, 0.95) 48%, #ffffff 100%),
    url("../images/texture-grain.png") center / 420px repeat;
}

.av-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.av-service {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(19, 23, 34, 0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(19, 23, 34, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.av-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(19, 23, 34, 0.1);
}

.av-service__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8d3ae;
}

.av-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.av-service:hover .av-service__media img {
  transform: scale(1.06);
}

.av-service__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--av-gold);
  box-shadow: 0 8px 20px rgba(19, 23, 34, 0.18);
}

.av-service__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 22px 24px;
  flex: 1;
}

.av-service__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.av-service__text {
  margin: 0;
  color: var(--av-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.av-service__list {
  margin: 4px 0 8px;
  padding: 0;
  width: 100%;
}

.av-service__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--av-ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  border-top: 1px solid rgba(19, 23, 34, 0.06);
}

.av-service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--av-gold);
}

.av-service .av-btn {
  margin-top: auto;
}

/* ---------- About ---------- */
.av-about {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #fff;
}

.av-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.av-about__figure {
  margin: 0 0 16px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(19, 23, 34, 0.12);
}

.av-about__figure img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

.av-about__copy .av-label {
  margin-bottom: 16px;
}

.av-about__text {
  margin: 0 0 16px;
  color: var(--av-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
}

.av-about__text:last-child {
  margin-bottom: 0;
}

.av-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.av-about__stat {
  background: linear-gradient(160deg, #f7f1e6 0%, #fff 70%);
  border: 1px solid rgba(184, 138, 60, 0.22);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}

.av-about__stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--av-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1;
  color: var(--av-gold);
  font-weight: 700;
}

.av-about__stat span {
  color: var(--av-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

/* ---------- Process timeline ---------- */
.av-process {
  padding: clamp(72px, 9vw, 112px) 0;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(184, 138, 60, 0.35), transparent 60%),
    linear-gradient(165deg, #1a2030 0%, #131722 55%, #0f141d 100%);
  color: #fff;
}

.av-process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.av-process__track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 60, 0.75), transparent);
  pointer-events: none;
}

.av-process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.av-process__marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #d4b36a, #b88a3c);
  box-shadow: 0 0 0 6px rgba(184, 138, 60, 0.18);
}

.av-process__num {
  font-family: var(--av-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #131722;
  letter-spacing: 0.04em;
}

.av-process__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
  min-height: 100%;
  width: 100%;
}

.av-process__card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.av-process__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ---------- Testimonials (button-styled boxes) ---------- */
.av-quotes {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #fff;
}

.av-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.av-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 28px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--av-font);
  cursor: default;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.av-quote--gold {
  background: var(--av-gold);
  color: var(--av-ink);
  box-shadow: 0 8px 24px rgba(184, 138, 60, 0.35);
}

.av-quote--gold:hover {
  background: var(--av-gold-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(154, 113, 48, 0.4);
}

.av-quote--ink {
  background: var(--av-ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(19, 23, 34, 0.22);
}

.av-quote--ink:hover {
  box-shadow: 0 12px 28px rgba(19, 23, 34, 0.3);
}

.av-quote blockquote {
  margin: 0;
}

.av-quote blockquote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

.av-quote figcaption {
  margin-top: auto;
  display: grid;
  gap: 2px;
  text-align: center;
}

.av-quote figcaption strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.av-quote figcaption span {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.78;
}

@media (max-width: 980px) {
  .av-quote {
    border-radius: 28px;
  }
}

/* ---------- Contact ---------- */
.av-contact {
  padding: clamp(72px, 9vw, 112px) 0;
  background: linear-gradient(180deg, #f7f1e6 0%, #ffffff 40%);
}

.av-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.av-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(19, 23, 34, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(19, 23, 34, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}

a.av-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 60, 0.4);
  box-shadow: 0 16px 36px rgba(184, 138, 60, 0.14);
}

.av-contact-card--wa {
  background: linear-gradient(160deg, #25d366 0%, #1ebe57 100%);
  border-color: transparent;
  color: #fff;
}

.av-contact-card--wa .av-contact-card__label {
  color: rgba(255, 255, 255, 0.85);
}

.av-contact-card__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--av-gold);
}

.av-contact-card strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.av-contact-card__sub {
  color: var(--av-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.av-contact__map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(19, 23, 34, 0.08);
  background: #fff;
}

.av-contact__map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.av-contact__map--fallback {
  display: flex;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(160deg, #f7f1e6, #fff);
}

/* ---------- Contact form ---------- */
.av-form {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 112px);
  background: #fff;
}

.av-form__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.av-form__intro .av-section-lead {
  max-width: 32em;
}

.av-form__panel {
  background: linear-gradient(160deg, #f7f1e6 0%, #fff 55%);
  border: 1px solid rgba(184, 138, 60, 0.22);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 16px 40px rgba(19, 23, 34, 0.06);
}

.av-form__flash {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.av-form__flash--success {
  background: rgba(37, 211, 102, 0.12);
  color: #0f7a3a;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.av-form__flash--error,
.av-form__flash--invalid {
  background: rgba(180, 40, 40, 0.08);
  color: #8a1f1f;
  border: 1px solid rgba(180, 40, 40, 0.25);
}

.av-form__fields {
  display: grid;
  gap: 16px;
}

.av-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.av-form__field {
  display: grid;
  gap: 8px;
}

.av-form__field > span {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--av-ink);
}

.av-form__field abbr {
  color: var(--av-gold);
  text-decoration: none;
}

.av-form__field input,
.av-form__field textarea {
  width: 100%;
  border: 1px solid rgba(19, 23, 34, 0.12);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font-family: var(--av-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--av-ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.av-form__field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.av-form__field input::placeholder,
.av-form__field textarea::placeholder {
  color: #9aa3b2;
  font-weight: 500;
}

.av-form__field input:focus,
.av-form__field textarea:focus {
  outline: none;
  border-color: rgba(184, 138, 60, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 138, 60, 0.15);
}

.av-form__fields .av-btn {
  justify-self: start;
  margin-top: 4px;
  min-width: 160px;
}

@media (max-width: 860px) {
  .av-form__layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.av-footer {
  background: var(--av-footer);
  color: #e8ecf2;
  padding: clamp(56px, 7vw, 80px) 0 28px;
}

.av-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 48px);
}

.av-footer h2 {
  margin: 0 0 14px;
  font-family: var(--av-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.av-footer h3 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.av-footer__lead {
  margin: 0;
  max-width: 34ch;
  color: #a7afbb;
  font-size: 0.95rem;
  line-height: 1.7;
}

.av-footer li + li {
  margin-top: 12px;
}

.av-footer a {
  color: #a7afbb;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.18s ease;
}

.av-footer a:hover {
  color: #d4a85a;
}

.av-footer__ico {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 16px;
  fill: currentColor;
  opacity: 0.9;
}

.av-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 36px 0 20px;
}

.av-footer__copy {
  text-align: center;
  color: #a7afbb;
  font-size: 0.85rem;
}

/* ---------- Floating WA ---------- */
.av-float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: var(--av-wa);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.18s ease;
}

.av-float-wa:hover {
  transform: translateY(-2px);
}

.av-float-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

  .av-hero__inner {
    animation: none;
  }
}

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

  .av-process__track,
  .av-quotes__grid,
  .av-contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-process__track::before {
    display: none;
  }

  .av-about__grid {
    grid-template-columns: 1fr;
  }

  .av-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .av-brand span {
    display: none;
  }

  .av-brand img {
    height: 34px;
  }

  .av-burger {
    display: grid;
  }

  .av-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(19, 23, 34, 0.08);
    box-shadow: 0 8px 28px rgba(19, 23, 34, 0.08);
    padding: 8px 20px 16px;
    z-index: 30;
  }

  .av-nav.is-open {
    display: block;
  }

  .av-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .av-nav__list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 23, 34, 0.06);
    font-size: 16px;
  }

  .av-nav__list a::after {
    display: none;
  }

  .av-header {
    position: sticky;
  }

  .av-header .av-container {
    position: relative;
  }

  .av-hero {
    min-height: 72vh;
    background-image: url("../images/hero-mobile.png");
    background-position: 70% center;
    align-items: flex-start;
  }

  .av-hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.78) 48%,
      rgba(255, 255, 255, 0.42) 100%
    );
  }

  .av-hero__inner {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .av-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .av-hero__cta .av-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .av-header .av-btn--wa .av-wa-text {
    display: none;
  }

  .av-header .av-btn--wa {
    width: 44px;
    padding: 0;
  }

  .av-why__grid,
  .av-footer__grid,
  .av-services__grid,
  .av-process__track,
  .av-quotes__grid,
  .av-contact__grid,
  .av-countries__grid {
    grid-template-columns: 1fr;
  }

  .av-about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .av-country--photo {
    min-height: 260px;
  }

  .av-page-hero {
    background-image:
      linear-gradient(135deg, rgba(19, 23, 34, 0.9) 0%, rgba(19, 23, 34, 0.75) 55%, rgba(184, 138, 60, 0.55) 100%),
      url("../images/hero-mobile.png");
  }

  .av-card {
    text-align: center;
  }

  .av-card__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .av-cta__actions .av-btn {
    width: 100%;
  }

  .av-float-wa span {
    display: none;
  }

  .av-float-wa {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ==========================================================
   Premium visual system — v1.4
   ========================================================== */
:root {
  --av-ink: #10151f;
  --av-ink-soft: #303846;
  --av-muted: #677181;
  --av-gold: #b58a45;
  --av-gold-dark: #8f682d;
  --av-gold-soft: #f6f0e6;
  --av-cream: #faf8f4;
  --av-line: rgba(16, 21, 31, 0.1);
  --av-radius: 12px;
  --av-shadow-sm: 0 12px 30px rgba(16, 21, 31, 0.07);
  --av-shadow-lg: 0 28px 70px rgba(16, 21, 31, 0.13);
}

body {
  color: var(--av-ink);
  background: var(--av-cream);
}

.av-container {
  width: min(1180px, 100%);
}

.av-label {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--av-gold-dark);
  letter-spacing: 0.14em;
}

.av-section-title,
.av-why__title,
.av-countries__title,
.av-cta__title {
  font-family: var(--av-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.av-section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.av-section-lead--left {
  margin-left: 0;
  text-align: left;
}

.av-btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.av-btn--gold {
  color: #fff;
  box-shadow: none;
}

.av-btn--gold:hover {
  box-shadow: 0 10px 24px rgba(181, 138, 69, 0.25);
}

/* Header */
.av-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(16, 21, 31, 0.07);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.av-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(16, 21, 31, 0.08);
}

.av-header__inner {
  min-height: 78px;
}

.av-brand img {
  height: 44px;
}

.av-brand span {
  color: var(--av-ink);
}

.av-nav__list {
  gap: clamp(20px, 2.6vw, 34px);
}

.av-nav__list a {
  color: var(--av-muted);
  font-size: 14px;
}

.av-nav__list a:hover,
.av-nav__list a.is-current {
  color: var(--av-ink);
}

.av-nav__list a.is-current::after {
  transform: scaleX(1);
}

.av-header .av-btn--wa {
  border-radius: 8px;
  box-shadow: none;
}

/* Hero */
.av-hero {
  min-height: min(82vh, 790px);
  background-position: center right;
}

.av-hero::before {
  background: linear-gradient(
    90deg,
    rgba(250, 248, 244, 0.99) 0%,
    rgba(250, 248, 244, 0.94) 43%,
    rgba(250, 248, 244, 0.35) 66%,
    rgba(250, 248, 244, 0.02) 100%
  );
}

.av-hero__veil {
  background:
    linear-gradient(180deg, transparent 65%, rgba(16, 21, 31, 0.08)),
    radial-gradient(500px 240px at 17% 22%, rgba(181, 138, 69, 0.1), transparent 70%);
}

.av-hero__inner {
  width: min(650px, 100%);
  padding: clamp(88px, 12vh, 132px) 0 160px;
}

.av-hero__brand {
  margin-bottom: 20px;
  color: var(--av-ink);
  font-size: 0.8rem;
  font-family: var(--av-font);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.av-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--av-gold-dark);
  font-size: 13px;
  font-weight: 800;
}

.av-hero__kicker span {
  width: 28px;
  height: 1px;
  background: var(--av-gold);
}

.av-hero__title {
  margin-bottom: 22px;
  max-width: 11ch;
  font-family: var(--av-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
}

.av-hero__title span {
  color: var(--av-gold-dark);
  font-style: italic;
}

.av-hero__text {
  max-width: 31em;
  color: var(--av-muted);
  line-height: 1.75;
}

.av-hero__cta {
  align-items: center;
  gap: 22px;
}

.av-hero__text-link,
.av-service__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--av-ink);
  font-size: 14px;
  font-weight: 800;
}

.av-hero__text-link span,
.av-service__link span {
  color: var(--av-gold);
  transition: transform 0.18s ease;
}

.av-hero__text-link:hover span,
.av-service__link:hover span {
  transform: translateX(4px);
}

.av-hero__trust-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(16, 21, 31, 0.92);
  backdrop-filter: blur(12px);
}

.av-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}

.av-hero__trust li {
  display: grid;
  gap: 2px;
  padding: 20px 26px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: none;
  color: #fff;
  backdrop-filter: none;
}

.av-hero__trust li:first-child {
  padding-left: 0;
}

.av-hero__trust li:last-child {
  border-right: 0;
}

.av-hero__trust strong {
  font-family: var(--av-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.av-hero__trust span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Testimonials */
.av-quotes {
  padding: clamp(84px, 10vw, 132px) 0;
  background: var(--av-cream);
}

.av-section-intro--split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px 50px;
  align-items: end;
  text-align: left;
}

.av-section-intro--split .av-label {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.av-section-intro--split .av-section-title,
.av-section-intro--split .av-section-lead {
  margin: 0;
  text-align: left;
}

.av-quotes__grid {
  gap: 0;
  border-top: 1px solid var(--av-line);
}

.av-quote {
  min-height: 330px;
  padding: 34px 30px;
  border: 0;
  border-right: 1px solid var(--av-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--av-ink);
}

.av-quote:last-child {
  border-right: 0;
}

.av-quote:hover {
  background: #fff;
  color: var(--av-ink);
  box-shadow: var(--av-shadow-sm);
}

.av-quote__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.av-quote__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--av-gold-soft);
}

.av-quote__stars {
  color: var(--av-gold);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.av-quote blockquote p {
  color: inherit;
  font-family: var(--av-display);
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 600;
  text-align: left;
}

.av-quote figcaption {
  padding-top: 18px;
  border-top: 1px solid var(--av-line);
  text-align: left;
}

/* Why us */
.av-why {
  background: #fff;
}

.av-why__grid {
  gap: 0;
  border-top: 1px solid var(--av-line);
  border-bottom: 1px solid var(--av-line);
}

.av-card {
  padding: 34px 28px;
  border: 0;
  border-right: 1px solid var(--av-line);
  border-radius: 0;
  box-shadow: none;
}

.av-card:last-child {
  border-right: 0;
}

.av-card:hover {
  transform: none;
  background: var(--av-cream);
  box-shadow: none;
}

.av-card__icon {
  border-radius: 50%;
  background: var(--av-gold-soft);
}

/* Services */
.av-services {
  background: var(--av-cream);
}

.av-services__grid {
  gap: 30px;
}

.av-service {
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--av-shadow-sm);
}

.av-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--av-shadow-lg);
}

.av-service__media {
  aspect-ratio: 16 / 8.5;
}

.av-service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 21, 31, 0.48));
}

.av-service__number {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  color: #fff;
  font-family: var(--av-display);
  font-size: 1rem;
  font-weight: 600;
}

.av-service__icon {
  z-index: 2;
  border-radius: 50%;
}

.av-service__body {
  padding: 28px 28px 30px;
}

.av-service__title {
  font-family: var(--av-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.av-service__list li::before {
  width: 5px;
  height: 5px;
}

.av-service__link {
  margin-top: auto;
  padding-top: 8px;
  border-bottom: 1px solid rgba(181, 138, 69, 0.35);
}

/* Country panels */
.av-countries {
  background: #fff;
}

.av-country--photo {
  min-height: 390px;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}

.av-country__content {
  padding: 34px;
}

.av-country__name {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Page hero */
.av-page-hero {
  padding: clamp(82px, 10vw, 128px) 0;
}

.av-page-hero__title {
  max-width: 15ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

/* Contact information and form form one composition */
.av-contact {
  padding: clamp(84px, 10vw, 128px) 0 48px;
  background: var(--av-cream);
}

.av-contact__shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--av-shadow-lg);
}

.av-contact__details {
  padding: clamp(36px, 5vw, 64px);
}

.av-contact__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  margin: 34px 0 30px;
  border-top: 1px solid var(--av-line);
}

.av-contact__item {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid var(--av-line);
}

.av-contact__item--wide {
  grid-column: 1 / -1;
}

.av-contact__item > span {
  color: var(--av-gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.av-contact__item a,
.av-contact__item strong {
  color: var(--av-ink);
  font-size: 0.93rem;
  line-height: 1.5;
  font-weight: 700;
}

.av-contact__map {
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.av-contact__map iframe {
  min-height: 100%;
  height: 100%;
}

.av-form {
  padding: 48px 0 clamp(84px, 10vw, 128px);
  background: var(--av-cream);
}

.av-form__layout {
  padding: clamp(38px, 6vw, 72px);
  border-radius: 14px;
  background: var(--av-ink);
  color: #fff;
  box-shadow: var(--av-shadow-lg);
}

.av-form__intro .av-section-title {
  color: #fff;
}

.av-form__intro .av-section-lead {
  color: rgba(255, 255, 255, 0.63);
}

.av-form__promises {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.av-form__promises li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.av-form__promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--av-gold);
}

.av-form__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.av-form__field > span {
  color: rgba(255, 255, 255, 0.76);
}

.av-form__field input,
.av-form__field textarea {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.av-form__field input:focus,
.av-form__field textarea:focus {
  border-color: var(--av-gold);
  background: rgba(255, 255, 255, 0.1);
}

/* CTA */
.av-cta {
  position: relative;
  background:
    radial-gradient(800px 360px at 80% 10%, rgba(181, 138, 69, 0.2), transparent 70%),
    var(--av-ink);
  color: #fff;
}

.av-cta__title {
  color: #fff;
}

.av-cta__lead,
.av-cta__meta {
  color: rgba(255, 255, 255, 0.66);
}

.av-cta .av-btn--ink {
  background: #fff;
  color: var(--av-ink);
}

/* Footer */
.av-footer {
  padding-top: 0;
  background: #090d14;
}

.av-footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.av-footer__cta > div > span {
  color: var(--av-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.av-footer__cta h2 {
  margin: 7px 0 0;
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.av-footer__grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
  padding-top: 58px;
}

.av-footer__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.av-footer__brand-lockup img {
  width: 44px;
  height: 44px;
}

.av-footer__brand-lockup strong {
  color: #fff;
  font-family: var(--av-display);
  font-size: 1.3rem;
}

.av-footer__address {
  display: inline-flex;
  gap: 10px;
  color: #a7afbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive premium system */
@media (max-width: 980px) {
  .av-hero__trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-hero__trust li:nth-child(2) {
    border-right: 0;
  }

  .av-hero__trust li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .av-hero__trust li:first-child,
  .av-hero__trust li:nth-child(3) {
    padding-left: 0;
  }

  .av-quotes__grid {
    grid-template-columns: 1fr;
  }

  .av-quote {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--av-line);
  }

  .av-contact__shell,
  .av-form__layout {
    grid-template-columns: 1fr;
  }

  .av-contact__map {
    min-height: 420px;
  }

  .av-footer__grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (max-width: 860px) {
  .av-nav__list a.is-current {
    color: var(--av-gold-dark);
  }

  .av-hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .av-hero::before {
    background: linear-gradient(
      180deg,
      rgba(250, 248, 244, 0.98) 0%,
      rgba(250, 248, 244, 0.91) 55%,
      rgba(250, 248, 244, 0.58) 100%
    );
  }

  .av-hero__inner {
    padding: 58px 0 210px;
  }

  .av-hero__cta {
    flex-direction: row;
    align-items: center;
  }

  .av-hero__cta .av-btn {
    width: auto;
  }

  .av-section-intro--split {
    grid-template-columns: 1fr;
  }

  .av-section-intro--split .av-label {
    margin-bottom: 0;
  }
}

@media (max-width: 620px) {
  .av-container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .av-hero {
    min-height: 790px;
  }

  .av-hero__title {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .av-hero__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .av-hero__cta .av-btn {
    width: 100%;
  }

  .av-hero__text-link {
    justify-content: center;
    min-height: 44px;
  }

  .av-hero__trust li {
    padding: 16px;
  }

  .av-hero__trust li:first-child,
  .av-hero__trust li:nth-child(3) {
    padding-left: 0;
  }

  .av-contact__details,
  .av-form__layout {
    padding: 30px 22px;
  }

  .av-contact__list {
    grid-template-columns: 1fr;
  }

  .av-contact__item--wide {
    grid-column: auto;
  }

  .av-contact__map {
    min-height: 330px;
  }

  .av-footer__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .av-footer__cta .av-btn {
    width: 100%;
  }

  .av-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Footer refinement — v1.4.1 */
.av-footer {
  overflow: hidden;
  color: #dfe4ec;
}

.av-footer__cta {
  min-height: 170px;
  padding: 44px 0;
}

.av-footer__cta > div {
  max-width: 620px;
}

.av-footer__cta h2 {
  max-width: 19ch;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.av-footer__cta .av-btn--gold {
  min-width: 210px;
  color: var(--av-ink);
  background: #c79a50;
  box-shadow: 0 10px 28px rgba(181, 138, 69, 0.18);
}

.av-footer__cta .av-btn--gold:hover {
  color: #fff;
  background: var(--av-gold-dark);
}

.av-footer__grid {
  grid-template-columns: minmax(240px, 1.5fr) minmax(120px, 1fr) minmax(130px, 1fr) minmax(240px, 1.4fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: 58px 0 26px;
}

.av-footer__brand-lockup {
  gap: 14px;
  margin-bottom: 18px;
}

/* Align section headings with the vertically-centered brand name */
.av-footer__column h3 {
  margin-top: 13px;
}

.av-footer__monogram {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(199, 154, 80, 0.6);
  border-radius: 50%;
  color: #d7ac65;
  font-family: var(--av-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.av-footer__brand-lockup strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.av-footer__lead {
  max-width: 31ch;
  color: #929cab;
  font-size: 0.9rem;
}

.av-footer h3 {
  margin-bottom: 20px;
  color: #e8ecf2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.av-footer li + li {
  margin-top: 10px;
}

.av-footer a,
.av-footer__address {
  color: #9da6b4;
  font-size: 0.88rem;
  line-height: 1.55;
}

.av-footer a:hover {
  color: #d7ac65;
}

.av-footer__column--contact ul {
  display: grid;
  gap: 11px;
}

.av-footer__column--contact li {
  margin: 0;
}

.av-footer__column--contact a,
.av-footer__address {
  align-items: flex-start;
}

.av-footer__address {
  max-width: 33ch;
}

.av-footer__divider {
  margin: 24px 0 18px;
}

.av-footer__copy {
  padding-bottom: 24px;
  color: #727d8d;
}

@media (max-width: 1050px) {
  .av-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .av-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 34px;
  }

  .av-footer__brand,
  .av-footer__column--contact {
    grid-column: 1 / -1;
  }

  .av-footer__address {
    max-width: 44ch;
  }
}

@media (max-width: 620px) {
  .av-footer__cta {
    min-height: auto;
    padding: 38px 0;
  }

  .av-footer__cta h2 {
    font-size: 2rem;
  }

  .av-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
  }

  .av-footer__brand,
  .av-footer__column--contact {
    grid-column: auto;
  }
}
