@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap');




main {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ivory);
}
main > section { flex-shrink: 0; }


.av-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.av-label-light { color: var(--bronze-bright); }

.av-sec-h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}

.av-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.av-sec-head-pad {
  padding: 0 clamp(2rem, 5vw, 6rem);
}

.av-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.av-link-arrow .ico { width: 0.72rem; height: 0.72rem; transition: transform 0.2s; }
.av-link-arrow:hover { color: var(--ink); }
.av-link-arrow:hover .ico { transform: translateX(3px); }

.av-link-gold { color: var(--bronze-bright); }
.av-link-gold:hover { color: var(--on-dark); }

.av-btn-gold {
  background: var(--bronze);
  color: var(--on-dark);
  border-color: var(--bronze);
}
.av-btn-gold:hover {
  background: var(--bronze-bright);
  border-color: var(--bronze-bright);
}


.site-header {
  padding-block: 1.1rem;
  border-bottom: none;
}


.has-cine-hero .site-header:not(.scrolled) {
  background: oklch(1 0 0 / 0.06);
  backdrop-filter: blur(28px) saturate(1.6) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.08);
  border-bottom: 1px solid oklch(1 0 0 / 0.10);
  box-shadow:
    inset 0 1px 0 oklch(1 0 0 / 0.18),
    0 2px 24px oklch(0 0 0 / 0.08);
}

.site-header.scrolled {
  padding-block: 1.2rem;
  background: oklch(0.978 0.010 88 / 0.92);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.site-header .wrap {
  max-width: 100% !important;
  padding-inline: clamp(1rem, 4vw, 5rem) !important;
  gap: 1.5rem !important;
}


.brand { gap: 0.9rem; align-items: center; }
.brand-logo { height: 42px; }
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
  font-style: normal;
  white-space: nowrap !important;
}
.brand-tag {
  font-size: 0.48rem;
  letter-spacing: 0.34em;
  margin-top: 0.5rem;
}


.nav { gap: 2.6rem !important; }
.nav a {
  font-size: 0.68rem !important;
  letter-spacing: 0.16em !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  white-space: nowrap !important;
}


.header-cta {
  background: var(--bronze) !important;
  border: 1.5px solid var(--bronze) !important;
  color: var(--ivory) !important;
  padding: 0.65rem 1.5rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 600 !important;
  min-height: auto !important;
  border-radius: 0 !important;
  gap: 0.5rem;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
}
.header-cta:hover {
  background: var(--espresso) !important;
  color: var(--ivory) !important;
  border-color: var(--espresso) !important;
}
.has-cine-hero .site-header:not(.scrolled) .header-cta {
  background: transparent !important;
  border: 1.5px solid var(--bronze-bright) !important;
  color: var(--ivory) !important;
}
.has-cine-hero .site-header:not(.scrolled) .header-cta:hover {
  background: var(--bronze-bright) !important;
  color: var(--espresso) !important;
  border-color: var(--bronze-bright) !important;
}


.av-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--on-dark);
}
.av-hero-bg { position: absolute; inset: 0; z-index: 0; }
.av-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
  animation: heroKen 22s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  transform: scale(1.06);
  transform-origin: 65% 50%;
}
.av-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at center,
      oklch(0.07 0.012 56 / 0.35) 0%,
      oklch(0.07 0.012 56 / 0.6) 60%,
      oklch(0.07 0.012 56 / 0.8) 100%
    );
}


.av-hero-inner {
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 90%;
  max-width: 820px;
}
.av-hero-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin: 0;
  text-align: center;
}


.av-hero-pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 1.6rem;
  border: 1px solid oklch(1 0 0 / 0.32);
  border-radius: 0;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  text-decoration: none;
  backdrop-filter: blur(10px);
  background: oklch(1 0 0 / 0.08);
  width: fit-content;
  transition: background 0.3s, border-color 0.3s, gap 0.3s;
}
.av-hero-pill-cta:hover {
  background: oklch(1 0 0 / 0.16);
  border-color: oklch(1 0 0 / 0.55);
  gap: 1.1rem;
}
.av-hero-pill-cta .ico { width: 0.85rem; height: 0.85rem; }


.av-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.av-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 1rem;
  border-radius: 0;
  border: 1px solid oklch(1 0 0 / 0.28);
  background: oklch(1 0 0 / 0.15);
  backdrop-filter: blur(12px);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: oklch(0.96 0.006 80 / 0.92);
}
.av-tag-dot { color: oklch(0.76 0.055 72); font-size: 0.45rem; }


.av-hero-caption {
  display: none !important;
}


.av-hero-card {
  display: none !important;
}


.av-hero-desc {
  font-size: clamp(0.88rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: oklch(0.92 0.005 80 / 0.82);
  max-width: 60ch;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}


.av-hero-project-link {
  display: none !important;
}


.av-hero-social {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3.2rem);
  right: clamp(2.5rem, 5vw, 6rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.av-hero-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: 50%;
  color: oklch(0.90 0.008 80 / 0.65);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.av-hero-social a:hover {
  border-color: oklch(1 0 0 / 0.45);
  background: oklch(1 0 0 / 0.08);
  color: var(--on-dark);
}
.av-hero-social .ico { width: 14px; height: 14px; }
.av-hero-zalo { font-size: 0.68rem; font-weight: 700; letter-spacing: 0; }

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}


.av-about {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 4vh, 3.5rem) clamp(3rem, 6vw, 7rem);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.av-about-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.av-about-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}
.av-about-desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.82;
  max-width: 360px;
}
.av-signature {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  color: var(--bronze);
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
  margin-top: 0.3rem;
}


.av-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.av-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.8rem, 3.5vw, 3rem) 0.8rem;
  border-right: 1px solid var(--line);
  gap: 0.7rem;
}
.av-stat-item:last-child { border-right: none; }
.av-stat-icon {
  width: 2.8rem; height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.av-stat-icon .ico { width: 1.1rem; height: 1.1rem; color: var(--bronze); stroke-width: 1.4; }
.av-stat-n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.av-stat-l {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  line-height: 1.5;
}


.av-svc {
  background: oklch(0.95 0.008 82);
  padding-bottom: clamp(2.5rem, 4vh, 4rem);
}
.av-svc-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(3rem, 6vw, 7rem) clamp(1.2rem, 2.5vh, 2rem);
}
.av-svc-head-center {
  grid-column: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.av-svc-head-center .av-label { margin-bottom: 0; }
.av-svc-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.av-svc-rule {
  display: block;
  width: 2.8rem;
  height: 2px;
  background: var(--bronze);
  margin-top: 0.2rem;
}
.av-svc-all {
  grid-column: 3;
  justify-self: end;
  align-self: center;
}


.av-svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 0 64px;
}
.av-svc-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.av-svc-card img, .av-svc-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.5s ease;
  display: block;
}
.av-svc-card:hover img, .av-svc-card:hover video { transform: scale(1.07); filter: brightness(0.75); }
.av-svc-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.6rem 1rem 1.5rem;
  gap: 0.65rem;
  background: linear-gradient(to top,
    oklch(0.10 0.016 56 / 0.9) 0%,
    oklch(0.10 0.016 56 / 0.25) 55%,
    transparent 100%);
}
.av-svc-ico { width: 1.5rem; height: 1.5rem; color: var(--bronze-bright); stroke-width: 1.3; }
.av-svc-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.1vw, 1.1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  text-align: center;
  line-height: 1.3;
}


.av-svc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  margin-top: 1rem;
}
.av-svc-row {
  position: relative;
  height: clamp(260px, 35vh, 320px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid oklch(1 0 0 / 0.15);
  cursor: pointer;
}
.av-svc-row-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.av-svc-row-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.av-svc-row:hover .av-svc-row-bg img {
  transform: scale(1.03);
}
.av-svc-row-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    oklch(0.06 0.012 56 / 0.96) 0%, 
    oklch(0.06 0.012 56 / 0.78) 40%, 
    oklch(0.06 0.012 56 / 0.36) 70%, 
    oklch(0.06 0.012 56 / 0.58) 100%
  );
  z-index: 1;
}
.av-svc-row-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.av-svc-row-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}
.av-svc-row-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--bronze-bright);
  line-height: 1;
  font-weight: 300;
  margin-bottom: clamp(0.4rem, 0.8vw, 0.8rem);
}
.av-svc-row-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.av-svc-row-desc {
  font-size: clamp(0.82rem, 0.88vw, 0.92rem);
  color: oklch(0.88 0.008 80 / 0.75);
  line-height: 1.6;
  margin: 0;
}
.av-svc-row-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: gap 0.3s, border-color 0.3s, color 0.3s;
  margin-bottom: 0.4rem;
}
.av-svc-row-link:hover {
  color: var(--on-dark);
  border-color: var(--on-dark);
  gap: 0.9rem;
}
.av-svc-row-link .ico {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 1.8;
}


.av-svc-workshop {
  margin: 1.8rem 64px 0;
  display: grid;
  grid-template-columns: 66fr 34fr;
  background: var(--espresso);
  color: var(--on-dark);
  overflow: hidden;
  position: relative;
  min-height: 290px;
}
.av-svc-ws-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}
.av-svc-ws-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.av-svc-ws-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, var(--espresso) 100%);
  pointer-events: none;
}
.av-svc-ws-mute {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: oklch(0 0 0 / 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.18);
  color: var(--on-dark);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.av-svc-ws-mute:hover {
  background: oklch(0 0 0 / 0.75);
  transform: scale(1.08);
}
.av-svc-ws-mute .ico { width: 1rem; height: 1rem; color: var(--bronze-bright); }
.av-svc-ws-content {
  padding: clamp(1.2rem, 2.5vw, 2.2rem) clamp(1.4rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
}
.av-svc-ws-title {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--on-dark);
  letter-spacing: 0.02em;
}
.av-svc-ws-desc {
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 44ch;
}
@media (max-width: 900px) {
  .av-svc-workshop {
    margin: 1.5rem 1rem 0;
    grid-template-columns: 1fr;
  }
  .av-svc-ws-overlay {
    background: linear-gradient(to top, var(--espresso) 10%, transparent 100%);
  }
}


.av-stmt {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 340px;
  background: var(--espresso);
}
.av-stmt-left {
  padding: clamp(2rem, 5vh, 4rem) clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  color: var(--on-dark);
}
.av-stmt-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 3.8vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--on-dark);
}
.av-stmt-desc {
  font-size: 1.05rem;
  color: var(--on-dark-faint);
  line-height: 1.82;
  max-width: 420px;
}
.av-stmt-right {
  overflow: hidden;
  position: relative;
}
.av-stmt-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
  transition: filter 0.6s ease, transform 0.9s ease;
}
.av-stmt-right:hover img { filter: brightness(0.72); transform: scale(1.03); }



.av-proj {
  background: var(--espresso);
  color: var(--on-dark);
}
.page-du-an .av-proj,
.page-kien-thuc .av-proj {
  background: var(--ivory);
  color: var(--ink);
  --on-dark:       var(--ink);
  --on-dark-soft:  oklch(0.44 0.018 58);
  --on-dark-faint: oklch(0.56 0.014 58);
  --line-dark:     oklch(0 0 0 / 0.10);
}


.av-proj-nt {
  max-width: 1760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(2.5rem, 4vw, 5rem) clamp(2rem, 3.5vw, 4rem);
}
.av-proj-nt-label {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin: 0 0 0.5rem;
}
.av-title-decor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: clamp(1.2rem, 2vw, 2.2rem);
}
.av-decor-img {
  width: clamp(220px, 30vw, 340px);
  height: auto;
  opacity: 0.85;
  display: block;
}
.av-proj-nt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(0.8rem, 1.2vw, 1.4rem);
  row-gap: clamp(1.5rem, 2.8vw, 3rem);
}
.av-proj-nt-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.av-proj-nt-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: clamp(0.65rem, 1vw, 1rem);
}
.av-proj-nt-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.av-proj-nt-card:hover .av-proj-nt-img img { transform: scale(1.04); }
.av-proj-nt-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 6px oklch(0 0 0 / 0.45);
}
.av-proj-nt-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.av-proj-nt-name {
  font-size: clamp(0.85rem, 1.05vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s;
}
.av-proj-nt-year {
  flex-shrink: 0;
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  font-weight: 400;
  color: var(--bronze-bright);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.av-proj-nt-card:hover .av-proj-nt-name {
  color: var(--bronze-bright);
}
.av-proj-nt-desc {
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  color: var(--on-dark-soft);
  line-height: 1.75;
  margin: 0;
}
.av-proj-nt-summary {
  font-size: clamp(0.75rem, 0.8vw, 0.82rem);
  color: rgba(240, 235, 227, 0.55);
  line-height: 1.5;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.av-proj-nt-loc {
  font-size: clamp(0.72rem, 0.8vw, 0.8rem);
  font-weight: 400;
  color: var(--on-dark-soft);
  text-transform: none;
  letter-spacing: 0.05em;
  margin-left: 0.6rem;
  display: inline-block;
  vertical-align: baseline;
}
@media (max-width: 860px) {
  .av-proj-nt { padding: 2rem 1.2rem; }
  .av-proj-nt-grid { grid-template-columns: 1fr; row-gap: 1.8rem; }
  .av-proj-nt-img { aspect-ratio: 16 / 10; }
}


#architecture-grid {
  grid-template-columns: 1fr;
  row-gap: 0;
  column-gap: 0;
}
#architecture-grid .av-proj-nt-card {
  padding-bottom: clamp(1.4rem, 2.5vw, 2rem);
}
#architecture-grid .av-proj-nt-card:last-child {
  padding-bottom: 0;
}
#architecture-grid .av-proj-nt-img {
  aspect-ratio: 16 / 9;
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
  background: transparent;
}
#architecture-grid .av-proj-nt-img::after {
  display: none;
}
#architecture-grid .av-proj-nt-name {
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  letter-spacing: 0.08em;
}


#architecture-grid .av-proj-nt-card:nth-child(2),
#architecture-grid .av-proj-nt-card:nth-child(3) {
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line-dark);
  position: relative;
  padding-left: clamp(1.2rem, 2vw, 1.8rem);
}
#architecture-grid .av-proj-nt-card:nth-child(2)::before,
#architecture-grid .av-proj-nt-card:nth-child(3)::before {
  content: '';
  position: absolute;
  left: 0;
  top: clamp(1.4rem, 2.5vw, 2rem);
  bottom: clamp(1.4rem, 2.5vw, 2rem);
  width: 4px;
  background: var(--bronze-bright);
  border-radius: 2px;
}
#architecture-grid .av-proj-nt-card:nth-child(2) .av-proj-nt-img,
#architecture-grid .av-proj-nt-card:nth-child(3) .av-proj-nt-img {
  aspect-ratio: unset;
  height: clamp(340px, 58vh, 580px);
}
#architecture-grid .av-proj-nt-card:nth-child(2) .av-proj-nt-name,
#architecture-grid .av-proj-nt-card:nth-child(3) .av-proj-nt-name {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: var(--bronze-bright);
  letter-spacing: 0.1em;
}
#architecture-grid .av-proj-nt-card:nth-child(2) .av-proj-nt-desc,
#architecture-grid .av-proj-nt-card:nth-child(3) .av-proj-nt-desc {
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  opacity: 0.85;
}

.av-proj-eyebrow {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
  padding: clamp(2.5rem, 4vw, 4rem) 0 0.6rem;
}
.av-proj-eyebrow::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1px;
  background: var(--bronze);
  opacity: 0.45;
  margin: 0.55rem auto 0;
}


.av-proj-block {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(2rem, 3.5vw, 4rem);
  border-top: 1px solid var(--line-dark);
}
.av-proj-block:first-of-type { border-top: none; }

.av-proj-block-head {
  display: flex;
  align-items: flex-end;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(1rem, 1.8vw, 2rem);
}
.av-proj-block-title { flex-shrink: 0; }
.av-proj-block-pre {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--on-dark-soft);
  margin: 0 0 0.1rem;
  text-transform: uppercase;
}
.av-proj-block-h {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--on-dark);
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}
.av-proj-block-desc {
  flex: 1;
  font-size: clamp(0.72rem, 0.88vw, 0.86rem);
  color: var(--on-dark-soft);
  line-height: 1.75;
  margin: 0;
  padding-bottom: 0.3rem;
}
.av-proj-block-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.3rem;
  transition: color 0.2s;
}
.av-proj-block-link .ico { width: 0.85rem; height: 0.85rem; }
.av-proj-block-link:hover { color: var(--bronze-bright); }


.av-proj-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 3.5vw, 3.5rem);
}
.av-proj-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--bronze-bright);
  color: var(--bronze-bright);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.av-proj-more-btn .ico { width: 0.8rem; height: 0.8rem; transition: transform 0.2s; }
.av-proj-more-btn:hover { background: var(--bronze-bright); color: var(--espresso); }
.av-proj-more-btn:hover .ico { transform: translateX(4px); }


.av-proj-bento { display: flex; flex-direction: column; gap: clamp(0.4rem, 0.6vw, 0.7rem); }

.av-proj-bento-top {
  display: grid;
  grid-template-columns: 47fr 53fr;
  gap: clamp(0.4rem, 0.6vw, 0.7rem);
}
.av-proj-bento-bot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.4rem, 0.6vw, 0.7rem);
  min-height: clamp(200px, 26vw, 340px);
}
.av-proj-bento-side {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.6vw, 0.7rem);
}
.av-proj-bento-side .av-proj-cell { flex: 1; min-height: 0; }


.av-proj-cell {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.av-proj-cell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.av-proj-cell:hover > img { transform: scale(1.04); }
.av-proj-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.04 0.01 55 / 0.90) 0%,
    oklch(0.04 0.01 55 / 0.35) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.av-proj-cell-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(0.9rem, 1.4vw, 1.4rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.av-proj-cell-num {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--bronze-bright);
  margin-bottom: 0.08rem;
}
.av-proj-cell-name {
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.3vw, 1.3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.av-proj-cell-cat {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: oklch(0.80 0.012 80);
  text-transform: uppercase;
}
.av-proj-cell-link {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.90 0.010 80);
  margin-top: 0.3rem;
  transition: color 0.2s;
}
.av-proj-cell:hover .av-proj-cell-link { color: var(--bronze-bright); }


.av-proj-bento-side .av-proj-cell::after { display: none; }
.av-proj-bento-side .av-proj-cell-body { text-shadow: 0 1px 6px rgba(0,0,0,.7); }
.av-proj-bento-side .av-proj-cell-name { text-shadow: 0 2px 10px rgba(0,0,0,.8); }

.av-proj-cell--feat { aspect-ratio: 2 / 3; }
.av-proj-cell--feat .av-proj-cell-body {
  padding: clamp(1.1rem, 1.8vw, 2rem);
}
.av-proj-cell--feat .av-proj-cell-name {
  font-size: clamp(1.1rem, 2.2vw, 2.2rem);
}


.av-proj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  margin-top: 0;
}
.av-proj-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: clamp(1.4rem, 2.5vw, 2.5rem) 1rem;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}
.av-proj-stat:last-child { border-right: none; }
.av-proj-stat .ico { width: 1.4rem; height: 1.4rem; color: var(--bronze-bright); }
.av-proj-stat-num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--on-dark);
  line-height: 1;
}
.av-proj-stat-label {
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  line-height: 1.4;
}


@media (max-width: 860px) {
  .av-proj-block { padding: 2rem 1.2rem; }
  .av-proj-block-head { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .av-proj-block-desc { width: 100%; flex: none; }
  .av-proj-bento-top { grid-template-columns: 1fr; min-height: unset; }
  .av-proj-bento-top .av-proj-cell--feat { aspect-ratio: 4 / 3; min-height: unset; }
  .av-proj-bento-side { flex-direction: row; }
  .av-proj-bento-side .av-proj-cell { aspect-ratio: 3 / 2; flex: 1; min-height: unset; }
  .av-proj-bento-bot { grid-template-columns: 1fr; }
  .av-proj-bento-bot .av-proj-cell { min-height: 50vw; }
  .av-proj-stats { grid-template-columns: repeat(2, 1fr); }
  .av-proj-stat:nth-child(2) { border-right: none; }
  .av-proj-stat:nth-child(3) { border-top: 1px solid var(--line); }
  .av-proj-stat:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
}


.av-philo { background: var(--ivory); }

.av-philo-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 70svh;
  align-items: stretch;
}

.av-philo-text {
  padding: clamp(2.5rem, 5vh, 4rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: center;
}

.av-philo-top { display: flex; flex-direction: column; gap: 0.6rem; }
.av-philo-accent {
  display: block;
  width: 2rem; height: 1px;
  background: var(--bronze);
}

.av-philo-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem); 
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}

.av-philo-desc {
  font-size: clamp(0.92rem, 1vw, 1.05rem); 
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 380px;
}


.av-philo-quote-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--bronze);
  background: oklch(0.96 0.006 80);
}
.av-philo-quote-inline .av-philo-qmark {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--bronze);
  line-height: 0.85;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.av-philo-quote-inline p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
}

.av-philo-values {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.7rem;
  flex-wrap: wrap;
  padding-left: 1rem;
  border-left: 2px solid var(--bronze);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.av-philo-dash { opacity: 0.4; }

.av-philo-img { overflow: hidden; }
.av-philo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.av-process {
  background: var(--ivory);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
}


.av-proc-hdr {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(4.5rem, 7vh, 6.5rem) clamp(2rem, 5vw, 4rem) clamp(3.5rem, 5vw, 5rem);
}
.av-proc-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 1.6rem;
  display: block;
  opacity: 0.8;
}
.av-proc-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.2rem;
  text-transform: none;
}
.av-proc-sub {
  font-size: clamp(0.88rem, 1.05vw, 1.02rem);
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0 auto;
  font-weight: 300;
}


.av-proc-rows {
  display: flex;
  flex-direction: column;
}


.av-proc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.av-proc-row-text {
  display: flex;
  align-items: center;
  padding: clamp(1.2rem, 2vw, 2rem) clamp(2rem, 4vw, 5rem);
  gap: clamp(1rem, 2vw, 2rem);
}


.av-proc-row--a .av-proc-row-text {
  flex-direction: row;
}


.av-proc-row--b .av-proc-row-text {
  flex-direction: row;
}


.av-proc-bignum {
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 300;
  color: oklch(0.55 0.060 60 / 0.18);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  user-select: none;
  font-style: normal;
}


.av-proc-row-body {
  flex: 1;
}
.av-proc-row-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.8rem;
  text-transform: none;
}
.av-proc-row-desc {
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  max-width: 30ch;
}


.av-proc-row-img {
  overflow: hidden;
  position: relative;
  height: clamp(140px, 14vw, 180px);
  align-self: center;
}
.av-proc-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.av-proc-row:hover .av-proc-row-img img {
  transform: scale(1.04);
}


.av-proc-row--b .av-proc-row-text {
  background: oklch(0.955 0.014 90);
}


@media (max-width: 768px) {
  .av-proc-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .av-proc-row--b { direction: ltr; }
  .av-proc-row-img { height: 180px; align-self: stretch; order: -1; }
  .av-proc-row--b .av-proc-row-img { order: -1; }
  .av-proc-row-text { padding: 2rem 1.5rem; }
  .av-proc-bignum { font-size: clamp(3.5rem, 15vw, 5rem); }
  .av-proc-row-desc { max-width: none; }
}


.av-proc-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vw, 6rem);
  width: 100%;
}
.av-pm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1vw, 1.2rem);
}
.av-pm-num {
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  font-weight: 300;
  color: oklch(0.82 0.012 75);
  line-height: 1;
}
.av-pm-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  text-transform: none;
}
.av-pm-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: var(--line-soft);
  margin-block: clamp(1.8rem, 3.5vw, 4rem);
  opacity: 0.85;
}





.av-news {
  background: var(--ivory);
  padding: clamp(1.5rem, 3vh, 2.5rem) 0 0;
}
.av-news .av-sec-head { margin-bottom: 1.5rem; }
.av-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 64px;
}
.av-news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.2s;
}
.av-news-card:last-child { border-right: none; }
.av-news-card:hover { background: oklch(0.94 0.009 82); }
.av-news-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
.av-news-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: transform 0.7s ease, filter 0.5s ease;
}
.av-news-card:hover .av-news-img-wrap img { transform: scale(1.04); filter: brightness(0.85); }
.av-news-date {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--espresso);
  color: var(--on-dark);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
}
.av-news-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.3rem;
  flex-grow: 1;
}
.av-news-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.01em;
  flex: 1;
}
.av-news-arrow {
  width: 2rem; height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: border-color 0.2s, background 0.2s;
}
.av-news-card:hover .av-news-arrow {
  background: var(--espresso);
  border-color: var(--espresso);
}
.av-news-arrow .ico {
  width: 0.75rem; height: 0.75rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.av-news-card:hover .av-news-arrow .ico { color: var(--on-dark); }


.av-footer {
  background: var(--espresso);
  color: var(--on-dark);
}


.av-footer-band {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}
.av-footer-band-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  padding: clamp(2rem, 3.5vh, 3rem) clamp(2.5rem, 5vw, 6rem);
}
.av-footer-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  font-weight: 500;
}
.av-footer-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  margin: 0;
  text-transform: none;
}
.av-footer-headline em { font-style: italic; font-weight: 300; }
.av-footer-band-desc {
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: var(--on-dark-soft);
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}
.av-footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--on-dark);
  padding-bottom: 0.4rem;
  width: fit-content;
  transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.av-footer-cta-link:hover { gap: 1.6rem; color: var(--bronze-bright); border-color: var(--bronze-bright); }
.av-footer-cta-link .ico { width: 0.85rem; height: 0.85rem; }

.av-footer-band-right {
  overflow: hidden;
  position: relative;
  background: oklch(0.88 0.025 78);
  height: clamp(480px, 54vw, 660px);
  align-self: center;
}
.av-footer-band-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.5) brightness(1.12) contrast(0.92);
  mix-blend-mode: luminosity;
}
.av-footer-band-overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.78 0.048 72);
  mix-blend-mode: color;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.av-footer-band-fade {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 22%;
  background: linear-gradient(to right, var(--espresso) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}


.av-footer-sep {
  height: 1px;
  background: var(--line-dark);
}


.av-footer-bottom {
  display: grid;
  grid-template-columns: 28fr 24fr 24fr 24fr;
  align-items: start;
  padding: clamp(2.4rem, 4vh, 3.5rem) clamp(2.5rem, 5vw, 6rem);
  gap: 0;
}


.av-footer-brand {
  padding-right: clamp(2rem, 3vw, 3.5rem);
}
.av-footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.av-footer-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  display: block;
  margin-bottom: 1rem;
}
.av-footer-brand-rule {
  width: 1.8rem;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 1rem;
  opacity: 0.6;
}
.av-footer-brand-desc {
  font-size: 0.82rem;
  color: var(--on-dark-soft);
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}


.av-footer-col {
  padding: 0 clamp(1.5rem, 2.5vw, 3rem);
  border-left: 1px solid var(--line-dark);
}
.av-ftr-col-label {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 1.2rem;
}


.av-ftr-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.av-ftr-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: var(--on-dark-soft);
  line-height: 1.5;
  font-weight: 300;
}
.av-ftr-list .ico {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke-width: 1.5;
  color: var(--on-dark-faint);
}
.av-ftr-list a {
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.av-ftr-list a:hover { color: var(--bronze-bright); }


.av-ftr-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.av-ftr-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--on-dark-soft);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s, gap 0.2s;
}
.av-ftr-nav a:hover { color: var(--bronze-bright); gap: 0.8rem; }
.av-ftr-nav .ico {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 1.5;
  opacity: 0.5;
}


.av-ftr-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.av-ftr-social a {
  font-size: 0.84rem;
  color: var(--on-dark-soft);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.av-ftr-social a:hover { color: var(--bronze-bright); }


.av-footer-copy-bar {
  border-top: 1px solid var(--line-dark);
  padding: 1rem clamp(2.5rem, 5vw, 6rem);
  font-size: 0.72rem;
  color: var(--on-dark-faint);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}


@media (max-width: 1024px) {
  .av-footer-band { grid-template-columns: 1fr 1fr; }
  .av-footer-bottom { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .av-footer-col:nth-child(2) { border-left: none; padding-left: 0; }
  .av-footer-col:nth-child(3) { border-left: 1px solid var(--line-dark); }
}
@media (max-width: 768px) {
  .av-footer-band { grid-template-columns: 1fr; }
  .av-footer-band-right { height: 280px; }
  .av-footer-bottom { grid-template-columns: 1fr; row-gap: 2rem; }
  .av-footer-col { border-left: none; padding-left: 0; border-top: 1px solid var(--line-dark); padding-top: 1.5rem; }
  .av-footer-brand { padding-right: 0; }
}


.page-hero-cine {
  min-height: 100svh;
  align-items: end;
}


.page-hero-cine .ph-media::after {
  background:
    linear-gradient(to top, oklch(0.07 0.012 56 / 0.95) 0%, oklch(0.07 0.012 56 / 0.6) 35%, oklch(0.07 0.012 56 / 0.2) 65%, transparent 100%),
    linear-gradient(to right, oklch(0.07 0.012 56 / 0.45) 0%, transparent 60%) !important;
}


.page-hero-cine .ph-inner {
  text-align: left;
  justify-items: start;
  padding-block: clamp(4rem, 8vh, 6rem) clamp(5rem, 9vh, 7rem);
  padding-inline: clamp(2.5rem, 5vw, 6rem);
  max-width: 85%;
  gap: clamp(0.6rem, 1.4vh, 1rem);
}


.page-hero-cine .crumbs { display: none; }


.page-hero-cine .label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  opacity: 0.72;
}


.page-hero-cine h1 {
  font-family: var(--display) !important;
  font-weight: 300 !important;
  font-size: clamp(3.5rem, 7.5vw, 10rem) !important;
  line-height: 0.86 !important;
  letter-spacing: -0.03em !important;
  text-wrap: balance;
  max-width: 14ch;
  text-shadow: 0 4px 60px oklch(0.07 0.012 56 / 0.45) !important;
  color: var(--ivory) !important;
  margin: 0 !important;
}


.page-hero-cine h1 em {
  font-style: italic;
  color: inherit !important;
  text-shadow: inherit !important;
}


.page-hero-cine .gold-rule { display: none; }


.page-hero-cine .lead {
  font-size: clamp(0.82rem, 1.1vw, 0.98rem) !important;
  max-width: 42ch;
  line-height: 1.75;
  color: oklch(0.90 0.006 88 / 0.72) !important;
  text-shadow: none !important;
  margin-top: 0.4rem !important;
}





.sec-greige { background: var(--ivory) !important; }
.split-body.on-greige { background: var(--ivory) !important; }


.sec-dark,
.split.sec-dark .split-body.on-dark {
  border-top: 1px solid oklch(0.18 0.012 56 / 0.06);
}


.section.sec-greige { background: var(--ivory) !important; }





.xl, .lg { font-family: var(--display) !important; }
.xl em, .lg em { font-style: italic; color: var(--bronze); }


.av-shop {
  background: #fff;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding-block: clamp(2rem, 3.5vw, 3.5rem) clamp(1rem, 1.8vw, 1.8rem);
  box-sizing: border-box;
  overflow: hidden;
}


.av-shop-layout {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: stretch;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}


.av-shop-sidebar {
  flex-shrink: 0;
  width: clamp(160px, 18vw, 220px);
  padding-top: 0.5rem;
  align-self: flex-start;
  overflow-y: auto;
  scrollbar-width: none;
  max-height: 100%;
}
.av-shop-sidebar::-webkit-scrollbar { display: none; }
.av-shop-sidebar-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1.4rem;
}
.av-shop-nav { display: flex; flex-direction: column; gap: 0; }

.av-shop-nav-group { border: none; }
.av-shop-nav-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0.48rem 0;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--ink-faint);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  line-height: 1.3;
}
.av-shop-nav-cat:hover { color: var(--ink); }
.av-shop-nav-group.is-open > .av-shop-nav-cat { color: var(--ink); font-weight: 500; }
.av-shop-nav-toggle {
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-weight: 300;
}

.av-shop-nav-subs {
  list-style: none;
  margin: 0.2rem 0 0.8rem;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0.22rem;
}
.av-shop-nav-group.is-open .av-shop-nav-subs { display: flex; }
.av-shop-nav-subs li {
  font-style: italic;
  font-size: clamp(0.75rem, 0.88vw, 0.88rem);
  color: var(--ink-soft);
  padding: 0.1rem 0 0.1rem 0.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.av-shop-nav-subs li:hover { color: var(--bronze); }


.av-shop-main {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.av-shop-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 clamp(1rem, 1.8vw, 2rem);
  flex-shrink: 0;
  text-transform: uppercase;
}


.av-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(0.5rem, 0.8vw, 1rem);
  flex: 1;
  min-height: 0;
  transition: opacity 0.18s ease;
}
.av-shop-grid.is-fading { opacity: 0; pointer-events: none; }


.av-shop-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid oklch(0.88 0.008 80);
  background: #fff;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.av-shop-card-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.2vw, 1.2rem);
  box-sizing: border-box;
}
.av-shop-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.av-shop-card:hover .av-shop-card-img img { transform: scale(1.06); }


.av-shop-badge {
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  padding: 0.22rem 0.65rem;
  background: var(--bronze);
  color: #fff;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1.5;
}


.av-shop-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0.65rem 0.8rem 0.75rem;
  background: oklch(0.99 0.005 80 / 0.20);
  backdrop-filter: blur(18px) saturate(2) brightness(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(2) brightness(1.05);
  border-top: 1px solid oklch(1 0 0 / 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  transform: translateY(105%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.av-shop-card:hover .av-shop-card-body { transform: translateY(0); }
.av-shop-card-info { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.av-shop-card-name {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(0.14 0.01 55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.av-shop-card-price {
  font-size: 0.58rem;
  color: oklch(0.42 0.010 55);
}
.av-shop-card-arr {
  color: var(--bronze);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.av-shop-card:hover .av-shop-card-arr { transform: translateX(3px); }


.av-shop-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(0.6rem, 1vw, 1rem);
  flex-shrink: 0;
}
.av-shop-more {
  font-size: clamp(0.75rem, 0.88vw, 0.88rem);
  font-style: italic;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.av-shop-more:hover { color: var(--bronze); }


@media (max-width: 860px) {
  .av-shop { height: auto; overflow: visible; }
  .av-shop-layout { flex-direction: column; gap: 1.5rem; height: auto; overflow: visible; }
  .av-shop-sidebar { width: 100%; height: auto; padding-top: 0; }
  .av-shop-nav { flex-direction: row; flex-wrap: wrap; gap: 0.4rem; }
  .av-shop-nav-group { width: auto; }
  .av-shop-nav-subs { display: none !important; }
  .av-shop-main { min-height: unset; }
  .av-shop-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; flex: none; }
  .av-shop-card { aspect-ratio: 1 / 1; }
}


@media (min-width: 900px) {
  .split { min-height: 72vh !important; }
}


.section.sec-dark { padding-block: clamp(3rem, 5vw, 5rem); }




.av-philo-inner.rev {
  grid-template-columns: 1fr 1.2fr;
}


.av-stats {
  background: var(--espresso);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 6rem);
}
.av-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.av-stat { display: flex; flex-direction: column; gap: 0.5rem; }
.av-stats .av-stat-n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.av-stats .av-stat-l {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}


.av-section {
  background: var(--ivory);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 6rem);
}
.av-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}


.av-faq-list { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; }
.av-faq-item { border-bottom: 1px solid var(--line); }
.av-faq-btn {
  width: 100%; padding: 1.4rem 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400; letter-spacing: -0.01em;
  text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; background: none; border: none; color: var(--ink);
}
.av-faq-btn::after { content: "+"; font-size: 1.4rem; font-weight: 300; color: var(--bronze); flex-shrink: 0; transition: transform 0.3s; }
.av-faq-item.open .av-faq-btn::after { transform: rotate(45deg); }
.av-faq-body { display: none; padding: 0 0 1.4rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.78; }
.av-faq-item.open .av-faq-body { display: block; }


.av-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 70svh;
  background: var(--ivory);
}
.av-contact-form {
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  display: flex; flex-direction: column; gap: 2rem; justify-content: center;
}
.av-contact-map { overflow: hidden; background: var(--greige); }
.av-contact-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 400px; }


.av-filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding: 0 clamp(2rem, 5vw, 6rem) 2rem;
}
.av-filter-btn {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--line);
  background: transparent; color: var(--ink-soft);
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.av-filter-btn.active, .av-filter-btn:hover {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
}


.av-posts { padding: 0 clamp(2rem, 5vw, 6rem); }
.av-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
.av-post-card { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; color: var(--ink); }
.av-post-img { aspect-ratio: 16/10; overflow: hidden; }
.av-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.av-post-card:hover .av-post-img img { transform: scale(1.04); }
.av-post-cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); }
.av-post-title { font-family: var(--display); font-size: clamp(1.1rem, 1.5vw, 1.4rem); font-weight: 400; line-height: 1.55; }
.av-post-excerpt { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.72; }
.av-post-date { font-size: 0.65rem; letter-spacing: 0.14em; color: var(--ink-faint); }


.page-kien-thuc .av-posts-grid {
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1rem, 1.8vw, 2rem);
  row-gap: clamp(1.5rem, 2.8vw, 3rem);
}
.page-kien-thuc .av-post-img {
  aspect-ratio: 4 / 3;
}
.page-kien-thuc .av-post-card {
  color: var(--ink);
}
.page-kien-thuc .av-post-card:hover .av-post-title {
  color: var(--bronze);
}
.page-kien-thuc .av-post-excerpt {
  color: var(--ink-soft);
}
.page-kien-thuc .av-post-date {
  color: var(--ink-faint);
}
.page-kien-thuc .av-proj {
  padding-bottom: clamp(2rem, 4vw, 4rem);
}


.page-kien-thuc .av-philo {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 6rem) clamp(2rem, 4vw, 4rem);
  background: var(--ivory);
}
.page-kien-thuc .av-philo-inner {
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  gap: clamp(2rem, 5vw, 6rem);
}
.page-kien-thuc .av-philo-text {
  padding: 0;
}
.page-kien-thuc .av-philo-img {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
}
.page-kien-thuc .av-philo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.page-kien-thuc .av-philo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 107, 67, 0.3); 
  mix-blend-mode: color;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.page-kien-thuc .av-philo-img:hover::after {
  opacity: 0.12;
}
.page-kien-thuc .av-philo-img:hover img {
  transform: scale(1.03);
}

@media (max-width: 860px) {
  .page-kien-thuc .av-posts-grid {
    grid-template-columns: 1fr;
    row-gap: 1.8rem;
  }
  .page-kien-thuc .av-post-img {
    aspect-ratio: 16 / 10;
  }
  .page-kien-thuc .av-philo {
    padding: clamp(2rem, 4vw, 3rem) 1.2rem;
  }
  .page-kien-thuc .av-philo-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page-kien-thuc .av-philo-img {
    aspect-ratio: 16 / 10;
    min-height: unset;
  }
}



.av-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 6rem);
}
.av-pricing-card {
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column; gap: 1.5rem;
  background: var(--ivory);
  transition: box-shadow 0.3s;
}
.av-pricing-card:hover { box-shadow: 0 8px 40px oklch(0.18 0.016 56 / 0.10); }
.av-pricing-card.featured {
  border-color: var(--bronze);
  background: var(--espresso);
  color: var(--on-dark);
}
.av-pricing-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); }
.av-pricing-card.featured .av-pricing-label { color: var(--bronze-bright); }
.av-pricing-name { font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; }
.av-pricing-price { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; }
.av-pricing-price sub { font-size: 0.9rem; font-weight: 300; }
.av-pricing-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.av-pricing-card.featured .av-pricing-desc { color: var(--on-dark-soft); }
.av-pricing-features { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.5rem; border-top: 1px solid var(--line); }
.av-pricing-card.featured .av-pricing-features { border-color: oklch(1 0 0 / 0.15); }
.av-pricing-feat { font-size: 0.88rem; color: var(--ink-soft); display: flex; gap: 0.6rem; align-items: flex-start; }
.av-pricing-card.featured .av-pricing-feat { color: var(--on-dark-soft); }
.av-pricing-feat::before { content: "✦"; color: var(--bronze); font-size: 0.55rem; margin-top: 0.25rem; flex-shrink: 0; }


.av-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 0 clamp(1rem, 3vw, 3rem);
}
.av-feat-card {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.av-feat-card:last-child { border-right: none; }


.av-proj-grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.av-feat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--bronze);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.av-feat-h {
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.av-feat-p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
}


body:not(.has-cine-hero) .av-proc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.av-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.av-step:first-child { border-top: 1px solid var(--line); }
.av-step-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--bronze);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  width: 2.2rem;
  padding-top: 0.1rem;
}
.av-step-h {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.av-step-p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}


.av-form { display: flex; flex-direction: column; gap: 0.9rem; width: 100%; }
.av-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.av-field { display: flex; flex-direction: column; gap: 0.4rem; }
.av-field label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); }
.av-field input, .av-field select, .av-field textarea {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-family: var(--body);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}
.av-field input:focus, .av-field select:focus, .av-field textarea:focus { border-color: var(--bronze); }
.av-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }


@media (max-width: 1024px) {
  .av-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .av-philo-inner { grid-template-columns: 1fr; min-height: unset; }
  .av-philo-img { min-height: 320px; order: -1; }
  .av-process { grid-template-columns: 32% 1fr; }
  .av-proc-header { grid-template-columns: 1fr; }
  .av-proc-h { font-size: clamp(1.8rem, 3.5vw, 3rem); }

  
  .av-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }

  
}

@media (max-width: 768px) {
  .av-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .av-feat-card:nth-child(2n) { border-right: none; }
  .av-hero-inner { max-width: 90%; }
  .av-about { grid-template-columns: 1fr; }
  .av-about-stats { grid-template-columns: repeat(2, 1fr); }
  .av-about-stats .av-stat-item:nth-child(2) { border-right: none; }
  .av-svc-head { grid-template-columns: 1fr; }
  .av-svc-head-center { grid-column: 1; }
  .av-svc-all { display: none; }
  .av-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .av-svc-card { aspect-ratio: 4/5; }
  .av-stmt { grid-template-columns: 1fr; }
  .av-stmt-right { min-height: 260px; }
  .av-proj-grid { grid-template-columns: repeat(2, 1fr); }
  .av-process { grid-template-columns: 1fr; }
  .av-proc-img { display: none; }
  .av-proc-content { padding: 2rem 1.5rem; }
  .av-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .av-news-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .av-field-row { grid-template-columns: 1fr; }
  .av-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  
  .av-svc-row {
    height: auto;
    min-height: 260px;
  }
  .av-svc-row-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.8rem 1.5rem;
  }
  .av-svc-row-link {
    align-self: flex-end;
    margin-top: 0.5rem;
  }

}

@media (max-width: 480px) {
  .av-about-stats { grid-template-columns: repeat(2, 1fr); }
  .av-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .av-proj-grid { grid-template-columns: 1fr 1fr; }
  .av-steps-grid { grid-template-columns: 1fr; }
  .av-feat-grid { grid-template-columns: 1fr; }
  .av-feat-card { border-right: none; }
}


@media (min-width: 1025px) {
  .page-xuong .av-philo-inner {
    min-height: 100vh;
  }
  .page-xuong .av-svc {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
  }
  .page-xuong .av-process {
    min-height: 100vh;
  }
  .page-xuong .av-proc-content {
    justify-content: center;
  }
  .page-xuong .av-philo-stats-frame {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--ivory);
  }
  .page-xuong .av-philo-stats-frame .av-philo-inner {
    flex: 1;
    min-height: unset;
  }
  .page-xuong .av-philo-stats-frame .av-stats {
    flex-shrink: 0;
  }
}


body:not(.has-cine-hero) .av-svc-card,
.page-hero-cine ~ .av-svc .av-svc-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--espresso);
  color: var(--on-dark);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  border: 1px solid oklch(1 0 0 / 0.12);
}
.av-svc-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.av-svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.av-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-color: var(--bronze-bright);
}
.av-svc-card:hover .av-svc-card-media img {
  transform: scale(1.08);
  filter: brightness(0.68) contrast(1.08);
}
.av-svc-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.4rem 1.6rem;
  background: linear-gradient(to top, oklch(0.06 0.012 56 / 0.94) 0%, oklch(0.06 0.012 56 / 0.45) 55%, transparent 100%);
  gap: 0.45rem;
}
.av-svc-card-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  font-weight: 600;
}
.av-svc-card-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.15;
  margin: 0;
}
.av-svc-card-desc {
  font-size: clamp(0.78rem, 0.86vw, 0.88rem);
  color: oklch(0.88 0.008 80 / 0.78);
  line-height: 1.6;
  margin: 0 0 0.4rem;
}
.av-svc-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  border-top: 1px solid oklch(1 0 0 / 0.15);
  padding-top: 0.6rem;
  margin-top: 0.2rem;
}
.av-svc-card-features span {
  font-size: 0.7rem;
  color: oklch(0.92 0.01 80);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.av-svc-card-features span::before {
  content: '✓';
  color: var(--bronze-bright);
  font-weight: bold;
}


.av-compare-sec {
  background: var(--ivory);
  padding: clamp(3.5rem, 6vh, 5.5rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
}
.av-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2rem, 3.5vw, 3.5rem);
}
.av-compare-box {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.av-compare-box.old {
  background: oklch(0.96 0.005 80);
  border: 1px solid var(--line);
}
.av-compare-box.avi {
  background: var(--espresso);
  color: var(--on-dark);
  border: 1px solid var(--bronze);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}
.av-compare-title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.av-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.av-compare-list li {
  font-size: clamp(0.85rem, 0.95vw, 0.98rem);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.av-compare-list li .icon-bad {
  color: #ef4444;
  font-weight: bold;
  flex-shrink: 0;
}
.av-compare-list li .icon-good {
  color: var(--bronze-bright);
  font-weight: bold;
  flex-shrink: 0;
}


.av-faq-sec {
  background: oklch(0.96 0.006 82);
  padding: clamp(3.5rem, 6vh, 5.5rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
}
.av-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 920px;
  margin: clamp(2rem, 3.5vw, 3.5rem) auto 0;
}
.av-faq-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.av-faq-item.open {
  border-color: var(--bronze);
}
.av-faq-btn {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  gap: 1rem;
}
.av-faq-icon {
  font-size: 1.4rem;
  color: var(--bronze);
  transition: transform 0.3s ease;
}
.av-faq-item.open .av-faq-icon {
  transform: rotate(45deg);
}
.av-faq-body {
  padding: 0 1.6rem 1.3rem;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  color: var(--ink-soft);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .av-compare-grid { grid-template-columns: 1fr; }
}


body:not(.has-cine-hero) .site-header:not(.scrolled) {
  background: oklch(0.978 0.010 88 / 0.92);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
body:not(.has-cine-hero) main {
  padding-top: clamp(4.5rem, 7vh, 7.5rem);
}

.av-tabs-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.av-tabs-divider {
  width: 1px;
  height: 12px;
  background: var(--line);
  align-self: center;
  margin-bottom: 0.6rem;
  opacity: 0.8;
}
.av-tab-btn {
  background: none;
  border: none;
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  padding-bottom: 0.6rem;
  transition: color 0.35s var(--ease);
}
.av-tab-btn:hover {
  color: var(--ink);
}
.av-tab-btn.active {
  color: var(--bronze);
  font-weight: 600;
}
.av-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--bronze);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.av-tab-btn.active::after {
  width: 100%;
}
.av-tab-btn:hover::after {
  width: 50%;
}
.av-tab-btn.active:hover::after {
  width: 100%;
}


.av-footer-simple {
  background: var(--espresso);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 3rem;
  text-align: center;
}
.av-footer-simple-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.av-footer-simple-brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark);
  line-height: 1;
}
.av-footer-simple-brand-sub {
  font-size: 0.48rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-top: 0.4rem;
  display: block;
}
.av-footer-simple-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  margin-top: 0.4rem;
}
.av-footer-simple-contacts a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.av-footer-simple-contacts a:hover {
  color: var(--bronze-bright);
}
.av-footer-simple-copy {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 0.4rem;
}


.av-proc-rule {
  width: 60px;
  height: 1px;
  background: var(--bronze-bright);
  margin: 1.2rem auto 1.6rem;
}

.av-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(1.5rem, 3.5vw, 4.5rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(4rem, 8vh, 6.5rem);
}

.av-process-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

.av-process-img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  margin-bottom: 2rem;
}

.av-process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.av-process-col:hover .av-process-img img {
  transform: scale(1.04);
}

.av-process-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}


.av-process-col:not(:last-child) .av-process-body::after {
  content: '';
  position: absolute;
  top: 0;
  right: calc(-1 * clamp(1.5rem, 3.5vw, 4.5rem) / 2);
  width: 1px;
  height: 100%;
  background: var(--line);
  opacity: 0.75;
}

.av-process-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.av-process-line {
  width: 32px;
  height: 1px;
  background: var(--line);
  margin-bottom: 1.2rem;
}

.av-process-col-title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.av-process-col-desc {
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}


@media (max-width: 991px) {
  .av-process-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(1.5rem, 3.5vw, 3rem);
    row-gap: 4rem;
  }
  .av-process-col:not(:last-child) .av-process-body::after {
    display: none !important;
  }
  .av-process-col:nth-child(odd) .av-process-body::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(-1 * clamp(1.5rem, 3.5vw, 3rem) / 2);
    width: 1px;
    height: 100%;
    background: var(--line);
    opacity: 0.75;
    display: block !important;
  }
  
  .av-process-col:nth-child(1)::before,
  .av-process-col:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--line);
    opacity: 0.75;
  }
}

@media (max-width: 576px) {
  .av-process-grid {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    padding-bottom: 3.5rem;
  }
  .av-process-col::before {
    display: none !important;
  }
  .av-process-col .av-process-body::after {
    display: none !important;
  }
  .av-process-col:not(:last-child) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
  }
}


.av-brands-section {
  background: linear-gradient(180deg, #F8F6F3 0%, #F3F0EC 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.av-brands-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.av-brands-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
}

.av-brands-subtitle {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  font-weight: 500;
  display: block;
}

.av-brands-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-top: 0.8rem;
  letter-spacing: -0.01em;
}

.av-brands-separator {
  width: 45px;
  height: 1px;
  background: var(--bronze-bright);
  margin: 1.5rem auto;
  opacity: 0.6;
}

.av-brands-desc {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.8;
  color: #7E756C;
  font-weight: 300;
}

.av-brands-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 0;
  padding-inline: 1rem;
}

.av-brands-arrow {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.8rem;
  transition: color 0.3s var(--ease), transform 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.av-brands-arrow:hover {
  color: var(--bronze-bright);
  transform: scale(1.1);
}

.av-brands-arrow:active {
  transform: scale(0.95);
}

.av-brands-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding-block: 1rem;
  position: relative;
}

.av-brands-track-wrapper::before,
.av-brands-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.av-brands-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F8F6F3, transparent);
}
.av-brands-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F3F0EC, transparent);
}

.av-brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: av-brands-scroll 24s linear infinite;
  will-change: transform;
}


@keyframes av-brands-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.av-brand-slide {
  width: 240px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
  color: rgb(138, 130, 121);
  opacity: 0.4;
  flex-shrink: 0;
  will-change: transform, opacity;
}

.av-brand-slide:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.av-brand-slide svg {
  width: 100%;
  height: 100%;
  display: block;
}

.av-brands-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.8rem;
}

.av-brands-quote {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: #9A9187;
  font-weight: 500;
  text-align: center;
}

.av-brands-signature {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--bronze-bright);
  opacity: 0.8;
  text-transform: uppercase;
  user-select: none;
  margin-top: 0.4rem;
}

.av-brands-signature:hover {
  opacity: 0.95;
  transform: scale(1.03);
}


.nav-left, .nav-right {
  display: none;
}

.nav-right-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.search-btn:hover {
  color: var(--bronze);
  transform: scale(1.05);
}
.search-btn .ico {
  width: 18px;
  height: 18px;
}

@media (min-width: 1040px) {
  .site-header .wrap {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 2rem !important;
  }

  .nav-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(1.2rem, 2vw, 2.5rem) !important;
  }

  .brand {
    justify-self: center !important;
    margin-inline: auto !important;
  }

  .nav-right-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(1.2rem, 2vw, 2.5rem) !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: clamp(1.2rem, 2vw, 2.5rem) !important;
  }

  
  .site-header .nav:not(.nav-left):not(.nav-right),
  .site-header .btn-header,
  .site-header .header-cta {
    display: none !important;
  }

  .nav a {
    text-transform: none !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
  }
}


.page-lien-he .av-contact-hero {
  background: var(--ivory);
  padding: clamp(6rem, 10vh, 8rem) clamp(2rem, 5vw, 6rem) clamp(2rem, 4vh, 3rem);
}
.page-lien-he .av-contact-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-lien-he .av-contact-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.page-lien-he .av-contact-hero-text h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.page-lien-he .av-contact-hero-text .lead {
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}
.page-lien-he .av-contact-hero-img {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.page-lien-he .av-contact-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


.page-lien-he .av-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-lien-he .av-contact-col {
  padding: clamp(2.5rem, 4vw, 4.5rem) clamp(1.2rem, 2vw, 2.5rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.page-lien-he .av-contact-col:last-child {
  border-right: none;
}

.page-lien-he .av-contact-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  width: fit-content;
}


.page-lien-he .av-form-simple {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.page-lien-he .av-form-simple .av-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.page-lien-he .av-form-simple input,
.page-lien-he .av-form-simple select,
.page-lien-he .av-form-simple textarea {
  border: 1px solid rgba(201, 169, 110, 0.38);
  background: rgba(30, 26, 21, 0.7);
  padding: 0.62rem 0.95rem;
  font-family: inherit;
  font-size: 0.85rem;
  color: #F0EBE3;
  border-radius: 0;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}
.page-lien-he .av-form-simple input:hover,
.page-lien-he .av-form-simple select:hover,
.page-lien-he .av-form-simple textarea:hover {
  border-color: rgba(201, 169, 110, 0.6);
}
.page-lien-he .av-form-simple input:focus,
.page-lien-he .av-form-simple select:focus,
.page-lien-he .av-form-simple textarea:focus {
  border-color: #C9A96E;
  background: rgba(30, 26, 21, 0.92);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.35);
  outline: none;
}
.page-lien-he .av-form-simple select {
  cursor: pointer;
  color: #F0EBE3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C9A96E' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.6rem;
  appearance: none;
  -webkit-appearance: none;
}
.page-lien-he .av-form-simple select option {
  background: #141210;
  color: #F0EBE3;
}
.page-lien-he .av-form-simple ::placeholder {
  color: rgba(240, 235, 227, 0.62);
  opacity: 1;
}


.page-lien-he .av-btn-submit-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 0;
  padding: 1.1rem 1.6rem;
  width: 100%;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0.5rem;
}
.page-lien-he .av-btn-submit-bar:hover {
  background: var(--bronze);
  color: var(--ivory);
}
.page-lien-he .av-btn-submit-bar .ico {
  width: 0.95rem;
  height: 0.95rem;
}


.page-lien-he .av-contact-col-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.page-lien-he .contact-circle-icon {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.page-lien-he .av-contact-col-item:hover .contact-circle-icon {
  border-color: var(--bronze);
  color: var(--bronze);
  background: oklch(0.96 0.005 80);
}
.page-lien-he .contact-circle-icon .ico {
  width: 1.15rem; height: 1.15rem;
}
.page-lien-he .contact-circle-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.page-lien-he .contact-circle-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 500;
}
.page-lien-he .contact-circle-value {
  font-family: var(--display);
  font-size: 1.05rem; 
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.page-lien-he .contact-circle-value:hover {
  color: var(--bronze);
}


.page-lien-he .contact-info-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-lien-he .contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem; 
  color: var(--ink-soft);
  line-height: 1.6;
}
.page-lien-he .contact-info-list li .ico {
  width: 1rem; height: 1rem; 
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.page-lien-he .contact-info-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.page-lien-he .contact-info-list a:hover {
  color: var(--bronze);
}


.page-lien-he .av-contact-map {
  width: 100%; 
  max-width: var(--maxw);
  margin: 12px auto clamp(2rem, 5vw, 4rem); 
  padding-inline: 0; 
  box-sizing: border-box;
}
.page-lien-he .av-contact-map iframe {
  width: 100%;
  height: 400px; 
  border: 1px solid var(--line);
  border-radius: 4px;
  display: block;
}

@media (max-width: 1024px) {
  .page-lien-he .av-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-lien-he .av-contact-col {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .page-lien-he .av-contact-col:nth-child(2n) {
    border-right: none;
  }
  .page-lien-he .av-contact-col:last-child {
    grid-column: span 2;
    border-bottom: none;
  }
}

@media (max-width: 860px) {
  .page-lien-he .av-contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .page-lien-he .av-contact-hero {
    padding: clamp(4.5rem, 8vh, 6rem) 1.2rem 2rem;
  }
}

@media (max-width: 768px) {
  .page-lien-he .av-contact-grid {
    grid-template-columns: 1fr;
  }
  .page-lien-he .av-contact-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 2.5rem 1.2rem;
  }
  .page-lien-he .av-contact-col:last-child {
    border-bottom: none;
  }
  .page-lien-he .av-contact-map {
    padding-inline: 0;
  }
  .page-lien-he .av-contact-map iframe {
    height: 300px;
  }
}



.av-team-group {
  background: var(--ivory);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 5rem);
}

.av-team-group > .av-team-group-media {
  width: 100%;
  margin: 0;
}

.av-team-group-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: 64px;
}

.av-team-group-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 800px;
  margin-inline: auto;
  padding-top: clamp(4rem, 6vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  padding-inline: 20px;
}

.av-team-group-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(350px, 45vw, 650px);
}

.av-team-group-media::after {
  display: none;
}

.av-team-group-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.av-team-group-media:hover img {
  transform: scale(1.02);
}

.av-team-group-content .av-label {
  color: var(--bronze);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
}

.av-team-group-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--espresso);
  text-transform: none;
  letter-spacing: -0.01em;
}

.av-team-group-title em {
  font-style: italic;
  color: var(--bronze);
}

.av-team-group-rule {
  width: 64px;
  height: 1.5px;
  background: var(--bronze);
  margin: 0.2rem auto;
}

.av-team-group-desc {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
}

.av-team-group-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.av-team-group-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.av-team-group-stat strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
}

.av-team-group-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

.av-team-group-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  align-self: center;
}

@media (max-width: 900px) {
  .av-team-group-wrap {
    margin-inline: 1rem;
  }
  .av-team-group-media {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}




.av-proc-pin-wrap {
  height: 280vh; 
  background: #F4F0E8;
}


.av-proc-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #F4F0E8;
}


.av-proc-pin-left {
  position: relative;
  overflow: hidden;
  border-right: 1px solid oklch(0.62 0.018 68 / 0.20);
}


.av-proc-pin-header {
  position: absolute;
  top: clamp(2.5rem, 5vh, 4rem);
  left: clamp(3rem, 6vw, 6rem);
  right: clamp(2rem, 4vw, 4rem);
  z-index: 2;
}
.av-proc-pin-header .av-label { color: oklch(0.62 0.052 68); }

.av-proc-pin-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.3rem, 1.9vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1A1A18;
  margin: 0.4rem 0 0;
}
.av-proc-pin-h em { font-style: italic; color: oklch(0.58 0.058 68); }


.av-proc-pin-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.av-proc-pin-text.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.av-proc-pin-num {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: oklch(0.62 0.052 68);
  text-transform: uppercase;
  margin-bottom: clamp(0.9rem, 1.6vh, 1.4rem);
}

.av-proc-pin-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 3.8vw, 5rem);
  letter-spacing: -0.03em;
  color: #1A1A18;
  margin: 0 0 clamp(1.2rem, 2vh, 1.8rem);
  line-height: 1.02;
}

.av-proc-pin-rule {
  width: 2.4rem;
  height: 1px;
  background: oklch(0.62 0.050 68 / 0.55);
  margin-bottom: clamp(0.9rem, 1.6vh, 1.4rem);
}

.av-proc-pin-desc {
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: oklch(0.45 0.010 58);
  line-height: 1.9;
  font-weight: 300;
  max-width: 36ch;
}


.av-proc-pin-dots {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3.5rem);
  left: clamp(3rem, 6vw, 6rem);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  z-index: 2;
}
.av-proc-pin-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: oklch(0.62 0.018 68 / 0.28);
  transition: background 350ms, transform 350ms;
  display: block;
}
.av-proc-pin-dot.is-active {
  background: oklch(0.60 0.052 68);
  transform: scale(1.5);
}


.av-proc-pin-right { position: relative; overflow: hidden; }

.av-proc-pin-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.av-proc-pin-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.av-proc-pin-img.is-active img {
  opacity: 1;
  transform: scale(1);
}


@media (max-width: 860px) {
  .av-proc-pin-wrap { height: auto; }
  .av-proc-pin {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .av-proc-pin-left {
    border-right: none;
    border-bottom: 1px solid oklch(0.62 0.018 68 / 0.18);
    height: auto;
    min-height: unset;
  }
  .av-proc-pin-header {
    position: relative;
    top: auto; left: auto; right: auto;
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .av-proc-pin-text {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    padding: 1.5rem 1.5rem 2rem;
    display: none;
  }
  .av-proc-pin-text.is-active { display: flex; }
  .av-proc-pin-dots {
    position: relative;
    bottom: auto; left: auto;
    padding: 0 1.5rem 2rem;
  }
  .av-proc-pin-right { height: 72vw; min-height: 280px; }
  .av-proc-pin-img { position: absolute; }
}


.av-proc-ed {
  display: grid;
  grid-template-columns: 48fr 52fr;
  background: #F6F2EB;
  position: relative;
}

.av-proc-ed-left {
  padding: clamp(5rem, 9vh, 8rem) clamp(3rem, 5.5vw, 6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 5vw, 5rem);
  border-right: 1px solid oklch(0.68 0.022 68 / 0.2);
}


.av-proc-ed-intro .av-label { color: oklch(0.60 0.052 68); }

.av-proc-ed-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #1E1E1E;
  margin: 0.9rem 0 1.2rem;
}
.av-proc-ed-h em {
  font-style: italic;
  font-weight: 300;
  color: oklch(0.58 0.058 68);
}

.av-proc-ed-sub {
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  color: oklch(0.44 0.010 58);
  line-height: 1.9;
  font-weight: 300;
  max-width: 44ch;
  border-left: 2px solid oklch(0.68 0.042 68 / 0.45);
  padding-left: 1.2rem;
}


.av-proc-ed-journey {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 2.6rem;
}

.av-proc-ed-journey::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 1px;
  background: linear-gradient(to bottom,
    oklch(0.68 0.042 68 / 0) 0%,
    oklch(0.68 0.042 68 / 0.4) 8%,
    oklch(0.68 0.042 68 / 0.4) 92%,
    oklch(0.68 0.042 68 / 0) 100%
  );
}


.av-proc-ed-step {
  position: relative;
  padding: clamp(1.8rem, 3vh, 2.8rem) 0;
  cursor: pointer;
  overflow: hidden;
}
.av-proc-ed-step + .av-proc-ed-step {
  border-top: 1px solid oklch(0.70 0.016 68 / 0.22);
}


.av-proc-ed-step-dot {
  position: absolute;
  left: -2.6rem;
  top: calc(clamp(1.8rem, 3vh, 2.8rem) + 0.6rem);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid oklch(0.68 0.042 68 / 0.45);
  background: #F6F2EB;
  transform: translateX(-3.5px);
  transition: background 450ms ease, border-color 450ms ease, box-shadow 450ms ease;
  z-index: 1;
}
.av-proc-ed-step.is-active .av-proc-ed-step-dot {
  background: oklch(0.60 0.052 68);
  border-color: oklch(0.60 0.052 68);
  box-shadow: 0 0 0 4px oklch(0.60 0.052 68 / 0.14);
}


.av-proc-ed-step-inner { position: relative; z-index: 1; }

.av-proc-ed-step-num {
  display: block;
  font-family: var(--display);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: oklch(0.60 0.052 68);
  margin-bottom: 0.55rem;
  opacity: 0.55;
  transition: opacity 350ms;
}
.av-proc-ed-step.is-active .av-proc-ed-step-num { opacity: 1; }

.av-proc-ed-step-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.3vw, 1.28rem);
  letter-spacing: 0.08em;
  color: oklch(0.50 0.010 55);
  margin: 0;
  line-height: 1.25;
  transition: color 400ms;
}
.av-proc-ed-step.is-active .av-proc-ed-step-title {
  color: #1E1E1E;
}

.av-proc-ed-step-desc {
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  color: oklch(0.46 0.010 58);
  line-height: 1.88;
  font-weight: 300;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 550ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 400ms ease 60ms,
              margin-top 400ms ease;
}
.av-proc-ed-step.is-active .av-proc-ed-step-desc {
  max-height: 10rem;
  opacity: 1;
  margin-top: 0.9rem;
}


.av-proc-ed-step-ghost {
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(5.5rem, 9vw, 12rem);
  line-height: 1;
  color: oklch(0.60 0.042 68 / 0.055);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  transition: color 500ms;
}
.av-proc-ed-step.is-active .av-proc-ed-step-ghost {
  color: oklch(0.60 0.042 68 / 0.11);
}


.av-proc-ed-right { position: relative; }

.av-proc-ed-imgs {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.av-proc-ed-imgs::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.08 0.012 55 / 0.65) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.av-proc-ed-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.av-proc-ed-img.is-active { opacity: 1; }
.av-proc-ed-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.av-proc-ed-img.is-active img { transform: scale(1); }


.av-proc-ed-captions {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  z-index: 2;
}
.av-proc-ed-cap {
  position: absolute;
  bottom: 0; left: 0;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.85 0.006 80 / 0.55);
  font-weight: 300;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 500ms ease;
}
.av-proc-ed-cap.is-active { opacity: 1; }


@media (prefers-reduced-motion: reduce) {
  .av-proc-ed-img, .av-proc-ed-img img,
  .av-proc-ed-step-desc, .av-proc-ed-step-dot { transition: none; }
}


@media (max-width: 900px) {
  .av-proc-ed { grid-template-columns: 1fr; }
  .av-proc-ed-left {
    padding: clamp(3.5rem, 6vh, 5rem) clamp(1.5rem, 5vw, 2.5rem);
    border-right: none;
    border-bottom: 1px solid oklch(0.68 0.022 68 / 0.2);
  }
  .av-proc-ed-right { height: clamp(280px, 55vw, 420px); }
  .av-proc-ed-imgs { position: relative; height: 100%; }
  .av-proc-ed-step-ghost { display: none; }
}


.av-studio {
  background: #0e0c0a;
  overflow: hidden;
}


.av-studio-header {
  padding: clamp(4rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 3.5vw, 3rem);
  text-align: center;
  background: #0e0c0a;
}
.av-studio-header .av-label {
  color: oklch(0.70 0.045 68);
  letter-spacing: 0.32em;
}
.av-studio-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: oklch(0.94 0.010 82);
  margin: 0.6rem 0 0.9rem;
}
.av-studio-h em {
  font-style: italic;
  color: oklch(0.78 0.062 68);
}
.av-studio-sub {
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  color: oklch(0.60 0.008 75);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto;
  font-weight: 300;
}


.av-studio-gallery {
  display: flex;
  height: clamp(520px, 78vh, 820px);
  overflow: hidden;
}


.av-sm {
  position: relative;
  flex: 1;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: flex 700ms cubic-bezier(0.22, 1, 0.36, 1);
}


.av-sm--founder { flex: 1.6; }
.av-sm--founder .av-sm-foot { border-top: 2px solid oklch(0.70 0.045 68); }
.av-sm--founder .av-sm-foot-name { color: oklch(0.86 0.055 72); }
.av-sm--founder .av-sm-foot-num { color: oklch(0.70 0.045 68); font-size: 0.65rem; }


.av-studio-gallery.is-engaged .av-sm { flex: 1; }
.av-studio-gallery.is-engaged .av-sm--founder { flex: 1.6; }
.av-studio-gallery.is-engaged .av-sm.is-active { flex: 4; }


@media (max-width: 860px) {
  .av-studio-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    height: auto;
    overflow: visible;
    max-width: 460px;
    margin-inline: auto;
    padding: 0 1.25rem;
    perspective: 1400px;
  }
  .av-studio-gallery .av-sm,
  .av-studio-gallery.is-engaged .av-sm,
  .av-studio-gallery.is-engaged .av-sm.is-active,
  .av-studio-gallery.is-engaged .av-sm--founder {
    flex: none;
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    overflow: visible;
    transform-style: preserve-3d;
    transition: transform 650ms cubic-bezier(0.4, 0.15, 0.2, 1);
  }
  
  .av-studio-gallery .av-sm.is-active { transform: rotateY(180deg); }

  
  .av-studio-gallery .av-sm-photo {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .av-studio-gallery .av-sm-photo img { position: absolute; inset: 0; }
  .av-studio-gallery .av-sm-foot {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 1.1rem 1.2rem 1.25rem;
  }
  .av-sm-foot-name { font-size: 1rem; }
  .av-sm-foot-role { font-size: 0.64rem; white-space: normal; }
  .av-sm-foot-num { font-size: 0.62rem; }
  
  .av-studio-gallery .av-sm::after {
    content: "＋ Xem thông tin";
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    z-index: 4;
    font-family: var(--sans);
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F0EBE3;
    background: rgba(14,12,10,0.55);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 0.32rem 0.6rem;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
  }
  .av-studio-gallery .av-sm.is-active::after { opacity: 0; }

  
  .av-studio-gallery .av-sm-panel {
    display: flex !important;
    position: absolute;
    inset: 0;
    right: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 1 !important;
    pointer-events: auto;
    justify-content: flex-start;
    padding: 1.35rem 1.4rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #141210;
    border: 1px solid rgba(201,169,110,0.22);
    border-right: 1px solid rgba(201,169,110,0.22);
  }
  .av-studio-gallery .av-sm-pi { max-width: none; gap: 0.4rem; }
  .av-studio-gallery .av-sm-pi-bio { display: block; font-size: 0.76rem; line-height: 1.55; }
  .av-studio-gallery .av-sm-pi-name { font-size: 1.05rem; }
  .av-studio-gallery .av-sm-pi-num { font-size: 0.6rem; }
}

@media (min-width: 620px) and (max-width: 860px) {
  .av-studio-gallery { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .av-studio-gallery .av-sm--founder { grid-column: 1 / -1; }
}


.av-sm-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: left 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.av-sm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: filter 700ms ease;
  filter: brightness(0.75) saturate(0.65);
}
.av-sm.is-active .av-sm-photo {
  left: 50%;
}
.av-sm.is-active .av-sm-photo img {
  filter: brightness(1) saturate(1);
}


.av-sm-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1rem 1.1rem 1.1rem;
  background: linear-gradient(to top, oklch(0.04 0.008 55 / 0.92) 0%, oklch(0.04 0.008 55 / 0.45) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  transition: opacity 300ms ease;
}
.av-sm-foot-num {
  font-family: var(--display);
  font-size: 0.54rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: oklch(0.70 0.045 68);
  line-height: 1;
}
.av-sm-foot-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.68rem, 0.9vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.96 0.008 82);
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
}
.av-sm-foot-role {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.62 0.008 75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.av-sm.is-active .av-sm-foot {
  opacity: 0;
  pointer-events: none;
}


.av-sm-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  right: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  background: #141210;
  border-right: 1px solid oklch(1 0 0 / 0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1) 100ms;
}
.av-sm.is-active .av-sm-panel {
  opacity: 1;
  pointer-events: auto;
}


.av-sm-pi {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}

.av-sm-pi-num {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: oklch(0.70 0.045 68);
  font-weight: 500;
}
.av-sm-pi-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.96 0.010 84);
  line-height: 1.1;
  margin: 0;
}
.av-sm-pi-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  color: oklch(0.78 0.062 68);
  line-height: 1.4;
  margin: 0;
}
.av-sm-pi-bio {
  font-size: clamp(0.75rem, 0.88vw, 0.88rem);
  color: oklch(0.70 0.006 75);
  line-height: 1.72;
  font-weight: 300;
  margin: 0;
}
.av-sm-pi-exp {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  padding-top: 0.7rem;
  margin-top: 0.2rem;
}
.av-sm-pi-exp-lbl {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(0.55 0.008 75);
}
.av-sm-pi-exp ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.av-sm-pi-exp ul li {
  font-size: 0.72rem;
  color: oklch(0.78 0.008 78);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.av-sm-pi-exp ul li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: oklch(0.70 0.045 68);
  flex-shrink: 0;
}


@media (prefers-reduced-motion: reduce) {
  .av-sm,
  .av-sm-photo img,
  .av-sm-foot,
  .av-sm-panel { transition: none; }
}


.av-workshop-section {
  background: var(--ivory);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}


.av-studio-h em,
.av-proc-pin-h em,
.av-team-group-title em,
.av-svc-title em,
.av-sec-h2 em,
section em { font-style: normal; }


.av-process-timeline {
  background-color: var(--ivory);
  background-image: url('/assets/img/proc-timeline-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}


.av-pt-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(3rem, 6vw, 7rem) clamp(2.5rem, 5vh, 4rem);
}
.av-pt-head-center {
  grid-column: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.av-pt-head-center .av-label { margin-bottom: 0; }
.av-pt-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.av-pt-rule {
  display: block;
  width: 2.8rem;
  height: 2px;
  background: var(--bronze);
  margin-top: 0.2rem;
}
.av-pt-all {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  color: var(--bronze);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}
.av-pt-all .ico { width: 0.72rem; height: 0.72rem; transition: transform 0.2s; }
.av-pt-all:hover {
  color: var(--ink);
  gap: 0.6rem;
}
.av-pt-all:hover .ico { transform: translateX(3px); }


.av-pt-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 6rem);
  position: relative;
}


.av-pt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: clamp(1rem, 2vw, 2.5rem);
}


.av-pt-col {
  display: flex;
  flex-direction: column;
}
.av-pt-top {
  justify-content: flex-end;
  align-items: center;
}
.av-pt-bottom {
  justify-content: flex-start;
  align-items: center;
}


.av-pt-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: transparent;
  width: 100%;
}
.av-pt-img-wrap {
  width: clamp(140px, 14vw, 190px);
  height: clamp(140px, 14vw, 190px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px oklch(0 0 0 / 0.06);
  transition: transform 0.4s ease;
}
.av-pt-col:hover .av-pt-img-wrap {
  transform: scale(1.04);
}


.av-pt-watermark {
  position: absolute;
  bottom: -8%;
  right: -5%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20rem, 32vw, 42rem);
  color: var(--ink);
  opacity: 0.024;
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.av-pt-decor-left {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: clamp(220px, 22vw, 360px);
  pointer-events: none;
  z-index: 0;
}
.av-pt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-pt-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.av-pt-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--bronze);
  line-height: 1;
  font-weight: 300;
}
.av-pt-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.av-pt-desc {
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 180px;
}


.av-pt-pointer-bottom {
  height: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 10px;
}
.av-pt-pointer-top {
  height: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
}
.av-pt-arrow-down {
  font-size: 8px;
  color: var(--bronze);
  transform: scaleY(0.7);
}
.av-pt-arrow-up {
  font-size: 8px;
  color: var(--bronze);
  transform: rotate(180deg) scaleY(0.7);
}


.av-pt-line-wrap {
  position: relative;
  height: 30px;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
}
.av-pt-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bronze);
  opacity: 0.35;
  z-index: 0;
}
.av-pt-nodes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: clamp(1rem, 2vw, 2.5rem);
  position: relative;
  z-index: 1;
}
.av-pt-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.av-pt-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--bronze);
  box-shadow: 0 0 0 4px var(--ivory);
}
.av-pt-node-dot-bottom {
  font-size: 10px;
  color: var(--bronze);
  position: absolute;
  top: 15px;
  line-height: 1;
}
.av-pt-node-dot-top {
  font-size: 10px;
  color: var(--bronze);
  position: absolute;
  bottom: 15px;
  line-height: 1;
}


@media (max-width: 900px) {
  .av-pt-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline: 2rem;
  }
  .av-pt-head-center {
    grid-column: 1;
  }
  .av-pt-all {
    display: none;
  }
  
  .av-pt-container {
    padding-inline: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
    position: relative;
  }
  
  .av-pt-container::before {
    content: '';
    position: absolute;
    left: calc(1.75rem + 47px);
    top: 55px;
    bottom: 55px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.45) 12%, rgba(201,169,110,0.45) 88%, transparent);
    z-index: 0;
  }
  
  .av-pt-grid, .av-pt-grid-bottom { display: contents; }
  .av-pt-col[data-step="1"] { order: 1; }
  .av-pt-col[data-step="2"] { order: 2; }
  .av-pt-col[data-step="3"] { order: 3; }
  .av-pt-col[data-step="4"] { order: 4; }
  .av-pt-col[data-step="5"] { order: 5; }
  .av-pt-line-wrap { display: none; }
  .av-pt-top-empty, .av-pt-bottom-empty { display: none; }
  .av-pt-pointer-bottom, .av-pt-pointer-top { display: none; }
  .av-pt-col {
    align-items: flex-start !important;
    position: relative;
    z-index: 1;
  }
  
  .av-pt-content {
    background: transparent;
    padding: 0;
    border-left: none;
    border-radius: 0;
    gap: 1.3rem;
    align-items: center;
  }
  .av-pt-img-wrap {
    width: 94px;
    height: 94px;
    flex-shrink: 0;
    border: 1px solid rgba(201,169,110,0.5);
    box-shadow: 0 0 0 6px #0E0C0A;
    position: relative;
    z-index: 1;
  }
  .av-pt-num { font-size: 2rem; }
  .av-pt-sub { color: var(--bronze-bright); margin-bottom: 0.3rem; }
  .av-pt-desc { max-width: none; }
}


.home-dark {
  background: #0E0C0A;
  color: var(--on-dark);
  
  --ivory:      #0E0C0A;
  --ivory-2:    #141210;
  --greige:     #161310;
  --greige-2:   #1C1813;
  --ink:        var(--on-dark);
  --ink-soft:   var(--on-dark-soft);
  --ink-faint:  var(--on-dark-soft);
  --line:       var(--line-dark);
  --line-soft:  oklch(0.95 0.010 88 / 0.08);
  --espresso:   var(--bronze);
  --espresso-2: var(--bronze-bright);
}

.home-dark .av-svc,
.home-dark .av-shop,
.home-dark .av-workshop-section,
.home-dark .av-news { background: transparent; }
.home-dark .av-process-timeline {
  background-color: #0E0C0A;
  background-image:
    radial-gradient(140% 90% at 50% -12%, rgba(201, 169, 110, 0.11) 0%, rgba(201, 169, 110, 0.03) 30%, transparent 60%),
    radial-gradient(90% 65% at 50% 115%, rgba(201, 169, 110, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #13110C 0%, #0E0C0A 50%, #0B0908 100%);
  border-bottom-color: rgba(201, 169, 110, 0.14);
}

.home-dark .av-pt-watermark {
  color: var(--bronze-bright);
  opacity: 0.06;
}

.home-dark .av-process-timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.5), transparent);
  z-index: 1;
}
.home-dark .av-shop-card {
  background: #141210;
  border-color: rgba(201, 169, 110, 0.14);
}
.home-dark .av-shop-card-body {
  background: rgba(14, 12, 10, 0.82);
  border-top-color: rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.home-dark .av-shop-card-name { color: var(--on-dark); font-size: 0.74rem; }
.home-dark .av-shop-card-price { color: var(--bronze-bright); font-size: 0.66rem; }
.home-dark .av-news-card { background: #141210; }
.home-dark .av-news-card:hover { background: rgba(201, 169, 110, 0.06); }


.home-dark .av-pt-sub { font-size: 0.72rem; color: var(--on-dark); }
.home-dark .av-pt-desc {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  color: var(--on-dark-soft);
}
.home-dark .av-shop-nav-subs li { font-size: clamp(0.82rem, 0.95vw, 0.95rem); }


.shopx-card {
  position: relative;
  background: #141210;
  border: 1px solid rgba(201, 169, 110, 0.12);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.shopx-card:hover { border-color: rgba(201, 169, 110, 0.42); transform: translateY(-4px); }
.shopx-card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #0E0C0A; }
.shopx-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.shopx-card:hover .shopx-card-media img { transform: scale(1.06); }
.shopx-card.is-out .shopx-card-media img { filter: grayscale(0.6) brightness(0.6); }
.shopx-badge {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: var(--sans); font-size: 0.54rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #F0EBE3; background: rgba(14, 12, 10, 0.75);
  border: 1px solid rgba(201, 169, 110, 0.35); padding: 0.3rem 0.65rem;
  backdrop-filter: blur(6px);
}
.shopx-card-body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.shopx-card-cat { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: #C9A96E; }
.shopx-card-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.2; color: #F5F0E8; margin: 0; }
.shopx-card-price { font-family: var(--sans); font-size: 0.8rem; color: var(--bronze-bright); }
.shopx-empty { grid-column: 1 / -1; text-align: center; color: rgba(240, 235, 227, 0.5); padding: 3rem 0; font-family: var(--sans); }


.home-dark .av-shop { height: auto; min-height: 0; overflow: visible; }
.home-dark .av-shop-layout { align-items: flex-start; height: auto; overflow: visible; }
.home-dark .av-shop-main { min-height: 0; }
.home-dark .av-shop-sidebar { max-height: none; overflow: visible; position: sticky; top: 6rem; }
.home-dark .av-shop-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: clamp(0.8rem, 1.4vw, 1.5rem);
  flex: none;
}

.home-dark .av-shop-sidebar-eyebrow { color: var(--bronze-bright); }
.home-dark .av-shop-nav-cat {
  cursor: pointer;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
  color: rgba(240, 235, 227, 0.82);
}
.home-dark .av-shop-nav-cat:hover { color: #F5F0E8; }
.home-dark .av-shop-nav-toggle {
  flex-shrink: 0;
  display: inline-block;
  width: 0.9rem;
  text-align: center;
  line-height: 1;
  font-size: 0.9rem;
  color: rgba(201, 169, 110, 0.75);
}
.home-dark .av-shop-nav-group.is-open > .av-shop-nav-cat { color: var(--bronze-bright); font-weight: 500; }
.home-dark .av-shop-nav-subs { padding-left: 0; }
.home-dark .av-shop-nav-subs li {
  font-style: normal;
  padding-left: 0;
  color: rgba(240, 235, 227, 0.6);
}
.home-dark .av-shop-nav-subs li:hover { color: var(--bronze-bright); }
.home-dark .av-shop-nav-subs li.active { color: var(--bronze-bright); }
@media (max-width: 1024px) { .home-dark .av-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) {
  .home-dark .av-shop-sidebar { position: static; top: auto; }
  .home-dark .av-shop-nav-subs { display: none !important; }
}
@media (max-width: 600px) { .home-dark .av-shop-grid { grid-template-columns: repeat(2, 1fr); } }
